2021-01-18 06:49:46 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
}:
|
2018-02-09 09:00:15 +00:00
|
|
|
|
2019-11-04 18:41:24 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2021-07-08 22:43:10 +01:00
|
|
|
pname = "theharvester";
|
2021-12-03 11:05:38 +00:00
|
|
|
version = "4.0.3";
|
2018-02-09 09:00:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "laramies";
|
2019-05-19 17:50:11 +01:00
|
|
|
repo = pname;
|
2021-03-10 01:01:55 +00:00
|
|
|
rev = version;
|
2021-12-03 11:05:38 +00:00
|
|
|
sha256 = "sha256-Ckouhe/Uq6Dv9p/LRpPQkiKuYrwrl/Z7KkYYamDHav8=";
|
2018-02-09 09:00:15 +00:00
|
|
|
};
|
|
|
|
|
2021-01-18 06:49:46 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
aiodns
|
2021-07-08 22:43:10 +01:00
|
|
|
aiofiles
|
2021-01-18 06:49:46 +00:00
|
|
|
aiohttp
|
|
|
|
aiomultiprocess
|
|
|
|
aiosqlite
|
|
|
|
beautifulsoup4
|
|
|
|
censys
|
|
|
|
certifi
|
2021-06-22 22:38:50 +01:00
|
|
|
dnspython
|
2021-07-08 22:43:10 +01:00
|
|
|
fastapi
|
2021-01-18 06:49:46 +00:00
|
|
|
lxml
|
|
|
|
netaddr
|
2021-11-10 21:27:39 +00:00
|
|
|
orjson
|
2021-01-18 06:49:46 +00:00
|
|
|
plotly
|
|
|
|
pyppeteer
|
|
|
|
pyyaml
|
|
|
|
requests
|
|
|
|
retrying
|
|
|
|
shodan
|
2021-07-08 22:43:10 +01:00
|
|
|
slowapi
|
|
|
|
starlette
|
|
|
|
uvicorn
|
2021-01-18 06:49:46 +00:00
|
|
|
uvloop
|
2019-11-04 18:41:24 +00:00
|
|
|
];
|
2018-02-09 09:00:15 +00:00
|
|
|
|
2021-07-08 22:43:10 +01:00
|
|
|
checkInputs = with python3.pkgs; [
|
|
|
|
pytest
|
|
|
|
pytest-asyncio
|
|
|
|
];
|
2018-02-09 09:00:15 +00:00
|
|
|
|
2019-11-04 18:41:24 +00:00
|
|
|
# We don't run other tests (discovery modules) because they require network access
|
2021-07-08 22:43:10 +01:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
pytest tests/test_myparser.py
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
2018-02-09 09:00:15 +00:00
|
|
|
|
2019-11-04 18:41:24 +00:00
|
|
|
meta = with lib; {
|
2018-02-09 09:00:15 +00:00
|
|
|
description = "Gather E-mails, subdomains and names from different public sources";
|
2019-11-04 18:41:24 +00:00
|
|
|
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.
|
|
|
|
'';
|
2018-02-09 09:00:15 +00:00
|
|
|
homepage = "https://github.com/laramies/theHarvester";
|
2019-11-04 18:41:24 +00:00
|
|
|
maintainers = with maintainers; [ c0bw3b treemo ];
|
2021-01-18 06:49:46 +00:00
|
|
|
license = licenses.gpl2Only;
|
2018-02-09 09:00:15 +00:00
|
|
|
};
|
|
|
|
}
|