mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
d59488808a
Tool to discover endpoints, potential parameters, and a target specific wordlist for a given target https://github.com/xnl-h4ck3r/xnLinkFinder
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "xnlinkfinder";
|
|
version = "6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xnl-h4ck3r";
|
|
repo = "xnLinkFinder";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-UMHMWHLJOhEeR+vO4YE3aNzdsvMAXPpQHQgdFf1QeMY=";
|
|
};
|
|
|
|
patches = [
|
|
# Clean-up setup.py
|
|
(fetchpatch {
|
|
name = "clean-up.patch";
|
|
url = "https://github.com/xnl-h4ck3r/xnLinkFinder/commit/8ef5e2ecf4c627b389cb7bb526f10fffe84acc13.patch";
|
|
hash = "sha256-14j3dFgehhPdqAe4e9FsB8sD66hKnNaPmDJRV1mQTDo=";
|
|
})
|
|
];
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
beautifulsoup4
|
|
html5lib
|
|
lxml
|
|
psutil
|
|
pyyaml
|
|
requests
|
|
termcolor
|
|
urllib3
|
|
];
|
|
|
|
# Project has no test
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "xnLinkFinder" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to discover endpoints, potential parameters, and a target specific wordlist for a given target";
|
|
homepage = "https://github.com/xnl-h4ck3r/xnLinkFinder";
|
|
changelog = "https://github.com/xnl-h4ck3r/xnLinkFinder/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "xnLinkFinder";
|
|
};
|
|
}
|