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.
Files changed (688) hide show
  1. data/ACKNOWLEDGMENTS.md +2 -2
  2. data/AUTHORS.md +1 -4
  3. data/CHANGELOG.md +102 -3
  4. data/CONTRIBUTORS.md +4 -1
  5. data/EXPLOITATION.md +6 -6
  6. data/Gemfile +3 -0
  7. data/HACKING.md +29 -10
  8. data/LICENSE.md +176 -339
  9. data/NOTICE +12 -0
  10. data/README.md +160 -119
  11. data/Rakefile +83 -45
  12. data/arachni.gemspec +124 -0
  13. data/bin/arachni +14 -8
  14. data/bin/arachni_console +52 -0
  15. data/bin/arachni_rpc +14 -8
  16. data/bin/arachni_rpcd +15 -9
  17. data/bin/arachni_rpcd_monitor +14 -8
  18. data/bin/arachni_script +41 -0
  19. data/bin/arachni_web +18 -19
  20. data/bin/arachni_web_autostart +17 -18
  21. data/external/metasploit/plugins/arachni.rb +7 -9
  22. data/external/metasploit/{LICENSE → plugins/arachni/LICENSE} +0 -0
  23. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_exec.rb +1 -1
  24. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_path_traversal.rb +2 -2
  25. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_php_eval.rb +1 -1
  26. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_php_include.rb +1 -1
  27. data/external/metasploit/{modules → plugins/arachni/modules}/exploits/unix/webapp/arachni_sqlmap.rb +2 -2
  28. data/external/scripts/LICENSE.tpl +174 -0
  29. data/external/scripts/README.md +95 -0
  30. data/external/scripts/README.tpl +30 -0
  31. data/external/scripts/build.sh +631 -0
  32. data/external/scripts/build_all.sh +29 -0
  33. data/external/scripts/build_and_package.sh +100 -0
  34. data/external/scripts/cross_build_and_package.sh +20 -0
  35. data/external/scripts/installer.sh.tpl +166 -0
  36. data/external/scripts/lib/readlink_f.sh +40 -0
  37. data/external/scripts/package.sh +134 -0
  38. data/external/scripts/push_nightlies.sh +125 -0
  39. data/extras/placeholder +0 -0
  40. data/gfx/README.md +18 -0
  41. data/gfx/compiled/banner.png +0 -0
  42. data/gfx/compiled/favicon.ico +0 -0
  43. data/gfx/compiled/icon.png +0 -0
  44. data/gfx/compiled/logo.png +0 -0
  45. data/gfx/compiled/spider.png +0 -0
  46. data/gfx/font/Beneath_the_Surface.ttf +0 -0
  47. data/gfx/font/bts_readme.txt +14 -0
  48. data/gfx/source/banner.svg +999 -0
  49. data/gfx/source/icon.svg +627 -0
  50. data/gfx/source/logo.svg +672 -0
  51. data/gfx/source/spider.png +0 -0
  52. data/gfx/source/spider.svg +277 -0
  53. data/lib/arachni.rb +30 -5
  54. data/lib/arachni/audit_store.rb +111 -143
  55. data/lib/arachni/banner.rb +37 -0
  56. data/lib/arachni/bloom_filter.rb +74 -0
  57. data/lib/arachni/cache.rb +21 -0
  58. data/lib/arachni/cache/base.rb +170 -0
  59. data/lib/arachni/cache/least_cost_replacement.rb +89 -0
  60. data/lib/arachni/cache/least_recently_used.rb +73 -0
  61. data/lib/arachni/cache/random_replacement.rb +52 -0
  62. data/lib/arachni/component/manager.rb +391 -0
  63. data/lib/arachni/component/options.rb +38 -0
  64. data/lib/arachni/component/options/address.rb +41 -0
  65. data/lib/arachni/component/options/base.rb +126 -0
  66. data/lib/arachni/component/options/bool.rb +55 -0
  67. data/lib/arachni/component/options/enum.rb +51 -0
  68. data/lib/arachni/component/options/float.rb +45 -0
  69. data/lib/arachni/component/options/int.rb +44 -0
  70. data/lib/arachni/component/options/path.rb +36 -0
  71. data/lib/arachni/component/options/port.rb +37 -0
  72. data/lib/arachni/component/options/string.rb +44 -0
  73. data/lib/arachni/component/options/url.rb +42 -0
  74. data/lib/arachni/crypto/rsa_aes_cbc.rb +14 -8
  75. data/lib/arachni/database.rb +4 -4
  76. data/lib/arachni/database/base.rb +14 -8
  77. data/lib/arachni/database/hash.rb +21 -12
  78. data/lib/arachni/database/queue.rb +15 -9
  79. data/lib/arachni/element/base.rb +147 -0
  80. data/lib/arachni/element/capabilities/auditable.rb +623 -0
  81. data/lib/arachni/element/capabilities/auditable/rdiff.rb +243 -0
  82. data/lib/arachni/element/capabilities/auditable/taint.rb +141 -0
  83. data/lib/arachni/element/capabilities/auditable/timeout.rb +330 -0
  84. data/lib/arachni/element/capabilities/body.rb +19 -0
  85. data/lib/arachni/element/capabilities/mutable.rb +286 -0
  86. data/lib/arachni/element/capabilities/path.rb +19 -0
  87. data/lib/arachni/element/capabilities/refreshable.rb +48 -0
  88. data/lib/arachni/element/capabilities/server.rb +19 -0
  89. data/lib/arachni/element/cookie.rb +1043 -0
  90. data/lib/arachni/element/form.rb +1364 -0
  91. data/lib/arachni/element/header.rb +87 -0
  92. data/lib/arachni/element/link.rb +227 -0
  93. data/lib/arachni/exceptions.rb +12 -34
  94. data/lib/arachni/framework.rb +345 -436
  95. data/lib/arachni/http.rb +445 -409
  96. data/lib/arachni/http/cookie_jar.rb +163 -0
  97. data/lib/arachni/issue.rb +102 -65
  98. data/lib/arachni/mixins/observable.rb +25 -28
  99. data/lib/arachni/mixins/progress_bar.rb +11 -5
  100. data/lib/arachni/mixins/terminal.rb +17 -11
  101. data/lib/arachni/module.rb +4 -4
  102. data/lib/arachni/module/auditor.rb +270 -793
  103. data/lib/arachni/module/base.rb +107 -101
  104. data/lib/arachni/module/element_db.rb +54 -59
  105. data/lib/arachni/module/key_filler.rb +35 -35
  106. data/lib/arachni/module/manager.rb +178 -68
  107. data/lib/arachni/module/output.rb +25 -30
  108. data/lib/arachni/module/trainer.rb +85 -156
  109. data/lib/arachni/module/utilities.rb +29 -138
  110. data/lib/arachni/options.rb +496 -162
  111. data/lib/arachni/page.rb +186 -0
  112. data/lib/arachni/parser.rb +392 -2
  113. data/lib/arachni/plugin.rb +4 -4
  114. data/lib/arachni/plugin/base.rb +113 -44
  115. data/lib/arachni/plugin/manager.rb +120 -54
  116. data/lib/arachni/report.rb +4 -4
  117. data/lib/arachni/report/base.rb +59 -44
  118. data/lib/arachni/report/manager.rb +33 -32
  119. data/lib/arachni/rpc/client.rb +2 -0
  120. data/lib/arachni/rpc/client/base.rb +31 -18
  121. data/lib/arachni/rpc/client/dispatcher.rb +24 -11
  122. data/lib/arachni/rpc/client/instance.rb +24 -11
  123. data/lib/arachni/rpc/server/base.rb +12 -9
  124. data/lib/arachni/rpc/server/dispatcher.rb +161 -164
  125. data/lib/arachni/rpc/server/dispatcher/handler.rb +164 -0
  126. data/lib/arachni/rpc/server/{node.rb → dispatcher/node.rb} +86 -104
  127. data/lib/arachni/rpc/server/distributor.rb +432 -0
  128. data/lib/arachni/rpc/server/framework.rb +266 -758
  129. data/lib/arachni/rpc/server/instance.rb +38 -53
  130. data/lib/arachni/rpc/server/module/manager.rb +17 -20
  131. data/lib/arachni/rpc/server/output.rb +73 -179
  132. data/lib/arachni/rpc/server/plugin/manager.rb +58 -24
  133. data/lib/arachni/ruby.rb +6 -4
  134. data/lib/arachni/ruby/array.rb +30 -9
  135. data/lib/arachni/ruby/enumerable.rb +29 -0
  136. data/lib/arachni/ruby/object.rb +47 -12
  137. data/lib/arachni/ruby/string.rb +69 -24
  138. data/lib/arachni/ruby/webrick.rb +31 -0
  139. data/lib/arachni/session.rb +279 -0
  140. data/lib/arachni/spider.rb +295 -149
  141. data/lib/arachni/typhoeus/hydra.rb +18 -4
  142. data/lib/arachni/typhoeus/request.rb +52 -65
  143. data/lib/arachni/typhoeus/response.rb +62 -22
  144. data/lib/arachni/typhoeus/utils.rb +25 -0
  145. data/lib/arachni/ui/cli/cli.rb +331 -298
  146. data/lib/arachni/ui/cli/output.rb +105 -77
  147. data/lib/arachni/ui/foo/output.rb +116 -0
  148. data/lib/arachni/ui/rpc/dispatcher_monitor.rb +5 -12
  149. data/lib/arachni/ui/rpc/rpc.rb +43 -48
  150. data/lib/arachni/ui/web/addon_manager.rb +18 -13
  151. data/lib/arachni/ui/web/addons/sample.rb +14 -8
  152. data/lib/arachni/ui/web/addons/scheduler.rb +14 -8
  153. data/lib/arachni/ui/web/addons/scheduler/views/index.erb +1 -1
  154. data/lib/arachni/ui/web/addons/scheduler/views/options.erb +0 -3
  155. data/lib/arachni/ui/web/dispatcher_manager.rb +14 -9
  156. data/lib/arachni/ui/web/instance_manager.rb +14 -8
  157. data/lib/arachni/ui/web/log.rb +14 -10
  158. data/lib/arachni/ui/web/output_stream.rb +11 -5
  159. data/lib/arachni/ui/web/report_manager.rb +14 -10
  160. data/lib/arachni/ui/web/scheduler.rb +16 -11
  161. data/lib/arachni/ui/web/server.rb +62 -56
  162. data/lib/arachni/ui/web/server/public/style.css +1 -1
  163. data/lib/arachni/ui/web/server/views/addon.erb +1 -1
  164. data/lib/arachni/ui/web/server/views/dispatchers.erb +3 -3
  165. data/lib/arachni/ui/web/server/views/dispatchers_edit.erb +2 -2
  166. data/lib/arachni/ui/web/server/views/error.erb +1 -1
  167. data/lib/arachni/ui/web/server/views/home.erb +2 -2
  168. data/lib/arachni/ui/web/server/views/instance.erb +6 -6
  169. data/lib/arachni/ui/web/server/views/layout.erb +4 -4
  170. data/lib/arachni/ui/web/server/views/settings.erb +13 -8
  171. data/lib/arachni/ui/web/server/views/welcome.erb +1 -1
  172. data/lib/arachni/ui/web/utilities.rb +24 -35
  173. data/lib/arachni/uri.rb +619 -0
  174. data/lib/arachni/utilities.rb +316 -0
  175. data/lib/arachni/version.rb +12 -6
  176. data/lib/version +1 -0
  177. data/modules/audit/code_injection.rb +64 -81
  178. data/modules/audit/code_injection_timing.rb +57 -75
  179. data/modules/audit/csrf.rb +87 -185
  180. data/modules/audit/ldapi.rb +42 -67
  181. data/modules/audit/os_cmd_injection.rb +53 -71
  182. data/modules/audit/os_cmd_injection/payloads.txt +1 -1
  183. data/modules/audit/os_cmd_injection_timing.rb +54 -75
  184. data/modules/audit/os_cmd_injection_timing/payloads.txt +1 -3
  185. data/modules/audit/path_traversal.rb +84 -110
  186. data/modules/audit/response_splitting.rb +41 -53
  187. data/modules/audit/rfi.rb +68 -76
  188. data/modules/audit/session_fixation.rb +86 -0
  189. data/modules/audit/sqli.rb +51 -77
  190. data/modules/audit/sqli/regexp_ids.txt +5 -19
  191. data/modules/audit/sqli/regexp_ignore.txt +2 -0
  192. data/modules/audit/sqli_blind_rdiff.rb +51 -62
  193. data/modules/audit/sqli_blind_timing.rb +53 -73
  194. data/modules/audit/trainer.rb +21 -58
  195. data/modules/audit/unvalidated_redirect.rb +41 -51
  196. data/modules/audit/xpath.rb +38 -69
  197. data/modules/audit/xpath/errors.txt +2 -3
  198. data/modules/audit/xss.rb +65 -69
  199. data/modules/audit/xss_event.rb +50 -69
  200. data/modules/audit/xss_path.rb +63 -89
  201. data/modules/audit/xss_script_tag.rb +53 -66
  202. data/modules/audit/xss_tag.rb +46 -65
  203. data/modules/audit/xss_uri.rb +22 -24
  204. data/modules/recon/allowed_methods.rb +46 -62
  205. data/modules/recon/backdoors.rb +39 -66
  206. data/modules/recon/backup_files.rb +49 -79
  207. data/modules/recon/common_directories.rb +39 -63
  208. data/modules/recon/common_directories/directories.txt +0 -5
  209. data/modules/recon/common_files.rb +34 -63
  210. data/modules/recon/directory_listing.rb +66 -116
  211. data/modules/recon/grep/captcha.rb +34 -41
  212. data/modules/recon/grep/credit_card.rb +57 -68
  213. data/modules/recon/grep/cvs_svn_users.rb +40 -50
  214. data/modules/recon/grep/emails.rb +34 -41
  215. data/modules/recon/grep/html_objects.rb +30 -33
  216. data/modules/recon/grep/http_only_cookies.rb +57 -0
  217. data/modules/recon/grep/insecure_cookies.rb +55 -0
  218. data/modules/recon/grep/mixed_resource.rb +93 -0
  219. data/modules/recon/grep/private_ip.rb +34 -32
  220. data/modules/recon/grep/ssn.rb +33 -31
  221. data/modules/recon/grep/unencrypted_password_forms.rb +84 -0
  222. data/modules/recon/htaccess_limit.rb +38 -54
  223. data/modules/recon/http_put.rb +48 -62
  224. data/modules/recon/interesting_responses.rb +77 -79
  225. data/modules/recon/webdav.rb +53 -79
  226. data/modules/recon/xst.rb +44 -63
  227. data/modules/test2.rb +46 -0
  228. data/path_extractors/anchors.rb +17 -15
  229. data/path_extractors/forms.rb +17 -15
  230. data/path_extractors/frames.rb +17 -18
  231. data/path_extractors/generic.rb +52 -55
  232. data/path_extractors/links.rb +16 -14
  233. data/path_extractors/meta_refresh.rb +33 -18
  234. data/path_extractors/scripts.rb +17 -15
  235. data/plugins/autologin.rb +60 -85
  236. data/plugins/beep_notify.rb +25 -27
  237. data/plugins/cookie_collector.rb +28 -45
  238. data/plugins/defaults/autothrottle.rb +43 -51
  239. data/plugins/defaults/content_types.rb +63 -52
  240. data/plugins/defaults/healthmap.rb +45 -62
  241. data/plugins/defaults/{metamodules → meta}/remedies/discovery.rb +34 -69
  242. data/plugins/defaults/meta/remedies/manual_verification.rb +61 -0
  243. data/plugins/defaults/meta/remedies/timing_attacks.rb +108 -0
  244. data/plugins/defaults/meta/uniformity.rb +81 -0
  245. data/plugins/defaults/profiler.rb +68 -115
  246. data/plugins/defaults/resolver.rb +33 -28
  247. data/plugins/email_notify.rb +60 -62
  248. data/plugins/form_dicattack.rb +67 -121
  249. data/plugins/http_dicattack.rb +51 -65
  250. data/plugins/libnotify.rb +37 -41
  251. data/plugins/proxy.rb +407 -152
  252. data/plugins/proxy/panel/403_forbidden.html.erb +11 -0
  253. data/plugins/proxy/panel/404_not_found.html.erb +6 -0
  254. data/plugins/proxy/panel/css/bootstrap.min.css +9 -0
  255. data/plugins/proxy/panel/css/panel.css +30 -0
  256. data/plugins/proxy/panel/help.html.erb +66 -0
  257. data/plugins/proxy/panel/img/glyphicons-halflings-white.png +0 -0
  258. data/plugins/proxy/panel/img/glyphicons-halflings.png +0 -0
  259. data/plugins/proxy/panel/img/record.png +0 -0
  260. data/plugins/proxy/panel/inspect.html.erb +7 -0
  261. data/plugins/proxy/panel/js/bootstrap.min.js +6 -0
  262. data/plugins/proxy/panel/js/jquery.min.js +2 -0
  263. data/plugins/proxy/panel/js/panel.js +39 -0
  264. data/plugins/proxy/panel/layout.html.erb +25 -0
  265. data/plugins/proxy/panel/page_accordion.html.erb +67 -0
  266. data/plugins/proxy/panel/page_twin_accordion.html.erb +18 -0
  267. data/plugins/proxy/panel/panel.html.erb +63 -0
  268. data/plugins/proxy/panel/shutdown_message.html.erb +7 -0
  269. data/plugins/proxy/panel/verify_login_check.html.erb +31 -0
  270. data/plugins/proxy/panel/verify_login_final.html.erb +26 -0
  271. data/plugins/proxy/panel/verify_login_sequence.html.erb +45 -0
  272. data/plugins/proxy/server.rb +175 -47
  273. data/plugins/proxy/ssl-interceptor-cert.pem +34 -0
  274. data/plugins/proxy/ssl-interceptor-pkey.pem +51 -0
  275. data/plugins/rescan.rb +27 -28
  276. data/plugins/script.rb +53 -0
  277. data/plugins/vector_feed.rb +226 -0
  278. data/plugins/waf_detector.rb +70 -73
  279. data/reports/afr.rb +23 -24
  280. data/reports/ap.rb +25 -36
  281. data/reports/html.rb +109 -163
  282. data/reports/html/default.erb +13 -12
  283. data/reports/html/default/configuration.erb +21 -21
  284. data/reports/html/default/css/main.css +350 -350
  285. data/reports/html/default/issues.erb +1 -1
  286. data/reports/html/default/js/charts.js +2 -2
  287. data/reports/html/default/js/helpers.js +0 -42
  288. data/reports/html/default/js/init.js +0 -1
  289. data/reports/html/default/sitemap.erb +2 -2
  290. data/reports/html/default/summary.erb +4 -4
  291. data/reports/html/default/summary_issue.erb +1 -1
  292. data/reports/json.rb +26 -28
  293. data/reports/marshal.rb +23 -25
  294. data/reports/metareport.rb +65 -98
  295. data/reports/plugin_formatters/html/autologin.rb +34 -41
  296. data/reports/plugin_formatters/html/content_types.rb +46 -52
  297. data/reports/plugin_formatters/html/cookie_collector.rb +41 -47
  298. data/reports/plugin_formatters/html/discovery.rb +36 -41
  299. data/reports/plugin_formatters/html/form_dicattack.rb +28 -34
  300. data/reports/plugin_formatters/html/healthmap.rb +48 -55
  301. data/reports/plugin_formatters/html/http_dicattack.rb +28 -34
  302. data/reports/plugin_formatters/html/profiler.rb +26 -30
  303. data/reports/plugin_formatters/html/profiler/template.erb +7 -7
  304. data/reports/plugin_formatters/html/resolver.rb +44 -52
  305. data/reports/plugin_formatters/html/timing_attacks.rb +42 -44
  306. data/reports/plugin_formatters/html/uniformity.rb +37 -42
  307. data/reports/plugin_formatters/html/waf_detector.rb +26 -34
  308. data/reports/plugin_formatters/stdout/autologin.rb +28 -40
  309. data/reports/plugin_formatters/stdout/content_types.rb +36 -53
  310. data/reports/plugin_formatters/stdout/cookie_collector.rb +28 -41
  311. data/reports/plugin_formatters/stdout/discovery.rb +27 -37
  312. data/reports/plugin_formatters/stdout/form_dicattack.rb +22 -35
  313. data/reports/plugin_formatters/stdout/healthmap.rb +40 -57
  314. data/reports/plugin_formatters/stdout/http_dicattack.rb +22 -36
  315. data/reports/plugin_formatters/stdout/profiler.rb +55 -74
  316. data/reports/plugin_formatters/stdout/resolver.rb +18 -34
  317. data/reports/plugin_formatters/stdout/timing_attacks.rb +27 -39
  318. data/reports/plugin_formatters/stdout/uniformity.rb +32 -44
  319. data/reports/plugin_formatters/stdout/waf_detector.rb +20 -32
  320. data/reports/plugin_formatters/xml/autologin.rb +27 -49
  321. data/reports/plugin_formatters/xml/content_types.rb +41 -66
  322. data/reports/plugin_formatters/xml/cookie_collector.rb +29 -49
  323. data/reports/plugin_formatters/xml/discovery.rb +23 -41
  324. data/reports/plugin_formatters/xml/form_dicattack.rb +22 -40
  325. data/reports/plugin_formatters/xml/healthmap.rb +44 -63
  326. data/reports/plugin_formatters/xml/http_dicattack.rb +22 -41
  327. data/reports/plugin_formatters/xml/profiler.rb +65 -89
  328. data/reports/plugin_formatters/xml/resolver.rb +21 -41
  329. data/reports/plugin_formatters/xml/timing_attacks.rb +27 -45
  330. data/reports/plugin_formatters/xml/uniformity.rb +36 -55
  331. data/reports/plugin_formatters/xml/waf_detector.rb +23 -42
  332. data/reports/stdout.rb +120 -121
  333. data/reports/txt.rb +29 -45
  334. data/reports/xml.rb +109 -148
  335. data/reports/xml/buffer.rb +66 -79
  336. data/reports/yaml.rb +26 -28
  337. data/rpcd_handlers/placeholder +0 -0
  338. data/spec/arachni/audit_store_spec.rb +223 -0
  339. data/spec/arachni/bloom_filter_spec.rb +76 -0
  340. data/spec/arachni/cache/base_spec.rb +275 -0
  341. data/spec/arachni/cache/least_cost_replacement_spec.rb +58 -0
  342. data/spec/arachni/cache/least_recently_used_spec.rb +91 -0
  343. data/spec/arachni/cache/random_replacement_spec.rb +43 -0
  344. data/spec/arachni/component/manager_spec.rb +448 -0
  345. data/spec/arachni/component/options/address_spec.rb +32 -0
  346. data/spec/arachni/component/options/base_spec.rb +105 -0
  347. data/spec/arachni/component/options/bool_spec.rb +67 -0
  348. data/spec/arachni/component/options/enum_spec.rb +51 -0
  349. data/spec/arachni/component/options/float_spec.rb +42 -0
  350. data/spec/arachni/component/options/int_spec.rb +46 -0
  351. data/spec/arachni/component/options/path_spec.rb +32 -0
  352. data/spec/arachni/component/options/port_spec.rb +38 -0
  353. data/spec/arachni/component/options/string_spec.rb +38 -0
  354. data/spec/arachni/component/options/url_spec.rb +36 -0
  355. data/spec/arachni/crypto/rsa_aes_cbc_spec.rb +31 -0
  356. data/spec/arachni/database/hash_spec.rb +217 -0
  357. data/spec/arachni/database/queue_spec.rb +52 -0
  358. data/spec/arachni/element/base_spec.rb +127 -0
  359. data/spec/arachni/element/body_spec.rb +9 -0
  360. data/spec/arachni/element/capabilities/auditable/rdiff_spec.rb +47 -0
  361. data/spec/arachni/element/capabilities/auditable/taint_spec.rb +110 -0
  362. data/spec/arachni/element/capabilities/auditable/timeout_spec.rb +107 -0
  363. data/spec/arachni/element/capabilities/mutable_spec.rb +261 -0
  364. data/spec/arachni/element/cookie_spec.rb +362 -0
  365. data/spec/arachni/element/form_spec.rb +668 -0
  366. data/spec/arachni/element/header_spec.rb +49 -0
  367. data/spec/arachni/element/link_spec.rb +220 -0
  368. data/spec/arachni/element/path_spec.rb +9 -0
  369. data/spec/arachni/element/server_spec.rb +9 -0
  370. data/spec/arachni/framework_spec.rb +860 -0
  371. data/spec/arachni/http/cookie_jar_spec.rb +267 -0
  372. data/spec/arachni/http_spec.rb +991 -0
  373. data/spec/arachni/issue_spec.rb +307 -0
  374. data/spec/arachni/mixins/observable_spec.rb +59 -0
  375. data/spec/arachni/mixins/progress_bar_spec.rb +41 -0
  376. data/spec/arachni/module/auditor_spec.rb +506 -0
  377. data/spec/arachni/module/element_db_spec.rb +131 -0
  378. data/spec/arachni/module/key_filler.rb +15 -0
  379. data/spec/arachni/module/manager_spec.rb +154 -0
  380. data/spec/arachni/module/trainer_spec.rb +102 -0
  381. data/spec/arachni/module/utilities_spec.rb +30 -0
  382. data/spec/arachni/module/utilities_spec/read_file.txt +3 -0
  383. data/spec/arachni/options_spec.rb +555 -0
  384. data/spec/arachni/page_spec.rb +290 -0
  385. data/spec/arachni/parser_spec.rb +508 -0
  386. data/spec/arachni/plugin/manager_spec.rb +174 -0
  387. data/spec/arachni/report/base_spec.rb +53 -0
  388. data/spec/arachni/report/manager_spec.rb +82 -0
  389. data/spec/arachni/rpc/client/base_spec.rb +157 -0
  390. data/spec/arachni/rpc/client/dispatcher_spec.rb +40 -0
  391. data/spec/arachni/rpc/client/instance_spec.rb +92 -0
  392. data/spec/arachni/rpc/server/base_spec.rb +40 -0
  393. data/spec/arachni/rpc/server/dispatcher/handler.rb +120 -0
  394. data/spec/arachni/rpc/server/dispatcher/node_spec.rb +220 -0
  395. data/spec/arachni/rpc/server/dispatcher_spec.rb +136 -0
  396. data/spec/arachni/rpc/server/distributor_spec.rb +628 -0
  397. data/spec/arachni/rpc/server/framework_hpg_spec.rb +321 -0
  398. data/spec/arachni/rpc/server/framework_simple_spec.rb +453 -0
  399. data/spec/arachni/rpc/server/instance_spec.rb +81 -0
  400. data/spec/arachni/rpc/server/modules/manager_spec.rb +79 -0
  401. data/spec/arachni/rpc/server/options_spec.rb +124 -0
  402. data/spec/arachni/rpc/server/output_spec.rb +238 -0
  403. data/spec/arachni/rpc/server/plugin/manager_spec.rb +86 -0
  404. data/spec/arachni/ruby/array_spec.rb +103 -0
  405. data/spec/arachni/ruby/enumerable_spec.rb +37 -0
  406. data/spec/arachni/ruby/object_spec.rb +38 -0
  407. data/spec/arachni/ruby/string_spec.rb +77 -0
  408. data/spec/arachni/ruby/webrick_spec.rb +15 -0
  409. data/spec/arachni/session_spec.rb +308 -0
  410. data/spec/arachni/spider_spec.rb +383 -0
  411. data/spec/arachni/typhoeus/hydra_spec.rb +14 -0
  412. data/spec/arachni/typhoeus/requrest_spec.rb +58 -0
  413. data/spec/arachni/typhoeus/response_spec.rb +78 -0
  414. data/spec/arachni/uri_spec.rb +462 -0
  415. data/spec/arachni/utilities_spec.rb +297 -0
  416. data/spec/fixtures/auditstore.afr +2959 -0
  417. data/spec/fixtures/cookies.txt +9 -0
  418. data/spec/fixtures/modules/test.rb +58 -0
  419. data/spec/fixtures/modules/test2.rb +46 -0
  420. data/spec/fixtures/modules/test3.rb +46 -0
  421. data/spec/fixtures/passwords.txt +17 -0
  422. data/spec/fixtures/plugins/bad.rb +46 -0
  423. data/spec/fixtures/plugins/defaults/default.rb +45 -0
  424. data/spec/fixtures/plugins/distributable.rb +42 -0
  425. data/spec/fixtures/plugins/loop.rb +32 -0
  426. data/spec/fixtures/plugins/wait.rb +34 -0
  427. data/spec/fixtures/plugins/with_options.rb +31 -0
  428. data/spec/fixtures/reports/base_spec/plugin_formatters/with_formatters/foobar.rb +21 -0
  429. data/spec/fixtures/reports/base_spec/with_formatters.rb +23 -0
  430. data/spec/fixtures/reports/base_spec/with_outfile.rb +24 -0
  431. data/spec/fixtures/reports/base_spec/without_outfile.rb +20 -0
  432. data/spec/fixtures/reports/manager_spec/afr.rb +21 -0
  433. data/spec/fixtures/reports/manager_spec/foo.rb +26 -0
  434. data/spec/fixtures/rescan.afr.tpl +145 -0
  435. data/spec/fixtures/rpcd_handlers/echo.rb +68 -0
  436. data/spec/fixtures/run_mod/body.rb +58 -0
  437. data/spec/fixtures/run_mod/cookies.rb +58 -0
  438. data/spec/fixtures/run_mod/empty.rb +58 -0
  439. data/spec/fixtures/run_mod/flch.rb +63 -0
  440. data/spec/fixtures/run_mod/forms.rb +58 -0
  441. data/spec/fixtures/run_mod/headers.rb +58 -0
  442. data/spec/fixtures/run_mod/links.rb +58 -0
  443. data/spec/fixtures/run_mod/nil.rb +57 -0
  444. data/spec/fixtures/run_mod/path.rb +58 -0
  445. data/spec/fixtures/run_mod/server.rb +58 -0
  446. data/spec/fixtures/script_plugin.rb +1 -0
  447. data/spec/fixtures/taint_module/taint.rb +48 -0
  448. data/spec/fixtures/usernames.txt +13 -0
  449. data/spec/fixtures/wait_module/wait.rb +48 -0
  450. data/spec/helpers/auditor.rb +9 -0
  451. data/spec/helpers/misc.rb +41 -0
  452. data/spec/helpers/processes.rb +112 -0
  453. data/spec/helpers/requires.rb +8 -0
  454. data/spec/helpers/server.rb +54 -0
  455. data/spec/logs/Dispatcher - 2752-13830.log +49 -0
  456. data/spec/logs/Dispatcher - 2766-8238.log +35 -0
  457. data/spec/logs/Dispatcher - 2808-9029.log +31 -0
  458. data/spec/logs/Dispatcher - 2854-8571.log +26 -0
  459. data/spec/logs/Dispatcher - 2888-10411.log +20 -0
  460. data/spec/logs/Dispatcher - 2922-14464.log +13 -0
  461. data/spec/logs/Dispatcher - 2957-15255.log +19 -0
  462. data/spec/logs/Dispatcher - 3216-14203.log +35 -0
  463. data/spec/logs/Dispatcher - 3305-8622.log +43 -0
  464. data/spec/logs/Dispatcher - 3340-15426.log +35 -0
  465. data/spec/logs/Dispatcher - 3399-12586.log +40 -0
  466. data/spec/logs/Dispatcher - 3433-14149.log +26 -0
  467. data/spec/logs/Dispatcher - 3582-6198.log +27 -0
  468. data/spec/logs/Dispatcher - 3616-11169.log +13 -0
  469. data/spec/logs/Dispatcher - 3849-9016.log +7 -0
  470. data/spec/logs/output_spec.log +4 -0
  471. data/spec/logs/placeholder +0 -0
  472. data/spec/modules/audit/code_injection_spec.rb +25 -0
  473. data/spec/modules/audit/code_injection_timing_spec.rb +24 -0
  474. data/spec/modules/audit/csrf_spec.rb +38 -0
  475. data/spec/modules/audit/ldapi_spec.rb +19 -0
  476. data/spec/modules/audit/os_cmd_injection_spec.rb +24 -0
  477. data/spec/modules/audit/os_cmd_injection_timing_spec.rb +24 -0
  478. data/spec/modules/audit/path_traversal_spec.rb +23 -0
  479. data/spec/modules/audit/response_splitting_spec.rb +19 -0
  480. data/spec/modules/audit/rfi_spec.rb +19 -0
  481. data/spec/modules/audit/session_fixation_spec.rb +23 -0
  482. data/spec/modules/audit/sqli_blind_rdiff_spec.rb +19 -0
  483. data/spec/modules/audit/sqli_blind_timing_spec.rb +23 -0
  484. data/spec/modules/audit/sqli_spec.rb +24 -0
  485. data/spec/modules/audit/trainer_spec.rb +25 -0
  486. data/spec/modules/audit/unvalidated_redirect_spec.rb +24 -0
  487. data/spec/modules/audit/xpath_spec.rb +25 -0
  488. data/spec/modules/audit/xss_event_spec.rb +19 -0
  489. data/spec/modules/audit/xss_path_spec.rb +19 -0
  490. data/spec/modules/audit/xss_script_tag_spec.rb +19 -0
  491. data/spec/modules/audit/xss_spec.rb +24 -0
  492. data/spec/modules/audit/xss_tag_spec.rb +19 -0
  493. data/spec/modules/recon/allowed_methods_spec.rb +19 -0
  494. data/spec/modules/recon/backdoors_spec.rb +19 -0
  495. data/spec/modules/recon/backup_files_spec.rb +19 -0
  496. data/spec/modules/recon/common_directories_spec.rb +19 -0
  497. data/spec/modules/recon/common_files_spec.rb +19 -0
  498. data/spec/modules/recon/directory_listing_spec.rb +19 -0
  499. data/spec/modules/recon/grep/captcha_spec.rb +19 -0
  500. data/spec/modules/recon/grep/credit_card_spec.rb +19 -0
  501. data/spec/modules/recon/grep/cvs_svn_users_spec.rb +19 -0
  502. data/spec/modules/recon/grep/emails_spec.rb +19 -0
  503. data/spec/modules/recon/grep/html_objects_spec.rb +19 -0
  504. data/spec/modules/recon/grep/http_only_cookies_spec.rb +19 -0
  505. data/spec/modules/recon/grep/insecure_cookies_spec.rb +19 -0
  506. data/spec/modules/recon/grep/mixed_resource_spec.rb +20 -0
  507. data/spec/modules/recon/grep/private_ip_spec.rb +26 -0
  508. data/spec/modules/recon/grep/ssn_spec.rb +19 -0
  509. data/spec/modules/recon/grep/unencrypted_password_forms_spec.rb +19 -0
  510. data/spec/modules/recon/htaccess_limit_spec.rb +19 -0
  511. data/spec/modules/recon/http_put_spec.rb +19 -0
  512. data/spec/modules/recon/interesting_responses_spec.rb +27 -0
  513. data/spec/modules/recon/webdav_spec.rb +19 -0
  514. data/spec/modules/recon/xst_spec.rb +19 -0
  515. data/spec/path_extractors/anchors_spec.rb +19 -0
  516. data/spec/path_extractors/forms_spec.rb +19 -0
  517. data/spec/path_extractors/frames_spec.rb +20 -0
  518. data/spec/path_extractors/generic_spec.rb +28 -0
  519. data/spec/path_extractors/links_spec.rb +19 -0
  520. data/spec/path_extractors/meta_refresh_spec.rb +24 -0
  521. data/spec/path_extractors/scripts_spec.rb +19 -0
  522. data/spec/pems/cacert.pem +39 -0
  523. data/spec/pems/client/cert.pem +39 -0
  524. data/spec/pems/client/foo-cert.pem +39 -0
  525. data/spec/pems/client/foo-key.pem +51 -0
  526. data/spec/pems/client/key.pem +51 -0
  527. data/spec/pems/server/cert.pem +39 -0
  528. data/spec/pems/server/key.pem +51 -0
  529. data/spec/plugins/autologin_spec.rb +76 -0
  530. data/spec/plugins/autothrottle_spec.rb +45 -0
  531. data/spec/plugins/content_types_spec.rb +93 -0
  532. data/spec/plugins/cookie_collector_spec.rb +32 -0
  533. data/spec/plugins/form_dicattack_spec.rb +60 -0
  534. data/spec/plugins/healthmap_spec.rb +40 -0
  535. data/spec/plugins/http_dicattack_spec.rb +40 -0
  536. data/spec/plugins/meta/remedies/discovery_spec.rb +15 -0
  537. data/spec/plugins/meta/remedies/manual_verification_spec.rb +28 -0
  538. data/spec/plugins/meta/remedies/timing_attacks_spec.rb +30 -0
  539. data/spec/plugins/meta/uniformity_spec.rb +83 -0
  540. data/spec/plugins/profiler_spec.rb +82 -0
  541. data/spec/plugins/rescan_spec.rb +26 -0
  542. data/spec/plugins/resolver_spec.rb +16 -0
  543. data/spec/plugins/script_spec.rb +12 -0
  544. data/spec/plugins/vector_feed_spec.rb +155 -0
  545. data/spec/plugins/waf_detector_spec.rb +41 -0
  546. data/spec/reports/afr_spec.rb +13 -0
  547. data/spec/reports/ap_spec.rb +9 -0
  548. data/spec/reports/html_spec.rb +13 -0
  549. data/spec/reports/json_spec.rb +17 -0
  550. data/spec/reports/marshal_spec.rb +13 -0
  551. data/spec/reports/stdout_spec.rb +9 -0
  552. data/spec/reports/txt_spec.rb +8 -0
  553. data/spec/reports/xml_spec.rb +13 -0
  554. data/spec/reports/yaml_spec.rb +13 -0
  555. data/spec/servers/arachni/element/capabilities/auditable/rdiff.rb +36 -0
  556. data/spec/servers/arachni/element/capabilities/auditable/taint.rb +10 -0
  557. data/spec/servers/arachni/element/capabilities/auditable/timeout.rb +30 -0
  558. data/spec/servers/arachni/element/cookie.rb +37 -0
  559. data/spec/servers/arachni/element/form.rb +93 -0
  560. data/spec/servers/arachni/element/header.rb +22 -0
  561. data/spec/servers/arachni/element/link.rb +26 -0
  562. data/spec/servers/arachni/framework.rb +54 -0
  563. data/spec/servers/arachni/http.rb +140 -0
  564. data/spec/servers/arachni/http_auth.rb +9 -0
  565. data/spec/servers/arachni/module/auditor.rb +135 -0
  566. data/spec/servers/arachni/module/trainer.rb +40 -0
  567. data/spec/servers/arachni/parser.rb +70 -0
  568. data/spec/servers/arachni/rpc/server/framework_hpg.rb +21 -0
  569. data/spec/servers/arachni/rpc/server/framework_simple.rb +30 -0
  570. data/spec/servers/arachni/session.rb +110 -0
  571. data/spec/servers/arachni/spider.rb +148 -0
  572. data/spec/servers/modules/audit/code_injection.rb +140 -0
  573. data/spec/servers/modules/audit/code_injection_timing.rb +110 -0
  574. data/spec/servers/modules/audit/csrf.rb +80 -0
  575. data/spec/servers/modules/audit/ldapi.rb +73 -0
  576. data/spec/servers/modules/audit/os_cmd_injection.rb +140 -0
  577. data/spec/servers/modules/audit/os_cmd_injection_timing.rb +111 -0
  578. data/spec/servers/modules/audit/path_traversal.rb +176 -0
  579. data/spec/servers/modules/audit/response_splitting.rb +114 -0
  580. data/spec/servers/modules/audit/rfi.rb +113 -0
  581. data/spec/servers/modules/audit/session_fixation.rb +87 -0
  582. data/spec/servers/modules/audit/sqli.rb +118 -0
  583. data/spec/servers/modules/audit/sqli/coldfusion +1 -0
  584. data/spec/servers/modules/audit/sqli/db2 +4 -0
  585. data/spec/servers/modules/audit/sqli/emc +2 -0
  586. data/spec/servers/modules/audit/sqli/informix +3 -0
  587. data/spec/servers/modules/audit/sqli/interbase +2 -0
  588. data/spec/servers/modules/audit/sqli/jdbc +0 -0
  589. data/spec/servers/modules/audit/sqli/mssql +26 -0
  590. data/spec/servers/modules/audit/sqli/mysql +13 -0
  591. data/spec/servers/modules/audit/sqli/oracle +6 -0
  592. data/spec/servers/modules/audit/sqli/postgresql +7 -0
  593. data/spec/servers/modules/audit/sqli/sqlite +4 -0
  594. data/spec/servers/modules/audit/sqli/sybase +0 -0
  595. data/spec/servers/modules/audit/sqli_blind_rdiff.rb +74 -0
  596. data/spec/servers/modules/audit/sqli_blind_timing.rb +121 -0
  597. data/spec/servers/modules/audit/trainer_module.rb +160 -0
  598. data/spec/servers/modules/audit/unvalidated_redirect.rb +115 -0
  599. data/spec/servers/modules/audit/xpath.rb +111 -0
  600. data/spec/servers/modules/audit/xpath/dotnet +5 -0
  601. data/spec/servers/modules/audit/xpath/general +13 -0
  602. data/spec/servers/modules/audit/xpath/java +3 -0
  603. data/spec/servers/modules/audit/xpath/libxml2 +2 -0
  604. data/spec/servers/modules/audit/xpath/php +2 -0
  605. data/spec/servers/modules/audit/xss.rb +152 -0
  606. data/spec/servers/modules/audit/xss_event.rb +80 -0
  607. data/spec/servers/modules/audit/xss_path.rb +44 -0
  608. data/spec/servers/modules/audit/xss_script_tag.rb +73 -0
  609. data/spec/servers/modules/audit/xss_tag.rb +139 -0
  610. data/spec/servers/modules/module_server.rb +14 -0
  611. data/spec/servers/modules/recon/allowed_methods.rb +5 -0
  612. data/spec/servers/modules/recon/backdoors.rb +4 -0
  613. data/spec/servers/modules/recon/backup_files.rb +28 -0
  614. data/spec/servers/modules/recon/common_directories.rb +6 -0
  615. data/spec/servers/modules/recon/common_files.rb +6 -0
  616. data/spec/servers/modules/recon/directory_listing.rb +30 -0
  617. data/spec/servers/modules/recon/grep/captcha.rb +27 -0
  618. data/spec/servers/modules/recon/grep/credit_card.rb +28 -0
  619. data/spec/servers/modules/recon/grep/cvs_svn_users.rb +23 -0
  620. data/spec/servers/modules/recon/grep/emails.rb +21 -0
  621. data/spec/servers/modules/recon/grep/html_objects.rb +7 -0
  622. data/spec/servers/modules/recon/grep/http_only_cookies.rb +21 -0
  623. data/spec/servers/modules/recon/grep/insecure_cookies.rb +21 -0
  624. data/spec/servers/modules/recon/grep/mixed_resource.rb +83 -0
  625. data/spec/servers/modules/recon/grep/private_ip.rb +18 -0
  626. data/spec/servers/modules/recon/grep/ssn.rb +5 -0
  627. data/spec/servers/modules/recon/grep/unencrypted_password_forms.rb +33 -0
  628. data/spec/servers/modules/recon/htaccess_limit.rb +8 -0
  629. data/spec/servers/modules/recon/http_put.rb +7 -0
  630. data/spec/servers/modules/recon/interesting_responses.rb +5 -0
  631. data/spec/servers/modules/recon/webdav.rb +25 -0
  632. data/spec/servers/modules/recon/xst.rb +6 -0
  633. data/spec/servers/plugins/autologin.rb +38 -0
  634. data/spec/servers/plugins/autothrottle.rb +8 -0
  635. data/spec/servers/plugins/content_types.rb +17 -0
  636. data/spec/servers/plugins/cookie_collector.rb +20 -0
  637. data/spec/servers/plugins/form_dicattack.rb +28 -0
  638. data/spec/servers/plugins/healthmap.rb +16 -0
  639. data/spec/servers/plugins/http_dicattack.rb +9 -0
  640. data/spec/servers/plugins/http_dicattack_secure.rb +9 -0
  641. data/spec/servers/plugins/http_dicattack_unprotected.rb +5 -0
  642. data/spec/servers/plugins/meta/remedies/discovery.rb +7 -0
  643. data/spec/servers/plugins/meta/remedies/timing_attacks.rb +29 -0
  644. data/spec/servers/plugins/profiler.rb +82 -0
  645. data/spec/servers/plugins/rescan.rb +31 -0
  646. data/spec/servers/plugins/waf_detector.rb +33 -0
  647. data/spec/shared/component.rb +43 -0
  648. data/spec/shared/element/capabilities/auditable.rb +729 -0
  649. data/spec/shared/element/capabilities/refreshable.rb +56 -0
  650. data/spec/shared/module.rb +162 -0
  651. data/spec/shared/path_extractor.rb +47 -0
  652. data/spec/shared/plugin.rb +50 -0
  653. data/spec/shared/reports.rb +47 -0
  654. data/spec/spec_helper.rb +53 -0
  655. metadata +870 -323
  656. data/extras/modules/recon/raft_dirs.rb +0 -108
  657. data/extras/modules/recon/raft_dirs/raft-large-directories.txt +0 -62290
  658. data/extras/modules/recon/raft_files.rb +0 -110
  659. data/extras/modules/recon/raft_files/raft-large-files.txt +0 -37037
  660. data/extras/modules/recon/svn_digger_dirs.rb +0 -108
  661. data/extras/modules/recon/svn_digger_dirs/Licence.txt +0 -674
  662. data/extras/modules/recon/svn_digger_dirs/ReadMe-Arachni.txt +0 -4
  663. data/extras/modules/recon/svn_digger_dirs/ReadMe.txt +0 -6
  664. data/extras/modules/recon/svn_digger_dirs/all-dirs.txt +0 -5960
  665. data/extras/modules/recon/svn_digger_files.rb +0 -114
  666. data/extras/modules/recon/svn_digger_files/Licence.txt +0 -674
  667. data/extras/modules/recon/svn_digger_files/ReadMe-Arachni.txt +0 -4
  668. data/extras/modules/recon/svn_digger_files/ReadMe.txt +0 -6
  669. data/extras/modules/recon/svn_digger_files/all-extensionless.txt +0 -25419
  670. data/extras/modules/recon/svn_digger_files/all.txt +0 -43135
  671. data/lib/arachni/component_manager.rb +0 -293
  672. data/lib/arachni/component_options.rb +0 -425
  673. data/lib/arachni/parser/auditable.rb +0 -606
  674. data/lib/arachni/parser/elements.rb +0 -315
  675. data/lib/arachni/parser/page.rb +0 -168
  676. data/lib/arachni/parser/parser.rb +0 -866
  677. data/lib/arachni/rpc/server/options.rb +0 -95
  678. data/lib/arachni/ui/web/addons/autodeploy.rb +0 -207
  679. data/lib/arachni/ui/web/addons/autodeploy/lib/manager.rb +0 -398
  680. data/lib/arachni/ui/web/addons/autodeploy/views/index.erb +0 -291
  681. data/modules/recon/mixed_resource.rb +0 -100
  682. data/modules/recon/unencrypted_password_forms.rb +0 -107
  683. data/path_extractors/sitemap.rb +0 -31
  684. data/plugins/defaults/metamodules/remedies/manual_verification.rb +0 -65
  685. data/plugins/defaults/metamodules/remedies/timing_attacks.rb +0 -134
  686. data/plugins/defaults/metamodules/uniformity.rb +0 -99
  687. data/reports/metareport/arachni_metareport.rb +0 -174
  688. data/reports/plugin_formatters/stdout/metamodules.rb +0 -82
