Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 162 Bytes

spawn-tty-shell.md

File metadata and controls

20 lines (13 loc) · 162 Bytes

Spawn TTY Shell

Python

python -c 'import pty; pty.spawn("/bin/sh")'

Bash

/bin/sh -i

Perl

perl —e 'exec "/bin/sh";'