Skip to content

Instantly share code, notes, and snippets.

@CypherpunkSamurai
Last active March 6, 2022 15:01
Show Gist options
  • Select an option

  • Save CypherpunkSamurai/cb3a17e0099a9c58884d23c432f985db to your computer and use it in GitHub Desktop.

Select an option

Save CypherpunkSamurai/cb3a17e0099a9c58884d23c432f985db to your computer and use it in GitHub Desktop.
How to install masscan on replit

Installing Masscan on Replit

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
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment