Update cheatsheets

This commit is contained in:
ivuorinen
2024-05-18 00:13:42 +00:00
parent a11807bcb9
commit e51f0de5d2
2 changed files with 26 additions and 0 deletions

22
tldr/apkleaks Normal file
View File

@@ -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: <https://github.com/dwisiswant0/apkleaks>.
- 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}}"`

View File

@@ -8,6 +8,10 @@ source: https://github.com/tldr-pages/tldr.git
> Control a running PulseAudio sound server.
> More information: <https://manned.org/pactl>.
- 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`