@@ -0,0 +1,87 @@
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
+ require Arachni::Options.dir['lib'] + 'element/base'
18
+
19
+ module Arachni::Element
20
+
21
+ HEADER = 'header'
22
+
23
+ class Header < Arachni::Element::Base
24
+
25
+ def initialize( url, raw = {} )
26
+ super( url, raw )
27
+
28
+ self.action = @url
29
+ self.method = 'get'
30
+ self.auditable = @raw
31
+
32
+ @orig = self.auditable.dup
33
+ @orig.freeze
34
+ end
35
+
36
+ def simple
37
+ @auditable.dup
38
+ end
39
+
40
+ def mutations( injection_str, opts = {} )
41
+ flip = opts.delete( :param_flip )
42
+ muts = super( injection_str, opts )
43
+
44
+ if flip
45
+ elem = self.dup
46
+
47
+ # when under HPG mode element auditing is strictly regulated
48
+ # and when we flip params we essentially create a new element
49
+ # which won't be on the whitelist
50
+ elem.override_instance_scope
51
+
52
+ elem.altered = 'Parameter flip'
53
+ elem.auditable = { injection_str => seed }
54
+ muts << elem
55
+ end
56
+
57
+ muts
58
+ end
59
+
60
+ def type
61
+ Arachni::Element::HEADER
62
+ end
63
+
64
+ def self.encode( header )
65
+ ::URI.encode( header, "\r\n" )
66
+ end
67
+ def encode( header )
68
+ self.class.encode( header )
69
+ end
70
+
71
+ def self.decode( header )
72
+ ::URI.decode( header )
73
+ end
74
+ def decode( header )
75
+ self.class.decode( header )
76
+ end
77
+
78
+
79
+ private
80
+ def http_request( opts, &block )
81
+ http.header( @action, opts, &block )
82
+ end
83
+
84
+ end
85
+ end
86
+
87
+ Arachni::Header = Arachni::Element::Header
@@ -0,0 +1,227 @@
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
+ require Arachni::Options.dir['lib'] + 'element/base'
18
+
19
+ module Arachni::Element
20
+
21
+ LINK = 'link'
22
+
23
+ class Link < Arachni::Element::Base
24
+
25
+ include Capabilities::Refreshable
26
+
27
+ #
28
+ # Creates a new Link element from a URL or more complex data.
29
+ #
30
+ # @param [String] url owner URL -- URL of the page which contained the
31
+ # @param [String, Hash] raw
32
+ # If empty, the owner URL will be treated as the actionable URL and
33
+ # auditable inputs will be extracted from its query component.
34
+ #
35
+ # If a +String+ is passed, it will be treated as the actionable
36
+ # URL and auditable inputs will be extracted from its query component.
37
+ #
38
+ # If a +Hash+ is passed, it will look for an actionable URL
39
+ # +String+ in the following keys:
40
+ # * 'href'
41
+ # * :href
42
+ # * 'action'
43
+ # * :action
44
+ #
45
+ # and for an auditable inputs +Hash+ in:
46
+ # * 'vars'
47
+ # * :vars
48
+ # * 'inputs'
49
+ # * :inputs
50
+ #
51
+ # these should contain inputs in name=>value pairs.
52
+ #
53
+ # If the +Hash+ doesn't contain any of the following keys,
54
+ # its contents will be used as auditable inputs instead and +url+ will be
55
+ # used as the actionable URL.
56
+ #
57
+ # If no inputs have been provided it will try to extract some from the
58
+ # actionable URL, if empty inputs (empty +Hash+) )have been provided the URL will not be
59
+ # parsed and the Link will instead be configured without any auditable inputs/vectors.
60
+ #
61
+ #
62
+ def initialize( url, raw = {} )
63
+ super( url, raw )
64
+
65
+ if !@raw || @raw.empty?
66
+ self.action = self.url
67
+ elsif raw.is_a?( String )
68
+ self.action = @raw
69
+ elsif raw.is_a?( Hash )
70
+ keys = raw.keys
71
+ has_input_hash = (keys & ['vars', :vars, 'inputs', :inputs]).any?
72
+ has_action_hash = (keys & ['href', :href, 'action', :action]).any?
73
+
74
+ if !has_input_hash && !has_action_hash
75
+ self.auditable = @raw
76
+ else
77
+ self.auditable = @raw['vars'] || @raw[:vars] || @raw['inputs'] || @raw[:inputs]
78
+ end
79
+ self.action = @raw['href'] || @raw[:href] || @raw['action'] || @raw[:action]
80
+ end
81
+
82
+ self.auditable = self.class.parse_query_vars( self.action ) if !self.auditable || self.auditable.empty?
83
+
84
+ if @raw.is_a?( String )
85
+ @raw = {
86
+ action: self.action,
87
+ inputs: self.auditable
88
+ }
89
+ end
90
+
91
+ self.method = 'get'
92
+
93
+ @orig = self.auditable.dup
94
+ @orig.freeze
95
+ end
96
+
97
+ # @return [Hash] Simple representation of self in the form of { {#action} => {#auditable} }
98
+ def simple
99
+ { self.action => self.auditable }
100
+ end
101
+
102
+ #
103
+ # @return [String] unique link ID
104
+ #
105
+ def id
106
+ #self.action + auditable.keys.reject { |name| name.include?( seed ) }.sort.to_s
107
+ query_vars = self.class.parse_query_vars( self.action )
108
+ "#{@audit_id_url}::#{self.method}::#{query_vars.merge( self.auditable ).keys.compact.sort.to_s}"
109
+ end
110
+
111
+ def id_from( type = :auditable )
112
+ query_vars = self.class.parse_query_vars( self.action )
113
+ "#{@audit_id_url}::#{self.method}::#{query_vars.merge( self.send( type ) ).keys.compact.sort.to_s}"
114
+ end
115
+
116
+ #
117
+ # @return [String]
118
+ # Absolute URL with a merged version of {#action} and {#auditable} as a query.
119
+ #
120
+ def to_s
121
+ query_vars = self.class.parse_query_vars( self.action )
122
+ uri = uri_parse( self.action )
123
+ uri.query = query_vars.merge( self.auditable ).map { |k, v| "#{k}=#{v}" }.join( '&' )
124
+ uri.to_s
125
+ end
126
+
127
+ # @return [String] 'link'
128
+ def type
129
+ Arachni::Element::LINK
130
+ end
131
+
132
+ def self.encode( str )
133
+ URI.encode( str )
134
+ end
135
+
136
+ def self.decode( str )
137
+ URI.decode( str )
138
+ end
139
+
140
+ #
141
+ # Returns an array of links based on HTTP response.
142
+ #
143
+ # @param [Typhoeus::Response] response
144
+ #
145
+ # @return [Array<Link>]
146
+ #
147
+ def self.from_response( response )
148
+ url = response.effective_url
149
+ [new( url, parse_query_vars( url ) )] | from_document( url, response.body )
150
+ end
151
+
152
+ #
153
+ # Returns an array of links from a document.
154
+ #
155
+ # @param [String] url request URL
156
+ # @param [String, Nokogiri::HTML::Document] document
157
+ #
158
+ # @return [Array<Link>]
159
+ #
160
+ def self.from_document( url, document )
161
+ document = Nokogiri::HTML( document.to_s ) if !document.is_a?( Nokogiri::HTML::Document )
162
+ base_url = begin
163
+ document.search( '//base[@href]' )[0]['href']
164
+ rescue
165
+ url
166
+ end
167
+
168
+ document.search( '//a' ).map do |link|
169
+ c_link = {}
170
+ c_link['href'] = to_absolute( link['href'], base_url )
171
+ next if !c_link['href']
172
+ next if skip_path?( c_link['href'] )
173
+
174
+ new( url, c_link['href'] )
175
+ end.compact
176
+ end
177
+
178
+ #
179
+ # Extracts variables and their values from a URL query.
180
+ #
181
+ # @param [String] url
182
+ #
183
+ # @return [Hash] name=>value pairs
184
+ #
185
+ def self.parse_query_vars( url )
186
+ return {} if !url
187
+
188
+ query = uri_parse( url ).query
189
+ return {} if !query || query.empty?
190
+
191
+ query.to_s.split( '&' ).inject( {} ) do |h, pair|
192
+ name, value = pair.split( '=' )
193
+ h[name.to_s] = value.to_s
194
+ h
195
+ end
196
+ end
197
+
198
+ # @see Base#action=
199
+ def action=( url )
200
+ v = super( url )
201
+ @audit_id_url = self.action.split( '?' ).first.to_s.split( ';' ).first
202
+ v
203
+ end
204
+
205
+ def audit_id( injection_str = '', opts = {} )
206
+ vars = auditable.keys.compact.sort.to_s
207
+
208
+ str = ''
209
+ str << "#{@auditor.fancy_name}:" if !opts[:no_auditor] && !orphan?
210
+
211
+ str << "#{@audit_id_url}:" + "#{self.type}:#{vars}"
212
+ str << "=#{injection_str.to_s}" if !opts[:no_injection_str]
213
+ str << ":timeout=#{opts[:timeout]}" if !opts[:no_timeout]
214
+
215
+ str
216
+ end
217
+
218
+ private
219
+ def http_request( opts, &block )
220
+ self.method.downcase.to_s != 'get' ?
221
+ http.post( self.action, opts, &block ) : http.get( self.action, opts, &block )
222
+ end
223
+
224
+ end
225
+ end
226
+
227
+ Arachni::Link = Arachni::Element::Link
@@ -1,76 +1,54 @@
1
1
  =begin
2
- Arachni
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
- This is free software; you can copy and distribute and modify
6
- this program under the term of the GPL v2.0 License
7
- (See LICENSE file for details)
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
12
18
 
13
19
  #
14
- # Arachni::Exceptions module<br/>
15
20
  # It holds the framework's exceptions.
16
21
  #
17
- # @author: Tasos "Zapotek" Laskos
18
- # <tasos.laskos@gmail.com>
19
- # <zapotek@segfault.gr>
20
- # @version: 0.1
22
+ # @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
21
23
  #
22
24
  module Exceptions
23
25
 
24
- def initialize( msg )
25
- super( msg )
26
- end
27
-
28
-
29
26
  class NoAuditOpts < StandardError
30
- include Exceptions
31
-
32
27
  end
33
28
 
34
29
  class NoMods < StandardError
35
- include Exceptions
36
-
37
30
  end
38
31
 
39
32
  class ComponentNotFound < StandardError
40
- include Exceptions
41
-
42
33
  end
43
34
 
44
35
  class ModNotFound < StandardError
45
- include Exceptions
46
-
47
36
  end
48
37
 
49
38
  class DepModNotFound < StandardError
50
- include Exceptions
51
-
52
39
  end
53
40
 
54
41
  class ReportNotFound < StandardError
55
- include Exceptions
56
-
57
42
  end
