about summary refs log tree commit diff
path: root/pkgs/tools/security/smbscan/default.nix
blob: a3a2257c065c3ab746a18b794c5bc339f9bf9716 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 ];
  };
}