0xploit.com

Web Security / Bug Hunting Rana Kalil WEB SECURITY ACADEMY SERIES[2024]

H4K3R

Member
Joined
Apr 8, 2024
Messages
54
Hellcoins
♆162

Course Overview

Learn how to hack web applications, automate your exploits in python and defend web applications against real world attacks! For each vulnerability type, we dive into the technical details and then gain hands-on experience by solving labs that model real-world vulnerabilities.

COURSE CURRICULUM - 50+ HOURS


Introduction

Getting Help


Lab Environment Setup


SQL Injection

Lab #5 SQL injection UNION attack, retrieving data from other tables (24:45)
Lab #10 SQL injection attack, listing the database contents on Oracle (40:24)
Lab #15 Blind SQL injection with out-of-band interaction (10:19)
Lab #17 SQL injection with filter bypass via XML encoding (7:14)

Authentication Vulnerabilities

Lab #2 2FA simple bypass (11:46)
Lab #6 Broken brute-force protection, IP block (14:20) Lab #7 Username enumeration via account lock (9:41)
Lab #9 Brute-forcing a stay-logged-in cookie (17:13)
Lab #11 Password reset poisoning via middleware (8:28) Lab #12 Password brute-force via password change (25:08) Lab #13 Broken brute-force protection, multiple credentials per request (16:46) Lab #14 2FA bypass using a brute-force attack (9:54)
Directory Traversal

Lab #1 File path traversal, simple case (13:58)
Lab #3 File path traversal, traversal sequences stripped non-recursively (14:26) Lab #4 File path traversal, traversal sequences stripped with superfluous URL-decode (12:19) Lab #5 File path traversal, validation of start of path (10:28) Lab #6 File path traversal, validation of file extension with null byte bypass (9:54)
OS Command Injection

Lab #2 Blind OS command injection with time delays (19:32) Lab #3 Blind OS command injection with output redirection (25:51) Note - Changes to Burp Collaborator Lab #4 Blind OS command injection with out-of-band interaction (6:35) Lab #5 Blind OS command injection with out-of-band data exfiltration (7:33)
Business Logic Vulnerabilities

Lab #1 Excessive trust in client-side controls (24:40)
Lab #3 Inconsistent security controls (6:34)
Lab #6 Inconsistent handling of exceptional input (15:20) Lab #7 Weak isolation on dual-use endpoint (22:32) Lab #8 Insufficient workflow validation (20:04)
Lab #10 Infinite money logic flaw (41:17) Lab #11 Authentication bypass via encryption oracle (18:47)

Information Disclosure

Lab #1 Information disclosure in error messages (9:41) Lab #2 Information disclosure on debug page (11:20)
Lab #4 Authentication bypass via information disclosure (10:56)

Access Control Vulnerabilities

Lab #1 Unprotected admin functionality (15:06)
Lab #3 User role controlled by request parameter (23:42) Lab #4 User role can be modified in user profile (21:39) Lab #5 URL-based access control can be circumvented (15:23) Lab #6 Method-based access control can be circumvented (17:23) Lab #7 User ID controlled by request parameter (21:24) Lab #8 User ID controlled by request parameter, with unpredictable user IDs (29:18) Lab #9 User ID controlled by request parameter with data leakage in redirect (21:36) Lab #10 User ID controlled by request parameter with password disclosure (27:13)
Lab #13 Referer-based access control (14:15)

File Upload Vulnerabilities

Lab #1 Remote code execution via web shell upload (27:53) Lab #2 Web shell upload via Content-Type restriction bypass (23:08) Lab #3 Web shell upload via path traversal (26:54) Lab #4 Web shell upload via extension blacklist bypass (30:11) Lab #5 Web shell upload via obfuscated file extension (23:42) Lab #6 Remote code execution via polyglot web shell upload (7:29)

Server-Side Request Forgery (SSRF)

Lab #1 Basic SSRF against the local server (21:31) Lab #2 Basic SSRF against another back-end system (26:53) Lab #3 SSRF with blacklist-based input filter (20:08) Lab #4 SSRF with whitelist-based input filter (21:04)
Lab #6 Blind SSRF with out-of-band detection (6:01)

