Skip to content

Instantly share code, notes, and snippets.

View cyberheartmi9's full-sized avatar
:octocat:
Breaking stuff

PikaChu cyberheartmi9

:octocat:
Breaking stuff
View GitHub Profile
This file has been truncated, but you can view the full file.
ver
v
t
id
tid
cid
z
gdpr
_v
jid
# 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/
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/
#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
strings file
binwalk -e file
# mounting
mknod /dev/mtdblock0 b 31 0
@cyberheartmi9
cyberheartmi9 / APT
Last active December 9, 2020 18:42
[ 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)
@cyberheartmi9
cyberheartmi9 / Linux-Enum.sh
Last active October 11, 2020 09:57
audit script for linux servers
#!/bin/bash
cat <<EOF
m " mmmmmm
# mmm m mm m m m m # m mm m m mmmmm
# # #" # # # #m# #mmmmm #" # # # # # #
# # # # # # m#m # # # # # # # #
🔥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
import json
import re
import csv
from datetime import datetime
import time
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