mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-09 21:53:24 +00:00
Merge pull request #238207 from fabaff/nbutools
nbutools: init at unstable-2023-06-06
This commit is contained in:
commit
4de08cf6bc
41
pkgs/tools/security/nbutools/default.nix
Normal file
41
pkgs/tools/security/nbutools/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ lib
|
||||||
|
, python3
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "nbutools";
|
||||||
|
version = "unstable-2023-06-06";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "airbus-seclab";
|
||||||
|
repo = "nbutools";
|
||||||
|
rev = "d82fb96d5623e7d3076cc0a1db06a640f63b9552";
|
||||||
|
hash = "sha256-YOiFlTIDpeTFOHPU37v0pYf8s3HdaE/4pnd9qrsFtSI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
aiodns
|
||||||
|
aiohttp
|
||||||
|
beautifulsoup4
|
||||||
|
graphviz
|
||||||
|
jaydebeapi
|
||||||
|
jpype1
|
||||||
|
lxml
|
||||||
|
pycryptodome
|
||||||
|
requests
|
||||||
|
scapy
|
||||||
|
tabulate
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tools for offensive security of NetBackup infrastructures";
|
||||||
|
homepage = "https://github.com/airbus-seclab/nbutools";
|
||||||
|
license = with licenses; [ gpl2Only ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -9611,6 +9611,8 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nbutools = callPackage ../tools/security/nbutools { };
|
||||||
|
|
||||||
ncrack = callPackage ../tools/security/ncrack { };
|
ncrack = callPackage ../tools/security/ncrack { };
|
||||||
|
|
||||||
nerdctl = callPackage ../applications/networking/cluster/nerdctl { };
|
nerdctl = callPackage ../applications/networking/cluster/nerdctl { };
|
||||||
|
Loading…
Reference in New Issue
Block a user