From c1558878aabc99b65f26b0a4b4be8c253e1dac56 Mon Sep 17 00:00:00 2001 From: Brendan Coles Date: Mon, 4 Apr 2016 13:17:10 +0000 Subject: [PATCH] Add ARE rules for scanning common LAN IPs --- arerules/lan_cors_scan_common.json | 23 +++++++++++++++++++++++ arerules/lan_flash_scan_common.json | 23 +++++++++++++++++++++++ arerules/lan_http_scan_common.json | 23 +++++++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 arerules/lan_cors_scan_common.json create mode 100644 arerules/lan_flash_scan_common.json create mode 100644 arerules/lan_http_scan_common.json diff --git a/arerules/lan_cors_scan_common.json b/arerules/lan_cors_scan_common.json new file mode 100644 index 000000000..f50d6d6ce --- /dev/null +++ b/arerules/lan_cors_scan_common.json @@ -0,0 +1,23 @@ +{"name": "LAN CORS Scan (Common IPs)", + "author": "bcoles", + "browser": ["FF", "C"], + "browser_version": "ALL", + "os": "ALL", + "os_version": "ALL", + "modules": [ + {"name": "cross_origin_scanner_cors", + "condition": null, + "code": null, + "options": { + "ipRange":"common", + "ports":"80,8080", + "threads":"2", + "wait":"2", + "timeout":"10" + } + } + ], + "execution_order": [0], + "execution_delay": [0], + "chain_mode": "sequential" +} diff --git a/arerules/lan_flash_scan_common.json b/arerules/lan_flash_scan_common.json new file mode 100644 index 000000000..f6b16b72e --- /dev/null +++ b/arerules/lan_flash_scan_common.json @@ -0,0 +1,23 @@ +{"name": "LAN Flash Scan (Common IPs)", + "author": "bcoles", + "browser": ["FF", "C"], + "browser_version": "ALL", + "os": "ALL", + "os_version": "ALL", + "modules": [ + {"name": "cross_origin_scanner_flash", + "condition": null, + "code": null, + "options": { + "ipRange":"common", + "ports":"80,8080", + "threads":"2", + "wait":"2", + "timeout":"10" + } + } + ], + "execution_order": [0], + "execution_delay": [0], + "chain_mode": "sequential" +} diff --git a/arerules/lan_http_scan_common.json b/arerules/lan_http_scan_common.json new file mode 100644 index 000000000..aea6e6ff0 --- /dev/null +++ b/arerules/lan_http_scan_common.json @@ -0,0 +1,23 @@ +{"name": "LAN HTTP Scan (Common IPs)", + "author": "bcoles", + "browser": ["FF", "C"], + "browser_version": "ALL", + "os": "ALL", + "os_version": "ALL", + "modules": [ + {"name": "get_http_servers", + "condition": null, + "code": null, + "options": { + "ipRange":"common", + "ports":"80,8080", + "threads":"3", + "wait":"5", + "timeout":"10" + } + } + ], + "execution_order": [0], + "execution_delay": [0], + "chain_mode": "sequential" +}