d4Rk's 1337 h4x0r guide
  • Introduction
  • Reconnaissance
    • Recon
    • OSINT
  • Enumeration
    • Network discovery
    • Port scanning
    • Webserver scanning
    • Exploit detection
    • Fuzzing
    • Process monitoring
  • Exploitation
    • Shells
      • Shells
      • TTY
    • Passwords
      • Hashcat
      • John the Ripper (JTR)
      • Hydra
      • Passwords & credentials
    • Web
      • SQL injection (SQLi)
      • Cross site scripting (XSS)
      • File inclusions (LFI, RFI)
      • Directory traversal
      • Cross site request forgery (CSRF)
      • XML external entity (XXE)
      • Cross origin resource sharing (CORS)
      • Server-side request forgery (SSRF)
      • Server-side template injection (SSTI)
      • Access control vulnerabilities
      • Authentication vulnerabilities
      • JWT attacks
      • File uploads
      • Host header attacks
      • Clickjacking
      • Logic flaws
      • OS command injection
      • HTTP Request smuggling
      • Insecure deserialization
      • DOM-based
      • WebSockets
      • Web cache poisoning
    • Buffer overflow
      • General
      • Linux
      • Windows
    • Misc
      • Evasion
      • SQSH
  • Privilege escalation
    • Linux
      • Overview
    • Windows
      • Overview
      • Mimikatz
      • PowerSploit
      • Juicy Potato, Rotten Potato (NG)
      • JAWS
      • Empire
      • SILENTTRINITY
  • Post exploitation
    • Loot
    • Pivoting
    • Standalone Tools
  • Services
    • TCP
      • TCP 21: FTP
      • TCP 22: SSH
      • TCP 23: Telnet
      • TCP 25, 587: SMTP
      • TCP 53: DNS
      • TCP 80, 443: HTTP(S)
      • TCP 88: Kerberos
      • TCP 110, 995: POP3(S)
      • TCP 111: rpcbind
      • TCP 135: MSRPC
      • TCP 139, 445: NetBIOS, SMB
      • TCP 143, 993: IMAP(S)
      • TCP 389, 636, 3268, 3269: LDAP
      • TCP 1433, UDP 1434: MSSQL Server
      • TCP 2049: NFS
      • TCP 3306: MySQL
      • TCP 3389: RDP
      • TCP 5985: WinRM
      • TCP 6379: Redis
      • TCP 27017: MongoDB
    • UDP
      • UDP 137, 138, TCP 139: NetBIOS
      • UDP 161: SNMP
    • Misc
      • Active Directoy
      • Apache Tomcat
      • Drupal
      • H2 Databases
      • IIS
      • IPsec
      • IRC
      • Java Applets
      • Java RMI
      • Jenkins
      • Joomla
      • Oracle
      • PHP
      • SharePoint
      • WordPress
  • File transfer
    • Overview
    • Wget
    • Pure-FTPd
    • TFTP
    • VBScript: Wget clone
  • Misc
    • Bash
    • Burp Suite
    • Crypto
    • Ebowla
    • Firefox extensions
    • Impacket
    • Memory forensics
    • Metasploit Framework (MSF)
    • MITM
    • Msfvenom
    • Pass the Hash (PTH)
    • PowerShell
    • PowerShell on Linux
    • Wireshark
    • Wordlists and dictionaries
  • Bug Bounty
    • Platforms
    • Tools
Powered by GitBook
On this page
  • Related
  • Online cracker
  • Online attacks
  • Tools
  • identify hash
  • Key spaced brute force
  • crunch
  • fgdump
  • Windows Credentials Editor (WCE)
  • responder.py (windows creds)
  • bypassuac
  • Specific services, apps, files
  • fcrackzip
Edit on GitHub
  1. Exploitation
  2. Passwords

Passwords & credentials

PreviousHydraNextWeb

Last updated 3 years ago

Related

Online cracker

Online attacks

patator.py

Patator is a multi-purpose brute-forcer, with a modular design and a flexible usage.

python -W ignore patator.py ssh_login host=<ip> user=FILE0 0=/root/usernames password=Pass.txt

Tools

identify hash

hashid <hash>
hash-identifier

Key spaced brute force

crunch

crunch 6 6 0123456789ABCDEF -o crunch1.txt

Pre-defined character set

crunch 4 4 -f /usr/share/crunch/charset.lst mixalpha

More customized passwords

@ - Lower case alpha characters
, - Upper case alpha characters
% - Numeric characters
^ - Special characters including space 
crunch 8 8 -t ,@@^^%%%

fgdump

In memory attack (injecting dll), for system passwords

fgdump.exe
type 127.0.0.1.pwdump

Alternative: Pwdump

Windows Credentials Editor (WCE)

Windows Credentials Editor (WCE) is a security tool to list logon sessions and add, change, list and delete associated credentials (ex.: LM/NT hashes, plaintext passwords and Kerberos tickets).

List logon sessions

wce -l

Dump clear text passwords

wce -w

responder.py (windows creds)

python ./Responder.py -i <own-ip> -b Off -r Off -w On

bypassuac

Used to bypass UAC post exploitation http://thehackerplaybook.com/Download/bypassuac.zip

run bypassuac
background
session -i 2
getsystem

Specific services, apps, files

fcrackzip

fcrackzip -u -D -p <file-with-pws> file.zip

Responder is a LLMNR, NBT-NS and MDNS poisoner, with built-in HTTP_SMB_MSSQL_FTP_LDAP rogue authentication server supporting NTLMv1/NTLMv2/LMv2, Extended Security NTLMSSP and Basic HTTP authentication.

A braindead program for cracking encrypted ZIP archives. Forked from http://oldhome.schmorp.de/marc/fcrackzip.html

Wordlists and dictionaries
CrackStation
rumkin.com
GitHub - lanjelot/patator
Hashcat
John the Ripper (JTR)
Hashes.com
Download Site
GitHub - lgandx/Responder
GitHub - hyc/fcrackzip