trevorspray: init at 2.3.1

Modular password spraying tool

https://github.com/blacklanternsecurity/TREVORspray
This commit is contained in:
Fabian Affolter 2025-07-05 10:15:30 +02:00
parent ccd3ab8971
commit 4c7b571daa

View File

@ -0,0 +1,37 @@
{
lib,
python3,
fetchPypi,
}:
python3.pkgs.buildPythonApplication rec {
pname = "trevorspray";
version = "2.3.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-2kprXyZUAe8lBV48mBpmkhBtOoxgrP/TOTdS3Kw2WTE=";
};
build-system = with python3.pkgs; [ poetry-core ];
dependencies = with python3.pkgs; [
beautifulsoup4
exchangelib
mechanicalsoup
pygments
pysocks
sh
tldextract
trevorproxy
];
meta = {
description = "Modular password spraying tool";
homepage = "https://github.com/blacklanternsecurity/TREVORspray";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "trevorspray";
};
}