├── LICENSE ├── README.md ├── cheatsheet.org ├── modules ├── active-directory │ └── README.md ├── linux │ ├── PATH-hijacking │ │ ├── README.md │ │ └── examples │ │ │ └── 01-simple │ │ │ ├── code.c │ │ │ └── sol.txt │ └── README.md ├── web │ ├── 01-introduction-to-web-exploitation │ │ └── README.md │ ├── 02-getting-used-to-burpsuite │ │ ├── README.md │ │ └── notes.org │ ├── 03-sql-injection │ │ ├── README.md │ │ ├── login.php │ │ └── notes.txt │ ├── 04-directory-traversal │ │ ├── README.md │ │ ├── notes.org │ │ ├── tomcat │ │ │ ├── server.xml │ │ │ ├── web.xml │ │ │ └── webapps │ │ │ │ ├── dynamic-app1 │ │ │ │ └── index.jsp │ │ │ │ ├── dynamic-app2 │ │ │ │ └── index.jsp │ │ │ │ └── static-app │ │ │ │ ├── css │ │ │ │ └── main.css │ │ │ │ ├── favicon.png │ │ │ │ ├── files │ │ │ │ └── test.txt │ │ │ │ ├── img │ │ │ │ ├── icon-black.png │ │ │ │ └── icon-purple.png │ │ │ │ └── index.html │ │ └── wordlist │ ├── 05-file-inclusion │ │ └── README.md │ ├── 06-file-upload-vulnerabilities │ │ ├── README.md │ │ └── www │ │ │ ├── assets │ │ │ ├── oscp-free-thumbnail.png │ │ │ ├── shell.php │ │ │ └── thumbnail.png │ │ │ ├── index.html │ │ │ ├── upload.php │ │ │ └── uploads │ │ │ └── level1-thumbnail.png │ ├── 09-enumeration-of-files-and-directories │ │ ├── commands.txt │ │ └── docker │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.dev.yml │ │ │ ├── docker-compose.yml │ │ │ ├── entrypoint.sh │ │ │ ├── nginx │ │ │ ├── default.conf │ │ │ └── prod.conf │ │ │ ├── wordlist │ │ │ └── directory-list-2.3-medium.txt │ │ │ └── www │ │ │ ├── html │ │ │ ├── api │ │ │ │ └── command.php │ │ │ ├── index.html │ │ │ └── pages │ │ │ │ ├── about.html │ │ │ │ ├── contacts.html │ │ │ │ ├── misc.html │ │ │ │ └── secrets.txt │ │ │ └── prod │ │ │ └── db.txt │ ├── 10-enumeration-of-virtual-hosts │ │ ├── commands.txt │ │ └── docker │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.dev.yml │ │ │ ├── docker-compose.yml │ │ │ ├── entrypoint.sh │ │ │ ├── nginx │ │ │ ├── default.conf │ │ │ ├── dev.conf │ │ │ ├── pre-prod.conf │ │ │ ├── prod.conf │ │ │ └── test.conf │ │ │ ├── wordlist │ │ │ └── subdomains-top1million-5000.txt │ │ │ └── www │ │ │ └── html │ │ │ └── index.html │ ├── 11-enumeration-of-parameters │ │ ├── Dockerfile │ │ ├── commands.txt │ │ ├── docker-compose.yml │ │ ├── entrypoint.sh │ │ ├── nginx │ │ │ ├── default.conf │ │ │ └── prod.conf │ │ ├── wordlist │ │ │ ├── burp-parameter-names.txt │ │ │ └── numbers.txt │ │ └── www │ │ │ └── html │ │ │ └── orders.php │ ├── 13-dns-zone-transfer-attacks │ │ ├── commands.txt │ │ ├── config │ │ │ ├── named.conf │ │ │ └── oscp.exam.zone │ │ └── docker-compose.yml │ └── README.md └── windows │ ├── README.md │ ├── windows-privesc-cheatsheet.txt │ └── windows-privesc-methodology.txt └── report ├── OSCP-OS-99999999-Exam-Report.pdf ├── generate.sh ├── img └── example_screen-300x225.png ├── report.md └── report.org /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/README.md -------------------------------------------------------------------------------- /cheatsheet.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/cheatsheet.org -------------------------------------------------------------------------------- /modules/active-directory/README.md: -------------------------------------------------------------------------------- 1 | # OSCP – 08 Active Directory 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /modules/linux/PATH-hijacking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/linux/PATH-hijacking/README.md -------------------------------------------------------------------------------- /modules/linux/PATH-hijacking/examples/01-simple/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/linux/PATH-hijacking/examples/01-simple/code.c -------------------------------------------------------------------------------- /modules/linux/PATH-hijacking/examples/01-simple/sol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/linux/PATH-hijacking/examples/01-simple/sol.txt -------------------------------------------------------------------------------- /modules/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/linux/README.md -------------------------------------------------------------------------------- /modules/web/01-introduction-to-web-exploitation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/01-introduction-to-web-exploitation/README.md -------------------------------------------------------------------------------- /modules/web/02-getting-used-to-burpsuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/02-getting-used-to-burpsuite/README.md -------------------------------------------------------------------------------- /modules/web/02-getting-used-to-burpsuite/notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/02-getting-used-to-burpsuite/notes.org -------------------------------------------------------------------------------- /modules/web/03-sql-injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/03-sql-injection/README.md -------------------------------------------------------------------------------- /modules/web/03-sql-injection/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/03-sql-injection/login.php -------------------------------------------------------------------------------- /modules/web/03-sql-injection/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/03-sql-injection/notes.txt -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/README.md -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/notes.org -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/server.xml -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/web.xml -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/webapps/dynamic-app1/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/webapps/dynamic-app1/index.jsp -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/webapps/dynamic-app2/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/webapps/dynamic-app2/index.jsp -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/webapps/static-app/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/webapps/static-app/css/main.css -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/webapps/static-app/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/webapps/static-app/favicon.png -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/webapps/static-app/files/test.txt: -------------------------------------------------------------------------------- 1 | hey 2 | -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/webapps/static-app/img/icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/webapps/static-app/img/icon-black.png -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/webapps/static-app/img/icon-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/webapps/static-app/img/icon-purple.png -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/tomcat/webapps/static-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/tomcat/webapps/static-app/index.html -------------------------------------------------------------------------------- /modules/web/04-directory-traversal/wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/04-directory-traversal/wordlist -------------------------------------------------------------------------------- /modules/web/05-file-inclusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/05-file-inclusion/README.md -------------------------------------------------------------------------------- /modules/web/06-file-upload-vulnerabilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/06-file-upload-vulnerabilities/README.md -------------------------------------------------------------------------------- /modules/web/06-file-upload-vulnerabilities/www/assets/oscp-free-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/06-file-upload-vulnerabilities/www/assets/oscp-free-thumbnail.png -------------------------------------------------------------------------------- /modules/web/06-file-upload-vulnerabilities/www/assets/shell.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/web/06-file-upload-vulnerabilities/www/assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/06-file-upload-vulnerabilities/www/assets/thumbnail.png -------------------------------------------------------------------------------- /modules/web/06-file-upload-vulnerabilities/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/06-file-upload-vulnerabilities/www/index.html -------------------------------------------------------------------------------- /modules/web/06-file-upload-vulnerabilities/www/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/06-file-upload-vulnerabilities/www/upload.php -------------------------------------------------------------------------------- /modules/web/06-file-upload-vulnerabilities/www/uploads/level1-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/06-file-upload-vulnerabilities/www/uploads/level1-thumbnail.png -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/commands.txt -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/Dockerfile -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/docker-compose.dev.yml -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/docker-compose.yml -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | set -e 3 | 4 | php-fpm -D 5 | nginx -g 'daemon off;' 6 | -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/nginx/default.conf -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/nginx/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/nginx/prod.conf -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/wordlist/directory-list-2.3-medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/wordlist/directory-list-2.3-medium.txt -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/www/html/api/command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/www/html/api/command.php -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/www/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/www/html/index.html -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/www/html/pages/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/www/html/pages/about.html -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/www/html/pages/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/www/html/pages/contacts.html -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/www/html/pages/misc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/www/html/pages/misc.html -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/www/html/pages/secrets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/09-enumeration-of-files-and-directories/docker/www/html/pages/secrets.txt -------------------------------------------------------------------------------- /modules/web/09-enumeration-of-files-and-directories/docker/www/prod/db.txt: -------------------------------------------------------------------------------- 1 | Congratulations! 2 | 3 | FLAG{200_N0T_F0UND} 4 | -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/commands.txt -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/Dockerfile -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/docker-compose.dev.yml -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/docker-compose.yml -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | set -e 3 | 4 | nginx -g 'daemon off;' 5 | -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/nginx/default.conf -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/nginx/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/nginx/dev.conf -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/nginx/pre-prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/nginx/pre-prod.conf -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/nginx/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/nginx/prod.conf -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/nginx/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/nginx/test.conf -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/wordlist/subdomains-top1million-5000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/wordlist/subdomains-top1million-5000.txt -------------------------------------------------------------------------------- /modules/web/10-enumeration-of-virtual-hosts/docker/www/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/10-enumeration-of-virtual-hosts/docker/www/html/index.html -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/11-enumeration-of-parameters/Dockerfile -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/11-enumeration-of-parameters/commands.txt -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/11-enumeration-of-parameters/docker-compose.yml -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | set -e 3 | 4 | php-fpm -D 5 | nginx -g 'daemon off;' 6 | -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/11-enumeration-of-parameters/nginx/default.conf -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/nginx/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/11-enumeration-of-parameters/nginx/prod.conf -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/wordlist/burp-parameter-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/11-enumeration-of-parameters/wordlist/burp-parameter-names.txt -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/wordlist/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/11-enumeration-of-parameters/wordlist/numbers.txt -------------------------------------------------------------------------------- /modules/web/11-enumeration-of-parameters/www/html/orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/11-enumeration-of-parameters/www/html/orders.php -------------------------------------------------------------------------------- /modules/web/13-dns-zone-transfer-attacks/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/13-dns-zone-transfer-attacks/commands.txt -------------------------------------------------------------------------------- /modules/web/13-dns-zone-transfer-attacks/config/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/13-dns-zone-transfer-attacks/config/named.conf -------------------------------------------------------------------------------- /modules/web/13-dns-zone-transfer-attacks/config/oscp.exam.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/13-dns-zone-transfer-attacks/config/oscp.exam.zone -------------------------------------------------------------------------------- /modules/web/13-dns-zone-transfer-attacks/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/13-dns-zone-transfer-attacks/docker-compose.yml -------------------------------------------------------------------------------- /modules/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/web/README.md -------------------------------------------------------------------------------- /modules/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/windows/README.md -------------------------------------------------------------------------------- /modules/windows/windows-privesc-cheatsheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/windows/windows-privesc-cheatsheet.txt -------------------------------------------------------------------------------- /modules/windows/windows-privesc-methodology.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/modules/windows/windows-privesc-methodology.txt -------------------------------------------------------------------------------- /report/OSCP-OS-99999999-Exam-Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/report/OSCP-OS-99999999-Exam-Report.pdf -------------------------------------------------------------------------------- /report/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/report/generate.sh -------------------------------------------------------------------------------- /report/img/example_screen-300x225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/report/img/example_screen-300x225.png -------------------------------------------------------------------------------- /report/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/report/report.md -------------------------------------------------------------------------------- /report/report.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonardoE95/OSCP/HEAD/report/report.org --------------------------------------------------------------------------------