🛠 GeekAnarchy Toolset

Tools I use — no fluff, no ads, just raw power.

Sysadmin & Network

ToolDescriptionUsage
nmapNetwork scannernmap -sV 192.168.1.0/24
masscanHigh-speed port scannermasscan -p1-65535 10.0.0.0/8
netstatShow network connectionsnetstat -tulnp
iftopReal-time bandwidth usageiftop -i eth0
lsofList open fileslsof -i
tcpdumpNetwork packet capturetcpdump -i eth0
htopInteractive process viewerhtop
arpingSend ARP requestsarping 192.168.1.1
hostnameDisplay/set hostnamehostname
cronManage scheduled taskscrontab -e

Dev & Automation

ToolDescriptionUsage
jqJSON parserjq . file.json
ansibleConfiguration managementansible-playbook playbook.yml
dockerContainerization tooldocker run -it ubuntu
gitVersion controlgit clone https://github.com/repo.git
makeBuild automationmake install
vimText editorvim script.sh
tmuxTerminal multiplexertmux new -s dev
curlTransfer datacurl -I https://example.com
awkPattern scanningawk '{print $1}' file.txt
cronJob schedulingcrontab -e

Security

ToolDescriptionUsage
hashcatPassword crackerhashcat -m 0 hash.txt wordlist.txt
nmapNetwork scanning with scriptsnmap --script vuln 192.168.1.1
johnPassword cracking tooljohn --wordlist=passwords.txt hashes.txt
hydraNetwork login crackerhydra -l admin -P passwords.txt 192.168.1.1 ssh
niktoWeb server vulnerability scannernikto -h http://example.com
tcpdumpPacket capture tooltcpdump -i eth0
gpgEncryption utilitygpg -c secrets.txt
lynisSecurity auditing toollynis audit system
clamavAntivirus scannerclamscan -r /home
fail2banBan IPs with failed loginsfail2ban-client status sshd

Disk & File Utilities

ToolDescriptionUsage
ddDisk cloningdd if=/dev/sdX of=backup.img
rsyncSync files/directoriesrsync -avh source/ dest/
tarArchive/compress filestar -czvf archive.tar.gz folder/
gzipCompress filesgzip filename.txt
partedPartition managementparted /dev/sda
fdiskManage disk partitionsfdisk /dev/sda
mountMount devicesmount /dev/sda1 /mnt
umountUnmount devicesumount /mnt
lsblkList block deviceslsblk
dfDisk usage infodf -h

Networking & DNS

ToolDescriptionUsage
tracerouteTrace network routetraceroute google.com
pingCheck network connectivityping 8.8.8.8
digDNS lookupdig example.com
nslookupQuery DNS recordsnslookup example.com
mtrNetwork diagnostics toolmtr google.com
ipShow/manipulate routingip a
netcatTCP/UDP toolnc -lvp 1234
tcpflowCapture TCP traffictcpflow -i eth0
arpShow ARP cachearp -a
whoisDomain info lookupwhois example.com

Maker & Pi Tools

ToolDescriptionUsage
rpi-imagerWrite OS imagesGUI
gpioControl GPIO pinsgpio readall
i2cdetectScan I2C busi2cdetect -y 1
avrdudeFlash AVR firmwareavrdude -p m328p -c usbasp -U flash:w:file.hex
esptoolFlash ESP boardsesptool.py write_flash 0x00000 firmware.bin
platformioEmbedded dev platformpio run -t upload
minicomSerial terminalminicom -D /dev/ttyUSB0
picocomLightweight serial commspicocom /dev/ttyUSB0
wiringPiGPIO control toolsgpio -g mode 17 out
arduino-cliArduino command linearduino-cli compile --fqbn arduino:avr:uno sketch

Windows Tools

ToolDescriptionUsage
wingetPackage managerwinget install nmap
powershellTask automation shellGet-Process
chocoChocolatey package managerchoco install curl
tasklistShow running taskstasklist
ipconfigNetwork configipconfig /all
netstatNetwork connectionsnetstat -ano
regRegistry editorreg query HKCU\Software
sfcSystem file checkersfc /scannow
msinfo32System informationmsinfo32
schtasksSchedule tasksschtasks /query /fo LIST

PowerShell

CommandDescriptionUsage
Get-ProcessLists running processesGet-Process
Get-ServiceLists Windows servicesGet-Service
Set-ExecutionPolicyChange script execution policySet-ExecutionPolicy RemoteSigned
Get-EventLogRead event logsGet-EventLog -LogName System
Test-ConnectionPing with PowerShellTest-Connection google.com
Get-ContentView file contentGet-Content .\file.txt
Invoke-WebRequestDownload a fileInvoke-WebRequest -Uri https://site -OutFile file.zip
Start-ProcessRun a new processStart-Process notepad.exe
New-ItemCreate a new file or folderNew-Item -Path . -Name test.txt -ItemType File
Remove-ItemDelete file or folderRemove-Item test.txt