XXE Injection

Lab #1 Exploiting XXE using external entities to retrieve files (10:28) Lab #2 Exploiting XXE to perform SSRF attacks (11:33) Note - Changes to Burp Collaborator Lab #3 Blind XXE with out-of-band interaction (5:53) Lab #4 Blind XXE with out-of-band interaction via XML parameter entities (6:35) Lab #5 Exploiting blind XXE to exfiltrate data using a malicious external DTD (16:54) Lab #6 Exploiting blind XXE to retrieve data via error messages (12:14) Lab #7 Exploiting XInclude to retrieve files (12:41) Lab #8 Exploiting XXE via image file upload (23:48)

Cross-Site Scripting (XSS)

Lab #1 Reflected XSS into HTML context with nothing encoded (3:47)
Lab #3 DOM XSS in document.write sink using source location.search (7:46) Lab #4 DOM XSS in innerHTML sink using source location.search (6:03) Lab #5 DOM XSS in jQuery anchor href attribute sink using location.search source (7:09) Lab #6 DOM XSS in jQuery selector sink using a hashchange event (10:14) Lab #7 Reflected XSS into attribute with angle brackets HTML-encoded (5:05) Lab #8 Stored XSS into anchor href attribute with double quotes HTML-encoded (5:50) Lab #9 Reflected XSS into a JavaScript string with angle brackets HTML encoded (5:54) Lab #10 DOM XSS in document.write sink using source location.search inside a select element (8:18)
Lab #12 Reflected DOM XSS (7:46) Lab #13 Stored DOM XSS (8:08)
Lab #18 Reflected XSS into HTML context with all tags blocked except custom ones (10:23) Lab #19 Reflected XSS with some SVG markup allowed (6:34) Lab #20 Reflected XSS in canonical link tag (7:26) Lab #21 Reflected XSS into a JavaScript string with single quote and backslash escaped (4:32) Lab #22 Reflected XSS into a JavaScript string with angle brackets and double quotes HTML-encoded and single quotes escaped (5:36)
Lab #24 Reflected XSS into a template literal with angle brackets, single, double quotes, backslash and backticks Unicode-escaped (3:19)
Cross-Site Request Forgery (CSRF)

Note - Changes to Python Simple Server
Lab #2 CSRF where token validation depends on request method (20:33) Lab #3 CSRF where token validation depends on token being present (14:29) Lab #4 CSRF where token is not tied to user session (18:01) Lab #5 CSRF where token is tied to non-session cookie (27:32) Lab #6 CSRF where token is duplicated in cookie (21:05) Lab #7 CSRF where Referer validation depends on header being present (19:53) Lab #8 CSRF with broken Referer validation (18:14) Lab #9 SameSite Lax bypass via method override (7:51) Lab #10 SameSite Strict bypass via client-side redirect (12:45)
Lab #12 SameSite Lax bypass via cookie refresh (18:29)

Cross-origin Resource Sharing (CORS)

Lab #1 CORS vulnerability with basic origin reflection (15:13) Lab #2 CORS vulnerability with trusted null origin (19:08) Lab #3 CORS vulnerability with trusted insecure protocols (23:32)

Clickjacking

Lab #1 Basic clickjacking with CSRF token protection (9:42) Lab #2 Clickjacking with form input data prefilled from a URL parameter (10:04) Lab #3 Clickjacking with a frame buster script (8:38) Lab #4 Exploiting clickjacking vulnerability to trigger DOM-based XSS (11:27)

DOM-based Vulnerabilities

Lab #1 DOM XSS using web messages (6:09) Lab #2 DOM XSS using web messages and a JavaScript URL (5:59) Lab #3 DOM XSS using web messages and JSON.parse (6:42)

WebSockets Vulnerabilities

Lab #1 Manipulating WebSocket messages to exploit vulnerabilities (5:49) Lab #2 Manipulating the WebSocket handshake to exploit vulnerabilities (8:31)
 
Last edited by a moderator:
Top