mirror of
https://github.com/AbdullahRizwan101/CTF-Writeups
synced 2024-11-22 03:53:03 +00:00
Update Cheat Sheet.md
This commit is contained in:
parent
6f53f6a000
commit
afee308c1d
1 changed files with 14 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue