Update Cheat Sheet.md

This commit is contained in:
AbdullahRizwan101 2020-11-03 12:47:59 -05:00 committed by GitHub
parent 6f53f6a000
commit afee308c1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,6 +60,20 @@ wget http://<ip>:port/<file>
* `fcrackzip -u -D -p <path_to_wordlist> <archive.zip>`
### killing a running job in same shell
`jobs`
```
Find it's job number
$ jobs
[1]+ Running sleep 100 &
$ kill %1
[1]+ Terminated sleep 100
```
# Windows
### Adding User