Understanding and Exploiting File Inclusion Vulnerabilities
Modular programming is a cornerstone of modern software development. By separating logic into distinct files—such as database handlers, configuration templates, or UI components—developers can maintain cleaner and more efficient codebases. Functions like include or import allow these separate modules to be merged at runtime. While this practice ...
Posted on Sun, 10 May 2026 22:19:15 +0000 by examiz
Offensive Security Fundamentals: Techniques for Payload Execution and Evasion on Windows
Common Phases of Network Penetration
Network penetration typically follows a structured approach:
Information Gathering: Collecting intelligence about the target, including public-facing assets, employee details, and technologies in use.
External Foothold Establishment: Identifying and exploiting vulnerabilities in public-facing systems to gai ...
Posted on Sun, 10 May 2026 15:23:46 +0000 by new_programmer
Web Penetration Testing Techniques and Exploits
File Inclusion and Upload Vulnerabilities
File inclusion vulnerabilities occur when a web application dynamically includes files based on user input without proper validation, allowing attackers to include malicious files. Modern server-side languages like PHP (since version 5.2.0) often disable remote file inclusion by default, making Local Fi ...
Posted on Sun, 10 May 2026 12:39:31 +0000 by dark dude
Fundamental Penetration Testing Methodology with Kali Linux
Penetration Testing Workflow OverviewPhase 1: Reconnaissance and Information GatheringNetwork Infrastructure AnalysisGathering intelligence about the target infrastructure forms the foundation of any security assessment. Key activities include:Deploying Nmap to discover live hosts, open ports, and running services across the target network segm ...
Posted on Sat, 09 May 2026 05:20:57 +0000 by The_PHP_Newb
Using Burp Suite to Penetrate a System and Escalate Privileges via CVE-2021-3156
0x01 Reconnaissance and Initial Access
The challenge started with a login page. Directory scanning revealed no other entry points. Brute-forcing weak credentials seemed like the obvious approach, but without knowing the username policy, blindly attempting logins could trigger protective measures and expose or block our IP.
Observing a "Reg ...
Posted on Sat, 09 May 2026 00:47:15 +0000 by projectshifter
Operational Guide to Network Security Assessment using Kali Linux
Infrastructure Deployment and Lab Preparasion
Establishing a robust environment is the foundation of any security audit. Kali Linux provides various deployment options tailored for cloud, containerized, and mobile environments.
Cloud Implementation via Amazon AWS
Deploying Kali on Amazon EC2 allows for external penetration testing from a stable ...
Posted on Thu, 07 May 2026 10:11:30 +0000 by jalbey
JWT Security: A WebGoat Challenge Walkthrough
Cookie (Stored in Browser)
A cookie is a specific piece of data that is permanently stored in the browser. It is merely a data storage functionality implemented by browsers. Cookies are generated by the server, sent to the browser, and saved as key-value pairs in a text file within a directory on the client. On subsequent requests to the same w ...
Posted on Thu, 07 May 2026 05:24:52 +0000 by marcela1637