{"id":18417957,"url":"https://github.com/quark-engine/dangee","last_synced_at":"2025-04-07T12:32:54.473Z","repository":{"id":62566424,"uuid":"323497127","full_name":"quark-engine/Dangee","owner":"quark-engine","description":"Simple parts to construct your binary analysis","archived":false,"fork":false,"pushed_at":"2020-12-24T07:24:06.000Z","size":195,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-22T19:01:42.384Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quark-engine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-22T02:15:36.000Z","updated_at":"2022-10-07T22:35:42.000Z","dependencies_parsed_at":"2022-11-03T17:34:47.814Z","dependency_job_id":null,"html_url":"https://github.com/quark-engine/Dangee","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quark-engine%2FDangee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quark-engine%2FDangee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quark-engine%2FDangee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quark-engine%2FDangee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quark-engine","download_url":"https://codeload.github.com/quark-engine/Dangee/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247653400,"owners_count":20973824,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T04:12:23.436Z","updated_at":"2025-04-07T12:32:53.586Z","avatar_url":"https://github.com/quark-engine.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dangee Framework\n\nDangee framework provides information of elements (function, variable etc.) in android binaries. Users can therefore, use these information to construct the analysis, find potential malicious activites or security vulnerabilities.\n\n## Installation\n\n```bash\npip install -U Dangee\n```\n\n## QuickStart\n\n```python\nfrom dangee.core import Dangee\n\nd = Dangee(\"Roaming_Mantis.dex\")\n```\n\n### Usage\n\n1. Show all method\n\n```python\nd.value\n```\n\n2. Show Android native API\n\n```python\nd.isNative().value\n```\n\n3. Show self-defined method\n\n```python\nd.isSelfDefine().value\n```\n4. Matching method by case-insensitive words\n\n```python\nd.isNative().match(\"package\").value\n```\n\nMulti-level match\n\n```python\nd.isNative().match(\"package\").match(\"UsageStats\").value\n```\n\n5. Crossreferences (XREFs)\n\n```python\n\n# XREFs FROM:\nm1 = d.isNative().match(\"usage\")\nm1.get_xref_from().value\n\n# XREFs TO:\nm2 = d.isSelfDefine().match(\"getTopActivityName$loader_release\")\nm2.get_xref_to().value\n```\n\n6. Data flow check\n\n```python\nm1 = d.isNative().match(\"usage\")\nm2 = d.isNative().match(\"package\")\n\nm1.dataFlowto(m2)\n```\n\u003e list[ {tuple(method1, method2) : result_of_data_flow_to_found } ]\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquark-engine%2Fdangee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquark-engine%2Fdangee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquark-engine%2Fdangee/lists"}