arachni 0.4.0.4 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ACKNOWLEDGMENTS.md +2 -2
- data/AUTHORS.md +1 -4
- data/CHANGELOG.md +102 -3
- data/CONTRIBUTORS.md +4 -1
- data/EXPLOITATION.md +6 -6
- data/Gemfile +3 -0
- data/HACKING.md +29 -10
- data/LICENSE.md +176 -339
- data/NOTICE +12 -0
- data/README.md +160 -119
- data/Rakefile +83 -45
- data/arachni.gemspec +124 -0
- data/bin/arachni +14 -8
- data/bin/arachni_console +52 -0
- data/bin/arachni_rpc +14 -8
- data/bin/arachni_rpcd +15 -9
- data/bin/arachni_rpcd_monitor +14 -8
- data/bin/arachni_script +41 -0
- data/bin/arachni_web +18 -19
- data/bin/arachni_web_autostart +17 -18
- data/external/metasploit/plugins/arachni.rb +7 -9
- data/external/metasploit/{LICENSE → plugins/arachni/LICENSE} +0 -0
- data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_exec.rb +1 -1
- data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_path_traversal.rb +2 -2
- data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_php_eval.rb +1 -1
- data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_php_include.rb +1 -1
- data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_sqlmap.rb +2 -2
- data/external/scripts/LICENSE.tpl +174 -0
- data/external/scripts/README.md +95 -0
- data/external/scripts/README.tpl +30 -0
- data/external/scripts/build.sh +631 -0
- data/external/scripts/build_all.sh +29 -0
- data/external/scripts/build_and_package.sh +100 -0
- data/external/scripts/cross_build_and_package.sh +20 -0
- data/external/scripts/installer.sh.tpl +166 -0
- data/external/scripts/lib/readlink_f.sh +40 -0
- data/external/scripts/package.sh +134 -0
- data/external/scripts/push_nightlies.sh +125 -0
- data/extras/placeholder +0 -0
- data/gfx/README.md +18 -0
- data/gfx/compiled/banner.png +0 -0
- data/gfx/compiled/favicon.ico +0 -0
- data/gfx/compiled/icon.png +0 -0
- data/gfx/compiled/logo.png +0 -0
- data/gfx/compiled/spider.png +0 -0
- data/gfx/font/Beneath_the_Surface.ttf +0 -0
- data/gfx/font/bts_readme.txt +14 -0
- data/gfx/source/banner.svg +999 -0
- data/gfx/source/icon.svg +627 -0
- data/gfx/source/logo.svg +672 -0
- data/gfx/source/spider.png +0 -0
- data/gfx/source/spider.svg +277 -0
- data/lib/arachni.rb +30 -5
- data/lib/arachni/audit_store.rb +111 -143
- data/lib/arachni/banner.rb +37 -0
- data/lib/arachni/bloom_filter.rb +74 -0
- data/lib/arachni/cache.rb +21 -0
- data/lib/arachni/cache/base.rb +170 -0
- data/lib/arachni/cache/least_cost_replacement.rb +89 -0
- data/lib/arachni/cache/least_recently_used.rb +73 -0
- data/lib/arachni/cache/random_replacement.rb +52 -0
- data/lib/arachni/component/manager.rb +391 -0
- data/lib/arachni/component/options.rb +38 -0
- data/lib/arachni/component/options/address.rb +41 -0
- data/lib/arachni/component/options/base.rb +126 -0
- data/lib/arachni/component/options/bool.rb +55 -0
- data/lib/arachni/component/options/enum.rb +51 -0
- data/lib/arachni/component/options/float.rb +45 -0
- data/lib/arachni/component/options/int.rb +44 -0
- data/lib/arachni/component/options/path.rb +36 -0
- data/lib/arachni/component/options/port.rb +37 -0
- data/lib/arachni/component/options/string.rb +44 -0
- data/lib/arachni/component/options/url.rb +42 -0
- data/lib/arachni/crypto/rsa_aes_cbc.rb +14 -8
- data/lib/arachni/database.rb +4 -4
- data/lib/arachni/database/base.rb +14 -8
- data/lib/arachni/database/hash.rb +21 -12
- data/lib/arachni/database/queue.rb +15 -9
- data/lib/arachni/element/base.rb +147 -0
- data/lib/arachni/element/capabilities/auditable.rb +623 -0
- data/lib/arachni/element/capabilities/auditable/rdiff.rb +243 -0
- data/lib/arachni/element/capabilities/auditable/taint.rb +141 -0
- data/lib/arachni/element/capabilities/auditable/timeout.rb +330 -0
- data/lib/arachni/element/capabilities/body.rb +19 -0
- data/lib/arachni/element/capabilities/mutable.rb +286 -0
- data/lib/arachni/element/capabilities/path.rb +19 -0
- data/lib/arachni/element/capabilities/refreshable.rb +48 -0
- data/lib/arachni/element/capabilities/server.rb +19 -0
- data/lib/arachni/element/cookie.rb +1043 -0
- data/lib/arachni/element/form.rb +1364 -0
- data/lib/arachni/element/header.rb +87 -0
- data/lib/arachni/element/link.rb +227 -0
- data/lib/arachni/exceptions.rb +12 -34
- data/lib/arachni/framework.rb +345 -436
- data/lib/arachni/http.rb +445 -409
- data/lib/arachni/http/cookie_jar.rb +163 -0
- data/lib/arachni/issue.rb +102 -65
- data/lib/arachni/mixins/observable.rb +25 -28
- data/lib/arachni/mixins/progress_bar.rb +11 -5
- data/lib/arachni/mixins/terminal.rb +17 -11
- data/lib/arachni/module.rb +4 -4
- data/lib/arachni/module/auditor.rb +270 -793
- data/lib/arachni/module/base.rb +107 -101
- data/lib/arachni/module/element_db.rb +54 -59
- data/lib/arachni/module/key_filler.rb +35 -35
- data/lib/arachni/module/manager.rb +178 -68
- data/lib/arachni/module/output.rb +25 -30
- data/lib/arachni/module/trainer.rb +85 -156
- data/lib/arachni/module/utilities.rb +29 -138
- data/lib/arachni/options.rb +496 -162
- data/lib/arachni/page.rb +186 -0
- data/lib/arachni/parser.rb +392 -2
- data/lib/arachni/plugin.rb +4 -4
- data/lib/arachni/plugin/base.rb +113 -44
- data/lib/arachni/plugin/manager.rb +120 -54
- data/lib/arachni/report.rb +4 -4
- data/lib/arachni/report/base.rb +59 -44
- data/lib/arachni/report/manager.rb +33 -32
- data/lib/arachni/rpc/client.rb +2 -0
- data/lib/arachni/rpc/client/base.rb +31 -18
- data/lib/arachni/rpc/client/dispatcher.rb +24 -11
- data/lib/arachni/rpc/client/instance.rb +24 -11
- data/lib/arachni/rpc/server/base.rb +12 -9
- data/lib/arachni/rpc/server/dispatcher.rb +161 -164
- data/lib/arachni/rpc/server/dispatcher/handler.rb +164 -0
- data/lib/arachni/rpc/server/{node.rb → dispatcher/node.rb} +86 -104
- data/lib/arachni/rpc/server/distributor.rb +432 -0
- data/lib/arachni/rpc/server/framework.rb +266 -758
- data/lib/arachni/rpc/server/instance.rb +38 -53
- data/lib/arachni/rpc/server/module/manager.rb +17 -20
- data/lib/arachni/rpc/server/output.rb +73 -179
- data/lib/arachni/rpc/server/plugin/manager.rb +58 -24
- data/lib/arachni/ruby.rb +6 -4
- data/lib/arachni/ruby/array.rb +30 -9
- data/lib/arachni/ruby/enumerable.rb +29 -0
- data/lib/arachni/ruby/object.rb +47 -12
- data/lib/arachni/ruby/string.rb +69 -24
- data/lib/arachni/ruby/webrick.rb +31 -0
- data/lib/arachni/session.rb +279 -0
- data/lib/arachni/spider.rb +295 -149
- data/lib/arachni/typhoeus/hydra.rb +18 -4
- data/lib/arachni/typhoeus/request.rb +52 -65
- data/lib/arachni/typhoeus/response.rb +62 -22
- data/lib/arachni/typhoeus/utils.rb +25 -0
- data/lib/arachni/ui/cli/cli.rb +331 -298
- data/lib/arachni/ui/cli/output.rb +105 -77
- data/lib/arachni/ui/foo/output.rb +116 -0
- data/lib/arachni/ui/rpc/dispatcher_monitor.rb +5 -12
- data/lib/arachni/ui/rpc/rpc.rb +43 -48
- data/lib/arachni/ui/web/addon_manager.rb +18 -13
- data/lib/arachni/ui/web/addons/sample.rb +14 -8
- data/lib/arachni/ui/web/addons/scheduler.rb +14 -8
- data/lib/arachni/ui/web/addons/scheduler/views/index.erb +1 -1
- data/lib/arachni/ui/web/addons/scheduler/views/options.erb +0 -3
- data/lib/arachni/ui/web/dispatcher_manager.rb +14 -9
- data/lib/arachni/ui/web/instance_manager.rb +14 -8
- data/lib/arachni/ui/web/log.rb +14 -10
- data/lib/arachni/ui/web/output_stream.rb +11 -5
- data/lib/arachni/ui/web/report_manager.rb +14 -10
- data/lib/arachni/ui/web/scheduler.rb +16 -11
- data/lib/arachni/ui/web/server.rb +62 -56
- data/lib/arachni/ui/web/server/public/style.css +1 -1
- data/lib/arachni/ui/web/server/views/addon.erb +1 -1
- data/lib/arachni/ui/web/server/views/dispatchers.erb +3 -3
- data/lib/arachni/ui/web/server/views/dispatchers_edit.erb +2 -2
- data/lib/arachni/ui/web/server/views/error.erb +1 -1
- data/lib/arachni/ui/web/server/views/home.erb +2 -2
- data/lib/arachni/ui/web/server/views/instance.erb +6 -6
- data/lib/arachni/ui/web/server/views/layout.erb +4 -4
- data/lib/arachni/ui/web/server/views/settings.erb +13 -8
- data/lib/arachni/ui/web/server/views/welcome.erb +1 -1
- data/lib/arachni/ui/web/utilities.rb +24 -35
- data/lib/arachni/uri.rb +619 -0
- data/lib/arachni/utilities.rb +316 -0
- data/lib/arachni/version.rb +12 -6
- data/lib/version +1 -0
- data/modules/audit/code_injection.rb +64 -81
- data/modules/audit/code_injection_timing.rb +57 -75
- data/modules/audit/csrf.rb +87 -185
- data/modules/audit/ldapi.rb +42 -67
- data/modules/audit/os_cmd_injection.rb +53 -71
- data/modules/audit/os_cmd_injection/payloads.txt +1 -1
- data/modules/audit/os_cmd_injection_timing.rb +54 -75
- data/modules/audit/os_cmd_injection_timing/payloads.txt +1 -3
- data/modules/audit/path_traversal.rb +84 -110
- data/modules/audit/response_splitting.rb +41 -53
- data/modules/audit/rfi.rb +68 -76
- data/modules/audit/session_fixation.rb +86 -0
- data/modules/audit/sqli.rb +51 -77
- data/modules/audit/sqli/regexp_ids.txt +5 -19
- data/modules/audit/sqli/regexp_ignore.txt +2 -0
- data/modules/audit/sqli_blind_rdiff.rb +51 -62
- data/modules/audit/sqli_blind_timing.rb +53 -73
- data/modules/audit/trainer.rb +21 -58
- data/modules/audit/unvalidated_redirect.rb +41 -51
- data/modules/audit/xpath.rb +38 -69
- data/modules/audit/xpath/errors.txt +2 -3
- data/modules/audit/xss.rb +65 -69
- data/modules/audit/xss_event.rb +50 -69
- data/modules/audit/xss_path.rb +63 -89
- data/modules/audit/xss_script_tag.rb +53 -66
- data/modules/audit/xss_tag.rb +46 -65
- data/modules/audit/xss_uri.rb +22 -24
- data/modules/recon/allowed_methods.rb +46 -62
- data/modules/recon/backdoors.rb +39 -66
- data/modules/recon/backup_files.rb +49 -79
- data/modules/recon/common_directories.rb +39 -63
- data/modules/recon/common_directories/directories.txt +0 -5
- data/modules/recon/common_files.rb +34 -63
- data/modules/recon/directory_listing.rb +66 -116
- data/modules/recon/grep/captcha.rb +34 -41
- data/modules/recon/grep/credit_card.rb +57 -68
- data/modules/recon/grep/cvs_svn_users.rb +40 -50
- data/modules/recon/grep/emails.rb +34 -41
- data/modules/recon/grep/html_objects.rb +30 -33
- data/modules/recon/grep/http_only_cookies.rb +57 -0
- data/modules/recon/grep/insecure_cookies.rb +55 -0
- data/modules/recon/grep/mixed_resource.rb +93 -0
- data/modules/recon/grep/private_ip.rb +34 -32
- data/modules/recon/grep/ssn.rb +33 -31
- data/modules/recon/grep/unencrypted_password_forms.rb +84 -0
- data/modules/recon/htaccess_limit.rb +38 -54
- data/modules/recon/http_put.rb +48 -62
- data/modules/recon/interesting_responses.rb +77 -79
- data/modules/recon/webdav.rb +53 -79
- data/modules/recon/xst.rb +44 -63
- data/modules/test2.rb +46 -0
- data/path_extractors/anchors.rb +17 -15
- data/path_extractors/forms.rb +17 -15
- data/path_extractors/frames.rb +17 -18
- data/path_extractors/generic.rb +52 -55
- data/path_extractors/links.rb +16 -14
- data/path_extractors/meta_refresh.rb +33 -18
- data/path_extractors/scripts.rb +17 -15
- data/plugins/autologin.rb +60 -85
- data/plugins/beep_notify.rb +25 -27
- data/plugins/cookie_collector.rb +28 -45
- data/plugins/defaults/autothrottle.rb +43 -51
- data/plugins/defaults/content_types.rb +63 -52
- data/plugins/defaults/healthmap.rb +45 -62
- data/plugins/defaults/{metamodules → meta}/remedies/discovery.rb +34 -69
- data/plugins/defaults/meta/remedies/manual_verification.rb +61 -0
- data/plugins/defaults/meta/remedies/timing_attacks.rb +108 -0
- data/plugins/defaults/meta/uniformity.rb +81 -0
- data/plugins/defaults/profiler.rb +68 -115
- data/plugins/defaults/resolver.rb +33 -28
- data/plugins/email_notify.rb +60 -62
- data/plugins/form_dicattack.rb +67 -121
- data/plugins/http_dicattack.rb +51 -65
- data/plugins/libnotify.rb +37 -41
- data/plugins/proxy.rb +407 -152
- data/plugins/proxy/panel/403_forbidden.html.erb +11 -0
- data/plugins/proxy/panel/404_not_found.html.erb +6 -0
- data/plugins/proxy/panel/css/bootstrap.min.css +9 -0
- data/plugins/proxy/panel/css/panel.css +30 -0
- data/plugins/proxy/panel/help.html.erb +66 -0
- data/plugins/proxy/panel/img/glyphicons-halflings-white.png +0 -0
- data/plugins/proxy/panel/img/glyphicons-halflings.png +0 -0
- data/plugins/proxy/panel/img/record.png +0 -0
- data/plugins/proxy/panel/inspect.html.erb +7 -0
- data/plugins/proxy/panel/js/bootstrap.min.js +6 -0
- data/plugins/proxy/panel/js/jquery.min.js +2 -0
- data/plugins/proxy/panel/js/panel.js +39 -0
- data/plugins/proxy/panel/layout.html.erb +25 -0
- data/plugins/proxy/panel/page_accordion.html.erb +67 -0
- data/plugins/proxy/panel/page_twin_accordion.html.erb +18 -0
- data/plugins/proxy/panel/panel.html.erb +63 -0
- data/plugins/proxy/panel/shutdown_message.html.erb +7 -0
- data/plugins/proxy/panel/verify_login_check.html.erb +31 -0
- data/plugins/proxy/panel/verify_login_final.html.erb +26 -0
- data/plugins/proxy/panel/verify_login_sequence.html.erb +45 -0
- data/plugins/proxy/server.rb +175 -47
- data/plugins/proxy/ssl-interceptor-cert.pem +34 -0
- data/plugins/proxy/ssl-interceptor-pkey.pem +51 -0
- data/plugins/rescan.rb +27 -28
- data/plugins/script.rb +53 -0
- data/plugins/vector_feed.rb +226 -0
- data/plugins/waf_detector.rb +70 -73
- data/reports/afr.rb +23 -24
- data/reports/ap.rb +25 -36
- data/reports/html.rb +109 -163
- data/reports/html/default.erb +13 -12
- data/reports/html/default/configuration.erb +21 -21
- data/reports/html/default/css/main.css +350 -350
- data/reports/html/default/issues.erb +1 -1
- data/reports/html/default/js/charts.js +2 -2
- data/reports/html/default/js/helpers.js +0 -42
- data/reports/html/default/js/init.js +0 -1
- data/reports/html/default/sitemap.erb +2 -2
- data/reports/html/default/summary.erb +4 -4
- data/reports/html/default/summary_issue.erb +1 -1
- data/reports/json.rb +26 -28
- data/reports/marshal.rb +23 -25
- data/reports/metareport.rb +65 -98
- data/reports/plugin_formatters/html/autologin.rb +34 -41
- data/reports/plugin_formatters/html/content_types.rb +46 -52
- data/reports/plugin_formatters/html/cookie_collector.rb +41 -47
- data/reports/plugin_formatters/html/discovery.rb +36 -41
- data/reports/plugin_formatters/html/form_dicattack.rb +28 -34
- data/reports/plugin_formatters/html/healthmap.rb +48 -55
- data/reports/plugin_formatters/html/http_dicattack.rb +28 -34
- data/reports/plugin_formatters/html/profiler.rb +26 -30
- data/reports/plugin_formatters/html/profiler/template.erb +7 -7
- data/reports/plugin_formatters/html/resolver.rb +44 -52
- data/reports/plugin_formatters/html/timing_attacks.rb +42 -44
- data/reports/plugin_formatters/html/uniformity.rb +37 -42
- data/reports/plugin_formatters/html/waf_detector.rb +26 -34
- data/reports/plugin_formatters/stdout/autologin.rb +28 -40
- data/reports/plugin_formatters/stdout/content_types.rb +36 -53
- data/reports/plugin_formatters/stdout/cookie_collector.rb +28 -41
- data/reports/plugin_formatters/stdout/discovery.rb +27 -37
- data/reports/plugin_formatters/stdout/form_dicattack.rb +22 -35
- data/reports/plugin_formatters/stdout/healthmap.rb +40 -57
- data/reports/plugin_formatters/stdout/http_dicattack.rb +22 -36
- data/reports/plugin_formatters/stdout/profiler.rb +55 -74
- data/reports/plugin_formatters/stdout/resolver.rb +18 -34
- data/reports/plugin_formatters/stdout/timing_attacks.rb +27 -39
- data/reports/plugin_formatters/stdout/uniformity.rb +32 -44
- data/reports/plugin_formatters/stdout/waf_detector.rb +20 -32
- data/reports/plugin_formatters/xml/autologin.rb +27 -49
- data/reports/plugin_formatters/xml/content_types.rb +41 -66
- data/reports/plugin_formatters/xml/cookie_collector.rb +29 -49
- data/reports/plugin_formatters/xml/discovery.rb +23 -41
- data/reports/plugin_formatters/xml/form_dicattack.rb +22 -40
- data/reports/plugin_formatters/xml/healthmap.rb +44 -63
- data/reports/plugin_formatters/xml/http_dicattack.rb +22 -41
- data/reports/plugin_formatters/xml/profiler.rb +65 -89
- data/reports/plugin_formatters/xml/resolver.rb +21 -41
- data/reports/plugin_formatters/xml/timing_attacks.rb +27 -45
- data/reports/plugin_formatters/xml/uniformity.rb +36 -55
- data/reports/plugin_formatters/xml/waf_detector.rb +23 -42
- data/reports/stdout.rb +120 -121
- data/reports/txt.rb +29 -45
- data/reports/xml.rb +109 -148
- data/reports/xml/buffer.rb +66 -79
- data/reports/yaml.rb +26 -28
- data/rpcd_handlers/placeholder +0 -0
- data/spec/arachni/audit_store_spec.rb +223 -0
- data/spec/arachni/bloom_filter_spec.rb +76 -0
- data/spec/arachni/cache/base_spec.rb +275 -0
- data/spec/arachni/cache/least_cost_replacement_spec.rb +58 -0
- data/spec/arachni/cache/least_recently_used_spec.rb +91 -0
- data/spec/arachni/cache/random_replacement_spec.rb +43 -0
- data/spec/arachni/component/manager_spec.rb +448 -0
- data/spec/arachni/component/options/address_spec.rb +32 -0
- data/spec/arachni/component/options/base_spec.rb +105 -0
- data/spec/arachni/component/options/bool_spec.rb +67 -0
- data/spec/arachni/component/options/enum_spec.rb +51 -0
- data/spec/arachni/component/options/float_spec.rb +42 -0
- data/spec/arachni/component/options/int_spec.rb +46 -0
- data/spec/arachni/component/options/path_spec.rb +32 -0
- data/spec/arachni/component/options/port_spec.rb +38 -0
- data/spec/arachni/component/options/string_spec.rb +38 -0
- data/spec/arachni/component/options/url_spec.rb +36 -0
- data/spec/arachni/crypto/rsa_aes_cbc_spec.rb +31 -0
- data/spec/arachni/database/hash_spec.rb +217 -0
- data/spec/arachni/database/queue_spec.rb +52 -0
- data/spec/arachni/element/base_spec.rb +127 -0
- data/spec/arachni/element/body_spec.rb +9 -0
- data/spec/arachni/element/capabilities/auditable/rdiff_spec.rb +47 -0
- data/spec/arachni/element/capabilities/auditable/taint_spec.rb +110 -0
- data/spec/arachni/element/capabilities/auditable/timeout_spec.rb +107 -0
- data/spec/arachni/element/capabilities/mutable_spec.rb +261 -0
- data/spec/arachni/element/cookie_spec.rb +362 -0
- data/spec/arachni/element/form_spec.rb +668 -0
- data/spec/arachni/element/header_spec.rb +49 -0
- data/spec/arachni/element/link_spec.rb +220 -0
- data/spec/arachni/element/path_spec.rb +9 -0
- data/spec/arachni/element/server_spec.rb +9 -0
- data/spec/arachni/framework_spec.rb +860 -0
- data/spec/arachni/http/cookie_jar_spec.rb +267 -0
- data/spec/arachni/http_spec.rb +991 -0
- data/spec/arachni/issue_spec.rb +307 -0
- data/spec/arachni/mixins/observable_spec.rb +59 -0
- data/spec/arachni/mixins/progress_bar_spec.rb +41 -0
- data/spec/arachni/module/auditor_spec.rb +506 -0
- data/spec/arachni/module/element_db_spec.rb +131 -0
- data/spec/arachni/module/key_filler.rb +15 -0
- data/spec/arachni/module/manager_spec.rb +154 -0
- data/spec/arachni/module/trainer_spec.rb +102 -0
- data/spec/arachni/module/utilities_spec.rb +30 -0
- data/spec/arachni/module/utilities_spec/read_file.txt +3 -0
- data/spec/arachni/options_spec.rb +555 -0
- data/spec/arachni/page_spec.rb +290 -0
- data/spec/arachni/parser_spec.rb +508 -0
- data/spec/arachni/plugin/manager_spec.rb +174 -0
- data/spec/arachni/report/base_spec.rb +53 -0
- data/spec/arachni/report/manager_spec.rb +82 -0
- data/spec/arachni/rpc/client/base_spec.rb +157 -0
- data/spec/arachni/rpc/client/dispatcher_spec.rb +40 -0
- data/spec/arachni/rpc/client/instance_spec.rb +92 -0
- data/spec/arachni/rpc/server/base_spec.rb +40 -0
- data/spec/arachni/rpc/server/dispatcher/handler.rb +120 -0
- data/spec/arachni/rpc/server/dispatcher/node_spec.rb +220 -0
- data/spec/arachni/rpc/server/dispatcher_spec.rb +136 -0
- data/spec/arachni/rpc/server/distributor_spec.rb +628 -0
- data/spec/arachni/rpc/server/framework_hpg_spec.rb +321 -0
- data/spec/arachni/rpc/server/framework_simple_spec.rb +453 -0
- data/spec/arachni/rpc/server/instance_spec.rb +81 -0
- data/spec/arachni/rpc/server/modules/manager_spec.rb +79 -0
- data/spec/arachni/rpc/server/options_spec.rb +124 -0
- data/spec/arachni/rpc/server/output_spec.rb +238 -0
- data/spec/arachni/rpc/server/plugin/manager_spec.rb +86 -0
- data/spec/arachni/ruby/array_spec.rb +103 -0
- data/spec/arachni/ruby/enumerable_spec.rb +37 -0
- data/spec/arachni/ruby/object_spec.rb +38 -0
- data/spec/arachni/ruby/string_spec.rb +77 -0
- data/spec/arachni/ruby/webrick_spec.rb +15 -0
- data/spec/arachni/session_spec.rb +308 -0
- data/spec/arachni/spider_spec.rb +383 -0
- data/spec/arachni/typhoeus/hydra_spec.rb +14 -0
- data/spec/arachni/typhoeus/requrest_spec.rb +58 -0
- data/spec/arachni/typhoeus/response_spec.rb +78 -0
- data/spec/arachni/uri_spec.rb +462 -0
- data/spec/arachni/utilities_spec.rb +297 -0
- data/spec/fixtures/auditstore.afr +2959 -0
- data/spec/fixtures/cookies.txt +9 -0
- data/spec/fixtures/modules/test.rb +58 -0
- data/spec/fixtures/modules/test2.rb +46 -0
- data/spec/fixtures/modules/test3.rb +46 -0
- data/spec/fixtures/passwords.txt +17 -0
- data/spec/fixtures/plugins/bad.rb +46 -0
- data/spec/fixtures/plugins/defaults/default.rb +45 -0
- data/spec/fixtures/plugins/distributable.rb +42 -0
- data/spec/fixtures/plugins/loop.rb +32 -0
- data/spec/fixtures/plugins/wait.rb +34 -0
- data/spec/fixtures/plugins/with_options.rb +31 -0
- data/spec/fixtures/reports/base_spec/plugin_formatters/with_formatters/foobar.rb +21 -0
- data/spec/fixtures/reports/base_spec/with_formatters.rb +23 -0
- data/spec/fixtures/reports/base_spec/with_outfile.rb +24 -0
- data/spec/fixtures/reports/base_spec/without_outfile.rb +20 -0
- data/spec/fixtures/reports/manager_spec/afr.rb +21 -0
- data/spec/fixtures/reports/manager_spec/foo.rb +26 -0
- data/spec/fixtures/rescan.afr.tpl +145 -0
- data/spec/fixtures/rpcd_handlers/echo.rb +68 -0
- data/spec/fixtures/run_mod/body.rb +58 -0
- data/spec/fixtures/run_mod/cookies.rb +58 -0
- data/spec/fixtures/run_mod/empty.rb +58 -0
- data/spec/fixtures/run_mod/flch.rb +63 -0
- data/spec/fixtures/run_mod/forms.rb +58 -0
- data/spec/fixtures/run_mod/headers.rb +58 -0
- data/spec/fixtures/run_mod/links.rb +58 -0
- data/spec/fixtures/run_mod/nil.rb +57 -0
- data/spec/fixtures/run_mod/path.rb +58 -0
- data/spec/fixtures/run_mod/server.rb +58 -0
- data/spec/fixtures/script_plugin.rb +1 -0
- data/spec/fixtures/taint_module/taint.rb +48 -0
- data/spec/fixtures/usernames.txt +13 -0
- data/spec/fixtures/wait_module/wait.rb +48 -0
- data/spec/helpers/auditor.rb +9 -0
- data/spec/helpers/misc.rb +41 -0
- data/spec/helpers/processes.rb +112 -0
- data/spec/helpers/requires.rb +8 -0
- data/spec/helpers/server.rb +54 -0
- data/spec/logs/Dispatcher - 2752-13830.log +49 -0
- data/spec/logs/Dispatcher - 2766-8238.log +35 -0
- data/spec/logs/Dispatcher - 2808-9029.log +31 -0
- data/spec/logs/Dispatcher - 2854-8571.log +26 -0
- data/spec/logs/Dispatcher - 2888-10411.log +20 -0
- data/spec/logs/Dispatcher - 2922-14464.log +13 -0
- data/spec/logs/Dispatcher - 2957-15255.log +19 -0
- data/spec/logs/Dispatcher - 3216-14203.log +35 -0
- data/spec/logs/Dispatcher - 3305-8622.log +43 -0
- data/spec/logs/Dispatcher - 3340-15426.log +35 -0
- data/spec/logs/Dispatcher - 3399-12586.log +40 -0
- data/spec/logs/Dispatcher - 3433-14149.log +26 -0
- data/spec/logs/Dispatcher - 3582-6198.log +27 -0
- data/spec/logs/Dispatcher - 3616-11169.log +13 -0
- data/spec/logs/Dispatcher - 3849-9016.log +7 -0
- data/spec/logs/output_spec.log +4 -0
- data/spec/logs/placeholder +0 -0
- data/spec/modules/audit/code_injection_spec.rb +25 -0
- data/spec/modules/audit/code_injection_timing_spec.rb +24 -0
- data/spec/modules/audit/csrf_spec.rb +38 -0
- data/spec/modules/audit/ldapi_spec.rb +19 -0
- data/spec/modules/audit/os_cmd_injection_spec.rb +24 -0
- data/spec/modules/audit/os_cmd_injection_timing_spec.rb +24 -0
- data/spec/modules/audit/path_traversal_spec.rb +23 -0
- data/spec/modules/audit/response_splitting_spec.rb +19 -0
- data/spec/modules/audit/rfi_spec.rb +19 -0
- data/spec/modules/audit/session_fixation_spec.rb +23 -0
- data/spec/modules/audit/sqli_blind_rdiff_spec.rb +19 -0
- data/spec/modules/audit/sqli_blind_timing_spec.rb +23 -0
- data/spec/modules/audit/sqli_spec.rb +24 -0
- data/spec/modules/audit/trainer_spec.rb +25 -0
- data/spec/modules/audit/unvalidated_redirect_spec.rb +24 -0
- data/spec/modules/audit/xpath_spec.rb +25 -0
- data/spec/modules/audit/xss_event_spec.rb +19 -0
- data/spec/modules/audit/xss_path_spec.rb +19 -0
- data/spec/modules/audit/xss_script_tag_spec.rb +19 -0
- data/spec/modules/audit/xss_spec.rb +24 -0
- data/spec/modules/audit/xss_tag_spec.rb +19 -0
- data/spec/modules/recon/allowed_methods_spec.rb +19 -0
- data/spec/modules/recon/backdoors_spec.rb +19 -0
- data/spec/modules/recon/backup_files_spec.rb +19 -0
- data/spec/modules/recon/common_directories_spec.rb +19 -0
- data/spec/modules/recon/common_files_spec.rb +19 -0
- data/spec/modules/recon/directory_listing_spec.rb +19 -0
- data/spec/modules/recon/grep/captcha_spec.rb +19 -0
- data/spec/modules/recon/grep/credit_card_spec.rb +19 -0
- data/spec/modules/recon/grep/cvs_svn_users_spec.rb +19 -0
- data/spec/modules/recon/grep/emails_spec.rb +19 -0
- data/spec/modules/recon/grep/html_objects_spec.rb +19 -0
- data/spec/modules/recon/grep/http_only_cookies_spec.rb +19 -0
- data/spec/modules/recon/grep/insecure_cookies_spec.rb +19 -0
- data/spec/modules/recon/grep/mixed_resource_spec.rb +20 -0
- data/spec/modules/recon/grep/private_ip_spec.rb +26 -0
- data/spec/modules/recon/grep/ssn_spec.rb +19 -0
- data/spec/modules/recon/grep/unencrypted_password_forms_spec.rb +19 -0
- data/spec/modules/recon/htaccess_limit_spec.rb +19 -0
- data/spec/modules/recon/http_put_spec.rb +19 -0
- data/spec/modules/recon/interesting_responses_spec.rb +27 -0
- data/spec/modules/recon/webdav_spec.rb +19 -0
- data/spec/modules/recon/xst_spec.rb +19 -0
- data/spec/path_extractors/anchors_spec.rb +19 -0
- data/spec/path_extractors/forms_spec.rb +19 -0
- data/spec/path_extractors/frames_spec.rb +20 -0
- data/spec/path_extractors/generic_spec.rb +28 -0
- data/spec/path_extractors/links_spec.rb +19 -0
- data/spec/path_extractors/meta_refresh_spec.rb +24 -0
- data/spec/path_extractors/scripts_spec.rb +19 -0
- data/spec/pems/cacert.pem +39 -0
- data/spec/pems/client/cert.pem +39 -0
- data/spec/pems/client/foo-cert.pem +39 -0
- data/spec/pems/client/foo-key.pem +51 -0
- data/spec/pems/client/key.pem +51 -0
- data/spec/pems/server/cert.pem +39 -0
- data/spec/pems/server/key.pem +51 -0
- data/spec/plugins/autologin_spec.rb +76 -0
- data/spec/plugins/autothrottle_spec.rb +45 -0
- data/spec/plugins/content_types_spec.rb +93 -0
- data/spec/plugins/cookie_collector_spec.rb +32 -0
- data/spec/plugins/form_dicattack_spec.rb +60 -0
- data/spec/plugins/healthmap_spec.rb +40 -0
- data/spec/plugins/http_dicattack_spec.rb +40 -0
- data/spec/plugins/meta/remedies/discovery_spec.rb +15 -0
- data/spec/plugins/meta/remedies/manual_verification_spec.rb +28 -0
- data/spec/plugins/meta/remedies/timing_attacks_spec.rb +30 -0
- data/spec/plugins/meta/uniformity_spec.rb +83 -0
- data/spec/plugins/profiler_spec.rb +82 -0
- data/spec/plugins/rescan_spec.rb +26 -0
- data/spec/plugins/resolver_spec.rb +16 -0
- data/spec/plugins/script_spec.rb +12 -0
- data/spec/plugins/vector_feed_spec.rb +155 -0
- data/spec/plugins/waf_detector_spec.rb +41 -0
- data/spec/reports/afr_spec.rb +13 -0
- data/spec/reports/ap_spec.rb +9 -0
- data/spec/reports/html_spec.rb +13 -0
- data/spec/reports/json_spec.rb +17 -0
- data/spec/reports/marshal_spec.rb +13 -0
- data/spec/reports/stdout_spec.rb +9 -0
- data/spec/reports/txt_spec.rb +8 -0
- data/spec/reports/xml_spec.rb +13 -0
- data/spec/reports/yaml_spec.rb +13 -0
- data/spec/servers/arachni/element/capabilities/auditable/rdiff.rb +36 -0
- data/spec/servers/arachni/element/capabilities/auditable/taint.rb +10 -0
- data/spec/servers/arachni/element/capabilities/auditable/timeout.rb +30 -0
- data/spec/servers/arachni/element/cookie.rb +37 -0
- data/spec/servers/arachni/element/form.rb +93 -0
- data/spec/servers/arachni/element/header.rb +22 -0
- data/spec/servers/arachni/element/link.rb +26 -0
- data/spec/servers/arachni/framework.rb +54 -0
- data/spec/servers/arachni/http.rb +140 -0
- data/spec/servers/arachni/http_auth.rb +9 -0
- data/spec/servers/arachni/module/auditor.rb +135 -0
- data/spec/servers/arachni/module/trainer.rb +40 -0
- data/spec/servers/arachni/parser.rb +70 -0
- data/spec/servers/arachni/rpc/server/framework_hpg.rb +21 -0
- data/spec/servers/arachni/rpc/server/framework_simple.rb +30 -0
- data/spec/servers/arachni/session.rb +110 -0
- data/spec/servers/arachni/spider.rb +148 -0
- data/spec/servers/modules/audit/code_injection.rb +140 -0
- data/spec/servers/modules/audit/code_injection_timing.rb +110 -0
- data/spec/servers/modules/audit/csrf.rb +80 -0
- data/spec/servers/modules/audit/ldapi.rb +73 -0
- data/spec/servers/modules/audit/os_cmd_injection.rb +140 -0
- data/spec/servers/modules/audit/os_cmd_injection_timing.rb +111 -0
- data/spec/servers/modules/audit/path_traversal.rb +176 -0
- data/spec/servers/modules/audit/response_splitting.rb +114 -0
- data/spec/servers/modules/audit/rfi.rb +113 -0
- data/spec/servers/modules/audit/session_fixation.rb +87 -0
- data/spec/servers/modules/audit/sqli.rb +118 -0
- data/spec/servers/modules/audit/sqli/coldfusion +1 -0
- data/spec/servers/modules/audit/sqli/db2 +4 -0
- data/spec/servers/modules/audit/sqli/emc +2 -0
- data/spec/servers/modules/audit/sqli/informix +3 -0
- data/spec/servers/modules/audit/sqli/interbase +2 -0
- data/spec/servers/modules/audit/sqli/jdbc +0 -0
- data/spec/servers/modules/audit/sqli/mssql +26 -0
- data/spec/servers/modules/audit/sqli/mysql +13 -0
- data/spec/servers/modules/audit/sqli/oracle +6 -0
- data/spec/servers/modules/audit/sqli/postgresql +7 -0
- data/spec/servers/modules/audit/sqli/sqlite +4 -0
- data/spec/servers/modules/audit/sqli/sybase +0 -0
- data/spec/servers/modules/audit/sqli_blind_rdiff.rb +74 -0
- data/spec/servers/modules/audit/sqli_blind_timing.rb +121 -0
- data/spec/servers/modules/audit/trainer_module.rb +160 -0
- data/spec/servers/modules/audit/unvalidated_redirect.rb +115 -0
- data/spec/servers/modules/audit/xpath.rb +111 -0
- data/spec/servers/modules/audit/xpath/dotnet +5 -0
- data/spec/servers/modules/audit/xpath/general +13 -0
- data/spec/servers/modules/audit/xpath/java +3 -0
- data/spec/servers/modules/audit/xpath/libxml2 +2 -0
- data/spec/servers/modules/audit/xpath/php +2 -0
- data/spec/servers/modules/audit/xss.rb +152 -0
- data/spec/servers/modules/audit/xss_event.rb +80 -0
- data/spec/servers/modules/audit/xss_path.rb +44 -0
- data/spec/servers/modules/audit/xss_script_tag.rb +73 -0
- data/spec/servers/modules/audit/xss_tag.rb +139 -0
- data/spec/servers/modules/module_server.rb +14 -0
- data/spec/servers/modules/recon/allowed_methods.rb +5 -0
- data/spec/servers/modules/recon/backdoors.rb +4 -0
- data/spec/servers/modules/recon/backup_files.rb +28 -0
- data/spec/servers/modules/recon/common_directories.rb +6 -0
- data/spec/servers/modules/recon/common_files.rb +6 -0
- data/spec/servers/modules/recon/directory_listing.rb +30 -0
- data/spec/servers/modules/recon/grep/captcha.rb +27 -0
- data/spec/servers/modules/recon/grep/credit_card.rb +28 -0
- data/spec/servers/modules/recon/grep/cvs_svn_users.rb +23 -0
- data/spec/servers/modules/recon/grep/emails.rb +21 -0
- data/spec/servers/modules/recon/grep/html_objects.rb +7 -0
- data/spec/servers/modules/recon/grep/http_only_cookies.rb +21 -0
- data/spec/servers/modules/recon/grep/insecure_cookies.rb +21 -0
- data/spec/servers/modules/recon/grep/mixed_resource.rb +83 -0
- data/spec/servers/modules/recon/grep/private_ip.rb +18 -0
- data/spec/servers/modules/recon/grep/ssn.rb +5 -0
- data/spec/servers/modules/recon/grep/unencrypted_password_forms.rb +33 -0
- data/spec/servers/modules/recon/htaccess_limit.rb +8 -0
- data/spec/servers/modules/recon/http_put.rb +7 -0
- data/spec/servers/modules/recon/interesting_responses.rb +5 -0
- data/spec/servers/modules/recon/webdav.rb +25 -0
- data/spec/servers/modules/recon/xst.rb +6 -0
- data/spec/servers/plugins/autologin.rb +38 -0
- data/spec/servers/plugins/autothrottle.rb +8 -0
- data/spec/servers/plugins/content_types.rb +17 -0
- data/spec/servers/plugins/cookie_collector.rb +20 -0
- data/spec/servers/plugins/form_dicattack.rb +28 -0
- data/spec/servers/plugins/healthmap.rb +16 -0
- data/spec/servers/plugins/http_dicattack.rb +9 -0
- data/spec/servers/plugins/http_dicattack_secure.rb +9 -0
- data/spec/servers/plugins/http_dicattack_unprotected.rb +5 -0
- data/spec/servers/plugins/meta/remedies/discovery.rb +7 -0
- data/spec/servers/plugins/meta/remedies/timing_attacks.rb +29 -0
- data/spec/servers/plugins/profiler.rb +82 -0
- data/spec/servers/plugins/rescan.rb +31 -0
- data/spec/servers/plugins/waf_detector.rb +33 -0
- data/spec/shared/component.rb +43 -0
- data/spec/shared/element/capabilities/auditable.rb +729 -0
- data/spec/shared/element/capabilities/refreshable.rb +56 -0
- data/spec/shared/module.rb +162 -0
- data/spec/shared/path_extractor.rb +47 -0
- data/spec/shared/plugin.rb +50 -0
- data/spec/shared/reports.rb +47 -0
- data/spec/spec_helper.rb +53 -0
- metadata +870 -323
- data/extras/modules/recon/raft_dirs.rb +0 -108
- data/extras/modules/recon/raft_dirs/raft-large-directories.txt +0 -62290
- data/extras/modules/recon/raft_files.rb +0 -110
- data/extras/modules/recon/raft_files/raft-large-files.txt +0 -37037
- data/extras/modules/recon/svn_digger_dirs.rb +0 -108
- data/extras/modules/recon/svn_digger_dirs/Licence.txt +0 -674
- data/extras/modules/recon/svn_digger_dirs/ReadMe-Arachni.txt +0 -4
- data/extras/modules/recon/svn_digger_dirs/ReadMe.txt +0 -6
- data/extras/modules/recon/svn_digger_dirs/all-dirs.txt +0 -5960
- data/extras/modules/recon/svn_digger_files.rb +0 -114
- data/extras/modules/recon/svn_digger_files/Licence.txt +0 -674
- data/extras/modules/recon/svn_digger_files/ReadMe-Arachni.txt +0 -4
- data/extras/modules/recon/svn_digger_files/ReadMe.txt +0 -6
- data/extras/modules/recon/svn_digger_files/all-extensionless.txt +0 -25419
- data/extras/modules/recon/svn_digger_files/all.txt +0 -43135
- data/lib/arachni/component_manager.rb +0 -293
- data/lib/arachni/component_options.rb +0 -425
- data/lib/arachni/parser/auditable.rb +0 -606
- data/lib/arachni/parser/elements.rb +0 -315
- data/lib/arachni/parser/page.rb +0 -168
- data/lib/arachni/parser/parser.rb +0 -866
- data/lib/arachni/rpc/server/options.rb +0 -95
- data/lib/arachni/ui/web/addons/autodeploy.rb +0 -207
- data/lib/arachni/ui/web/addons/autodeploy/lib/manager.rb +0 -398
- data/lib/arachni/ui/web/addons/autodeploy/views/index.erb +0 -291
- data/modules/recon/mixed_resource.rb +0 -100
- data/modules/recon/unencrypted_password_forms.rb +0 -107
- data/path_extractors/sitemap.rb +0 -31
- data/plugins/defaults/metamodules/remedies/manual_verification.rb +0 -65
- data/plugins/defaults/metamodules/remedies/timing_attacks.rb +0 -134
- data/plugins/defaults/metamodules/uniformity.rb +0 -99
- data/reports/metareport/arachni_metareport.rb +0 -174
- data/reports/plugin_formatters/stdout/metamodules.rb +0 -82
@@ -0,0 +1,42 @@
|
|
1
|
+
=begin
|
2
|
+
Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
=end
|
16
|
+
|
17
|
+
###
|
18
|
+
#
|
19
|
+
# URL option.
|
20
|
+
#
|
21
|
+
###
|
22
|
+
class Arachni::Component::Options::URL < Arachni::Component::Options::Base
|
23
|
+
def type
|
24
|
+
'url'
|
25
|
+
end
|
26
|
+
|
27
|
+
def valid?( value )
|
28
|
+
return false if empty_required_value?( value )
|
29
|
+
|
30
|
+
if value && !value.to_s.empty?
|
31
|
+
require 'uri'
|
32
|
+
require 'socket'
|
33
|
+
begin
|
34
|
+
::IPSocket.getaddress( URI( value ).host )
|
35
|
+
rescue
|
36
|
+
return false
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
super
|
41
|
+
end
|
42
|
+
end
|
@@ -1,11 +1,17 @@
|
|
1
1
|
=begin
|
2
|
-
|
3
|
-
Copyright (c) 2010-2012 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
|
2
|
+
Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
|
4
3
|
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
8
7
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
9
15
|
=end
|
10
16
|
|
11
17
|
require 'openssl'
|
@@ -17,10 +23,10 @@ require "base64"
|
|
17
23
|
#
|
18
24
|
# RSA is used to encrypt the AES primitives which are used to encrypt the plaintext.
|
19
25
|
#
|
20
|
-
# @author
|
26
|
+
# @author Tasos "Zapotek" Laskos
|
21
27
|
# <tasos.laskos@gmail.com>
|
22
|
-
#
|
23
|
-
# @version
|
28
|
+
#
|
29
|
+
# @version 0.1
|
24
30
|
#
|
25
31
|
class RSA_AES_CBC
|
26
32
|
|
data/lib/arachni/database.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
2
|
-
require
|
3
|
-
require
|
4
|
-
require
|
1
|
+
lib = Arachni::Options.dir['lib']
|
2
|
+
require lib + 'database/base'
|
3
|
+
require lib + 'database/queue'
|
4
|
+
require lib + 'database/hash'
|
@@ -1,11 +1,17 @@
|
|
1
1
|
=begin
|
2
|
-
|
3
|
-
Copyright (c) 2010-2012 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
|
2
|
+
Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
|
4
3
|
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
8
7
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
9
15
|
=end
|
10
16
|
|
11
17
|
require 'tmpdir'
|
@@ -19,10 +25,10 @@ module Database
|
|
19
25
|
# Provides helper methods for data structures to be implemented related to
|
20
26
|
# objecting dumping, loading, unique filename generation, etc.
|
21
27
|
#
|
22
|
-
# @author
|
28
|
+
# @author Tasos "Zapotek" Laskos
|
23
29
|
# <tasos.laskos@gmail.com>
|
24
|
-
#
|
25
|
-
# @version
|
30
|
+
#
|
31
|
+
# @version 0.1
|
26
32
|
# @abstract
|
27
33
|
#
|
28
34
|
class Base
|
@@ -1,11 +1,17 @@
|
|
1
1
|
=begin
|
2
|
-
|
3
|
-
Copyright (c) 2010-2012 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
|
2
|
+
Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
|
4
3
|
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
8
7
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
9
15
|
=end
|
10
16
|
|
11
17
|
require 'digest/sha1'
|
@@ -22,10 +28,10 @@ module Database
|
|
22
28
|
# It's not interchangeable with Ruby's Hash as it lacks a lot of the
|
23
29
|
# stdlib methods.
|
24
30
|
#
|
25
|
-
# @author
|
31
|
+
# @author Tasos "Zapotek" Laskos
|
26
32
|
# <tasos.laskos@gmail.com>
|
27
|
-
#
|
28
|
-
# @version
|
33
|
+
#
|
34
|
+
# @version 0.1
|
29
35
|
#
|
30
36
|
class Hash < Base
|
31
37
|
|
@@ -52,6 +58,8 @@ module Database
|
|
52
58
|
# @param [Object] k key
|
53
59
|
# @param [Object] v value
|
54
60
|
#
|
61
|
+
# @return [Object] returns value
|
62
|
+
#
|
55
63
|
def []=( k, v )
|
56
64
|
@h[k] = dump( v ) {
|
57
65
|
|serialized|
|
@@ -123,8 +131,8 @@ module Database
|
|
123
131
|
# @return [Array]
|
124
132
|
#
|
125
133
|
def shift
|
126
|
-
k, v = @h.
|
127
|
-
[ k,
|
134
|
+
k, v = @h.first
|
135
|
+
[ k, delete( k ) ]
|
128
136
|
end
|
129
137
|
|
130
138
|
#
|
@@ -205,8 +213,9 @@ module Database
|
|
205
213
|
return if !value?( val )
|
206
214
|
each {
|
207
215
|
|k, v|
|
208
|
-
return k if val == self[
|
216
|
+
return k if val == self[k]
|
209
217
|
}
|
218
|
+
nil
|
210
219
|
end
|
211
220
|
|
212
221
|
#
|
@@ -345,7 +354,7 @@ module Database
|
|
345
354
|
eql = {}
|
346
355
|
h.to_hash.each {
|
347
356
|
|k, v|
|
348
|
-
eql[k] = eql_hash( v
|
357
|
+
eql[k] = eql_hash( serialize( v ) )
|
349
358
|
}
|
350
359
|
@eql_h == eql
|
351
360
|
else
|
@@ -1,11 +1,17 @@
|
|
1
1
|
=begin
|
2
|
-
|
3
|
-
Copyright (c) 2010-2012 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
|
2
|
+
Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
|
4
3
|
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
8
7
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
9
15
|
=end
|
10
16
|
|
11
17
|
module Arachni
|
@@ -20,10 +26,10 @@ module Database
|
|
20
26
|
# It's pretty useful when you want to reduce memory footprint without
|
21
27
|
# having to refactor any code since it behaves just like Ruby's implementation.
|
22
28
|
#
|
23
|
-
# @author
|
29
|
+
# @author Tasos "Zapotek" Laskos
|
24
30
|
# <tasos.laskos@gmail.com>
|
25
|
-
#
|
26
|
-
# @version
|
31
|
+
#
|
32
|
+
# @version 0.1
|
27
33
|
#
|
28
34
|
class Queue < Base
|
29
35
|
|
@@ -83,7 +89,7 @@ module Database
|
|
83
89
|
while( !@q.empty? )
|
84
90
|
path = @q.pop
|
85
91
|
next if !path
|
86
|
-
delete_file(
|
92
|
+
delete_file( path )
|
87
93
|
end
|
88
94
|
end
|
89
95
|
|
@@ -0,0 +1,147 @@
|
|
1
|
+
=begin
|
2
|
+
Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
=end
|
16
|
+
|
17
|
+
#
|
18
|
+
# Should be extended/implemented by all HTML/HTTP modules.
|
19
|
+
#
|
20
|
+
# @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
|
21
|
+
# @abstract
|
22
|
+
#
|
23
|
+
module Arachni::Element
|
24
|
+
|
25
|
+
module Capabilities
|
26
|
+
end
|
27
|
+
|
28
|
+
# load and include all available capabilities
|
29
|
+
lib = File.dirname( __FILE__ ) + '/capabilities/*.rb'
|
30
|
+
Dir.glob( lib ).each { |f| require f }
|
31
|
+
|
32
|
+
class Base
|
33
|
+
include Capabilities::Auditable
|
34
|
+
extend Arachni::Utilities
|
35
|
+
|
36
|
+
#
|
37
|
+
# Relatively 'raw' (frozen) hash holding the element's HTML attributes, values, etc.
|
38
|
+
#
|
39
|
+
# @return [Hash]
|
40
|
+
#
|
41
|
+
attr_reader :raw
|
42
|
+
|
43
|
+
#
|
44
|
+
# Initialize the element.
|
45
|
+
#
|
46
|
+
# @param [String] url {#url}
|
47
|
+
# @param [Hash] raw {#raw}
|
48
|
+
#
|
49
|
+
def initialize( url, raw = {} )
|
50
|
+
@raw = raw.dup
|
51
|
+
@raw.freeze
|
52
|
+
self.url = url.to_s
|
53
|
+
|
54
|
+
@opts = {}
|
55
|
+
end
|
56
|
+
|
57
|
+
#
|
58
|
+
# Must provide a string uniquely identifying self.
|
59
|
+
#
|
60
|
+
# @return [String]
|
61
|
+
#
|
62
|
+
def id
|
63
|
+
@raw.to_s
|
64
|
+
end
|
65
|
+
|
66
|
+
#
|
67
|
+
# Must provide a simple hash representation of self
|
68
|
+
#
|
69
|
+
def simple
|
70
|
+
{}
|
71
|
+
end
|
72
|
+
|
73
|
+
#
|
74
|
+
# Method for the element.
|
75
|
+
#
|
76
|
+
# Should represent a method in {Arachni::Module::HTTP}.
|
77
|
+
#
|
78
|
+
# Ex. get, post, cookie, header
|
79
|
+
#
|
80
|
+
# @see Arachni::Module::HTTP
|
81
|
+
#
|
82
|
+
# @return [String]
|
83
|
+
#
|
84
|
+
def method
|
85
|
+
@method.freeze
|
86
|
+
end
|
87
|
+
|
88
|
+
# @see #method
|
89
|
+
def method=( method )
|
90
|
+
@method = method
|
91
|
+
rehash
|
92
|
+
self.method
|
93
|
+
end
|
94
|
+
|
95
|
+
#
|
96
|
+
# The url to which the element points and should be audited against.
|
97
|
+
#
|
98
|
+
# Ex. 'href' for links, 'action' for forms, etc.
|
99
|
+
#
|
100
|
+
# @return [String]
|
101
|
+
#
|
102
|
+
def action
|
103
|
+
@action.freeze
|
104
|
+
end
|
105
|
+
|
106
|
+
# @see #action
|
107
|
+
def action=( url )
|
108
|
+
@action = self.url ? to_absolute( url, self.url ) : normalize_url( url )
|
109
|
+
rehash
|
110
|
+
self.action
|
111
|
+
end
|
112
|
+
|
113
|
+
#
|
114
|
+
# The URL of the page that owns the element.
|
115
|
+
#
|
116
|
+
# @return [String]
|
117
|
+
#
|
118
|
+
def url
|
119
|
+
@url.freeze
|
120
|
+
end
|
121
|
+
|
122
|
+
# @see #url
|
123
|
+
def url=( url )
|
124
|
+
@url = normalize_url( url )
|
125
|
+
rehash
|
126
|
+
self.url
|
127
|
+
end
|
128
|
+
|
129
|
+
#
|
130
|
+
# Must provide the element type, one of {Arachni::Module::Auditor::Element}.
|
131
|
+
#
|
132
|
+
def type
|
133
|
+
self.class.name.split( ':' ).last.downcase
|
134
|
+
end
|
135
|
+
|
136
|
+
def dup
|
137
|
+
new = self.class.new( @url ? @url.dup : nil, @raw.dup )
|
138
|
+
new.override_instance_scope if override_instance_scope?
|
139
|
+
new.auditor = self.auditor
|
140
|
+
new.method = self.method.dup
|
141
|
+
new.altered = self.altered.dup if self.altered
|
142
|
+
new.auditable = self.auditable.dup
|
143
|
+
new
|
144
|
+
end
|
145
|
+
|
146
|
+
end
|
147
|
+
end
|
@@ -0,0 +1,623 @@
|
|
1
|
+
=begin
|
2
|
+
Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
=end
|
16
|
+
|
17
|
+
module Arachni
|
18
|
+
|
19
|
+
lib = Options.dir['lib']
|
20
|
+
require lib + 'bloom_filter'
|
21
|
+
require lib + 'module/utilities'
|
22
|
+
require lib + 'issue'
|
23
|
+
require lib + 'element/capabilities/mutable'
|
24
|
+
|
25
|
+
module Element::Capabilities
|
26
|
+
|
27
|
+
#
|
28
|
+
# Provides audit functionality to {Arachni::Element::Mutable} elements.
|
29
|
+
#
|
30
|
+
# @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
|
31
|
+
#
|
32
|
+
module Auditable
|
33
|
+
include Utilities
|
34
|
+
include Mutable
|
35
|
+
|
36
|
+
# load and include all available analysis/audit techniques
|
37
|
+
lib = File.dirname( __FILE__ ) + '/auditable/*.rb'
|
38
|
+
Dir.glob( lib ).each { |f| require f }
|
39
|
+
|
40
|
+
include Taint
|
41
|
+
include Timeout
|
42
|
+
include RDiff
|
43
|
+
|
44
|
+
#
|
45
|
+
# Empties the de-duplication/uniqueness look-up table.
|
46
|
+
#
|
47
|
+
# Unless you're sure you need this, set the :redundant flag to true
|
48
|
+
# when calling audit methods to bypass it.
|
49
|
+
#
|
50
|
+
def self.reset
|
51
|
+
@@audited = BloomFilter.new
|
52
|
+
end
|
53
|
+
reset
|
54
|
+
|
55
|
+
#
|
56
|
+
# Sets the auditor for this element.
|
57
|
+
#
|
58
|
+
# The auditor provides its output, HTTP and issue logging interfaces.
|
59
|
+
#
|
60
|
+
# @return [Arachni::Module::Auditor]
|
61
|
+
#
|
62
|
+
attr_accessor :auditor
|
63
|
+
|
64
|
+
#
|
65
|
+
# Frozen version of {#auditable}, has all the original name/values
|
66
|
+
#
|
67
|
+
# @return [Hash]
|
68
|
+
#
|
69
|
+
attr_reader :orig
|
70
|
+
alias :original :orig
|
71
|
+
|
72
|
+
#
|
73
|
+
# @return [Hash] audit and general options for convenience's sake
|
74
|
+
#
|
75
|
+
attr_reader :opts
|
76
|
+
|
77
|
+
#
|
78
|
+
# Holds constants that describe the HTML elements to be audited.
|
79
|
+
#
|
80
|
+
#module Element
|
81
|
+
# include Arachni::Issue::Element
|
82
|
+
#end
|
83
|
+
|
84
|
+
#
|
85
|
+
# Default audit options.
|
86
|
+
#
|
87
|
+
OPTIONS = {
|
88
|
+
#
|
89
|
+
# Enable skipping of already audited inputs
|
90
|
+
#
|
91
|
+
redundant: false,
|
92
|
+
|
93
|
+
#
|
94
|
+
# Make requests asynchronously
|
95
|
+
#
|
96
|
+
async: true,
|
97
|
+
|
98
|
+
#
|
99
|
+
# Block to be passed each mutation right before being submitted.
|
100
|
+
#
|
101
|
+
# Allows for last minute changes.
|
102
|
+
#
|
103
|
+
each_mutation: nil
|
104
|
+
}
|
105
|
+
|
106
|
+
#
|
107
|
+
# Frozen Key=>value pairs of inputs.
|
108
|
+
#
|
109
|
+
# If you want to change it you'll either have to use {#update}
|
110
|
+
# or the {#auditable=} attr_writer and pass a new hash -- the new hash will also be frozen.
|
111
|
+
#
|
112
|
+
# @return [Hash]
|
113
|
+
#
|
114
|
+
def auditable
|
115
|
+
@auditable.freeze
|
116
|
+
end
|
117
|
+
|
118
|
+
#
|
119
|
+
# @param [Hash] hash key=>value pair of inputs/params.
|
120
|
+
# Will convert keys and values to string.
|
121
|
+
#
|
122
|
+
# @see auditable
|
123
|
+
#
|
124
|
+
def auditable=( hash )
|
125
|
+
@auditable = (hash || {}).inject({}) { |h, (k, v)| h[k.to_s] = v.to_s.freeze; h}
|
126
|
+
rehash
|
127
|
+
self.auditable
|
128
|
+
end
|
129
|
+
|
130
|
+
#
|
131
|
+
# Checks whether or not the given inputs match the auditable ones.
|
132
|
+
#
|
133
|
+
# @param [Hash, Array, String, Symbol] args names to check (also accepts var-args)
|
134
|
+
#
|
135
|
+
# @return [Bool]
|
136
|
+
#
|
137
|
+
def has_inputs?( *args )
|
138
|
+
if (h = args.first).is_a?( Hash )
|
139
|
+
h.each { |k, v| return false if self[k] != v }
|
140
|
+
else
|
141
|
+
keys = args.flatten.compact.map { |a| [a].map( &:to_s ) }.flatten
|
142
|
+
(self.auditable.keys & keys).size == keys.size
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
#
|
147
|
+
# @param [Hash] hash key=>value pair of inputs/params with which to
|
148
|
+
# update the #auditable inputs
|
149
|
+
#
|
150
|
+
# @return [Auditable] self
|
151
|
+
#
|
152
|
+
# @see #auditable
|
153
|
+
# @see #auditable=
|
154
|
+
#
|
155
|
+
def update( hash )
|
156
|
+
self.auditable = self.auditable.merge( hash )
|
157
|
+
self
|
158
|
+
end
|
159
|
+
|
160
|
+
#
|
161
|
+
# Returns changes make to the auditable's inputs.
|
162
|
+
#
|
163
|
+
# @param [Hash] hash key=>value pair of updated inputs/params
|
164
|
+
#
|
165
|
+
def changes
|
166
|
+
(self.orig.keys | self.auditable.keys).inject( {} ) do |h, k|
|
167
|
+
if self.orig[k] != self.auditable[k]
|
168
|
+
h[k] = self.auditable[k]
|
169
|
+
end
|
170
|
+
h
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
#
|
175
|
+
# Shorthand {#auditable} reader
|
176
|
+
#
|
177
|
+
# @param [#to_s] k key
|
178
|
+
#
|
179
|
+
# @return [String]
|
180
|
+
#
|
181
|
+
def []( k )
|
182
|
+
self.auditable[k.to_s]
|
183
|
+
end
|
184
|
+
|
185
|
+
#
|
186
|
+
# Shorthand {#auditable} writer
|
187
|
+
#
|
188
|
+
# @param [#to_s] k key
|
189
|
+
# @param [#to_s] v value
|
190
|
+
#
|
191
|
+
# @see #update
|
192
|
+
#
|
193
|
+
def []=( k, v )
|
194
|
+
update( { k => v } )
|
195
|
+
[k]
|
196
|
+
end
|
197
|
+
|
198
|
+
def ==( e )
|
199
|
+
hash == e.hash
|
200
|
+
end
|
201
|
+
alias :eql? :==
|
202
|
+
|
203
|
+
def hash
|
204
|
+
@hash ||= rehash
|
205
|
+
end
|
206
|
+
|
207
|
+
#
|
208
|
+
# When working in High Performance Grid mode the instances have
|
209
|
+
# a very specific list of elements which they are allowed to audit.
|
210
|
+
#
|
211
|
+
# Elements which do not fit the scope are ignored.
|
212
|
+
#
|
213
|
+
# When called, the element will override the scope and be audited no-matter what.
|
214
|
+
#
|
215
|
+
# This is mainly used on elements discovered during audit-time by the trainer.
|
216
|
+
#
|
217
|
+
def override_instance_scope
|
218
|
+
@override_instance_scope = true
|
219
|
+
end
|
220
|
+
|
221
|
+
def reset_scope_override
|
222
|
+
@override_instance_scope = false
|
223
|
+
end
|
224
|
+
|
225
|
+
#
|
226
|
+
# Does this element override the instance scope?
|
227
|
+
#
|
228
|
+
# @see override_instance_scope
|
229
|
+
#
|
230
|
+
def override_instance_scope?
|
231
|
+
@override_instance_scope ||= false
|
232
|
+
end
|
233
|
+
|
234
|
+
def self.reset_instance_scope
|
235
|
+
@@restrict_to_elements = BloomFilter.new
|
236
|
+
end
|
237
|
+
|
238
|
+
#
|
239
|
+
# Provides a more generalized audit ID which does not contain the
|
240
|
+
# auditor's name, timeout value of injection string.
|
241
|
+
#
|
242
|
+
# Right now only used when in HPG mode to generate a white-list of
|
243
|
+
# element IDs that are allowed to be audited.
|
244
|
+
#
|
245
|
+
# @param [Hash] opts {#audit} opts
|
246
|
+
#
|
247
|
+
def scope_audit_id( opts = {} )
|
248
|
+
opts = {} if !opts
|
249
|
+
audit_id( nil, opts.merge(
|
250
|
+
no_auditor: true,
|
251
|
+
no_timeout: true,
|
252
|
+
no_injection_str: true
|
253
|
+
))
|
254
|
+
end
|
255
|
+
|
256
|
+
#
|
257
|
+
# Restricts the audit to a specific set of elements.
|
258
|
+
#
|
259
|
+
# *Caution*: Each call overwrites the last.
|
260
|
+
#
|
261
|
+
# @param [Array<String>] elements array of element/audit IDs by {#scope_audit_id}
|
262
|
+
#
|
263
|
+
# @see scope_audit_id
|
264
|
+
#
|
265
|
+
def self.restrict_to_elements( elements )
|
266
|
+
self.reset_instance_scope
|
267
|
+
elements.each { |elem| @@restrict_to_elements << elem }
|
268
|
+
end
|
269
|
+
|
270
|
+
#
|
271
|
+
# Must be implemented by the including class and perform the appropriate
|
272
|
+
# HTTP request (get/post/whatever) for the current element.
|
273
|
+
#
|
274
|
+
# Invoked by {#submit} to submit the object.
|
275
|
+
#
|
276
|
+
# @param [Hash] opts
|
277
|
+
# @param [Block] block callback to be passed the HTTP response
|
278
|
+
#
|
279
|
+
# @return [Typhoeus::Request]
|
280
|
+
#
|
281
|
+
# @see #submit
|
282
|
+
# @abstract
|
283
|
+
#
|
284
|
+
def http_request( opts, &block )
|
285
|
+
end
|
286
|
+
|
287
|
+
#
|
288
|
+
# Returns the {#auditor}'s HTTP interface or reverts to Arachni::HTTP.instance
|
289
|
+
#
|
290
|
+
# @return [Arachni::HTTP]
|
291
|
+
#
|
292
|
+
def http
|
293
|
+
HTTP
|
294
|
+
end
|
295
|
+
|
296
|
+
#
|
297
|
+
# @return [Bool] true if it has no auditor
|
298
|
+
#
|
299
|
+
def orphan?
|
300
|
+
!@auditor
|
301
|
+
end
|
302
|
+
|
303
|
+
#
|
304
|
+
# Resets the auditable inputs to their original format/values.
|
305
|
+
#
|
306
|
+
def reset
|
307
|
+
self.auditable = @orig.dup
|
308
|
+
end
|
309
|
+
|
310
|
+
def remove_auditor
|
311
|
+
@auditor = nil
|
312
|
+
end
|
313
|
+
|
314
|
+
#
|
315
|
+
# Submits self using {#http_request}.
|
316
|
+
#
|
317
|
+
# @param [Hash] opts
|
318
|
+
# @param [Block] block callback to be passed the HTTP response
|
319
|
+
#
|
320
|
+
# @see #http_request
|
321
|
+
#
|
322
|
+
def submit( opts = {}, &block )
|
323
|
+
opts = OPTIONS.merge( opts )
|
324
|
+
opts[:params] = @auditable.dup
|
325
|
+
opts[:follow_location] = true if !opts.include?( :follow_location )
|
326
|
+
|
327
|
+
@opts ||= {}
|
328
|
+
|
329
|
+
opts = @opts.merge( opts )
|
330
|
+
@opts = opts
|
331
|
+
|
332
|
+
@auditor ||= opts[:auditor] if opts[:auditor]
|
333
|
+
|
334
|
+
opts.delete( :auditor )
|
335
|
+
|
336
|
+
http_request( opts, &block )
|
337
|
+
end
|
338
|
+
|
339
|
+
def skip_path?( url )
|
340
|
+
super || Options.redundant?( url )
|
341
|
+
end
|
342
|
+
|
343
|
+
#
|
344
|
+
# Submits mutations of self and calls the block to handle the responses.
|
345
|
+
#
|
346
|
+
# Requires an {#auditor}.
|
347
|
+
#
|
348
|
+
# @param [String] injection_str the string to be injected
|
349
|
+
# @param [Hash] opts options as described in {OPTIONS}
|
350
|
+
# @param [Block] block block to be used for analysis of responses; will be passed the following:
|
351
|
+
# * HTTP response
|
352
|
+
# * options
|
353
|
+
# * element
|
354
|
+
# The block will be called as soon as the
|
355
|
+
# HTTP response is received.
|
356
|
+
#
|
357
|
+
# @see #submit
|
358
|
+
#
|
359
|
+
def audit( injection_str, opts = { }, &block )
|
360
|
+
fail 'Block required.' if !block_given?
|
361
|
+
|
362
|
+
if skip_path?( self.action )
|
363
|
+
print_debug "Element's action matches skip rule, bailing out (#{self.action})."
|
364
|
+
return false
|
365
|
+
end
|
366
|
+
|
367
|
+
opts[:injected_orig] = injection_str
|
368
|
+
|
369
|
+
# if we don't have any auditable elements just return
|
370
|
+
if auditable.empty?
|
371
|
+
print_debug "The element has no auditable inputs, returning."
|
372
|
+
return false
|
373
|
+
end
|
374
|
+
|
375
|
+
@auditor ||= opts[:auditor]
|
376
|
+
opts[:auditor] ||= @auditor
|
377
|
+
|
378
|
+
audit_id = audit_id( injection_str, opts )
|
379
|
+
return false if !opts[:redundant] && audited?( audit_id )
|
380
|
+
|
381
|
+
# iterate through all variation and audit each one
|
382
|
+
mutations( injection_str, opts ).each do |elem|
|
383
|
+
|
384
|
+
if Options.exclude_vectors.include?( elem.altered )
|
385
|
+
print_info "Skipping audit of '#{elem.altered}' #{type} vector."
|
386
|
+
next
|
387
|
+
end
|
388
|
+
|
389
|
+
if !orphan? && @auditor.skip?( elem )
|
390
|
+
mid = elem.audit_id( injection_str, opts )
|
391
|
+
print_debug "Auditor's #skip? method returned true for mutation, skipping: #{mid}"
|
392
|
+
next
|
393
|
+
end
|
394
|
+
if skip?( elem )
|
395
|
+
mid = elem.audit_id( injection_str, opts )
|
396
|
+
print_debug "Self's #skip? method returned true for mutation, skipping: #{mid}"
|
397
|
+
next
|
398
|
+
end
|
399
|
+
|
400
|
+
opts[:altered] = elem.altered.dup
|
401
|
+
opts[:element] = type
|
402
|
+
|
403
|
+
# inform the user about what we're auditing
|
404
|
+
print_status( elem.status_string ) if !opts[:silent]
|
405
|
+
|
406
|
+
if opts[:each_mutation]
|
407
|
+
if elements = opts[:each_mutation].call( elem )
|
408
|
+
[elements].flatten.compact.each do |e|
|
409
|
+
on_complete( e.submit( opts ), e, &block ) if e.is_a?( self.class )
|
410
|
+
end
|
411
|
+
end
|
412
|
+
end
|
413
|
+
|
414
|
+
# submit the element with the injection values
|
415
|
+
on_complete( elem.submit( opts ), elem, &block )
|
416
|
+
end
|
417
|
+
|
418
|
+
audited( audit_id )
|
419
|
+
true
|
420
|
+
end
|
421
|
+
|
422
|
+
def skip?( elem )
|
423
|
+
false
|
424
|
+
end
|
425
|
+
|
426
|
+
#
|
427
|
+
# Returns a status string explaining what's being audited.
|
428
|
+
#
|
429
|
+
# The string contains the name of the input that is being audited,
|
430
|
+
# the url and the type of the input (form, link, cookie...).
|
431
|
+
#
|
432
|
+
# @return [String]
|
433
|
+
#
|
434
|
+
def status_string
|
435
|
+
"Auditing #{self.type} variable '#{self.altered}' with action '#{self.action}'."
|
436
|
+
end
|
437
|
+
|
438
|
+
#
|
439
|
+
# Returns an audit ID string used to avoid redundant audits or identify the element.
|
440
|
+
#
|
441
|
+
# @param [String] injection_str
|
442
|
+
# @param [Hash] opts
|
443
|
+
#
|
444
|
+
# @return [String]
|
445
|
+
#
|
446
|
+
def audit_id( injection_str = '', opts = {} )
|
447
|
+
vars = auditable.keys.sort.to_s
|
448
|
+
|
449
|
+
str = ''
|
450
|
+
str << "#{@auditor.fancy_name}:" if !opts[:no_auditor] && !orphan?
|
451
|
+
|
452
|
+
str << "#{@action}:#{type}:#{vars}"
|
453
|
+
str << "=#{injection_str}" if !opts[:no_injection_str]
|
454
|
+
str << ":timeout=#{opts[:timeout]}" if !opts[:no_timeout]
|
455
|
+
|
456
|
+
str
|
457
|
+
end
|
458
|
+
|
459
|
+
#
|
460
|
+
# Predicts what the {Issue#unique_id} of an issue would look like,
|
461
|
+
# should self be vulnerable.
|
462
|
+
#
|
463
|
+
# Mainly used by {Arachni::Module::Auditor#skip?} to prevent redundant audits for elements/issues
|
464
|
+
# which have already been logged as vulnerable.
|
465
|
+
#
|
466
|
+
# @return [String]
|
467
|
+
#
|
468
|
+
def provisioned_issue_id( auditor_fanxy_name = @auditor.fancy_name )
|
469
|
+
"#{auditor_fanxy_name}::#{type}::#{altered}::#{self.action.split( '?' ).first}"
|
470
|
+
end
|
471
|
+
|
472
|
+
# impersonate the auditor to the output methods
|
473
|
+
def info
|
474
|
+
!orphan? ? @auditor.class.info : { name: '' }
|
475
|
+
end
|
476
|
+
|
477
|
+
#
|
478
|
+
# Delegate output related methods to the auditor
|
479
|
+
#
|
480
|
+
|
481
|
+
def debug?
|
482
|
+
@auditor.debug? rescue false
|
483
|
+
end
|
484
|
+
|
485
|
+
def print_error( str = '' )
|
486
|
+
@auditor.print_error( str ) if !orphan?
|
487
|
+
end
|
488
|
+
|
489
|
+
def print_status( str = '' )
|
490
|
+
@auditor.print_status( str ) if !orphan?
|
491
|
+
end
|
492
|
+
|
493
|
+
def print_info( str = '' )
|
494
|
+
@auditor.print_info( str ) if !orphan?
|
495
|
+
end
|
496
|
+
|
497
|
+
def print_line( str = '' )
|
498
|
+
@auditor.print_line( str ) if !orphan?
|
499
|
+
end
|
500
|
+
|
501
|
+
def print_ok( str = '' )
|
502
|
+
@auditor.print_ok( str ) if !orphan?
|
503
|
+
end
|
504
|
+
|
505
|
+
def print_bad( str = '' )
|
506
|
+
@auditor.print_bad( str ) if !orphan?
|
507
|
+
end
|
508
|
+
|
509
|
+
def print_debug( str = '' )
|
510
|
+
@auditor.print_debug( str ) if !orphan?
|
511
|
+
end
|
512
|
+
|
513
|
+
def print_debug_backtrace( str = '' )
|
514
|
+
@auditor.print_debug_backtrace( str ) if !orphan?
|
515
|
+
end
|
516
|
+
|
517
|
+
def print_error_backtrace( str = '' )
|
518
|
+
@auditor.print_error_backtrace( str ) if !orphan?
|
519
|
+
end
|
520
|
+
|
521
|
+
private
|
522
|
+
|
523
|
+
#
|
524
|
+
# Registers a block to be executed as soon as the Typhoeus request (reg)
|
525
|
+
# has been completed and a response has been received.
|
526
|
+
#
|
527
|
+
# If no &block has been provided {#get_matches} will be called instead.
|
528
|
+
#
|
529
|
+
# @param [Typhoeus::Request] req request
|
530
|
+
# @param [Auditable] elem element
|
531
|
+
# @param [Block] block block to be passed the:
|
532
|
+
# * HTTP response
|
533
|
+
# * name of the input vector
|
534
|
+
# * updated opts
|
535
|
+
# The block will be called as soon as the
|
536
|
+
# HTTP response is received.
|
537
|
+
#
|
538
|
+
def on_complete( req, elem, &block )
|
539
|
+
return if !req
|
540
|
+
|
541
|
+
elem.opts[:injected] = elem.auditable[elem.altered].to_s
|
542
|
+
elem.opts[:combo] = elem.auditable
|
543
|
+
elem.opts[:action] = elem.action
|
544
|
+
|
545
|
+
if !elem.opts[:async]
|
546
|
+
after_complete( req.response, elem, &block ) if req && req.response
|
547
|
+
return
|
548
|
+
end
|
549
|
+
|
550
|
+
req.on_complete { |res| after_complete( res, elem, &block ) }
|
551
|
+
end
|
552
|
+
|
553
|
+
def after_complete( response, element, &block )
|
554
|
+
# make sure that we have a response before continuing
|
555
|
+
if !response
|
556
|
+
print_error 'Failed to get response, backing out...'
|
557
|
+
return
|
558
|
+
end
|
559
|
+
|
560
|
+
if element.opts && !element.opts[:silent]
|
561
|
+
print_status 'Analyzing response #' + response.request.id.to_s + '...'
|
562
|
+
end
|
563
|
+
|
564
|
+
exception_jail( false ){ block.call( response, element.opts, element ) }
|
565
|
+
end
|
566
|
+
|
567
|
+
def within_scope?
|
568
|
+
@@restrict_to_elements ||= BloomFilter.new
|
569
|
+
|
570
|
+
auditor_override_instance_scope = false
|
571
|
+
begin
|
572
|
+
auditor_override_instance_scope = @auditor.override_instance_scope?
|
573
|
+
rescue
|
574
|
+
end
|
575
|
+
|
576
|
+
override_instance_scope? || auditor_override_instance_scope ||
|
577
|
+
@@restrict_to_elements.empty? || @@restrict_to_elements.include?( scope_audit_id )
|
578
|
+
end
|
579
|
+
|
580
|
+
#
|
581
|
+
# Checks whether or not an audit has been already performed.
|
582
|
+
#
|
583
|
+
# @param [String] elem_audit_id a string returned by {#audit_id}
|
584
|
+
#
|
585
|
+
def audited?( elem_audit_id )
|
586
|
+
ret = false
|
587
|
+
if @@audited.include?( elem_audit_id )
|
588
|
+
msg = "Skipping, already audited: #{elem_audit_id}"
|
589
|
+
ret = true
|
590
|
+
elsif !within_scope?
|
591
|
+
msg = 'Skipping, out of instance scope.'
|
592
|
+
ret = true
|
593
|
+
else
|
594
|
+
msg = 'Current audit ID: ' + elem_audit_id
|
595
|
+
ret = false
|
596
|
+
end
|
597
|
+
|
598
|
+
print_debug( msg )
|
599
|
+
|
600
|
+
ret
|
601
|
+
end
|
602
|
+
|
603
|
+
#
|
604
|
+
# Registers an audit
|
605
|
+
#
|
606
|
+
# @param [String] audit_id a string returned by {#audit_id}
|
607
|
+
#
|
608
|
+
def audited( audit_id )
|
609
|
+
@@audited << audit_id
|
610
|
+
end
|
611
|
+
|
612
|
+
def self.audited
|
613
|
+
@@audited
|
614
|
+
end
|
615
|
+
|
616
|
+
def rehash
|
617
|
+
@hash = (self.action.to_s + self.method.to_s + self.auditable.to_s).hash
|
618
|
+
end
|
619
|
+
|
620
|
+
end
|
621
|
+
|
622
|
+
end
|
623
|
+
end
|