58
43
 
59
44
  class NoURL < StandardError
60
- include Exceptions
61
-
62
45
  end
63
46
 
64
47
  class InvalidURL < StandardError
65
- include Exceptions
66
-
67
48
  end
68
49
 
69
50
  class NoCookieJar < StandardError
70
- include Exceptions
71
-
72
51
  end
73
52
 
74
53
  end
75
-
76
54
  end
@@ -1,38 +1,52 @@
1
+ # encoding: utf-8
2
+
1
3
  =begin
2
- Arachni
3
- Copyright (c) 2010-2012 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
4
+ Copyright 2010-2012 Tasos Laskos <tasos.laskos@gmail.com>
5
+
6
+ Licensed under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License.
8
+ You may obtain a copy of the License at
4
9
 
5
- This is free software; you can copy and distribute and modify
6
- this program under the term of the GPL v2.0 License
7
- (See LICENSE file for details)
10
+ http://www.apache.org/licenses/LICENSE-2.0
8
11
 
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
9
17
  =end
10
18
 
19
+ require 'rubygems'
20
+ require 'bundler/setup'
21
+
11
22
  require 'ap'
12
23
  require 'pp'
13
- require 'rubygems'
14
24
 
15
25
  require File.expand_path( File.dirname( __FILE__ ) ) + '/options'
