smbscan: init at unstable-2022-05-26

This commit is contained in:
Fabian Affolter 2022-06-12 22:13:05 +02:00
parent 5c71a549d9
commit 1cd4b21e07
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "smbscan";
version = "unstable-2022-05-26";
format = "setuptools";
src = fetchFromGitHub {
owner = "jeffhacks";
repo = pname;
rev = "1b19d6040cab279b97bf002934bf6f8b34d6a8b4";
hash = "sha256-cL1mnyzIbHB/X4c7sZKVv295LNnjqwR8TZBMe9s/peg=";
};
propagatedBuildInputs = with python3.pkgs; [
impacket
python-slugify
];
installPhase = ''
runHook preInstall
install -vD smbscan.py $out/bin/smbscan
install -vd $out/${python3.sitePackages}/
cp {scan_internals,scan,setup,local_logging,arg_parser}.py $out/${python3.sitePackages}
install -vd $out/${python3.sitePackages}/wordlists/
cp wordlists/pattern* $out/${python3.sitePackages}/wordlists
runHook postInstall
'';
meta = with lib; {
description = "Tool to enumerate file shares";
homepage = "https://github.com/jeffhacks/smbscan";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1209,6 +1209,8 @@ with pkgs;
sdlookup = callPackage ../tools/security/sdlookup { };
smbscan = callPackage ../tools/security/smbscan { };
spectre-cli = callPackage ../tools/security/spectre-cli { };
sx-go = callPackage ../tools/security/sx-go { };