mirror of
https://github.com/AbdullahRizwan101/CTF-Writeups
synced 2024-11-10 06:34:17 +00:00
Update Cheat Sheet.md
This commit is contained in:
parent
b7901e12b0
commit
29cba23b58
1 changed files with 12 additions and 0 deletions
|
@ -470,6 +470,18 @@ To get a RCE
|
|||
* using `crackstation`
|
||||
* using `seclists`
|
||||
|
||||
### Hydra
|
||||
|
||||
When the login shows an error message<br/>
|
||||
|
||||
`hydra -l admin -P /usr/share/wordlists/rockyou.txt <ip> http-post-form '/login.php:username=^USE
|
||||
R^&password=^PASS^:F=Incorrect!' -t 64 -V -I`
|
||||
|
||||
|
||||
When the login doesn't show an error message so we can specify a `success (s)` string which is shown after we login to a site , typically logout is shown to us.<br/>
|
||||
`hydra -l admin -P /usr/share/wordlists/rockyou.txt <ip> http-post-form '/login.php:username=^USE
|
||||
R^&password=^PASS^:S=logout' -t 64 -V -I`
|
||||
|
||||
# Hash Cracking
|
||||
|
||||
### Hashcat
|
||||
|
|
Loading…
Reference in a new issue