16
- opts = Arachni::Options.instance
17
-
18
- require opts.dir['lib'] + 'version'
19
- require opts.dir['lib'] + 'ruby'
20
- require opts.dir['lib'] + 'exceptions'
21
- require opts.dir['lib'] + 'spider'
22
- require opts.dir['lib'] + 'parser'
23
- require opts.dir['lib'] + 'issue'
24
- require opts.dir['lib'] + 'module'
25
- require opts.dir['lib'] + 'plugin'
26
- require opts.dir['lib'] + 'audit_store'
27
- require opts.dir['lib'] + 'http'
28
- require opts.dir['lib'] + 'report'
29
- require opts.dir['lib'] + 'database'
30
- require opts.dir['lib'] + 'component_manager'
31
- require opts.dir['mixins'] + 'progress_bar'
32
-
33
26
 
34
27
  module Arachni
35
28
 
29
+ lib = Options.dir['lib']
30
+ require lib + 'version'
31
+ require lib + 'ruby'
32
+ require lib + 'exceptions'
33
+ require lib + 'cache'
34
+ require lib + 'utilities'
35
+ require lib + 'uri'
36
+ require lib + 'spider'
37
+ require lib + 'parser'
38
+ require lib + 'issue'
39
+ require lib + 'module'
40
+ require lib + 'plugin'
41
+ require lib + 'audit_store'
42
+ require lib + 'http'
43
+ require lib + 'report'
44
+ require lib + 'database'
45
+ require lib + 'component/manager'
46
+ require lib + 'session'
47
+
48
+ require Options.dir['mixins'] + 'progress_bar'
49
+
36
50
  #
