Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump to v1.1.2 #24

Merged
merged 1 commit into from
Sep 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
```sh-session
$ npm install -g manifest-scanner

$ manifest-scanner scan --file <ANDROID_PROJECT_DIRECTORY> --report json --output <OUTPUT_FILE>
$ manifest-scanner scan --file <ANDROID_PROJECT_DIRECTORY> --report json --output <OUTPUT_FILE> --enableAST

✅ Running AllowBackupRule
✅ Running AndroidDebuggableRule
Expand All @@ -18,13 +18,25 @@ $ manifest-scanner scan --file <ANDROID_PROJECT_DIRECTORY> --report json --outpu
✅ Running Exported Component Rule
✅ Running SingleTaskLaunchMode Rule
✅ Running Task ReParenting Rule
✅ Running WebView setAllowContentAccess Rule
✅ Running WebView SetAllowFileAccess Rule
✅ Running Webview DomStorageEnabled Rule
✅ Running Webview JavaScriptEnabled Rule
✅ Running Webview JavascriptInterface Rule
✅ Running Webview LoadDataWithBaseURL Rule
✅ Running WebView setAllowUniversalAccessFromFileURLs Rule
✅ Running WebView setWebContentsDebuggingEnabled Rule
...

$ manifest-scanner (--version)
manifest-scanner/1.0.1 win32-x64 node-v18.15.0
```

### Basic Vulnerable Configuration Checks
### Vulnerable Configuration Checks

Learn Mobile Application Security Vulnerabilities and how to fix them with [DEVAA Scanner](https://devaasecurity.com/)

Documentation Site: https://devaa-security.github.io/manifest-scanner/

| **Rule** | **Description** |
|------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
Expand Down
18 changes: 17 additions & 1 deletion manifest-scanner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

Android Manifest Scanner CLI - DEVAA Security

Learn Mobile Application Security Vulnerabilities and how to fix them with [DEVAA Scanner](https://devaasecurity.com/)

Documentation Site: https://devaa-security.github.io/manifest-scanner/

<!-- toc -->
* [manifest-scanner](#manifest-scanner)
* [Usage](#usage)
* [Commands](#commands)
<!-- tocstop -->

- [manifest-scanner](#manifest-scanner)
- [Usage](#usage)
Expand All @@ -13,14 +21,22 @@ Android Manifest Scanner CLI - DEVAA Security

```sh-session
$ npm install -g manifest-scanner
$ manifest-scanner scan --file <ANDROID_PROJECT_DIRECTORY> --report json --output <OUTPUT_FILE>
$ manifest-scanner scan --file <ANDROID_PROJECT_DIRECTORY> --report json --output <OUTPUT_FILE> --enableAST
✅ Running AllowBackupRule
✅ Running AndroidDebuggableRule
✅ Running APIKeysRule
✅ Running Custom Permission Check Rule
✅ Running Exported Component Rule
✅ Running SingleTaskLaunchMode Rule
✅ Running Task ReParenting Rule
✅ Running WebView setAllowContentAccess Rule
✅ Running WebView SetAllowFileAccess Rule
✅ Running Webview DomStorageEnabled Rule
✅ Running Webview JavaScriptEnabled Rule
✅ Running Webview JavascriptInterface Rule
✅ Running Webview LoadDataWithBaseURL Rule
✅ Running WebView setAllowUniversalAccessFromFileURLs Rule
✅ Running WebView setWebContentsDebuggingEnabled Rule
...
$ manifest-scanner (--version)
manifest-scanner/1.0.1 win32-x64 node-v18.15.0
Expand Down
2 changes: 1 addition & 1 deletion manifest-scanner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "manifest-scanner",
"version": "1.1.1",
"version": "1.1.2",
"description": "Manifest Scanner for Android Application",
"author": "Shivasurya @s5dev",
"bin": {
Expand Down