repo push

This commit is contained in:
c0decave
2021-09-10 12:39:21 +02:00
parent 37bb96d47f
commit e00ac3bf10
17 changed files with 5782 additions and 0 deletions

15
tools/findpattern.py Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/python3
from pwn import *
def main():
address = raw_input("[+] Enter address from debugger: ").strip()
hex_address = "0x" + address
unpacked = p32(int(hex_address, 16))
print("[+] Offset is: " + str(cyclic_find(unpacked)))
if __name__ == "__main__":
main()