37
51
  # The Framework class ties together all the components.
38
52
  #
@@ -43,25 +57,21 @@ module Arachni
43
57
  # It runs the audit, loads modules and reports and runs them according to
44
58
  # user options.
45
59
  #
46
- # @author: Tasos "Zapotek" Laskos
47
- # <tasos.laskos@gmail.com>
48
- # <zapotek@segfault.gr>
49
- # @version: 0.2.5
60
+ # @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
50
61
  #
51
62
  class Framework
52
-
53
63
  #
54
64
  # include the output interface but try to use it as little as possible
55
65
  #
56
66
  # the UI classes should take care of communicating with the user
57
67
  #
58
- include Arachni::UI::Output
68
+ include UI::Output
59
69
 
60
- include Arachni::Module::Utilities
61
- include Arachni::Mixins::Observable
70
+ include Utilities
71
+ include Mixins::Observable
62
72
 
63
73
  # the version of *this* class
64
- REVISION = '0.2.5'
74
+ REVISION = '0.2.7'
65
75
 
66
76
  #
67
77
  # Instance options
@@ -85,24 +95,23 @@ class Framework
85
95
  #
86
96
  attr_reader :plugins
87
97
 
88
- #
89
- # @return [Arachni::Spider] spider
90
- #
98
+ # @return [Session] webapp session helper
99
+ attr_reader :session
100
+
101
+ # @return [Spider] webapp spider
91
102
  attr_reader :spider
92
103
 
93
104
  #
94
- # URLs of all discovered pages
95
- #
96
- # @return [Array]
105
+ # @return [Arachni::HTTP] HTTP instance
97
106
  #
98
- attr_reader :sitemap
107
+ attr_reader :http
99
108
 
100
109
  #
101
- # Array of URLs that have been audited
110
+ # URLs of all discovered pages
102
111
  #
103
112
  # @return [Array]
104
113
  #
105
- attr_reader :auditmap
114
+ attr_reader :sitemap
106
115
 
107
116
  #
108
117
  # Total number of pages added to their audit queue
@@ -111,13 +120,6 @@ class Framework
111
120
  #
112
121
  attr_reader :page_queue_total_size
113
122
 
114
- #
115
- # Current amount of pages in the audit queue
116
- #
117
- # @return [Integer]
118
- #
119
- attr_reader :page_queue_size
120
-
121
123
  #
122
124
  # Total number of urls added to their audit queue
123
125
  #
@@ -125,29 +127,25 @@ class Framework
125
127
  #
126
128
  attr_reader :url_queue_total_size
127
129
 
128
- #
129
- # Current amount of urls in the audit queue
130
- #
131
- # @return [Integer]
132
- #
133
- attr_reader :url_queue_size
134
-
135
-
136
130
  #
137
131
  # Initializes system components.
138
132
  #
139
133
  # @param [Options] opts
140
134
  #
141
- def initialize( opts )
135
+ def initialize( opts = Arachni::Options.instance )
142
136
 
143
- Encoding.default_external = "BINARY"
144
- Encoding.default_internal = "BINARY"
137
+ Encoding.default_external = 'BINARY'
138
+ Encoding.default_internal = 'BINARY'
145
139
 
146
140
  @opts = opts
147
141
 
148
- @modules = Arachni::Module::Manager.new( @opts )
149
- @reports = Arachni::Report::Manager.new( @opts )
150
- @plugins = Arachni::Plugin::Manager.new( self )
142
+ @modules = Module::Manager.new( self )
143
+ @reports = Report::Manager.new( @opts )
144
+ @plugins = Plugin::Manager.new( self )
145
+
146
+ @session = Session.new( @opts )
147
+ reset_spider
148
+ @http = HTTP.instance
151
149
 
152
150
  # will store full-fledged pages generated by the Trainer since these
153
151
  # may not be be accessible simply by their URL
@@ -160,81 +158,63 @@ class Framework
160
158
  @url_queue = Queue.new
161
159
  @url_queue_total_size = 0
162
160
 
163
- prepare_cookie_jar( )
164
- prepare_user_agent( )
165
-
166
161
  # deep clone the redundancy rules to preserve their counter
167
162
  # for the reports
168
163
  @orig_redundant = @opts.redundant.deep_clone
169
164
 
170
165
  @running = false
166
+ @status = :ready
171
167
  @paused = []
172
168
 
173
- @plugin_store = {}
174
- @store = nil
175
-
176
169
  @auditmap = []
177
170
  @sitemap = []
178
171
 
179
172
  @current_url = ''
180
173
  end
181
174
 
182
- #
183
- # @return [Arachni::HTTP] HTTP instance
184
- #
185
- def http
186
- Arachni::HTTP.instance
187
- end
188
-
189
- #
190
- # Prepares the framework for the audit.
191
- #
192
- # Sets the status to 'running', starts the clock and runs the plugins.
193
- #
194
- # Must be called just before calling {#audit}.
195
- #
196
- def prepare
197
- @running = true
198
- @opts.start_datetime = Time.now
199
-
200
- # run all plugins
201
- @plugins.run
202
- end
203
-
204
175
  #
205
176
  # Runs the system
206
177
  #
207
178
  # It parses the instance options, {#prepare}, runs the {#audit} and {#clean_up!}.
208
179
  #
209
- # @param [Block] &block a block to call after the audit has finished
180
+ # @param [Block] block a block to call after the audit has finished
210
181
  # but before running the reports
211
182
  #
212
183
  def run( &block )
213
184
  prepare
214
185
 
215
186
  # catch exceptions so that if something breaks down or the user opted to
216
- # exit the reports will still run with whatever results
217
- # Arachni managed to gather
218
- begin
219
- # start the audit
220
- exception_jail{ audit( ) }
221
- rescue Exception => e
222
- # ap e
223
- # ap e.backtrace
224
- end
187
+ # exit the reports will still run with whatever results Arachni managed to gather
188
+ exception_jail( false ){ audit }
225
189
 
226
- clean_up!
227
- begin
228
- block.call if block
229
- rescue Exception
230
- end
190
+ clean_up
191
+ exception_jail( false ){ block.call } if block_given?
192
+ @status = :done
231
193
 
232
194
  # run reports
233
- if( @opts.reports && !@opts.reports.empty? )
234
- exception_jail{ @reports.run( audit_store( ) ) }
235
- end
195
+ @reports.run( audit_store ) if !@reports.empty?
236
196
 
237
- return true
197
+ true
198
+ end
199
+
200
+ #
201
+ # Returns the status of the instance as a string.
202
+ #
203
+ # Possible values are (in order):
204
+ # * ready -- Just initialised and waiting for instructions
205
+ # * preparing -- Getting ready to start (i.e. initing plugins etc.)
206
+ # * crawling -- The instance is crawling the target webapp
207
+ # * auditing-- The instance is currently auditing the webapp
208
+ # * paused -- The instance has posed (if applicable)
209
+ # * cleanup -- The scan has completed and the instance is cleaning up
210
+ # after itself (i.e. waiting for plugins to finish etc.).
211
+ # * done -- The scan has completed
212
+ #
213
+ # @return [String]
214
+ #
215
+ def status
216
+ return 'paused' if paused?
217
+ @status.to_s
238
218
  end
239
219
 
240
220
  #
@@ -269,7 +249,7 @@ class Framework
269
249
 
270
250
  @opts.start_datetime = Time.now if !@opts.start_datetime
271
251
 
272
- sitemap_sz = @url_queue_total_size + @page_queue_total_size
252
+ sitemap_sz = @sitemap.size
273
253
  auditmap_sz = @auditmap.size
274
254
 
275
255
  if( !refresh_time || auditmap_sz == sitemap_sz ) && !override_refresh
@@ -278,15 +258,8 @@ class Framework
278
258
  @opts.delta_time = Time.now - @opts.start_datetime
279
259
  end
280
260
 
281
- curr_avg = 0
282
- if http.curr_res_cnt > 0 && http.curr_res_time > 0
283
- curr_avg = (http.curr_res_cnt / http.curr_res_time).to_i
284
- end
285
-
286
261
  avg = 0
287
- if res_cnt > 0
288
- avg = ( res_cnt / @opts.delta_time ).to_i
289
- end
262
+ avg = (res_cnt / @opts.delta_time).to_i if res_cnt > 0
290
263
 
291
264
  # we need to remove URLs that lead to redirects from the sitemap
292
265
  # when calculating the progress %.
@@ -296,11 +269,7 @@ class Framework
296
269
  # so the sitemap and auditmap will never match and the progress will
297
270
  # never get to 100% which may confuse users.
298
271
  #
299
- if @spider
300
- redir_sz = @spider.redirects.size
301
- else
302
- redir_sz = 0
303
- end
272
+ redir_sz = spider.redirects.size
304
273
 
305
274
  #
306
275
  # There are 2 audit phases:
@@ -331,22 +300,15 @@ class Framework
331
300
  #
332
301
  # This is not very granular but it's good enough for now...
333
302
  #
334
- if Arachni::Module::Auditor.timeout_loaded_modules.size > 0
335
- multi = 50
336
- else
337
- multi = 100
338
- end
303
+ multi = Module::Auditor.timeout_loaded_modules.size > 0 ? 50 : 100
304
+ progress = (Float( auditmap_sz ) / ( sitemap_sz - redir_sz ) ) * multi
339
305
 
340
- progress = (Float( auditmap_sz ) /
341
- ( sitemap_sz - redir_sz ) ) * multi
342
-
343
- if Arachni::Module::Auditor.running_timeout_attacks?
344
-
345
- called_blocks = Arachni::Module::Auditor.timeout_audit_operations_cnt -
346
- Arachni::Module::Auditor.current_timeout_audit_operations_cnt
306
+ if Module::Auditor.running_timeout_attacks?
307
+ called_blocks = Module::Auditor.timeout_audit_operations_cnt -
308
+ Module::Auditor.current_timeout_audit_operations_cnt
347
309
 
348
310
  progress += ( Float( called_blocks ) /
349
- Arachni::Module::Auditor.timeout_audit_operations_cnt ) * multi
311
+ Module::Auditor.timeout_audit_operations_cnt ) * multi
350
312
  end
351
313
 
352
314
  begin
@@ -358,23 +320,23 @@ class Framework
358
320
  # sometimes progress may slightly exceed 100%
359
321
  # which can cause a few strange stuff to happen
360
322
  progress = 100.0 if progress > 100.0
