Tagged articles
10 articles
Page 1 of 1
Black & White Path
Black & White Path
Mar 5, 2026 · Information Security

How a Front‑End 0‑Day in a Major OA System Was Discovered and Exploited

The article walks through the discovery of an arbitrary ZIP‑file download vulnerability in a large OA front‑end, detailing how the attacker traced the vulnerable Spring MVC controller, built a PoC using a controllable cookie, achieved directory‑traversal reads, demonstrated a DOS extension, and finally suggested input‑filter mitigations.

0dayJavaOA
0 likes · 9 min read
How a Front‑End 0‑Day in a Major OA System Was Discovered and Exploited
Raymond Ops
Raymond Ops
Mar 27, 2025 · Backend Development

Why Go’s New Directory Traversal API Is Up to 5× Faster and How It Works

The article explains the directory‑traversal optimization introduced in Go 1.16, compares the old and new APIs with benchmarks, dives into the underlying system‑call changes, shows which file systems support the improvement, and demonstrates how similar gains can be achieved in C, C++, and Python.

Backend DevelopmentFilesystemdirectory traversal
0 likes · 15 min read
Why Go’s New Directory Traversal API Is Up to 5× Faster and How It Works
php Courses
php Courses
Oct 12, 2024 · Backend Development

Using PHP is_dir() to Check Directories and Traverse Files

This article explains PHP's is_dir() function, demonstrates how it checks whether a path is a directory, provides simple and advanced code examples—including directory traversal with opendir() and readdir()—and offers practical usage tips for developers.

Backend DevelopmentPHPdirectory traversal
0 likes · 4 min read
Using PHP is_dir() to Check Directories and Traverse Files
php Courses
php Courses
Aug 14, 2024 · Backend Development

Using PHP is_dir() to Check and Traverse Directories

This article explains PHP's is_dir() function, shows how it determines whether a path is a directory, provides basic and advanced code examples for checking and traversing directories, and highlights important usage considerations for reliable file system operations.

Backend Developmentdirectory traversalis_dir
0 likes · 5 min read
Using PHP is_dir() to Check and Traverse Directories
MaGe Linux Operations
MaGe Linux Operations
Aug 6, 2024 · Backend Development

How Go 1.16’s Directory Traversal Optimization Boosts Performance by 480%

This article explains the directory‑traversal optimization introduced in Go 1.16, shows benchmark results where the new APIs (os.ReadDir, (*os.File).ReadDir, filepath.WalkDir) run up to 4.8 times faster than the old approach, and details the underlying mechanism that reduces system calls by leveraging file‑system‑provided metadata.

directory traversalgo1.16
0 likes · 13 min read
How Go 1.16’s Directory Traversal Optimization Boosts Performance by 480%
php Courses
php Courses
Dec 29, 2023 · Backend Development

How to Traverse Directories and Retrieve File Information in PHP

This article explains how to use PHP functions such as opendir, readdir, is_dir, and scandir to open directories, read file names, perform recursive traversal of subfolders, and retrieve file information, providing clear code examples for each method.

PHPdirectory traversalopendir
0 likes · 5 min read
How to Traverse Directories and Retrieve File Information in PHP
php Courses
php Courses
Oct 20, 2023 · Backend Development

Understanding and Using PHP readdir() Function for Directory Traversal

This article provides a comprehensive guide to PHP's readdir() function, covering its syntax, basic usage with code examples, important considerations such as handling '.' and '..' entries, and advanced techniques like combining with is_dir() to differentiate files and directories for efficient file system operations.

Backend DevelopmentPHPdirectory traversal
0 likes · 4 min read
Understanding and Using PHP readdir() Function for Directory Traversal
System Architect Go
System Architect Go
Mar 1, 2021 · Information Security

How Attackers Exploit Directory Traversal and How to Defend Against It

This article explains what directory (path) traversal is, demonstrates how attackers can read or write arbitrary files on a server by manipulating file‑path parameters, outlines common bypass techniques, and provides concrete defensive coding practices to mitigate the vulnerability.

VulnerabilityWeb Securitydefense
0 likes · 6 min read
How Attackers Exploit Directory Traversal and How to Defend Against It
MaGe Linux Operations
MaGe Linux Operations
Jan 8, 2021 · Backend Development

Master Python’s os.walk: Build a Powerful File Management Tool in Minutes

This guide introduces Python’s os.walk module, explains its top‑down and bottom‑up traversal modes, and demonstrates how to list files, filter by extension, enumerate subdirectories, and create a complete log‑organizing script that moves, deduplicates, and records files based on date.

directory traversalfile managementos.walk
0 likes · 10 min read
Master Python’s os.walk: Build a Powerful File Management Tool in Minutes