-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.yml
33 lines (33 loc) · 1.59 KB
/
commands.yml
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
commands:
- title: "Package Information"
command: "run app.package.info -a {package}"
- title: "Attack Surface Analysis"
command: "run app.package.attacksurface {package}"
- title: "Package Backup"
command: "run app.package.backup -f {package}"
- title: "Activity Information"
command: "run app.activity.info -a {package}"
- title: "Detailed Activity Information with Intent and URI"
command: "run app.activity.info -i -u -a {package}"
- title: "Broadcast Information with Intent and URI"
command: "run app.broadcast.info -i -u -a {package}"
- title: "Native Library Information"
command: "run app.package.native {package}"
- title: "Content Provider Information with URI Access"
command: "run app.provider.info -u -a {package}"
- title: "Find Content Provider URIs"
command: "run app.provider.finduri {package}"
- title: "Service Information with Intent and URI"
command: "run app.service.info -i -u -a {package}"
- title: "Native Code Scanner"
command: "run scanner.misc.native -a {package}"
- title: "Readable Files in Data Directory"
command: "run scanner.misc.readablefiles /data/data/{package}"
- title: "Duplicate Readable Files Check in Data Directory"
command: "run scanner.misc.readablefiles /data/data/{package}"
- title: "Find URIs for Accessible Content Providers"
command: "run scanner.provider.finduris -a {package}"
- title: "SQL Tables in Content Providers"
command: "run scanner.provider.sqltables -a {package}"
- title: "Directory Traversal in Content Providers"
command: "run scanner.provider.traversal -a {package}"