objection: init at 1.11.0 (#436279)

This commit is contained in:
Sandro
2026-03-01 03:44:10 +00:00
committed by GitHub
4 changed files with 127 additions and 0 deletions
+6
View File
@@ -19617,6 +19617,12 @@
github = "nullishamy";
githubId = 99221043;
};
nullstring1 = {
email = "nullstring1+nixpkgs@nullstring.one";
name = "nullstring1";
github = "nullstring1";
githubId = 53035336;
};
numbleroot = {
email = "hello@lennartoldenburg.de";
name = "Lennart Oldenburg";
+64
View File
@@ -0,0 +1,64 @@
{
lib,
python3Packages,
fetchFromGitHub,
frida-tools,
}:
python3Packages.buildPythonApplication rec {
pname = "objection";
version = "1.12.3";
pyproject = true;
src = fetchFromGitHub {
owner = "sensepost";
repo = "objection";
tag = version;
hash = "sha256-xOqBYwpq46czRZggTNmNcqGqTA8omTLiOeZaF7zSvxo=";
};
build-system = with python3Packages; [
setuptools
];
buildInputs = [
frida-tools
];
dependencies = with python3Packages; [
frida-python
prompt-toolkit
click
tabulate
semver
delegator-py
requests
flask
pygments
setuptools
packaging
litecli
];
pythonImportsCheck = [
"objection"
];
doCheck = true;
pythonRuntimeDepsCheck = true;
meta = {
description = "Runtime mobile exploration toolkit, powered by Frida";
longDescription = ''
objection is a runtime mobile exploration toolkit, powered by Frida,
built to help you assess the security posture of your mobile applications,
without needing a jailbreak.
'';
homepage = "https://github.com/sensepost/objection";
changelog = "https://github.com/sensepost/objection/releases/tag/${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ nullstring1 ];
mainProgram = "objection";
};
}
@@ -0,0 +1,55 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
click,
pygments,
prompt-toolkit,
sqlparse,
configobj,
cli-helpers,
}:
buildPythonPackage rec {
pname = "litecli";
version = "1.17.1";
pyproject = true;
src = fetchFromGitHub {
owner = "dbcli";
repo = "litecli";
tag = "v${version}";
hash = "sha256-YSPNtDL5rNgRh5lJBKfL1jjWemlmf3eesBMSLyJVRLY=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
click
pygments
prompt-toolkit
sqlparse
configobj
cli-helpers
];
doCheck = true;
pythonImportsCheck = [
"litecli"
];
meta = {
description = "CLI for SQLite Databases with auto-completion and syntax highlighting";
homepage = "https://github.com/dbcli/litecli";
changelog = "https://github.com/dbcli/litecli/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ nullstring1 ];
mainProgram = "litecli";
};
}
+2
View File
@@ -8939,6 +8939,8 @@ self: super: with self; {
lit = callPackage ../development/python-modules/lit { };
litecli = callPackage ../development/python-modules/litecli { };
litellm = callPackage ../development/python-modules/litellm { };
litemapy = callPackage ../development/python-modules/litemapy { };