To install masscan on replit we run
install-pkg libpcap* masscan
and this should give us masscan
A good collection of nix files at nix-security-box
remember to add pkg. in front of all the pkg names
To install masscan on replit we run
install-pkg libpcap* masscan
and this should give us masscan
A good collection of nix files at nix-security-box
remember to add pkg. in front of all the pkg names
| { pkgs }: { | |
| deps = [ | |
| pkgs.bashInteractive | |
| pkgs.python39Full | |
| pkgs.arp-scan | |
| pkgs.ipscan | |
| pkgs.masscan | |
| pkgs.naabu | |
| pkgs.nmap | |
| pkgs.sx-go | |
| pkgs.rustscan | |
| pkgs.zmap | |
| ]; | |
| } |