Mastering Automated SQL Injection Testing with SQLMap
Overview of SQLMap Capabilities
SQLMap is a powerful open-source penetration testing tool designed to automate the detection and exploitation of SQL injection flaws. It supports a wide range of database management systems, including MySQL, Oracle, PostgreSQL, Microsoft SQL Server, Microsoft Access, IBM DB2, SQLite, Firebird, Sybase, and SAP Max ...
Posted on Sat, 08 Aug 2026 16:12:45 +0000 by bradjinc
Comprehensive Guide to Hydra Login Cracker
What Is Hydra
Hydra is a parallelized brute-force authentication auditor that supports dozens of network protocols. By rapidly cycling through username/password combinations it can reveal weak credentials on services such as FTP, SSH, RDP, MySQL, SMTP, HTTP(S) forms, and many more. Although the tool is invaluable for authorized penetration test ...
Posted on Sat, 01 Aug 2026 17:08:47 +0000 by pinacoladaxb
Exploiting Common Vulnerabilities Using Metasploit Framework
Experiment Overview
This session focuses on the Metasploit Framework, an open-source platform designed for vulnerability assessment and penetration testing. It offers a comprehensive set of tools and modules to identify, exploit, and validate software weaknesses.
Initial Reconnaisance
Host Discovery
Use auxiliary modules like arp_sweep to detec ...
Posted on Thu, 30 Jul 2026 16:58:19 +0000 by husslela03
Penetration Testing GoldenEye VM from VulnHub
Network Scanning
Initial discovery of the target machine was performed using NMAP:
nmap 192.168.206.124/24
Target identified at 192.168.206.167 with open ports 25 (SMTP) and 80 (HTTP).
Comprehensive port scan revealed additional services:
nmap 192.168.206.167 -p- -sS -A
Key findings:
Port 25: Postfix SMTP daemon
Port 80: Apache HTTP server
P ...
Posted on Tue, 28 Jul 2026 16:51:22 +0000 by maneetpuri
Web Penetration Testing: AJAX, HTML5 Security and Automated Scanning Techniques
As mentioned in the first chapter, AJAX is a combination technology primarily including JavaScript, XML, and web services that enable asynchronous HTTP communication between client and server.
Crawling AJAX Applications
In AJAX-based applications, the links that crawlers can identify depend on the application's logical flow. In this section, we ...
Posted on Sat, 25 Jul 2026 16:44:40 +0000 by ravi.kinjarapu
Web Application Security: Client-Side Attacks and Defense Strategies
Client-Side Attacks and Social Engineering
Modern penetration testing often extends beyond server-side vulnerabilities to target the client software or the human element. Attackers frequently use web servers as conduits to exploit client-side software flaws or trick users into performing actions that compromise sensitive data.
Credential Harves ...
Posted on Fri, 17 Jul 2026 16:46:19 +0000 by Dark_Archon
Guide to Web Penetration Testing: Brute Forcing and SQL Injection
Authentication Vulnerabilities
Exploiting Weak Credentials
The first challenge involves bypassing authentication through brute force techniques. The objective is to identify valid credentials by testing common passwords against a target login interface.
To execute this attack, an interception proxy like Burp Suite is essential. Capture the init ...
Posted on Wed, 17 Jun 2026 17:11:03 +0000 by lucym
Windows Remote Exploitation: Metasploit Framework and Attack Forensics
Metasploit Windows Remote Exploitation
This section demonstrates exploiting the MS08-067 vulnerability (CVE-2008-4250), a critical Windows SMB service remote code execution vulnerability affecting port 445.
Target Environment
Attacker machine: Kali Linux at 192.168.20.129
Target machine: Windows 2000 at 192.168.20.132
Exploitation Process
Lau ...
Posted on Fri, 29 May 2026 23:12:46 +0000 by WendyB
Comprehensive Web Penetration Testing Framework Built with Django
System Overview
The Sec-Tools platform is a versatile web penetration testing suite developed using the Python-Django framework. It integrates a wide array of security modules, including vulnerability detection, directory brute-forcing, port scanning, fingerprinting, subdomain discovery, and information leakage assessment. By centralizing these ...
Posted on Sat, 16 May 2026 08:29:55 +0000 by Joe Haley
Server-Side Request Forgery Vulnerabilities and Exploitation Techniques
Understanding SSRF Attacks
Server-Side Request Forgery (SSRF) occurs when a application allows users to supply URLs or IP addresses that the server will then request data from. This vulnerability arises primarily when web applications provide functionality to fetch resources from external sources without properly validating or sanitizing the ta ...
Posted on Fri, 15 May 2026 07:54:12 +0000 by sincspecv