depot/third_party/nixpkgs/pkgs/tools/security/theharvester/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

57 lines
1.4 KiB
Nix

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "theHarvester";
version = "3.2.3";
src = fetchFromGitHub {
owner = "laramies";
repo = pname;
rev = version;
sha256 = "02jhk34znpvq522pqr3x4c0rljw37x62znwycijf1zx81dpbn4rm";
};
propagatedBuildInputs = with python3.pkgs; [
aiodns
aiohttp
aiomultiprocess
aiosqlite
beautifulsoup4
censys
certifi
dnspython
gevent
grequests
lxml
netaddr
plotly
pyppeteer
pyyaml
requests
retrying
shodan
texttable
uvloop
];
checkInputs = [ python3.pkgs.pytest ];
checkPhase = "runHook preCheck ; pytest tests/test_myparser.py ; runHook postCheck";
# We don't run other tests (discovery modules) because they require network access
meta = with lib; {
description = "Gather E-mails, subdomains and names from different public sources";
longDescription = ''
theHarvester is a very simple, yet effective tool designed to be used in the early
stages of a penetration test. Use it for open source intelligence gathering and
helping to determine an entity's external threat landscape on the internet. The tool
gathers emails, names, subdomains, IPs, and URLs using multiple public data sources.
'';
homepage = "https://github.com/laramies/theHarvester";
maintainers = with maintainers; [ c0bw3b treemo ];
license = licenses.gpl2Only;
};
}