This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ver | |
| v | |
| t | |
| id | |
| tid | |
| cid | |
| z | |
| gdpr | |
| _v | |
| jid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # pwning | |
| https://pwn.college/ | |
| https://www.ret2rop.com/ | |
| https://akshitsinghal6399.medium.com/rop-chain-exploit-with-example-7e444939a2ec | |
| https://ironhackers.es/en/tutoriales/pwn-rop-bypass-nx-aslr-pie-y-canary/ | |
| https://guyinatuxedo.github.io/ | |
| https://github.com/0xmanjoos/Exploit-Development | |
| https://doar-e.github.io/archives.html | |
| https://exploitreversing.com/2023/04/11/exploiting-reversing-er-series/ | |
| https://crackmes.one/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.hackingarticles.in/linux-for-pentester-socat-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-scp-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-tmux-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-ed-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-sed-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-pip-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-git-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-cp-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-taskset-privilege-escalation/ | |
| https://www.hackingarticles.in/linux-for-pentester-time-privilege-escalation/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #notes | |
| https://www.cnblogs.com/keepmoving1113/tag/OSCP/ | |
| https://hausec.com/pentesting-cheatsheet/ | |
| https://highon.coffee/blog/penetration-testing-tools-cheat-sheet | |
| https://github.com/wwong99/pentest-notes/blob/master/oscp_resources/OSCP-Survival-Guide.md | |
| https://noobsec.net/oscp-cheatsheet/ | |
| https://www.netsecfocus.com/oscp/2019/03/29/The_Journey_to_Try_Harder-_TJNulls_Preparation_Guide_for_PWK_OSCP.html | |
| https://www.reddit.com/r/oscp/comments/824v7z/oscp_exam_taking_fraud/ | |
| https://github.com/OlivierLaflamme/Cheatsheet-God | |
| https://johntuyen.com/personal/2019/05/25/personal-oscpcheatsheet.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| strings file | |
| binwalk -e file | |
| # mounting | |
| mknod /dev/mtdblock0 b 31 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ CVE-2019-11510 ] | |
| Exploit for Arbitrary File Read on Pulse Secure SSL VPN (CVE-2019-11510) | |
| https://github.com/projectzeroindia/CVE-2019-11510 | |
| [ CVE-2020-5902 ] | |
| exploit code for F5-Big-IP (CVE-2020-5902) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cat <<EOF | |
| m " mmmmmm | |
| # mmm m mm m m m m # m mm m m mmmmm | |
| # # #" # # # #m# #mmmmm #" # # # # # # | |
| # # # # # # m#m # # # # # # # # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 🔥Complete Bug Bounty Cheat Sheet🔥 | |
| XSS | |
| https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/xss.md | |
| https://github.com/ismailtasdelen/xss-payload-list | |
| SQLi | |
| https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/sqli.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import re | |
| import csv | |
| from datetime import datetime | |
| import time | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from Crypto.Cipher import AES | |
| from Crypto import Random | |
| import os.path | |
| #cbc | |
| def encrypt(key,file): | |
| file_size=str(os.path.getsize(file)).zfill(16).encode("ascii") | |
| iv=Random.new().read(16) | |
| New_file="EN-{}".format(file) | |
| read_size=1024 |