From e51f0de5d20f0f2ec2b4bc4d969335993982641a Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Sat, 18 May 2024 00:13:42 +0000 Subject: [PATCH] Update cheatsheets --- tldr/apkleaks | 22 ++++++++++++++++++++++ tldr/pactl | 4 ++++ 2 files changed, 26 insertions(+) create mode 100644 tldr/apkleaks diff --git a/tldr/apkleaks b/tldr/apkleaks new file mode 100644 index 00000000..991be457 --- /dev/null +++ b/tldr/apkleaks @@ -0,0 +1,22 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# 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}}"` diff --git a/tldr/pactl b/tldr/pactl index 50b59752..9e255d2f 100644 --- a/tldr/pactl +++ b/tldr/pactl @@ -8,6 +8,10 @@ source: https://github.com/tldr-pages/tldr.git > Control a running PulseAudio sound server. > More information: . +- Show information about the sound server: + +`pactl info` + - List all sinks (or other types - sinks are outputs and sink-inputs are active audio streams): `pactl list {{sinks}} short`