about summary refs log tree commit diff
path: root/pkgs/by-name/hb/hb-honeypot/package.nix
blob: 9af60395731e0abd0488cee61c707ded92f0b860 (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
{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, perl
}:

stdenv.mkDerivation {
  pname = "hb-honeypot";
  version = "0-unstable-2024-02-13";

  src = fetchFromGitHub {
    owner = "D3vil0p3r";
    repo = "hb-honeypot";
    rev = "06ca7336bfb7deca54eae2cee239496d26f21b5b";
    hash = "sha256-vnq7u/sqDLD+PsZ9DlxfjNuTkO8lhZujjAgmTcWf/3I=";
  };

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    runHook preInstall
    mkdir -p $out/{bin,share/hb-honeypot}
    cp hb-honeypot.pl $out/share/hb-honeypot/
    makeWrapper ${perl}/bin/perl $out/bin/hb-honeypot \
      --add-flags "$out/share/hb-honeypot/hb-honeypot.pl"
    runHook postInstall
  '';

  meta = with lib; {
    description = "Script that listens on TCP port 443 and responds with completely bogus SSL heartbeat responses";
    mainProgram = "hb-honeypot";
    homepage = "https://github.com/D3vil0p3r/hb-honeypot";
    maintainers = with maintainers; [ d3vil0p3r ];
    platforms = platforms.unix;
    license = licenses.gpl3Plus;
  };
}