Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2899,6 +2899,14 @@
githubId = 3229981;
name = "Duncan Fairbanks";
};
BonusPlay = {
name = "Bonus";
email = "nixos@bonusplay.pl";
matrix = "@bonus:bonusplay.pl";
github = "BonusPlay";
githubId = 8405359;
keys = [ { fingerprint = "8279 6487 A4CA 2A28 E8B3 3CD6 C7F9 9743 6A20 4683"; } ];
};
booklearner = {
name = "booklearner";
email = "booklearner@proton.me";
Expand Down
2 changes: 2 additions & 0 deletions pkgs/tools/security/ghidra/extensions.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ lib.makeScope newScope (self: {
buildGhidraScripts
;

findcrypt = self.callPackage ./extensions/findcrypt { };

ghidraninja-ghidra-scripts = self.callPackage ./extensions/ghidraninja-ghidra-scripts { };

ghidra-delinker-extension = self.callPackage ./extensions/ghidra-delinker-extension {
Expand Down
28 changes: 28 additions & 0 deletions pkgs/tools/security/ghidra/extensions/findcrypt/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
fetchFromGitHub,
buildGhidraExtension,
}:
let
version = "3.0.1";
in
buildGhidraExtension {
pname = "findcrypt";
inherit version;

src = fetchFromGitHub {
owner = "antoniovazquezblanco";
repo = "GhidraFindcrypt";
rev = "v${version}";
Comment thread
h7x4 marked this conversation as resolved.
Outdated
hash = "sha256-/KA95NdoQFvR6XSGCHkX+ySKfftK84hJ8zjAvt0+O0o=";
};

meta = {
description = "Ghidra analysis plugin to locate cryptographic constants";
homepage = "https://github.com/antoniovazquezblanco/GhidraFindcrypt";
Comment thread
h7x4 marked this conversation as resolved.
Outdated
downloadPage = "https://github.com/antoniovazquezblanco/GhidraFindcrypt/releases/tag/v${version}";
changelog = "https://github.com/antoniovazquezblanco/GhidraFindcrypt/releases/tag/v${version}";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.BonusPlay ];
};
}