mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "confluencepot";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SIFalcon";
|
|
repo = "confluencePot";
|
|
rev = "v${version}";
|
|
hash = "sha256-jIbL6prOUII8o9FghIYa80BytJ9SSuyj/TZmAxwAbJk=";
|
|
};
|
|
|
|
vendorHash = "sha256-nzPHx+c369T4h9KETqMurxZK3LsJAhwBaunkcWIW3Ps=";
|
|
|
|
postPatch = ''
|
|
substituteInPlace confluencePot.go \
|
|
--replace "confluence.html" "$out/share/confluence.html"
|
|
'';
|
|
|
|
postInstall = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
|
|
mv $out/bin/confluencePot $out/bin/${pname}
|
|
'';
|
|
|
|
preFixup = ''
|
|
# Install HTML file
|
|
install -vD confluence.html -t $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Honeypot for the Atlassian Confluence OGNL injection vulnerability";
|
|
homepage = "https://github.com/SIFalcon/confluencePot";
|
|
longDescription = ''
|
|
ConfluencePot is a simple honeypot for the Atlassian Confluence unauthenticated
|
|
and remote OGNL injection vulnerability (CVE-2022-26134).
|
|
'';
|
|
license = with licenses; [ agpl3Plus ];
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "confluencepot";
|
|
};
|
|
}
|