Difference between revisions of "Spawn Shell"

From Void-Byte
Jump to navigation Jump to search
(Created page with "python -c 'import pty; pty.spawn("/bin/sh")' python2.7 -c 'import pty; pty.spawn("/bin/sh")' python3 -c 'import pty; pty.spawn("/bin/sh")'")
 
(No difference)

Latest revision as of 15:46, 28 November 2020

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


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


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