Putting it all together

This commit is contained in:
id101010
2019-10-11 14:11:30 +02:00
parent 1b53b52bad
commit 6a1d065e5d
2 changed files with 80 additions and 1 deletions

View File

@@ -11,10 +11,23 @@ $ python rshell.py
```
It will open a reverse shell on port 31337 on the local system. You can connect
to it using `nc 0.0.0.0 31337`.
to it using
```bash
$ nc 0.0.0.0 31337
```
## self_copy_test.py
Code snippet that searches files based on a search string and copies its
content into all matched files. There is a local `victims` folder for testing
purposes.
## Putting things together
```bash
$ python self_copy_rshell.py
```
Runs code that seraches for victim files and deploys a appends the reverse
shell snippet. The example only searches the local `victims` folder.