361
-
362
- return {
363
- :requests => req_cnt,
364
- :responses => res_cnt,
365
- :time_out_count => http.time_out_count,
366
- :time => audit_store.delta_time,
367
- :avg => avg,
368
- :sitemap_size => @sitemap.size,
369
- :auditmap_size => auditmap_sz,
370
- :progress => progress,
371
- :curr_res_time => http.curr_res_time,
372
- :curr_res_cnt => http.curr_res_cnt,
373
- :curr_avg => curr_avg,
374
- :average_res_time => http.average_res_time,
375
- :max_concurrency => http.max_concurrency,
376
- :current_page => @current_url,
377
- :eta => ::Arachni::Mixins::ProgressBar.eta( progress, @opts.start_datetime )
323
+ pb = Mixins::ProgressBar.eta( progress, @opts.start_datetime )
324
+ {
325
+ requests: req_cnt,
326
+ responses: res_cnt,
327
+ time_out_count: http.time_out_count,
328
+ time: audit_store.delta_time,
329
+ avg: avg,
330
+ sitemap_size: @sitemap.size,
331
+ auditmap_size: auditmap_sz,
332
+ progress: progress,
333
+ curr_res_time: http.curr_res_time,
334
+ curr_res_cnt: http.curr_res_cnt,
335
+ curr_avg: http.curr_res_per_second,
336
+ average_res_time: http.average_res_time,
337
+ max_concurrency: http.max_concurrency,
338
+ current_page: @current_url,
339
+ eta: pb
378
340
  }
379
341
  end
380
342
 
@@ -384,115 +346,22 @@ class Framework
384
346
  def push_to_page_queue( page )
385
347
  @page_queue << page
386
348
  @page_queue_total_size += 1
349
+
350
+ @sitemap |= [page.url]
387
351
  end
388
352
 
389
353
  #
390
354
  # Pushes a URL to the URL audit queue and updates {#url_queue_total_size}
391
355
  #
392
356
  def push_to_url_queue( url )
393
- @url_queue << url
394
- @url_queue_total_size += 1
395
- end
396
-
397
- #
398
- # Performs the audit
399
- #
400
- # Runs the spider, pushes each page or url to their respective audit queue,
401
- # calls {#audit_queue}, runs the timeout attacks ({Arachni::Module::Auditor.timeout_audit_run}) and finally re-runs
402
- # {#audit_queue} in case the timing attacks uncovered a new page.
403
- #
404
- def audit
405
- wait_if_paused
406
-
407
- @spider = Arachni::Spider.new( @opts )
408
-
409
- # if we're restricted to a given list of paths there's no reason to run the spider
410
- if @opts.restrict_paths && !@opts.restrict_paths.empty?
411
- @sitemap = @opts.restrict_paths
412
- @sitemap.each {
413
- |url|
414
- push_to_url_queue( url_sanitize( url ) )
415
- }
416
- else
417
- # initiates the crawl
418
- @spider.run( false ) {
419
- |response|
420
- @sitemap |= @spider.sitemap
421
- push_to_url_queue( url_sanitize( response.effective_url ) )
422
- }
423
- end
424
-
425
- audit_queue
426
-
427
- exception_jail {
428
- if !Arachni::Module::Auditor.timeout_audit_blocks.empty?
429
- print_line
430
- print_status( 'Running timing attacks.' )
431
- print_info( '---------------------------------------' )
432
- Arachni::Module::Auditor.on_timing_attacks {
433
- |res, elem|
434
- @current_url = elem.action if !elem.action.empty?
435
- }
436
- Arachni::Module::Auditor.timeout_audit_run
437
- end
438
-
439
- audit_queue
440
- }
441
-
442
- end
443
-
444
- #
445
- # Audits the URL and Page queues
446
- #
447
- def audit_queue
357
+ abs = to_absolute( url )
448
358
 
449
- # goes through the URLs discovered by the spider, repeats the request
450
- # and parses the responses into page objects
451
- #
452
- # yes...repeating the request is wasteful but we can't store the
453
- # responses of the spider to consume them here because there's no way
454
- # of knowing how big the site will be.
455
- #
456
- while( !@url_queue.empty? && url = @url_queue.pop )
457
-
458
- http.get( url, :remove_id => true ).on_complete {
459
- |res|
460
-
461
- page = Arachni::Parser::Page.from_http_response( res, @opts )
462
-
463
- # audit the page
464
- exception_jail{ run_mods( page ) }
465
-
466
- # don't let the page queue build up,
467
- # consume it as soon as possible because the pages are stored
468
- # in the FS and thus take up precious system resources
469
- audit_page_queue
470
- }
471
-
472
- harvest_http_responses if !@opts.http_harvest_last
473
- end
474
-
475
- harvest_http_responses if( @opts.http_harvest_last )
476
-
477
- audit_page_queue
478
-
479
- harvest_http_responses if( @opts.http_harvest_last )
480
- end
481
-
482
- #
483
- # Audits the page queue
484
- #
485
- def audit_page_queue
486
- # this will run until no new elements appear for the given page
487
- while( !@page_queue.empty? && page = @page_queue.pop )
359
+ @url_queue.push( abs ? abs : url )
360
+ @url_queue_total_size += 1
488
361
 
489
- # audit the page
490
- exception_jail{ run_mods( page ) }
491
- harvest_http_responses if !@opts.http_harvest_last
492
- end
362
+ @sitemap |= [url]
493
363
  end
494
364
 
495
-
496
365
  #
497
366
  # Returns the results of the audit as an {AuditStore} instance
498
367
  #
@@ -500,67 +369,24 @@ class Framework
500
369
  #
501
370
  # @return [AuditStore]
502
371
  #
503
- def audit_store( fresh = true )
372
+ def audit_store
373
+ opts = @opts.to_hash.deep_clone
504
374
 
505
375
  # restore the original redundancy rules and their counters
506
- @opts.redundant = @orig_redundant
507
- opts = @opts.to_h
376
+ opts['redundant'] = @orig_redundant
508
377
  opts['mods'] = @modules.keys
509
378
 
510
- if( !fresh && @store )
511
- return @store
512
- else
513
- return @store = AuditStore.new( {
514
- :version => version( ),
515
- :revision => REVISION,
516
- :options => opts,
517
- :sitemap => audit_store_sitemap || [],
518
- :issues => @modules.results( ).deep_clone,
519
- :plugins => @plugin_store
520
- })
521
- end
379
+ AuditStore.new(
380
+ version: version,
381
+ revision: revision,
382
+ options: opts,
383
+ sitemap: auditstore_sitemap || [],
384
+ issues: @modules.results.deep_clone,
385
+ plugins: @plugins.results
386
+ )
522
387
  end
523
388
  alias :auditstore :audit_store
524
389
 
525
- #
526
- # Special sitemap for the auditstore.
527
- #
528
- # Used only under special circumstances, will usually return the {#sitemap}
529
- # but can be overridden by the {::Arachni::RPC::Framework}.
530
- #
531
- # @return [Array]
532
- #
533
- def audit_store_sitemap
534
- @override_sitemap && !@override_sitemap.empty? ? @override_sitemap : @sitemap
535
- end
536
-
537
- #
538
- # Adds an object to the plugin store.
539
- #
540
- # Should only be called once, if an entry for a plugin already exists
541
- # it will just return.
542
- #
543
- # @param [String] plugin plugin/owner name
544
- # @param [Object] obj object to store
545
- #
546
- def plugin_store( plugin, obj )
547
- name = ''
548
- @plugins.each_pair {
549
- |k, v|
550
-
551
- if plugin.class.name == v.name
552
- name = k
553
- break
554
- end
555
- }
556
-
557
- return if @plugin_store[name]
558
-
559
- @plugin_store[name] = {
560
- :results => obj
561
- }.merge( plugin.class.info )
562
- end
563
-
564
390
  #
565
391
  # Returns an array of hashes with information
566
392
  # about all available modules
@@ -568,20 +394,21 @@ class Framework
568
394
  # @return [Array<Hash>]
569
395
  #
570
396
  def lsmod
571
- @modules.available.map {
572
- |name|
573
-
397
+ loaded = @modules.loaded
398
+ @modules.clear
399
+ @modules.available.map do |name|
574
400
  path = @modules.name_to_path( name )
575
401
  next if !lsmod_match?( path )
576
402
 
577
403
  @modules[name].info.merge(
578
- :mod_name => name,
579
- :author => [@modules[name].info[:author]].flatten.map { |a| a.strip },
580
- :path => path.strip
404
+ mod_name: name,
405
+ author: [@modules[name].info[:author]].flatten.map { |a| a.strip },
406
+ path: path.strip
581
407
  )
582
- }.compact
408
+ end.compact
583
409
  ensure
584
410
  @modules.clear
411
+ @modules.load( loaded )
585
412
  end
586
413
 
587
414
  #
@@ -591,20 +418,21 @@ class Framework
591
418
  # @return [Array<Hash>]
592
419
  #
593
420
  def lsrep
594
- @reports.available.map {
595
- |report|
596
-
421
+ loaded = @reports.loaded
422
+ @reports.clear
423
+ @reports.available.map do |report|
597
424
  path = @reports.name_to_path( report )
598
425
  next if !lsrep_match?( path )
599
426
 
600
427
  @reports[report].info.merge(
601
- :rep_name => report,
602
- :path => path,
603
- :author => [@reports[report].info[:author]].flatten.map { |a| a.strip }
428
+ rep_name: report,
429
+ path: path,
430
+ author: [@reports[report].info[:author]].flatten.map { |a| a.strip }
604
431
  )
605
- }.compact
432
+ end.compact
606
433
  ensure
607
434
  @reports.clear
435
+ @reports.load( loaded )
608
436
  end
609
437
 
610
438
  #
@@ -614,20 +442,21 @@ class Framework
614
442
  # @return [Array<Hash>]
615
443
  #
616
444
  def lsplug
617
- @plugins.available.map {
618
- |plugin|
619
-
445
+ loaded = @plugins.loaded
446
+ @plugins.clear
447
+ @plugins.available.map do |plugin|
620
448
  path = @plugins.name_to_path( plugin )
621
449
  next if !lsplug_match?( path )
622
450
 
623
451
  @plugins[plugin].info.merge(
624
- :plug_name => plugin,
625
- :path => path,
626
- :author => [@plugins[plugin].info[:author]].flatten.map { |a| a.strip }
452
+ plug_name: plugin,
453
+ path: path,
454
+ author: [@plugins[plugin].info[:author]].flatten.map { |a| a.strip }
627
455
  )
628
- }.compact
456
+ end.compact
629
457
  ensure
630
458
  @plugins.clear
459
+ @plugins.load( loaded )
631
460
  end
632
461
 
633
462
  #
@@ -645,23 +474,25 @@ class Framework
645
474
  end
646
475
 
647
476
  #
648
- # @return [True] pauses the framework on a best effort basis,
477
+ # @return [TrueClass] pauses the framework on a best effort basis,
649
478
  # might take a while to take effect
650
479
  #
651
- def pause!
652
- @spider.pause! if @spider
480
+ def pause
481
+ spider.pause
653
482
  @paused << caller
654
- return true
483
+ true
655
484
  end
485
+ alias :pause! :pause
656
486
 
657
487
  #
658
- # @return [True] resumes the scan/audit
488
+ # @return [TrueClass] resumes the scan/audit
659
489
  #
660
- def resume!
490
+ def resume
661
491
  @paused.delete( caller )
662
- @spider.resume! if @spider
663
- return true
492
+ spider.resume
493
+ true
664
494
  end
495
+ alias :resume! :resume
665
496
 
666
497
  #
667
498
  # Returns the version of the framework
@@ -685,7 +516,7 @@ class Framework
685
516
  # Cleans up the framework; should be called after running the audit or
686
517
  # after canceling a running scan.
687
518
  #
688
- # It stops the clock, waits for the plugins to finish up, register
519
+ # It stops the clock, waits for the plugins to finish up, registers
689
520
  # their results and also refreshes the auditstore.
690
521
  #
691
522
  # It also runs {#audit_queue} in case any new pages have been added by the plugins.
@@ -695,68 +526,186 @@ class Framework
695
526
  #
696
527
  # @return [True]
697
528
  #
698
- def clean_up!( skip_audit_queue = false )
699
- @opts.finish_datetime = Time.now
529
+ def clean_up( skip_audit_queue = false )
530
+ @status = :cleanup
531
+
532
+ @opts.finish_datetime = Time.now
533
+ @opts.start_datetime ||= Time.now
534
+
700
535
  @opts.delta_time = @opts.finish_datetime - @opts.start_datetime
701
536
 
702
537
  # make sure this is disabled or it'll break report output
703
- @@only_positives = false
538
+ disable_only_positives
704
539
 
705
540
  @running = false
706
541
 
707
542
  # wait for the plugins to finish
708
- @plugins.block!
543
+ @plugins.block
709
544
 
710
545
  # a plug-in may have updated the page queue, rock it!
711
546
  audit_queue if !skip_audit_queue
547
+ true
548
+ end
549
+ alias :clean_up! :clean_up
550
+
551
+ def on_run_mods( &block )
552
+ add_on_run_mods( &block )
553
+ end
554
+
555
+ def reset_spider
556
+ @spider = Spider.new( @opts )
557
+ end
712
558
 
713
- # refresh the audit store
714
- audit_store( true )
559
+ #
560
+ # Resets everything and allows the framework to be re-used.
561
+ #
562
+ # You should first update {Arachni::Options}.
563
+ #
564
+ # Prefer this if you already have an instance.
565
+ #
566
+ def reset
567
+ reset_spider
568
+ @modules.clear
569
+ @reports.clear
570
+ @plugins.clear
571
+ self.class.reset
572
+ end
715
573
 
716
- return true
574
+ #
575
+ # Resets everything and allows the framework to be re-used.
576
+ #
577
+ # You should first update {Arachni::Options}.
578
+ #
579
+ def self.reset
580
+ Module::Auditor.reset
581
+ Module::ElementDB.reset
582
+ Element::Capabilities::Auditable.reset
583
+ Module::Manager.reset
584
+ Plugin::Manager.reset
585
+ Report::Manager.reset
586
+ HTTP.reset
717
587
  end
718
588
 
719
589
  private
720
590
 
721
- def caller
722
- if /^(.+?):(\d+)(?::in `(.*)')?/ =~ ::Kernel.caller[1]
723
- return Regexp.last_match[1]
724
- end
591
+ #
592
+ # Prepares the framework for the audit.
593
+ #
594
+ # Sets the status to 'running', starts the clock and runs the plugins.
595
+ #
596
+ # Must be called just before calling {#audit}.
597
+ #
598
+ def prepare
599
+ @status = :preparing
600
+ @running = true
601
+ @opts.start_datetime = Time.now
602
+
603
+ # run all plugins
604
+ @plugins.run
725
605
  end
726
606
 
727
- def wait_if_paused
728
- while( paused? )
729
- ::IO::select( nil, nil, nil, 1 )
607
+ #
608
+ # Performs the audit
609
+ #
610
+ # Runs the spider, pushes each page or url to their respective audit queue,
611
+ # calls {#audit_queue}, runs the timeout attacks ({Arachni::Module::Auditor.timeout_audit_run}) and finally re-runs
612
+ # {#audit_queue} in case the timing attacks uncovered a new page.
613
+ #
614
+ def audit
615
+ wait_if_paused
616
+
617
+ @status = :crawling
618
+
619
+ # if we're restricted to a given list of paths there's no reason to run the spider
620
+ if @opts.restrict_paths && !@opts.restrict_paths.empty?
621
+ @opts.restrict_paths = @opts.restrict_paths.map { |p| to_absolute( p ) }
622
+ @sitemap = @opts.restrict_paths.dup
623
+ @opts.restrict_paths.each { |url| push_to_url_queue( url ) }
624
+ else
625
+ # initiates the crawl
626
+ spider.run( false ) do |response|
627
+ @sitemap |= spider.sitemap
628
+ push_to_url_queue( url_sanitize( response.effective_url ) )
629
+ end
730
630
  end
731
- end
732
631
 
632
+ @status = :auditing
633
+ audit_queue
634
+
635
+ exception_jail {
636
+ if !Module::Auditor.timeout_audit_blocks.empty?
637
+ print_line
638
+ print_status 'Running timing attacks.'
639
+ print_info '---------------------------------------'
640
+ Module::Auditor.on_timing_attacks do |_, elem|
641
+ @current_url = elem.action if !elem.action.empty?
642
+ end
643
+ Module::Auditor.timeout_audit_run
644
+ end
645
+
646
+ audit_queue
647
+ }
648
+ end
733
649
 
734
650
  #
735
- # Prepares the user agent to be used throughout the system.
651
+ # Audits the URL and Page queues
736
652
  #
737
- def prepare_user_agent
738
- if( !@opts.user_agent )
739
- @opts.user_agent = 'Arachni/' + version( )
740
- end
653
+ def audit_queue
654
+ return if modules.empty?
655
+
656
+ # goes through the URLs discovered by the spider, repeats the request
657
+ # and parses the responses into page objects
658
+ #
659
+ # yes...repeating the request is wasteful but we can't store the
660
+ # responses of the spider to consume them here because there's no way
661
+ # of knowing how big the site will be.
662
+ #
663
+ while !@url_queue.empty?
664
+ Page.from_url( @url_queue.pop, precision: 2 ) do |page|
665
+ push_to_page_queue( page )
666
+ end
667
+ harvest_http_responses
668
+
669
+ audit_page_queue
741
670
 
742
- if( @opts.authed_by )
743
- authed_by = " (Scan authorized by: #{@opts.authed_by})"
744
- @opts.user_agent += authed_by
671
+ harvest_http_responses
745
672
  end
746
673
 
674
+ audit_page_queue
747
675
  end
748
676
 
749
- def prepare_cookie_jar( )
750
- return if !@opts.cookie_jar || !@opts.cookie_jar.is_a?( String )
751
-
752
- # make sure that the provided cookie-jar file exists
753
- if !File.exist?( @opts.cookie_jar )
754
- raise( Arachni::Exceptions::NoCookieJar,
755
- 'Cookie-jar \'' + @opts.cookie_jar + '\' doesn\'t exist.' )
677
+ #
678
+ # Audits the page queue
679
+ #
680
+ def audit_page_queue
681
+ # this will run until no new elements appear for the given page
682
+ while !@page_queue.empty?
683
+ run_mods( @page_queue.pop )
684
+ harvest_http_responses
756
685
  end
686
+ end
687
+
688
+ #
689
+ # Special sitemap for the {#auditstore}.
690
+ #
691
+ # Used only under special circumstances, will usually return the {#sitemap}
692
+ # but can be overridden by the {::Arachni::RPC::Framework}.
693
+ #
694
+ # @return [Array]
695
+ #
696
+ def auditstore_sitemap
697
+ @sitemap
698
+ end
757
699
 
700
+ def caller
701
+ if /^(.+?):(\d+)(?::in `(.*)')?/ =~ ::Kernel.caller[1]
702
+ Regexp.last_match[1]
703
+ end
758
704
  end
759
705
 
706
+ def wait_if_paused
707
+ ::IO::select( nil, nil, nil, 1 ) while paused?
708
+ end
760
709
 
761
710
  #
762
711
  # Takes care of page audit and module execution
@@ -775,54 +724,50 @@ class Framework
775
724
  def run_mods( page )
776
725
  return if !page
777
726
 
778
- print_line
779
- print_status( "Auditing: [HTTP: #{page.code}] " + page.url )
727
+ # we may end up ignoring it but being included in the auditmap means that
728
+ # it has been considered but didn't fit the criteria
729
+ @auditmap << page.url
730
+ @sitemap |= @auditmap
731
+ @sitemap.uniq!
780
732
 
733
+ if Options.exclude_binaries? && !page.text?
734
+ print_info "Ignoring page due to non text-based content-type: #{page.url}"
735
+ return
736
+ end
781
737
 
782
- call_on_run_mods( page.deep_clone )
738
+ print_line
739
+ print_status "Auditing: [HTTP: #{page.code}] #{page.url}"
740
+
741
+ call_on_run_mods( page )
783
742
 
784
743
  @current_url = page.url.to_s
785
744
 
786
- @modules.values.each {
787
- |mod|
745
+ @modules.schedule.each do |mod|
788
746
  wait_if_paused
789
- run_mod( mod, page.deep_clone )
790
- }
791
-
792
- @auditmap << page.url
793
- @sitemap |= @auditmap
794
- @sitemap.uniq!
795
-
796
-
797
- if( !@opts.http_harvest_last )
798
- harvest_http_responses( )
747
+ run_mod( mod, page )
799
748
  end
800
749
 
750
+ harvest_http_responses
801
751
  end
802
752
 
803
753
  def harvest_http_responses
804
-
805
- print_status( 'Harvesting HTTP responses...' )
806
- print_info( 'Depending on server responsiveness and network' +
807
- ' conditions this may take a while.' )
754
+ print_status 'Harvesting HTTP responses...'
755
+ print_info 'Depending on server responsiveness and network' <<
756
+ ' conditions this may take a while.'
808
757
 
809
758
  # grab updated pages
810
- http.trainer.flush_pages.each {
811
- |page|
812
- push_to_page_queue( page )
813
- }
759
+ http.trainer.flush.each { |page| push_to_page_queue( page ) }
814
760
 
815
761
  # run all the queued HTTP requests and harvest the responses
816
762
  http.run
817
763
 
818
- http.trainer.flush_pages.each {
819
- |page|
820
- push_to_page_queue( page )
821
- }
764
+ http.trainer.flush.each { |page| push_to_page_queue( page ) }
765
+
766
+ session.ensure_logged_in
822
767
  end
823
768
 
824
769
  #
825
- # Passes a page to the module and runs it.<br/>
770
+ # Passes a page to the module and runs it.
826
771
  # It also handles any exceptions thrown by the module at runtime.
827
772
  #
828
773
  # @see Page
@@ -831,49 +776,16 @@ class Framework
831
776
  # @param [Page] page
832
777
  #
833
778
  def run_mod( mod, page )
834
- return if !run_mod?( mod, page )
835
-
836
779
  begin
837
- @modules.run_one( mod, page, self )
780
+ @modules.run_one( mod, page )
838
781
  rescue SystemExit
839
782
  raise
840
- rescue Exception => e
841
- print_error( 'Error in ' + mod.to_s + ': ' + e.to_s )
842
- print_error_backtrace( e )
783
+ rescue => e
784
+ print_error "Error in #{mod.to_s}: #{e.to_s}"
785
+ print_error_backtrace e
843
786
  end
844
787
  end
845
788
 
846
- #
847
- # Determines whether or not to run the module against the given page
848
- # depending on which elements exist in the page, which elements the module
849
- # is configured to audit and user options.
850
- #
851
- # @param [Class] mod the module to run
852
- # @param [Page] page
853
- #
854
- # @return [Bool]
855
- #
856
- def run_mod?( mod, page )
857
- return true if( !mod.info[:elements] || mod.info[:elements].empty? )
858
-
859
- elems = {
860
- Issue::Element::LINK => page.links && page.links.size > 0 && @opts.audit_links,
861
- Issue::Element::FORM => page.forms && page.forms.size > 0 && @opts.audit_forms,
862
- Issue::Element::COOKIE => page.cookies && page.cookies.size > 0 && @opts.audit_cookies,
863
- Issue::Element::HEADER => page.headers && page.headers.size > 0 && @opts.audit_headers,
864
- Issue::Element::BODY => true,
865
- Issue::Element::PATH => true,
866
- Issue::Element::SERVER => true,
867
- }
868
-
869
- elems.each_pair {
870
- |elem, expr|
871
- return true if mod.info[:elements].include?( elem ) && expr
872
- }
873
-
874
- return false
875
- end
876
-
877
789
  def lsrep_match?( path )
878
790
  regexp_array_match( @opts.lsrep, path )
879
791
  end
@@ -888,11 +800,8 @@ class Framework
888
800
 
889
801
  def regexp_array_match( regexps, str )
890
802
  cnt = 0
891
- regexps.each {
892
- |filter|
893
- cnt += 1 if str =~ filter
894
- }
895
- return true if cnt == regexps.size
803
+ regexps.each { |filter| cnt += 1 if str =~ filter }
804
+ cnt == regexps.size
896
805
  end
897
806
 
898
807
  end