-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ pkgs, ... }: { | ||
home.packages = with pkgs; [ | ||
# Networking | ||
conntrack-tools # Connection tracking userspace tools | ||
iperf # Tool to measure IP bandwidth using UDP or TCP | ||
iputils # arping, clockdif, ping, tracepath | ||
mtr # Network diagnostics tool | ||
netcat-gnu # Utility which reads and writes data across network | ||
nmap # Network exploration tool and security scanner | ||
omping # multicast ping | ||
# pietrasanta-traceroute # Traceroute utility | ||
tcpdump # Network packet analyzer | ||
termshark # Terminal UI for tshark | ||
# tshark # Network protocol analyzer | ||
wireshark # Network protocol analyzer | ||
|
||
# Proxy | ||
mitmproxy # Intercept HTTP traffic | ||
charles # Web debugging proxy application | ||
requestly # mockup and API tool | ||
|
||
# Security | ||
burpsuite # Web vulnerability scanner | ||
nikto # Web server scanner | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters