blob: 53908cb4db73060faea6e3e8504a33c77597aae2 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
capstone,
pythonOlder,
}:
buildPythonPackage rec {
pname = "ropgadget";
version = "7.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "JonathanSalwan";
repo = "ROPgadget";
rev = "refs/tags/v${version}";
hash = "sha256-6m8opcTM4vrK+VCPXxNhZttUq6YmS8swLUDhjyfinWE=";
};
propagatedBuildInputs = [ capstone ];
# Test suite is working with binaries
doCheck = false;
pythonImportsCheck = [ "ropgadget" ];
meta = with lib; {
description = "Tool to search for gadgets in binaries to facilitate ROP exploitation";
mainProgram = "ROPgadget";
homepage = "http://shell-storm.org/project/ROPgadget/";
license = licenses.bsd3;
maintainers = with maintainers; [ bennofs ];
};
}
|