From bbe324ff4b776627f42aa621b7e75a045942a2b6 Mon Sep 17 00:00:00 2001 From: Caleb Fenton Date: Fri, 31 May 2019 17:50:07 -0700 Subject: [PATCH] Update readmes --- README.md | 24 +++++++++++++++--------- README.rst | 24 +++++++++++++++--------- 2 files changed, 30 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index a8ae4fa4..ab159d06 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ git clone https://github.com/rednaga/APKiD cd APKiD/ docker build . -t rednaga:apkid docker/apkid.sh ~/reverse/targets/android/example/example.apk -[+] APKiD 2.0.2 :: from RedNaga :: rednaga.io +[+] APKiD 2.0.3 :: from RedNaga :: rednaga.io [*] example.apk!classes.dex |-> compiler : dx ``` @@ -51,19 +51,25 @@ docker/apkid.sh ~/reverse/targets/android/example/example.apk # Usage ``` -usage: apkid [-h] [-j] [-t TIMEOUT] [-o DIR] [-q] [FILE [FILE ...]] +usage: apkid [-h] [-j] [-t TIMEOUT] [-o DIR] [-r] [--scan-depth SCAN_DEPTH] + [--entry-max-scan-size ENTRY_MAX_SCAN_SIZE] [--typing {magic,filename,none}] [-v] + [FILE [FILE ...]] -APKiD - Android Application Identifier v2.0.2 +APKiD - Android Application Identifier v2.0.3 positional arguments: - FILE apk, dex, or directory + FILE apk, dex, or directory optional arguments: - -h, --help show this help message and exit - -j, --json output scan results in JSON format - -t TIMEOUT, --timeout TIMEOUT Yara scan timeout (in seconds) - -o DIR, --output-dir DIR write individual results to this directory (implies --json) - -q, --quiet suppress extraneous output + -h, --help show this help message and exit + -j, --json output scan results in JSON format + -t TIMEOUT, --timeout TIMEOUT Yara scan timeout (in seconds) + -o DIR, --output-dir DIR write individual results here (implies --json) + -r, --recursive recurse into subdirectories + --scan-depth SCAN_DEPTH how deep to go when scanning nested zips + --entry-max-scan-size ENTRY_MAX_SCAN_SIZE max zip entry size to scan in bytes, 0 = no limit + --typing {magic,filename,none} method to decide which files to scan + -v, --verbose log debug messages ``` # Submitting New Packers / Compilers / Obfuscators diff --git a/README.rst b/README.rst index f6e6a488..3796b865 100644 --- a/README.rst +++ b/README.rst @@ -55,7 +55,7 @@ Here’s how to use Docker: cd APKiD/ docker build . -t rednaga:apkid docker/apkid.sh ~/reverse/targets/android/example/example.apk - [+] APKiD 2.0.2 :: from RedNaga :: rednaga.io + [+] APKiD 2.0.3 :: from RedNaga :: rednaga.io [*] example.apk!classes.dex |-> compiler : dx @@ -64,19 +64,25 @@ Usage :: - usage: apkid [-h] [-j] [-t TIMEOUT] [-o DIR] [-q] [FILE [FILE ...]] + usage: apkid [-h] [-j] [-t TIMEOUT] [-o DIR] [-r] [--scan-depth SCAN_DEPTH] + [--entry-max-scan-size ENTRY_MAX_SCAN_SIZE] [--typing {magic,filename,none}] [-v] + [FILE [FILE ...]] - APKiD - Android Application Identifier v2.0.2 + APKiD - Android Application Identifier v2.0.3 positional arguments: - FILE apk, dex, or directory + FILE apk, dex, or directory optional arguments: - -h, --help show this help message and exit - -j, --json output scan results in JSON format - -t TIMEOUT, --timeout TIMEOUT Yara scan timeout (in seconds) - -o DIR, --output-dir DIR write individual results to this directory (implies --json) - -q, --quiet suppress extraneous output + -h, --help show this help message and exit + -j, --json output scan results in JSON format + -t TIMEOUT, --timeout TIMEOUT Yara scan timeout (in seconds) + -o DIR, --output-dir DIR write individual results here (implies --json) + -r, --recursive recurse into subdirectories + --scan-depth SCAN_DEPTH how deep to go when scanning nested zips + --entry-max-scan-size ENTRY_MAX_SCAN_SIZE max zip entry size to scan in bytes, 0 = no limit + --typing {magic,filename,none} method to decide which files to scan + -v, --verbose log debug messages Submitting New Packers / Compilers / Obfuscators ================================================