Skip to content

Instantly share code, notes, and snippets.

View rafaelldi's full-sized avatar
😜

Rival Abdrakhmanov rafaelldi

😜
View GitHub Profile
@rafaelldi
rafaelldi / WinDbg and LLDB commands.md
Last active January 31, 2024 13:58
WinDbg and LLDB commands

Starting

Command WinDbg LLDB
Start windbg {executable} [{args}] lldb {executable} [--args]
Attach windbg -p {pid} lldb --attach-pid {pid}

Symbols and modules

Command WinDbg LLDB
(Re)load symbols lb {module-name} target symbols add {symbol-file-path}
@rafaelldi
rafaelldi / Monitoring TCP & UDP connections.md
Last active May 16, 2023 09:07
Monitoring TCP & UDP connections

Checking Windows network configuration

Command Alternative Description
Get-NetIPConfiguration ipconfig -all displays the IP network configuration
Get-NetAdapter shows various network adapter properties
Get-NetRoute netstat -r prints the IP routing table
Get-NetTCPSetting gets system TCP settings
Get-NetUDPSetting gets system UDP settings
Get-NetFirewallRule lists firewall rulles