From bdbc9517d8bc6fe1e22c92a136f8a0780bdc8382 Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Sat, 18 May 2024 03:32:55 +1000 Subject: [PATCH] apkleaks: add page (#12798) Co-authored-by: K.B.Dharun Krishna --- pages/common/apkleaks.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/common/apkleaks.md diff --git a/pages/common/apkleaks.md b/pages/common/apkleaks.md new file mode 100644 index 000000000..3c30d037d --- /dev/null +++ b/pages/common/apkleaks.md @@ -0,0 +1,17 @@ +# apkleaks + +> An APK file scanner for exposing URIs, endpoints, and secrets. +> Note: APKLeaks utilizes the `jadx` disassembler to decompile APK files. +> More information: . + +- Scan an APK [f]ile for URIs, endpoints, and secrets: + +`apkleaks --file {{path/to/file.apk}}` + +- Scan and save the [o]utput to a specific file: + +`apkleaks --file {{path/to/file.apk}} --output {{path/to/output.txt}}` + +- Pass `jadx` disassembler [a]rguments: + +`apkleaks --file {{path/to/file.apk}} --args "{{--threads-count 5 --deobf}}"`