about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/logmap/default.nix
blob: d6d4cb0f1a54e5210a20a37b2bc5c6248cdc9adf (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
{ lib
, fetchFromGitHub
, python3
}:

python3.pkgs.buildPythonApplication rec {
  pname = "logmap";
  version = "unstable-2021-12-15";
  format = "other";

  src = fetchFromGitHub {
    owner = "zhzyker";
    repo = pname;
    rev = "5040707b4ae260830072de93ccd6a23615073abf";
    sha256 = "sha256-LOGjK5l/gaKObWbC9vaLruE8DdDsabztnEW/TjvCdtE=";
  };

  propagatedBuildInputs = with python3.pkgs; [
    requests
  ];

  installPhase = ''
    runHook preInstall
    install -vD ${pname}.py $out/bin/${pname}
    runHook postInstall
  '';

  meta = with lib; {
    description = "Tools for fuzzing Log4j2 jndi injection";
    homepage = "https://github.com/zhzyker/logmap";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ fab ];
  };
}