Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-04-23 00:15:39 +00:00
committed by GitHub
53 changed files with 967 additions and 204 deletions
+26
View File
@@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "earlybird";
version = "1.25.0";
src = fetchFromGitHub {
owner = "americanexpress";
repo = "earlybird";
# According to the GitHub repo, the latest version *is* 1.25.0, but they
# tagged it as "refs/heads/main-2"
rev = "4f365f1c02972dc0a68a196a262912d9c4325b21";
sha256 = "UZXHYBwBmb9J1HrE/htPZcKvZ+7mc+oXnUtzgBmBgN4=";
};
vendorSha256 = "oSHBR1EvK/1+cXqGNCE9tWn6Kd/BwNY3m5XrKCAijhA=";
meta = with lib; {
description = "A sensitive data detection tool capable of scanning source code repositories for passwords, key files, and more";
homepage = "https://github.com/americanexpress/earlybird";
license = licenses.asl20;
maintainers = teams.determinatesystems.members;
};
}
+35
View File
@@ -0,0 +1,35 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "ntlmrecon";
version = "0.4";
disabled = python3.pythonOlder "3.6";
src = fetchFromGitHub {
owner = "pwnfoo";
repo = "NTLMRecon";
rev = "v-${version}";
sha256 = "0rrx49li2l9xlcax84qxjf60nbzp3fgq77c36yqmsp0pc9i89ah6";
};
propagatedBuildInputs = with python3.pkgs; [
colorama
iptools
requests
termcolor
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "ntlmrecon" ];
meta = with lib; {
description = "Information enumerator for NTLM authentication enabled web endpoints";
homepage = "https://github.com/pwnfoo/NTLMRecon";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+38
View File
@@ -0,0 +1,38 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "xorex";
version = "0.3.0";
format = "other";
src = fetchFromGitHub {
owner = "Neo23x0";
repo = "xorex";
rev = version;
sha256 = "rBsOSXWnHRhpLmq20XBuGx8gGBM8ouMyOISkbzUcvE4=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin
chmod +x xorex.py
mv xorex.py $out/bin/xorex
runHook postInstall
'';
propagatedBuildInputs = with python3.pkgs; [
colorama
pefile
];
meta = with lib; {
description = "XOR Key Extractor";
homepage = "https://github.com/Neo23x0/xorex";
license = licenses.asl20;
maintainers = teams.determinatesystems.members;
};
}
+39
View File
@@ -0,0 +1,39 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "yarGen";
version = "0.23.4";
format = "other";
src = fetchFromGitHub {
owner = "Neo23x0";
repo = "yarGen";
rev = version;
sha256 = "6PJNAeeLAyUlZcIi0g57sO1Ex6atn7JhbK9kDbNrZ6A=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin
chmod +x yarGen.py
mv yarGen.py $out/bin/yargen
runHook postInstall
'';
propagatedBuildInputs = with python3.pkgs; [
scandir
pefile
lxml
];
meta = with lib; {
description = "A generator for YARA rules";
homepage = "https://github.com/Neo23x0/yarGen";
license = licenses.bsd3;
maintainers = teams.determinatesystems.members;
};
}