diff --git a/README.md b/README.md index d9c1604..179a083 100644 --- a/README.md +++ b/README.md @@ -375,10 +375,11 @@ This is the most popular method for spawnings a tty shell. The target server sho |Methord | Command | |----------|-----------| - | Python3 | python -c "import pty;pty.spawn('/bin/bash')" | - |* Echo: | echo 'os.system('/bin/bash')'| + | * Python | python -c "import pty;pty.spawn('/bin/bash')" | + | * Python3 | python3 -c "import pty;pty.spawn('/bin/bash')" | + | * Echo: | echo 'os.system('/bin/bash')'| | * sh: | /bin/sh -i| -| * Bash: | /bin/bash -i| + | * Bash: | /bin/bash -i| | * Perl: | perl -e 'exec "/bin/sh";'| | * Ruby: | ruby: exec "/bin/sh"| | * Lua: | lua: os.execute('/bin/sh')|