sccmhunter: 1.0.10 -> 1.1.10

This commit is contained in:
R. Ryantm 2025-08-07 23:33:48 +00:00
parent e960ddc1a5
commit 2ae6edac69

View File

@ -7,14 +7,14 @@
}:
python312Packages.buildPythonApplication rec {
pname = "sccmhunter";
version = "1.0.10";
version = "1.1.10";
pyproject = true;
src = fetchFromGitHub {
owner = "garrettfoster13";
repo = "sccmhunter";
rev = "v${version}";
hash = "sha256-h7P+ry4J26Hm1s9U37t1EDWBaYRL32WA3sk8caA1edg=";
tag = "v${version}";
hash = "sha256-657xwD5Sk8vU3MSGj7Yuu/lh7SRS25VFk/igKhq1pks=";
};
build-system = with python312Packages; [
@ -43,7 +43,7 @@ python312Packages.buildPythonApplication rec {
meta = {
description = "Post exploitation tool to identify and attack SCCM related assets in an Active Directory domain";
homepage = "https://github.com/garrettfoster13/sccmhunter";
changelog = "https://github.com/garrettfoster13/sccmhunter/blob/${src.rev}/changelog.md";
changelog = "https://github.com/garrettfoster13/sccmhunter/blob/${src.tag}/changelog.md";
license = lib.licenses.mit;
mainProgram = "sccmhunter.py";
maintainers = with lib.maintainers; [ purpole ];