arachni 1.4 → 1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (746) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +136 -0
  3. data/Gemfile +3 -1
  4. data/LICENSE.md +1 -1
  5. data/README.md +5 -2
  6. data/Rakefile +1 -1
  7. data/arachni.gemspec +35 -30
  8. data/bin/arachni +1 -1
  9. data/bin/arachni_console +1 -1
  10. data/bin/arachni_multi +6 -1
  11. data/bin/arachni_reporter +1 -1
  12. data/bin/arachni_reproduce +12 -0
  13. data/bin/arachni_rest_server +1 -1
  14. data/bin/arachni_restore +1 -1
  15. data/bin/arachni_rpc +6 -1
  16. data/bin/arachni_rpcd +1 -1
  17. data/bin/arachni_rpcd_monitor +6 -1
  18. data/bin/arachni_script +1 -1
  19. data/components/checks/active/code_injection.rb +1 -1
  20. data/components/checks/active/code_injection_php_input_wrapper.rb +1 -1
  21. data/components/checks/active/code_injection_timing.rb +1 -1
  22. data/components/checks/active/csrf.rb +15 -75
  23. data/components/checks/active/file_inclusion.rb +1 -1
  24. data/components/checks/active/ldap_injection.rb +1 -1
  25. data/components/checks/active/no_sql_injection.rb +1 -1
  26. data/components/checks/active/no_sql_injection_differential.rb +1 -1
  27. data/components/checks/active/os_cmd_injection.rb +1 -1
  28. data/components/checks/active/os_cmd_injection_timing.rb +1 -1
  29. data/components/checks/active/path_traversal.rb +3 -3
  30. data/components/checks/active/response_splitting.rb +1 -1
  31. data/components/checks/active/rfi.rb +1 -1
  32. data/components/checks/active/session_fixation.rb +1 -1
  33. data/components/checks/active/source_code_disclosure.rb +1 -1
  34. data/components/checks/active/sql_injection.rb +1 -1
  35. data/components/checks/active/sql_injection/regexps/hsqldb.yaml +1 -0
  36. data/components/checks/active/sql_injection/substrings/hsqldb +1 -0
  37. data/components/checks/active/sql_injection/substrings/java +4 -0
  38. data/components/checks/active/sql_injection/substrings/oracle +0 -1
  39. data/components/checks/active/sql_injection/substrings/sqlite +1 -0
  40. data/components/checks/active/sql_injection_differential.rb +1 -1
  41. data/components/checks/active/sql_injection_timing.rb +1 -1
  42. data/components/checks/active/trainer.rb +1 -1
  43. data/components/checks/active/unvalidated_redirect.rb +34 -11
  44. data/components/checks/active/unvalidated_redirect_dom.rb +4 -4
  45. data/components/checks/active/xpath_injection.rb +1 -1
  46. data/components/checks/active/xss.rb +52 -27
  47. data/components/checks/active/xss_dom.rb +15 -11
  48. data/components/checks/active/xss_dom_script_context.rb +4 -6
  49. data/components/checks/active/xss_event.rb +45 -33
  50. data/components/checks/active/xss_path.rb +9 -6
  51. data/components/checks/active/xss_script_context.rb +99 -46
  52. data/components/checks/active/xss_tag.rb +39 -14
  53. data/components/checks/active/xxe.rb +1 -1
  54. data/components/checks/passive/allowed_methods.rb +1 -1
  55. data/components/checks/passive/backdoors.rb +1 -1
  56. data/components/checks/passive/backup_directories.rb +15 -3
  57. data/components/checks/passive/backup_files.rb +39 -6
  58. data/components/checks/passive/common_admin_interfaces.rb +1 -1
  59. data/components/checks/passive/common_admin_interfaces/admin-panels.txt +1 -0
  60. data/components/checks/passive/common_directories.rb +1 -1
  61. data/components/checks/passive/common_files.rb +1 -1
  62. data/components/checks/passive/directory_listing.rb +1 -1
  63. data/components/checks/passive/grep/captcha.rb +8 -9
  64. data/components/checks/passive/grep/cookie_set_for_parent_domain.rb +1 -1
  65. data/components/checks/passive/grep/credit_card.rb +1 -1
  66. data/components/checks/passive/grep/cvs_svn_users.rb +1 -1
  67. data/components/checks/passive/grep/emails.rb +1 -1
  68. data/components/checks/passive/grep/form_upload.rb +3 -5
  69. data/components/checks/passive/grep/hsts.rb +1 -1
  70. data/components/checks/passive/grep/html_objects.rb +1 -1
  71. data/components/checks/passive/grep/http_only_cookies.rb +1 -1
  72. data/components/checks/passive/grep/insecure_cookies.rb +5 -5
  73. data/components/checks/passive/grep/insecure_cors_policy.rb +1 -1
  74. data/components/checks/passive/grep/mixed_resource.rb +4 -4
  75. data/components/checks/passive/grep/password_autocomplete.rb +1 -1
  76. data/components/checks/passive/grep/private_ip.rb +1 -1
  77. data/components/checks/passive/grep/ssn.rb +1 -1
  78. data/components/checks/passive/grep/unencrypted_password_forms.rb +3 -3
  79. data/components/checks/passive/grep/x_frame_options.rb +1 -1
  80. data/components/checks/passive/htaccess_limit.rb +1 -1
  81. data/components/checks/passive/http_put.rb +1 -1
  82. data/components/checks/passive/insecure_client_access_policy.rb +2 -2
  83. data/components/checks/passive/insecure_cross_domain_policy_access.rb +2 -2
  84. data/components/checks/passive/insecure_cross_domain_policy_headers.rb +2 -2
  85. data/components/checks/passive/interesting_responses.rb +1 -1
  86. data/components/checks/passive/localstart_asp.rb +1 -1
  87. data/components/checks/passive/origin_spoof_access_restriction_bypass.rb +1 -1
  88. data/components/checks/passive/webdav.rb +1 -1
  89. data/components/checks/passive/xst.rb +10 -12
  90. data/components/fingerprinters/frameworks/aspx_mvc.rb +1 -1
  91. data/components/fingerprinters/frameworks/cakephp.rb +1 -1
  92. data/components/fingerprinters/frameworks/cherrypy.rb +1 -1
  93. data/components/fingerprinters/frameworks/django.rb +1 -1
  94. data/components/fingerprinters/frameworks/jsf.rb +1 -1
  95. data/components/fingerprinters/frameworks/nette.rb +1 -1
  96. data/components/fingerprinters/frameworks/rack.rb +1 -1
  97. data/components/fingerprinters/frameworks/rails.rb +1 -1
  98. data/components/fingerprinters/frameworks/symfony.rb +1 -1
  99. data/components/fingerprinters/languages/asp.rb +1 -1
  100. data/components/fingerprinters/languages/aspx.rb +1 -1
  101. data/components/fingerprinters/languages/java.rb +1 -1
  102. data/components/fingerprinters/languages/php.rb +1 -1
  103. data/components/fingerprinters/languages/python.rb +1 -1
  104. data/components/fingerprinters/languages/ruby.rb +1 -1
  105. data/components/fingerprinters/os/bsd.rb +1 -1
  106. data/components/fingerprinters/os/linux.rb +1 -1
  107. data/components/fingerprinters/os/solaris.rb +1 -1
  108. data/components/fingerprinters/os/unix.rb +1 -1
  109. data/components/fingerprinters/os/windows.rb +1 -1
  110. data/components/fingerprinters/servers/apache.rb +1 -1
  111. data/components/fingerprinters/servers/gunicorn.rb +1 -1
  112. data/components/fingerprinters/servers/iis.rb +1 -1
  113. data/components/fingerprinters/servers/jetty.rb +1 -1
  114. data/components/fingerprinters/servers/nginx.rb +1 -1
  115. data/components/fingerprinters/servers/tomcat.rb +1 -1
  116. data/components/path_extractors/anchors.rb +3 -5
  117. data/components/path_extractors/areas.rb +3 -4
  118. data/components/path_extractors/comments.rb +4 -5
  119. data/components/path_extractors/data_url.rb +4 -5
  120. data/components/path_extractors/forms.rb +3 -4
  121. data/components/path_extractors/frames.rb +3 -5
  122. data/components/path_extractors/generic.rb +3 -1
  123. data/components/path_extractors/links.rb +3 -4
  124. data/components/path_extractors/meta_refresh.rb +11 -17
  125. data/components/path_extractors/scripts.rb +18 -15
  126. data/components/plugins/autologin.rb +3 -2
  127. data/components/plugins/beep_notify.rb +1 -1
  128. data/components/plugins/content_types.rb +1 -1
  129. data/components/plugins/cookie_collector.rb +1 -1
  130. data/components/plugins/debug/browser_cluster_job_monitor.rb +60 -0
  131. data/components/plugins/defaults/autothrottle.rb +1 -1
  132. data/components/plugins/defaults/healthmap.rb +3 -1
  133. data/components/plugins/defaults/meta/remedies/discovery.rb +1 -1
  134. data/components/plugins/defaults/meta/remedies/timing_attacks.rb +1 -1
  135. data/components/plugins/defaults/meta/uniformity.rb +1 -1
  136. data/components/plugins/email_notify.rb +26 -9
  137. data/components/plugins/exec.rb +1 -1
  138. data/components/plugins/form_dicattack.rb +3 -4
  139. data/components/plugins/headers_collector.rb +1 -1
  140. data/components/plugins/http_dicattack.rb +4 -5
  141. data/components/plugins/login_script.rb +2 -2
  142. data/components/plugins/metrics.rb +41 -15
  143. data/components/plugins/page_dump.rb +60 -0
  144. data/components/plugins/proxy.rb +42 -30
  145. data/components/plugins/proxy/template_scope.rb +6 -1
  146. data/components/plugins/rate_limiter.rb +80 -0
  147. data/components/plugins/restrict_to_dom_state.rb +1 -1
  148. data/components/plugins/script.rb +1 -1
  149. data/components/plugins/uncommon_headers.rb +1 -1
  150. data/components/plugins/vector_collector.rb +1 -1
  151. data/components/plugins/vector_feed.rb +1 -1
  152. data/components/plugins/waf_detector.rb +3 -3
  153. data/components/plugins/webhook_notify.rb +99 -0
  154. data/components/reporters/ap.rb +1 -1
  155. data/components/reporters/html.rb +2 -3
  156. data/components/reporters/html/default.erb +1 -2
  157. data/components/reporters/html/default/configuration.erb +2 -0
  158. data/components/reporters/json.rb +1 -1
  159. data/components/reporters/marshal.rb +1 -1
  160. data/components/reporters/plugin_formatters/html/autologin.rb +1 -1
  161. data/components/reporters/plugin_formatters/html/content_types.rb +1 -1
  162. data/components/reporters/plugin_formatters/html/cookie_collector.rb +1 -1
  163. data/components/reporters/plugin_formatters/html/exec.rb +1 -1
  164. data/components/reporters/plugin_formatters/html/form_dicattack.rb +1 -1
  165. data/components/reporters/plugin_formatters/html/healthmap.rb +1 -1
  166. data/components/reporters/plugin_formatters/html/http_dicattack.rb +1 -1
  167. data/components/reporters/plugin_formatters/html/login_script.rb +1 -1
  168. data/components/reporters/plugin_formatters/html/metrics.rb +46 -1
  169. data/components/reporters/plugin_formatters/html/uncommon_headers.rb +1 -1
  170. data/components/reporters/plugin_formatters/html/uniformity.rb +1 -1
  171. data/components/reporters/plugin_formatters/html/vector_collector.rb +1 -1
  172. data/components/reporters/plugin_formatters/html/waf_detector.rb +1 -1
  173. data/components/reporters/plugin_formatters/stdout/autologin.rb +1 -1
  174. data/components/reporters/plugin_formatters/stdout/content_types.rb +1 -1
  175. data/components/reporters/plugin_formatters/stdout/cookie_collector.rb +1 -1
  176. data/components/reporters/plugin_formatters/stdout/exec.rb +1 -1
  177. data/components/reporters/plugin_formatters/stdout/form_dicattack.rb +1 -1
  178. data/components/reporters/plugin_formatters/stdout/healthmap.rb +1 -1
  179. data/components/reporters/plugin_formatters/stdout/http_dicattack.rb +1 -1
  180. data/components/reporters/plugin_formatters/stdout/login_script.rb +1 -1
  181. data/components/reporters/plugin_formatters/stdout/metrics.rb +11 -1
  182. data/components/reporters/plugin_formatters/stdout/uncommon_headers.rb +1 -1
  183. data/components/reporters/plugin_formatters/stdout/uniformity.rb +1 -1
  184. data/components/reporters/plugin_formatters/stdout/vector_collector.rb +1 -1
  185. data/components/reporters/plugin_formatters/stdout/waf_detector.rb +1 -1
  186. data/components/reporters/plugin_formatters/xml/autologin.rb +1 -1
  187. data/components/reporters/plugin_formatters/xml/content_types.rb +10 -7
  188. data/components/reporters/plugin_formatters/xml/cookie_collector.rb +6 -3
  189. data/components/reporters/plugin_formatters/xml/exec.rb +1 -1
  190. data/components/reporters/plugin_formatters/xml/form_dicattack.rb +1 -1
  191. data/components/reporters/plugin_formatters/xml/healthmap.rb +1 -1
  192. data/components/reporters/plugin_formatters/xml/http_dicattack.rb +1 -1
  193. data/components/reporters/plugin_formatters/xml/login_script.rb +1 -1
  194. data/components/reporters/plugin_formatters/xml/metrics.rb +1 -1
  195. data/components/reporters/plugin_formatters/xml/uncommon_headers.rb +5 -2
  196. data/components/reporters/plugin_formatters/xml/uniformity.rb +1 -1
  197. data/components/reporters/plugin_formatters/xml/vector_collector.rb +8 -5
  198. data/components/reporters/plugin_formatters/xml/waf_detector.rb +1 -1
  199. data/components/reporters/stdout.rb +3 -2
  200. data/components/reporters/txt.rb +1 -1
  201. data/components/reporters/xml.rb +39 -22
  202. data/components/reporters/xml/schema.xsd +28 -13
  203. data/components/reporters/yaml.rb +1 -1
  204. data/lib/arachni.rb +1 -1
  205. data/lib/arachni/banner.rb +1 -1
  206. data/lib/arachni/browser.rb +242 -231
  207. data/lib/arachni/browser/element_locator.rb +9 -5
  208. data/lib/arachni/browser/javascript.rb +103 -168
  209. data/lib/arachni/browser/javascript/dom_monitor.rb +1 -1
  210. data/lib/arachni/browser/javascript/proxy.rb +1 -1
  211. data/lib/arachni/browser/javascript/proxy/stub.rb +1 -1
  212. data/lib/arachni/browser/javascript/scripts/dom_monitor.js +295 -51
  213. data/lib/arachni/browser/javascript/scripts/polyfills.js +0 -28
  214. data/lib/arachni/browser/javascript/scripts/taint_tracer.js +46 -8
  215. data/lib/arachni/browser/javascript/taint_tracer.rb +1 -1
  216. data/lib/arachni/browser/javascript/taint_tracer/frame.rb +1 -1
  217. data/lib/arachni/browser/javascript/taint_tracer/frame/called_function.rb +1 -1
  218. data/lib/arachni/browser/javascript/taint_tracer/sink/base.rb +1 -1
  219. data/lib/arachni/browser/javascript/taint_tracer/sink/data_flow.rb +1 -1
  220. data/lib/arachni/browser/javascript/taint_tracer/sink/execution_flow.rb +1 -1
  221. data/lib/arachni/browser_cluster.rb +78 -60
  222. data/lib/arachni/browser_cluster/job.rb +9 -2
  223. data/lib/arachni/browser_cluster/job/result.rb +1 -1
  224. data/lib/arachni/browser_cluster/jobs/browser_provider.rb +8 -2
  225. data/lib/arachni/browser_cluster/jobs/dom_exploration.rb +13 -1
  226. data/lib/arachni/browser_cluster/jobs/dom_exploration/event_trigger.rb +1 -1
  227. data/lib/arachni/browser_cluster/jobs/dom_exploration/event_trigger/result.rb +1 -1
  228. data/lib/arachni/browser_cluster/jobs/dom_exploration/result.rb +1 -1
  229. data/lib/arachni/browser_cluster/jobs/taint_trace.rb +1 -1
  230. data/lib/arachni/browser_cluster/jobs/taint_trace/event_trigger.rb +1 -1
  231. data/lib/arachni/browser_cluster/jobs/taint_trace/event_trigger/result.rb +1 -1
  232. data/lib/arachni/browser_cluster/jobs/taint_trace/result.rb +1 -1
  233. data/lib/arachni/browser_cluster/worker.rb +109 -84
  234. data/lib/arachni/check.rb +1 -1
  235. data/lib/arachni/check/auditor.rb +137 -93
  236. data/lib/arachni/check/base.rb +1 -1
  237. data/lib/arachni/check/manager.rb +1 -1
  238. data/lib/arachni/component.rb +1 -1
  239. data/lib/arachni/component/base.rb +3 -1
  240. data/lib/arachni/component/manager.rb +1 -1
  241. data/lib/arachni/component/options.rb +1 -1
  242. data/lib/arachni/component/options/address.rb +1 -1
  243. data/lib/arachni/component/options/base.rb +1 -1
  244. data/lib/arachni/component/options/bool.rb +1 -1
  245. data/lib/arachni/component/options/float.rb +1 -1
  246. data/lib/arachni/component/options/int.rb +1 -1
  247. data/lib/arachni/component/options/multiple_choice.rb +1 -1
  248. data/lib/arachni/component/options/object.rb +1 -1
  249. data/lib/arachni/component/options/path.rb +1 -1
  250. data/lib/arachni/component/options/port.rb +1 -1
  251. data/lib/arachni/component/options/string.rb +1 -1
  252. data/lib/arachni/component/options/url.rb +1 -1
  253. data/lib/arachni/component/output.rb +8 -2
  254. data/lib/arachni/component/utilities.rb +1 -1
  255. data/lib/arachni/data.rb +1 -1
  256. data/lib/arachni/data/framework.rb +2 -1
  257. data/lib/arachni/data/framework/rpc.rb +1 -1
  258. data/lib/arachni/data/issues.rb +1 -1
  259. data/lib/arachni/data/plugins.rb +1 -1
  260. data/lib/arachni/data/session.rb +1 -1
  261. data/lib/arachni/element/base.rb +1 -1
  262. data/lib/arachni/element/body.rb +1 -1
  263. data/lib/arachni/element/capabilities/analyzable.rb +1 -1
  264. data/lib/arachni/element/capabilities/analyzable/differential.rb +142 -175
  265. data/lib/arachni/element/capabilities/analyzable/signature.rb +39 -17
  266. data/lib/arachni/element/capabilities/analyzable/timeout.rb +1 -1
  267. data/lib/arachni/element/capabilities/auditable.rb +2 -8
  268. data/lib/arachni/element/capabilities/auditable/buffered.rb +92 -0
  269. data/lib/arachni/element/capabilities/auditable/line_buffered.rb +103 -0
  270. data/lib/arachni/element/capabilities/dom_only.rb +1 -1
  271. data/lib/arachni/element/capabilities/inputtable.rb +6 -2
  272. data/lib/arachni/element/capabilities/mutable.rb +1 -1
  273. data/lib/arachni/element/capabilities/refreshable.rb +1 -1
  274. data/lib/arachni/element/capabilities/submittable.rb +1 -1
  275. data/lib/arachni/element/capabilities/with_auditor.rb +1 -1
  276. data/lib/arachni/element/capabilities/with_auditor/output.rb +4 -3
  277. data/lib/arachni/element/capabilities/with_dom.rb +1 -1
  278. data/lib/arachni/element/capabilities/with_node.rb +3 -3
  279. data/lib/arachni/element/capabilities/with_scope.rb +1 -1
  280. data/lib/arachni/element/capabilities/with_scope/scope.rb +1 -1
  281. data/lib/arachni/element/capabilities/with_source.rb +2 -2
  282. data/lib/arachni/element/cookie.rb +49 -24
  283. data/lib/arachni/element/cookie/capabilities/inputtable.rb +1 -1
  284. data/lib/arachni/element/cookie/capabilities/mutable.rb +1 -1
  285. data/lib/arachni/element/cookie/capabilities/with_dom.rb +1 -1
  286. data/lib/arachni/element/cookie/dom.rb +1 -1
  287. data/lib/arachni/element/dom.rb +1 -1
  288. data/lib/arachni/element/dom/capabilities/auditable.rb +44 -3
  289. data/lib/arachni/element/dom/capabilities/inputtable.rb +1 -1
  290. data/lib/arachni/element/dom/capabilities/locatable.rb +1 -1
  291. data/lib/arachni/element/dom/capabilities/mutable.rb +7 -3
  292. data/lib/arachni/element/dom/capabilities/submittable.rb +51 -22
  293. data/lib/arachni/element/form.rb +21 -32
  294. data/lib/arachni/element/form/capabilities/auditable.rb +1 -1
  295. data/lib/arachni/element/form/capabilities/mutable.rb +16 -11
  296. data/lib/arachni/element/form/capabilities/submittable.rb +1 -1
  297. data/lib/arachni/element/form/capabilities/with_dom.rb +1 -1
  298. data/lib/arachni/element/form/dom.rb +1 -1
  299. data/lib/arachni/element/generic_dom.rb +1 -1
  300. data/lib/arachni/element/header.rb +3 -1
  301. data/lib/arachni/element/header/capabilities/inputtable.rb +1 -1
  302. data/lib/arachni/element/header/capabilities/mutable.rb +1 -1
  303. data/lib/arachni/element/json.rb +4 -8
  304. data/lib/arachni/element/json/capabilities/inputtable.rb +1 -1
  305. data/lib/arachni/element/json/capabilities/mutable.rb +1 -1
  306. data/lib/arachni/element/link.rb +11 -30
  307. data/lib/arachni/element/link/capabilities/auditable.rb +1 -1
  308. data/lib/arachni/element/link/capabilities/submittable.rb +1 -1
  309. data/lib/arachni/element/link/capabilities/with_dom.rb +1 -1
  310. data/lib/arachni/element/link/dom.rb +1 -1
  311. data/lib/arachni/element/link/dom/capabilities/submittable.rb +1 -1
  312. data/lib/arachni/element/link_template.rb +10 -19
  313. data/lib/arachni/element/link_template/capabilities/auditable.rb +1 -1
  314. data/lib/arachni/element/link_template/capabilities/inputtable.rb +1 -1
  315. data/lib/arachni/element/link_template/capabilities/with_dom.rb +1 -1
  316. data/lib/arachni/element/link_template/dom.rb +2 -2
  317. data/lib/arachni/element/link_template/dom/capabilities/submittable.rb +1 -1
  318. data/lib/arachni/element/path.rb +1 -1
  319. data/lib/arachni/element/server.rb +11 -11
  320. data/lib/arachni/element/ui_form.rb +5 -6
  321. data/lib/arachni/element/ui_form/dom.rb +1 -1
  322. data/lib/arachni/element/ui_input.rb +4 -6
  323. data/lib/arachni/element/ui_input/dom.rb +1 -1
  324. data/lib/arachni/element/xml.rb +3 -7
  325. data/lib/arachni/element/xml/capabilities/inputtable.rb +1 -1
  326. data/lib/arachni/element/xml/capabilities/mutable.rb +1 -1
  327. data/lib/arachni/element_filter.rb +1 -1
  328. data/lib/arachni/error.rb +1 -1
  329. data/lib/arachni/ethon/easy.rb +1 -1
  330. data/lib/arachni/framework.rb +1 -1
  331. data/lib/arachni/framework/parts/audit.rb +6 -1
  332. data/lib/arachni/framework/parts/browser.rb +14 -14
  333. data/lib/arachni/framework/parts/check.rb +1 -1
  334. data/lib/arachni/framework/parts/data.rb +1 -1
  335. data/lib/arachni/framework/parts/platform.rb +1 -1
  336. data/lib/arachni/framework/parts/plugin.rb +1 -1
  337. data/lib/arachni/framework/parts/report.rb +2 -2
  338. data/lib/arachni/framework/parts/scope.rb +1 -1
  339. data/lib/arachni/framework/parts/state.rb +1 -1
  340. data/lib/arachni/http.rb +1 -1
  341. data/lib/arachni/http/client.rb +32 -7
  342. data/lib/arachni/http/client/dynamic_404_handler.rb +74 -16
  343. data/lib/arachni/http/cookie_jar.rb +13 -8
  344. data/lib/arachni/http/headers.rb +11 -5
  345. data/lib/arachni/http/message.rb +9 -8
  346. data/lib/arachni/http/message/scope.rb +1 -1
  347. data/lib/arachni/http/proxy_server.rb +44 -11
  348. data/lib/arachni/http/proxy_server/connection.rb +113 -80
  349. data/lib/arachni/http/proxy_server/ssl_interceptor.rb +2 -1
  350. data/lib/arachni/http/proxy_server/tunnel.rb +4 -4
  351. data/lib/arachni/http/request.rb +236 -44
  352. data/lib/arachni/http/request/scope.rb +1 -1
  353. data/lib/arachni/http/response.rb +71 -8
  354. data/lib/arachni/http/response/scope.rb +1 -1
  355. data/lib/arachni/issue.rb +42 -14
  356. data/lib/arachni/issue/severity.rb +1 -1
  357. data/lib/arachni/issue/severity/base.rb +1 -1
  358. data/lib/arachni/option_group.rb +1 -1
  359. data/lib/arachni/option_groups.rb +1 -1
  360. data/lib/arachni/option_groups/audit.rb +1 -1
  361. data/lib/arachni/option_groups/browser_cluster.rb +6 -2
  362. data/lib/arachni/option_groups/datastore.rb +1 -1
  363. data/lib/arachni/option_groups/dispatcher.rb +1 -1
  364. data/lib/arachni/option_groups/http.rb +35 -6
  365. data/lib/arachni/option_groups/input.rb +1 -1
  366. data/lib/arachni/option_groups/output.rb +1 -1
  367. data/lib/arachni/option_groups/paths.rb +1 -1
  368. data/lib/arachni/option_groups/rpc.rb +1 -1
  369. data/lib/arachni/option_groups/scope.rb +13 -1
  370. data/lib/arachni/option_groups/session.rb +1 -1
  371. data/lib/arachni/option_groups/snapshot.rb +1 -1
  372. data/lib/arachni/options.rb +23 -4
  373. data/lib/arachni/page.rb +8 -6
  374. data/lib/arachni/page/dom.rb +46 -54
  375. data/lib/arachni/page/dom/transition.rb +5 -2
  376. data/lib/arachni/page/scope.rb +1 -1
  377. data/lib/arachni/parser.rb +157 -77
  378. data/lib/arachni/parser/document.rb +34 -0
  379. data/lib/arachni/parser/extractors/base.rb +48 -0
  380. data/lib/arachni/parser/nodes/base.rb +22 -0
  381. data/lib/arachni/parser/nodes/comment.rb +32 -0
  382. data/lib/arachni/parser/nodes/element.rb +48 -0
  383. data/lib/arachni/parser/nodes/element/with_attributes.rb +35 -0
  384. data/lib/arachni/parser/nodes/element/with_attributes/attributes.rb +31 -0
  385. data/lib/arachni/parser/nodes/text.rb +32 -0
  386. data/lib/arachni/parser/nodes/with_value.rb +29 -0
  387. data/lib/arachni/parser/sax.rb +75 -0
  388. data/lib/arachni/parser/with_children.rb +35 -0
  389. data/lib/arachni/parser/with_children/search.rb +92 -0
  390. data/lib/arachni/platform.rb +1 -1
  391. data/lib/arachni/platform/fingerprinter.rb +1 -1
  392. data/lib/arachni/platform/list.rb +1 -1
  393. data/lib/arachni/platform/manager.rb +2 -2
  394. data/lib/arachni/plugin.rb +1 -1
  395. data/lib/arachni/plugin/base.rb +2 -2
  396. data/lib/arachni/plugin/formatter.rb +1 -1
  397. data/lib/arachni/plugin/manager.rb +8 -5
  398. data/lib/arachni/processes.rb +1 -1
  399. data/lib/arachni/processes/dispatchers.rb +1 -1
  400. data/lib/arachni/processes/executables/browser.rb +0 -2
  401. data/lib/arachni/processes/helpers.rb +1 -1
  402. data/lib/arachni/processes/helpers/dispatchers.rb +1 -1
  403. data/lib/arachni/processes/helpers/instances.rb +1 -1
  404. data/lib/arachni/processes/helpers/processes.rb +1 -1
  405. data/lib/arachni/processes/instances.rb +1 -1
  406. data/lib/arachni/processes/manager.rb +10 -5
  407. data/lib/arachni/report.rb +8 -1
  408. data/lib/arachni/reporter.rb +1 -1
  409. data/lib/arachni/reporter/base.rb +1 -1
  410. data/lib/arachni/reporter/formatter_manager.rb +1 -1
  411. data/lib/arachni/reporter/manager.rb +1 -1
  412. data/lib/arachni/reporter/options.rb +1 -1
  413. data/lib/arachni/rest/server.rb +7 -1
  414. data/lib/arachni/rest/server/instance_helpers.rb +1 -1
  415. data/lib/arachni/rpc/client/base.rb +1 -1
  416. data/lib/arachni/rpc/client/dispatcher.rb +1 -1
  417. data/lib/arachni/rpc/client/instance.rb +1 -1
  418. data/lib/arachni/rpc/client/instance/framework.rb +1 -1
  419. data/lib/arachni/rpc/client/instance/service.rb +1 -1
  420. data/lib/arachni/rpc/serializer.rb +1 -1
  421. data/lib/arachni/rpc/server/active_options.rb +1 -1
  422. data/lib/arachni/rpc/server/base.rb +1 -1
  423. data/lib/arachni/rpc/server/check/manager.rb +1 -1
  424. data/lib/arachni/rpc/server/dispatcher.rb +1 -1
  425. data/lib/arachni/rpc/server/dispatcher/node.rb +1 -1
  426. data/lib/arachni/rpc/server/dispatcher/service.rb +1 -1
  427. data/lib/arachni/rpc/server/framework.rb +1 -1
  428. data/lib/arachni/rpc/server/framework/distributor.rb +1 -1
  429. data/lib/arachni/rpc/server/framework/master.rb +1 -1
  430. data/lib/arachni/rpc/server/framework/multi_instance.rb +1 -1
  431. data/lib/arachni/rpc/server/framework/slave.rb +1 -1
  432. data/lib/arachni/rpc/server/instance.rb +1 -1
  433. data/lib/arachni/rpc/server/output.rb +1 -1
  434. data/lib/arachni/rpc/server/plugin/manager.rb +1 -1
  435. data/lib/arachni/ruby.rb +1 -1
  436. data/lib/arachni/ruby/array.rb +1 -1
  437. data/lib/arachni/ruby/hash.rb +1 -1
  438. data/lib/arachni/ruby/object.rb +1 -1
  439. data/lib/arachni/ruby/set.rb +1 -1
  440. data/lib/arachni/ruby/string.rb +9 -5
  441. data/lib/arachni/ruby/webrick.rb +1 -1
  442. data/lib/arachni/ruby/webrick/cookie.rb +1 -1
  443. data/lib/arachni/ruby/webrick/httprequest.rb +1 -1
  444. data/lib/arachni/scope.rb +1 -1
  445. data/lib/arachni/selenium/webdriver/element.rb +4 -4
  446. data/lib/arachni/selenium/webdriver/remote/typhoeus.rb +69 -0
  447. data/lib/arachni/session.rb +32 -13
  448. data/lib/arachni/snapshot.rb +1 -1
  449. data/lib/arachni/state.rb +1 -1
  450. data/lib/arachni/state/audit.rb +1 -1
  451. data/lib/arachni/state/element_filter.rb +1 -1
  452. data/lib/arachni/state/framework.rb +1 -1
  453. data/lib/arachni/state/framework/rpc.rb +1 -1
  454. data/lib/arachni/state/http.rb +2 -2
  455. data/lib/arachni/state/options.rb +1 -1
  456. data/lib/arachni/state/plugins.rb +1 -1
  457. data/lib/arachni/support.rb +1 -1
  458. data/lib/arachni/support/buffer.rb +1 -1
  459. data/lib/arachni/support/buffer/autoflush.rb +1 -1
  460. data/lib/arachni/support/buffer/base.rb +1 -1
  461. data/lib/arachni/support/cache.rb +1 -1
  462. data/lib/arachni/support/cache/base.rb +1 -1
  463. data/lib/arachni/support/cache/least_cost_replacement.rb +1 -1
  464. data/lib/arachni/support/cache/least_recently_pushed.rb +1 -1
  465. data/lib/arachni/support/cache/least_recently_used.rb +1 -1
  466. data/lib/arachni/support/cache/preference.rb +1 -1
  467. data/lib/arachni/support/cache/random_replacement.rb +1 -1
  468. data/lib/arachni/support/crypto.rb +1 -1
  469. data/lib/arachni/support/crypto/rsa_aes_cbc.rb +1 -1
  470. data/lib/arachni/support/database.rb +1 -1
  471. data/lib/arachni/support/database/base.rb +1 -1
  472. data/lib/arachni/support/database/hash.rb +1 -1
  473. data/lib/arachni/support/database/queue.rb +1 -1
  474. data/lib/arachni/support/glob.rb +1 -1
  475. data/lib/arachni/support/lookup.rb +1 -1
  476. data/lib/arachni/support/lookup/base.rb +1 -1
  477. data/lib/arachni/support/lookup/hash_set.rb +1 -1
  478. data/lib/arachni/support/lookup/moolb.rb +1 -1
  479. data/lib/arachni/support/mixins.rb +1 -1
  480. data/lib/arachni/support/mixins/observable.rb +1 -1
  481. data/lib/arachni/support/mixins/terminal.rb +1 -1
  482. data/lib/arachni/support/profiler.rb +52 -13
  483. data/lib/arachni/support/signature.rb +18 -6
  484. data/lib/arachni/trainer.rb +55 -39
  485. data/lib/arachni/ui/foo/output.rb +1 -1
  486. data/lib/arachni/uri.rb +132 -103
  487. data/lib/arachni/uri/scope.rb +15 -13
  488. data/lib/arachni/utilities.rb +10 -10
  489. data/lib/arachni/version.rb +1 -1
  490. data/lib/version +1 -1
  491. data/logs/error-11897.log +2006 -0
  492. data/logs/error-3855.log +382 -0
  493. data/spec/arachni/browser/element_locator_spec.rb +42 -18
  494. data/spec/arachni/browser/javascript/dom_monitor_spec.rb +214 -63
  495. data/spec/arachni/browser/javascript/polyfills_spec.rb +0 -15
  496. data/spec/arachni/browser/javascript/taint_tracer_spec.rb +68 -121
  497. data/spec/arachni/browser/javascript_spec.rb +92 -51
  498. data/spec/arachni/browser_cluster/job_spec.rb +23 -8
  499. data/spec/arachni/browser_cluster/jobs/dom_exploration_spec.rb +6 -1
  500. data/spec/arachni/browser_cluster/worker_spec.rb +31 -57
  501. data/spec/arachni/browser_cluster_spec.rb +124 -43
  502. data/spec/arachni/browser_spec.rb +352 -312
  503. data/spec/arachni/check/auditor_spec.rb +118 -33
  504. data/spec/arachni/element/capabilities/analyzable/signature_spec.rb +46 -3
  505. data/spec/arachni/element/cookie/dom_spec.rb +1 -1
  506. data/spec/arachni/element/cookie_spec.rb +158 -63
  507. data/spec/arachni/element/form/dom_spec.rb +1 -1
  508. data/spec/arachni/element/form_spec.rb +101 -54
  509. data/spec/arachni/element/header_spec.rb +3 -1
  510. data/spec/arachni/element/json_spec.rb +2 -0
  511. data/spec/arachni/element/link/dom_spec.rb +2 -2
  512. data/spec/arachni/element/link_spec.rb +46 -15
  513. data/spec/arachni/element/link_template/dom_spec.rb +1 -1
  514. data/spec/arachni/element/link_template_spec.rb +36 -12
  515. data/spec/arachni/element/server_spec.rb +22 -5
  516. data/spec/arachni/element/ui_form/dom_spec.rb +1 -1
  517. data/spec/arachni/element/ui_input/dom_spec.rb +1 -1
  518. data/spec/arachni/element/xml_spec.rb +5 -3
  519. data/spec/arachni/framework/parts/audit_spec.rb +2 -14
  520. data/spec/arachni/framework/parts/data_spec.rb +0 -6
  521. data/spec/arachni/http/client/dynamic_404_handlers_spec.rb +126 -0
  522. data/spec/arachni/http/client_spec.rb +82 -10
  523. data/spec/arachni/http/headers_spec.rb +59 -12
  524. data/spec/arachni/http/proxy_server_spec.rb +56 -25
  525. data/spec/arachni/http/request_spec.rb +379 -33
  526. data/spec/arachni/http/response_spec.rb +135 -7
  527. data/spec/arachni/issue_spec.rb +20 -1
  528. data/spec/arachni/option_groups/http_spec.rb +15 -0
  529. data/spec/arachni/option_groups/scope_spec.rb +26 -1
  530. data/spec/arachni/options_spec.rb +8 -1
  531. data/spec/arachni/page/dom_spec.rb +20 -6
  532. data/spec/arachni/page_spec.rb +5 -5
  533. data/spec/arachni/parser/document_spec.rb +49 -0
  534. data/spec/arachni/parser/nodes/comment_spec.rb +24 -0
  535. data/spec/arachni/parser/nodes/element/with_attributes/attributes_spec.rb +40 -0
  536. data/spec/arachni/parser/nodes/element/with_attributes_spec.rb +50 -0
  537. data/spec/arachni/parser/nodes/element_spec.rb +18 -0
  538. data/spec/arachni/parser/nodes/text_spec.rb +24 -0
  539. data/spec/arachni/parser/sax_spec.rb +88 -0
  540. data/spec/arachni/parser/with_children/search_spec.rb +146 -0
  541. data/spec/arachni/parser/with_children_spec.rb +37 -0
  542. data/spec/arachni/parser_spec.rb +166 -26
  543. data/spec/arachni/report_spec.rb +9 -2
  544. data/spec/arachni/rest/server_spec.rb +52 -6
  545. data/spec/arachni/rpc/server/active_options_spec.rb +1 -1
  546. data/spec/arachni/rpc/server/framework/distributor_spec.rb +6 -6
  547. data/spec/arachni/ruby/string_spec.rb +6 -0
  548. data/spec/arachni/session_spec.rb +69 -8
  549. data/spec/arachni/support/signature_spec.rb +58 -0
  550. data/spec/arachni/trainer_spec.rb +102 -21
  551. data/spec/arachni/uri_spec.rb +11 -8
  552. data/spec/arachni/utilities_spec.rb +3 -3
  553. data/spec/components/checks/active/csrf_spec.rb +1 -21
  554. data/spec/components/checks/active/path_traversal_spec.rb +12 -12
  555. data/spec/components/checks/active/sql_injection_spec.rb +10 -1
  556. data/spec/components/checks/active/unvalidated_redirect_spec.rb +6 -6
  557. data/spec/components/checks/active/xss_dom_script_context_spec.rb +1 -5
  558. data/spec/components/checks/active/xss_dom_spec.rb +2 -2
  559. data/spec/components/checks/active/xss_event_spec.rb +8 -2
  560. data/spec/components/checks/active/xss_script_context_spec.rb +5 -5
  561. data/spec/components/checks/active/xss_spec.rb +3 -3
  562. data/spec/components/checks/passive/backup_directories_spec.rb +3 -1
  563. data/spec/components/checks/passive/backup_files_spec.rb +8 -1
  564. data/spec/components/checks/passive/grep/insecure_cookies_spec.rb +2 -2
  565. data/spec/components/path_extractors/comments_spec.rb +3 -1
  566. data/spec/components/path_extractors/data_url_spec.rb +6 -2
  567. data/spec/components/path_extractors/links_spec.rb +1 -1
  568. data/spec/components/plugins/autologin_spec.rb +2 -2
  569. data/spec/components/plugins/webhook_notify_spec.rb +69 -0
  570. data/spec/spec_helper.rb +1 -1
  571. data/spec/support/factories/page/dom.rb +6 -0
  572. data/spec/support/factories/scan_report.rb +1 -0
  573. data/spec/support/factories/vector.rb +7 -3
  574. data/spec/support/fixtures/check_with_invalid_platforms/with_invalid_platforms.rb +1 -1
  575. data/spec/support/fixtures/checks/test.rb +1 -1
  576. data/spec/support/fixtures/checks/test2.rb +1 -1
  577. data/spec/support/fixtures/checks/test3.rb +1 -1
  578. data/spec/support/fixtures/cookies.txt +2 -2
  579. data/spec/support/fixtures/fingerprinters/test.rb +1 -1
  580. data/spec/support/fixtures/plugins/bad.rb +1 -1
  581. data/spec/support/fixtures/plugins/defaults/default.rb +1 -1
  582. data/spec/support/fixtures/plugins/distributable.rb +1 -1
  583. data/spec/support/fixtures/plugins/loop.rb +1 -1
  584. data/spec/support/fixtures/plugins/suspendable.rb +1 -1
  585. data/spec/support/fixtures/plugins/wait.rb +1 -1
  586. data/spec/support/fixtures/plugins/with_options.rb +1 -1
  587. data/spec/support/fixtures/plugins_with_priorities/p0.rb +1 -1
  588. data/spec/support/fixtures/plugins_with_priorities/p00.rb +1 -1
  589. data/spec/support/fixtures/plugins_with_priorities/p1.rb +1 -1
  590. data/spec/support/fixtures/plugins_with_priorities/p2.rb +1 -1
  591. data/spec/support/fixtures/plugins_with_priorities/p22.rb +1 -1
  592. data/spec/support/fixtures/plugins_with_priorities/p222.rb +1 -1
  593. data/spec/support/fixtures/plugins_with_priorities/p_nil.rb +1 -1
  594. data/spec/support/fixtures/plugins_with_priorities/p_nil2.rb +1 -1
  595. data/spec/support/fixtures/report.afr +0 -0
  596. data/spec/support/fixtures/reporters/base_spec/plugin_formatters/with_formatters/foobar.rb +1 -1
  597. data/spec/support/fixtures/reporters/base_spec/with_formatters.rb +1 -1
  598. data/spec/support/fixtures/reporters/base_spec/with_outfile.rb +1 -1
  599. data/spec/support/fixtures/reporters/base_spec/without_outfile.rb +1 -1
  600. data/spec/support/fixtures/reporters/manager_spec/afr.rb +1 -1
  601. data/spec/support/fixtures/reporters/manager_spec/error.rb +1 -1
  602. data/spec/support/fixtures/reporters/manager_spec/foo.rb +1 -1
  603. data/spec/support/fixtures/run_check/body.rb +1 -1
  604. data/spec/support/fixtures/run_check/cookies.rb +1 -1
  605. data/spec/support/fixtures/run_check/empty.rb +1 -1
  606. data/spec/support/fixtures/run_check/flch.rb +1 -1
  607. data/spec/support/fixtures/run_check/forms.rb +1 -1
  608. data/spec/support/fixtures/run_check/headers.rb +1 -1
  609. data/spec/support/fixtures/run_check/links.rb +1 -1
  610. data/spec/support/fixtures/run_check/nil.rb +1 -1
  611. data/spec/support/fixtures/run_check/path.rb +1 -1
  612. data/spec/support/fixtures/run_check/server.rb +1 -1
  613. data/spec/support/fixtures/signature_check/signature.rb +1 -1
  614. data/spec/support/fixtures/wait_check/wait.rb +1 -1
  615. data/spec/support/helpers/browser_cluster/jobs/taint_tracer.rb +0 -3
  616. data/spec/support/helpers/framework.rb +1 -1
  617. data/spec/support/helpers/misc.rb +1 -1
  618. data/spec/support/helpers/paths.rb +1 -1
  619. data/spec/support/helpers/requires.rb +1 -1
  620. data/spec/support/helpers/resets.rb +1 -1
  621. data/spec/support/helpers/web_server.rb +1 -1
  622. data/spec/support/lib/factory.rb +1 -1
  623. data/spec/support/lib/web_server_client.rb +1 -1
  624. data/spec/support/lib/web_server_dispatcher.rb +1 -1
  625. data/spec/support/lib/web_server_manager.rb +4 -2
  626. data/spec/support/logs/Dispatcher - 1024-31864.log +10 -0
  627. data/spec/support/logs/Dispatcher - 1047-41465.log +10 -0
  628. data/spec/support/logs/Dispatcher - 1274-60799.log +64 -0
  629. data/spec/support/logs/Dispatcher - 1295-1058.log +44 -0
  630. data/spec/support/logs/Dispatcher - 1313-27076.log +40 -0
  631. data/spec/support/logs/Dispatcher - 1332-17127.log +35 -0
  632. data/spec/support/logs/Dispatcher - 1350-7351.log +29 -0
  633. data/spec/support/logs/Dispatcher - 1368-38528.log +22 -0
  634. data/spec/support/logs/Dispatcher - 1386-17419.log +14 -0
  635. data/spec/support/logs/Dispatcher - 31030-26156.log +10 -0
  636. data/spec/support/logs/Dispatcher - 321-27189.log +12 -0
  637. data/spec/support/logs/Dispatcher - 32353-50061.log +20 -0
  638. data/spec/support/logs/Dispatcher - 32450-61574.log +10 -0
  639. data/spec/support/logs/Dispatcher - 32470-53874.log +20 -0
  640. data/spec/support/logs/Dispatcher - 32491-10523.log +18 -0
  641. data/spec/support/logs/Dispatcher - 32509-8583.log +14 -0
  642. data/spec/support/logs/Dispatcher - 32536-21209.log +10 -0
  643. data/spec/support/logs/Dispatcher - 32556-53881.log +10 -0
  644. data/spec/support/logs/Dispatcher - 32579-49083.log +50 -0
  645. data/spec/support/logs/Dispatcher - 32761-20025.log +12 -0
  646. data/spec/support/logs/Dispatcher - 347-17512.log +12 -0
  647. data/spec/support/logs/Dispatcher - 3489-43230.log +24 -0
  648. data/spec/support/logs/Dispatcher - 3524-57459.log +26 -0
  649. data/spec/support/logs/Dispatcher - 3559-21544.log +20 -0
  650. data/spec/support/logs/Dispatcher - 3764-33844.log +25 -0
  651. data/spec/support/logs/Dispatcher - 3798-45350.log +26 -0
  652. data/spec/support/logs/Dispatcher - 382-15725.log +12 -0
  653. data/spec/support/logs/Dispatcher - 3836-6205.log +21 -0
  654. data/spec/support/logs/Dispatcher - 4112-45433.log +22 -0
  655. data/spec/support/logs/Dispatcher - 4148-53510.log +26 -0
  656. data/spec/support/logs/Dispatcher - 415-29873.log +14 -0
  657. data/spec/support/logs/Dispatcher - 4185-29736.log +18 -0
  658. data/spec/support/logs/Dispatcher - 4268-60912.log +25 -0
  659. data/spec/support/logs/Dispatcher - 4303-39372.log +26 -0
  660. data/spec/support/logs/Dispatcher - 4342-42190.log +21 -0
  661. data/spec/support/logs/Dispatcher - 463-55220.log +26 -0
  662. data/spec/support/logs/Dispatcher - 4649-12104.log +22 -0
  663. data/spec/support/logs/Dispatcher - 4683-32355.log +26 -0
  664. data/spec/support/logs/Dispatcher - 4724-41636.log +18 -0
  665. data/spec/support/logs/Dispatcher - 4881-57692.log +22 -0
  666. data/spec/support/logs/Dispatcher - 4961-64665.log +26 -0
  667. data/spec/support/logs/Dispatcher - 502-8742.log +25 -0
  668. data/spec/support/logs/Dispatcher - 5052-61726.log +18 -0
  669. data/spec/support/logs/Dispatcher - 536-15972.log +22 -0
  670. data/spec/support/logs/Dispatcher - 620-2220.log +20 -0
  671. data/spec/support/logs/Dispatcher - 638-17826.log +18 -0
  672. data/spec/support/logs/Dispatcher - 656-23967.log +16 -0
  673. data/spec/support/logs/Dispatcher - 700-15701.log +12 -0
  674. data/spec/support/logs/Dispatcher - 726-6080.log +10 -0
  675. data/spec/support/logs/Dispatcher - 749-56590.log +18 -0
  676. data/spec/support/logs/Dispatcher - 807-19073.log +18 -0
  677. data/spec/support/logs/Dispatcher - 871-8764.log +10 -0
  678. data/spec/support/logs/Dispatcher - 898-21496.log +12 -0
  679. data/spec/support/logs/Dispatcher - 933-64070.log +12 -0
  680. data/spec/support/logs/Instance - 1577-32284.error.log +151 -0
  681. data/spec/support/logs/Instance - 1625-58174.error.log +154 -0
  682. data/spec/support/logs/Instance - 2727-57968.error.log +151 -0
  683. data/spec/support/logs/Instance - 2898-20648.error.log +303 -0
  684. data/spec/support/logs/Instance - 2901-30845.error.log +429 -0
  685. data/spec/support/logs/Instance - 31185-37600.error.log +174 -0
  686. data/spec/support/logs/Instance - 3319-20111.error.log +175 -0
  687. data/spec/support/logs/error-3855.log +5132 -0
  688. data/spec/support/servers/arachni/browser.rb +275 -4
  689. data/spec/support/servers/arachni/browser/javascript/dom_monitor.rb +48 -0
  690. data/spec/support/servers/arachni/browser/javascript/taint_tracer.rb +15 -3
  691. data/spec/support/servers/arachni/check/auditor.rb +8 -0
  692. data/spec/support/servers/arachni/element/cookie.rb +34 -0
  693. data/spec/support/servers/arachni/element/form.rb +34 -0
  694. data/spec/support/servers/arachni/element/header.rb +36 -1
  695. data/spec/support/servers/arachni/element/json.rb +33 -0
  696. data/spec/support/servers/arachni/element/link.rb +33 -1
  697. data/spec/support/servers/arachni/element/link_template.rb +37 -5
  698. data/spec/support/servers/arachni/element/xml.rb +33 -0
  699. data/spec/support/servers/arachni/http/client.rb +43 -4
  700. data/spec/support/servers/arachni/http/client/dynamic_404_handler.rb +36 -0
  701. data/spec/support/servers/arachni/http/client/dynamic_404_handler_redirect_1.rb +18 -0
  702. data/spec/support/servers/arachni/http/client/dynamic_404_handler_redirect_2.rb +11 -0
  703. data/spec/support/servers/arachni/http/proxy_server.rb +12 -0
  704. data/spec/support/servers/arachni/session.rb +24 -1
  705. data/spec/support/servers/checks/active/csrf.rb +0 -76
  706. data/spec/support/servers/checks/active/sql_injection/java +2 -0
  707. data/spec/support/servers/checks/active/unvalidated_redirect.rb +81 -0
  708. data/spec/support/servers/checks/active/xss_event.rb +1 -1
  709. data/spec/support/servers/checks/passive/backup_files.rb +20 -1
  710. data/spec/support/servers/checks/passive/grep/cookie_set_for_parent_domain.rb +3 -5
  711. data/spec/support/servers/checks/passive/grep/insecure_cookies_https.rb +9 -0
  712. data/spec/support/servers/plugins/autologin.rb +17 -1
  713. data/spec/support/servers/plugins/webhook_notify.rb +9 -0
  714. data/spec/support/shared/element/capabilities/auditable.rb +26 -32
  715. data/spec/support/shared/element/capabilities/auditable/buffered.rb +791 -0
  716. data/spec/support/shared/element/capabilities/auditable/line_buffered.rb +797 -0
  717. data/spec/support/shared/element/capabilities/inputtable.rb +26 -0
  718. data/spec/support/shared/element/capabilities/with_node.rb +2 -2
  719. data/spec/support/shared/element/dom/submittable.rb +10 -10
  720. data/spec/support/shared/path_extractor.rb +17 -5
  721. data/ui/cli/framework.rb +24 -4
  722. data/ui/cli/framework/option_parser.rb +35 -6
  723. data/ui/cli/option_parser.rb +1 -1
  724. data/ui/cli/output.rb +10 -3
  725. data/ui/cli/reporter.rb +1 -1
  726. data/ui/cli/reporter/option_parser.rb +1 -1
  727. data/ui/cli/reproduce.rb +228 -0
  728. data/ui/cli/reproduce/option_parser.rb +90 -0
  729. data/ui/cli/rest/server.rb +1 -1
  730. data/ui/cli/rest/server/option_parser.rb +1 -1
  731. data/ui/cli/restored_framework.rb +1 -1
  732. data/ui/cli/restored_framework/option_parser.rb +1 -1
  733. data/ui/cli/rpc/client/dispatcher_monitor.rb +9 -11
  734. data/ui/cli/rpc/client/dispatcher_monitor/option_parser.rb +1 -1
  735. data/ui/cli/rpc/client/instance.rb +1 -1
  736. data/ui/cli/rpc/client/local.rb +1 -1
  737. data/ui/cli/rpc/client/local/option_parser.rb +1 -1
  738. data/ui/cli/rpc/client/remote.rb +1 -1
  739. data/ui/cli/rpc/client/remote/option_parser.rb +1 -1
  740. data/ui/cli/rpc/server/dispatcher.rb +1 -1
  741. data/ui/cli/rpc/server/dispatcher/option_parser.rb +1 -1
  742. data/ui/cli/utilities.rb +1 -1
  743. metadata +253 -49
  744. data/ACKNOWLEDGMENTS.md +0 -21
  745. data/AUTHORS.md +0 -3
  746. data/CONTRIBUTORS.md +0 -22
@@ -0,0 +1,90 @@
1
+ =begin
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
+
4
+ This file is part of the Arachni Framework project and is subject to
5
+ redistribution and commercial restrictions. Please see the Arachni Framework
6
+ web site for more information on licensing and terms of use.
7
+ =end
8
+
9
+ require_relative '../option_parser'
10
+
11
+ module Arachni
12
+ module UI::CLI
13
+
14
+ class Reproduce
15
+
16
+ # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
17
+ class OptionParser < UI::CLI::OptionParser
18
+
19
+ attr_accessor :report
20
+ attr_accessor :report_path
21
+ attr_accessor :updated_report_path
22
+
23
+ attr_accessor :issues
24
+ attr_accessor :issue_digests
25
+
26
+ def initialize
27
+ @issues = []
28
+ end
29
+
30
+ def report_options
31
+ separator ''
32
+ separator 'Report'
33
+
34
+ on( '--report-save-path PATH', String,
35
+ 'Directory or file path where to store the updated report ' <<
36
+ 'including only reproduced issues.',
37
+ 'You can use the generated file to create reports in several ' +
38
+ "formats with the 'arachni_reporter' executable."
39
+ ) do |path|
40
+ @updated_report_path = path
41
+ end
42
+ end
43
+
44
+ def after_parse
45
+ @report_path = ARGV.shift
46
+ @issue_digests = ARGV.dup
47
+ end
48
+
49
+ def validate
50
+ if !@report_path
51
+ print_error 'No report file provided.'
52
+ exit 1
53
+ end
54
+
55
+ @report_path = File.expand_path( @report_path )
56
+
57
+ if !File.exists?( @report_path )
58
+ print_error "Report does not exist: #{@report_path}"
59
+ exit 1
60
+ end
61
+
62
+ begin
63
+ @report = Report.load( @report_path )
64
+ rescue => e
65
+ print_error "Could not load report: #{@report_path}"
66
+ print_error "Because: [#{e.class}] #{e}"
67
+ exit 1
68
+ end
69
+
70
+ if @issue_digests.any?
71
+ @issues = @report.issues.
72
+ select { |i| @issue_digests.include? i.digest.to_s }
73
+
74
+ if @issues.empty?
75
+ print_error "Could not find any issues for digests: #{@issue_digests.join(' ')}"
76
+ exit 1
77
+ end
78
+
79
+ @issue_digests = @issue_digests.map(&:to_i)
80
+ end
81
+ end
82
+
83
+ def banner
84
+ "Usage: #{$0} REPORT [ISSUE_DIGEST_1 ISSUE_DIGEST_2 ...]"
85
+ end
86
+
87
+ end
88
+ end
89
+ end
90
+ end
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -12,8 +12,8 @@ require_relative 'dispatcher_monitor/option_parser'
12
12
  module Arachni
13
13
 
14
14
  require Options.paths.lib + 'rpc/client/dispatcher'
15
- require Options.paths.lib + 'ui/cli/output'
16
- require Options.paths.lib + 'ui/cli/utilities'
15
+ require Options.paths.lib + 'utilities'
16
+ require_relative '../../utilities'
17
17
 
18
18
  module UI::CLI
19
19
  module RPC::Client
@@ -59,7 +59,7 @@ class DispatcherMonitor
59
59
 
60
60
  loop do
61
61
  move_to_home
62
- stats = @dispatcher.stats
62
+ stats = @dispatcher.statistics
63
63
  running_jobs = stats['running_jobs']
64
64
 
65
65
  print_banner
@@ -75,17 +75,15 @@ class DispatcherMonitor
75
75
  end
76
76
 
77
77
  def print_job_table( jobs )
78
- headings = [ 'Parent PID', 'PID', 'Port', 'Owner', 'Birthdate (Server-side)',
78
+ headings = [ 'PID', 'Port', 'Owner', 'Birthdate (Server-side)',
79
79
  'Start time (Server-side)', 'Current time (Server-side)', 'Age',
80
- 'Run-time', 'Memory', 'Priority', 'State' ]
80
+ 'Run-time']
81
81
 
82
82
  rows = []
83
83
  jobs.each do |job|
84
- rows << [ job['proc']['ppid'], job['pid'], job['port'], job['owner'],
85
- job['birthdate'].to_time, job['starttime'].to_time, job['currtime'].to_time,
86
- seconds_to_hms( job['age'] ), seconds_to_hms( job['runtime'] ),
87
- proc_mem( job['proc']['rss'] ), job['proc']['priority'],
88
- proc_state( job['proc']['state'] ) ]
84
+ rows << [ job['pid'], job['port'], job['owner'],
85
+ job['birthdate'], job['starttime'], job['currtime'],
86
+ seconds_to_hms( job['age'] ), seconds_to_hms( job['runtime'] )]
89
87
  end
90
88
 
91
89
  return if rows.empty?
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arachni
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.4'
4
+ version: '1.5'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tasos Laskos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-09 00:00:00.000000000 Z
11
+ date: 2017-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: awesome_print
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 1.6.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: 1.6.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rack
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: 1.6.4
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: 1.6.4
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -58,28 +58,28 @@ dependencies:
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 1.0.0
61
+ version: 1.0.2
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 1.0.0
68
+ version: 1.0.2
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: concurrent-ruby-ext
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - '='
74
74
  - !ruby/object:Gem::Version
75
- version: 1.0.0
75
+ version: 1.0.2
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - '='
81
81
  - !ruby/object:Gem::Version
82
- version: 1.0.0
82
+ version: 1.0.2
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rubyzip
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -98,16 +98,16 @@ dependencies:
98
98
  name: http_parser.rb
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ">="
101
+ - - '='
102
102
  - !ruby/object:Gem::Version
103
- version: '0'
103
+ version: 0.6.0
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ">="
108
+ - - '='
109
109
  - !ruby/object:Gem::Version
110
- version: '0'
110
+ version: 0.6.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: coderay
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -154,30 +154,30 @@ dependencies:
154
154
  name: oj
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - "~>"
157
+ - - '='
158
158
  - !ruby/object:Gem::Version
159
- version: 2.14.3
159
+ version: 2.15.0
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
- - - "~>"
164
+ - - '='
165
165
  - !ruby/object:Gem::Version
166
- version: 2.14.3
166
+ version: 2.15.0
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: oj_mimic_json
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - ">="
171
+ - - '='
172
172
  - !ruby/object:Gem::Version
173
- version: '0'
173
+ version: 1.0.1
174
174
  type: :runtime
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
- - - ">="
178
+ - - '='
179
179
  - !ruby/object:Gem::Version
180
- version: '0'
180
+ version: 1.0.1
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: puma
183
183
  requirement: !ruby/object:Gem::Requirement
@@ -224,30 +224,30 @@ dependencies:
224
224
  name: arachni-rpc
225
225
  requirement: !ruby/object:Gem::Requirement
226
226
  requirements:
227
- - - '='
227
+ - - "~>"
228
228
  - !ruby/object:Gem::Version
229
- version: 0.2.1.3
229
+ version: 0.2.1.4
230
230
  type: :runtime
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
233
  requirements:
234
- - - '='
234
+ - - "~>"
235
235
  - !ruby/object:Gem::Version
236
- version: 0.2.1.3
236
+ version: 0.2.1.4
237
237
  - !ruby/object:Gem::Dependency
238
238
  name: typhoeus
239
239
  requirement: !ruby/object:Gem::Requirement
240
240
  requirements:
241
241
  - - '='
242
242
  - !ruby/object:Gem::Version
243
- version: 1.0.1
243
+ version: 1.0.2
244
244
  type: :runtime
245
245
  prerelease: false
246
246
  version_requirements: !ruby/object:Gem::Requirement
247
247
  requirements:
248
248
  - - '='
249
249
  - !ruby/object:Gem::Version
250
- version: 1.0.1
250
+ version: 1.0.2
251
251
  - !ruby/object:Gem::Dependency
252
252
  name: addressable
253
253
  requirement: !ruby/object:Gem::Requirement
@@ -268,14 +268,14 @@ dependencies:
268
268
  requirements:
269
269
  - - '='
270
270
  - !ruby/object:Gem::Version
271
- version: '1.8'
271
+ version: '1.11'
272
272
  type: :runtime
273
273
  prerelease: false
274
274
  version_requirements: !ruby/object:Gem::Requirement
275
275
  requirements:
276
276
  - - '='
277
277
  - !ruby/object:Gem::Version
278
- version: '1.8'
278
+ version: '1.11'
279
279
  - !ruby/object:Gem::Dependency
280
280
  name: rb-readline
281
281
  requirement: !ruby/object:Gem::Requirement
@@ -296,14 +296,28 @@ dependencies:
296
296
  requirements:
297
297
  - - '='
298
298
  - !ruby/object:Gem::Version
299
- version: 1.6.8rc2
299
+ version: 1.6.8.1
300
+ type: :runtime
301
+ prerelease: false
302
+ version_requirements: !ruby/object:Gem::Requirement
303
+ requirements:
304
+ - - '='
305
+ - !ruby/object:Gem::Version
306
+ version: 1.6.8.1
307
+ - !ruby/object:Gem::Dependency
308
+ name: ox
309
+ requirement: !ruby/object:Gem::Requirement
310
+ requirements:
311
+ - - '='
312
+ - !ruby/object:Gem::Version
313
+ version: 2.4.9
300
314
  type: :runtime
301
315
  prerelease: false
302
316
  version_requirements: !ruby/object:Gem::Requirement
303
317
  requirements:
304
318
  - - '='
305
319
  - !ruby/object:Gem::Version
306
- version: 1.6.8rc2
320
+ version: 2.4.9
307
321
  - !ruby/object:Gem::Dependency
308
322
  name: terminal-table
309
323
  requirement: !ruby/object:Gem::Requirement
@@ -318,6 +332,20 @@ dependencies:
318
332
  - - '='
319
333
  - !ruby/object:Gem::Version
320
334
  version: 1.4.5
335
+ - !ruby/object:Gem::Dependency
336
+ name: selenium-webdriver
337
+ requirement: !ruby/object:Gem::Requirement
338
+ requirements:
339
+ - - '='
340
+ - !ruby/object:Gem::Version
341
+ version: 3.0.1
342
+ type: :runtime
343
+ prerelease: false
344
+ version_requirements: !ruby/object:Gem::Requirement
345
+ requirements:
346
+ - - '='
347
+ - !ruby/object:Gem::Version
348
+ version: 3.0.1
321
349
  - !ruby/object:Gem::Dependency
322
350
  name: watir-webdriver
323
351
  requirement: !ruby/object:Gem::Requirement
@@ -350,16 +378,16 @@ dependencies:
350
378
  name: loofah
351
379
  requirement: !ruby/object:Gem::Requirement
352
380
  requirements:
353
- - - "~>"
381
+ - - '='
354
382
  - !ruby/object:Gem::Version
355
- version: 2.0.0
383
+ version: 2.0.3
356
384
  type: :runtime
357
385
  prerelease: false
358
386
  version_requirements: !ruby/object:Gem::Requirement
359
387
  requirements:
360
- - - "~>"
388
+ - - '='
361
389
  - !ruby/object:Gem::Version
362
- version: 2.0.0
390
+ version: 2.0.3
363
391
  description: |
364
392
  Arachni is a feature-full, modular, high-performance Ruby framework aimed towards
365
393
  helping penetration testers and administrators evaluate the security of web applications.
@@ -389,6 +417,7 @@ executables:
389
417
  - arachni_console
390
418
  - arachni_rpc
391
419
  - arachni_rpcd_monitor
420
+ - arachni_reproduce
392
421
  - arachni_reporter
393
422
  - arachni_rest_server
394
423
  - arachni_multi
@@ -397,16 +426,10 @@ executables:
397
426
  extensions: []
398
427
  extra_rdoc_files:
399
428
  - README.md
400
- - ACKNOWLEDGMENTS.md
401
429
  - LICENSE.md
402
- - AUTHORS.md
403
430
  - CHANGELOG.md
404
- - CONTRIBUTORS.md
405
431
  files:
406
- - ACKNOWLEDGMENTS.md
407
- - AUTHORS.md
408
432
  - CHANGELOG.md
409
- - CONTRIBUTORS.md
410
433
  - Gemfile
411
434
  - LICENSE.md
412
435
  - README.md
@@ -416,6 +439,7 @@ files:
416
439
  - bin/arachni_console
417
440
  - bin/arachni_multi
418
441
  - bin/arachni_reporter
442
+ - bin/arachni_reproduce
419
443
  - bin/arachni_rest_server
420
444
  - bin/arachni_restore
421
445
  - bin/arachni_rpc
@@ -443,6 +467,7 @@ files:
443
467
  - components/checks/active/sql_injection/ignore_substrings
444
468
  - components/checks/active/sql_injection/regexps/db2.yaml
445
469
  - components/checks/active/sql_injection/regexps/frontbase.yaml
470
+ - components/checks/active/sql_injection/regexps/hsqldb.yaml
446
471
  - components/checks/active/sql_injection/regexps/informix.yaml
447
472
  - components/checks/active/sql_injection/regexps/ingres.yaml
448
473
  - components/checks/active/sql_injection/regexps/maxdb.yaml
@@ -460,6 +485,7 @@ files:
460
485
  - components/checks/active/sql_injection/substrings/informix
461
486
  - components/checks/active/sql_injection/substrings/ingres
462
487
  - components/checks/active/sql_injection/substrings/interbase
488
+ - components/checks/active/sql_injection/substrings/java
463
489
  - components/checks/active/sql_injection/substrings/mssql
464
490
  - components/checks/active/sql_injection/substrings/mysql
465
491
  - components/checks/active/sql_injection/substrings/oracle
@@ -566,6 +592,7 @@ files:
566
592
  - components/plugins/beep_notify.rb
567
593
  - components/plugins/content_types.rb
568
594
  - components/plugins/cookie_collector.rb
595
+ - components/plugins/debug/browser_cluster_job_monitor.rb
569
596
  - components/plugins/defaults/autothrottle.rb
570
597
  - components/plugins/defaults/healthmap.rb
571
598
  - components/plugins/defaults/meta/remedies/discovery.rb
@@ -578,6 +605,7 @@ files:
578
605
  - components/plugins/http_dicattack.rb
579
606
  - components/plugins/login_script.rb
580
607
  - components/plugins/metrics.rb
608
+ - components/plugins/page_dump.rb
581
609
  - components/plugins/proxy.rb
582
610
  - components/plugins/proxy/panel/403_forbidden.html.erb
583
611
  - components/plugins/proxy/panel/404_not_found.html.erb
@@ -603,12 +631,14 @@ files:
603
631
  - components/plugins/proxy/panel/verify_login_final.html.erb
604
632
  - components/plugins/proxy/panel/verify_login_sequence.html.erb
605
633
  - components/plugins/proxy/template_scope.rb
634
+ - components/plugins/rate_limiter.rb
606
635
  - components/plugins/restrict_to_dom_state.rb
607
636
  - components/plugins/script.rb
608
637
  - components/plugins/uncommon_headers.rb
609
638
  - components/plugins/vector_collector.rb
610
639
  - components/plugins/vector_feed.rb
611
640
  - components/plugins/waf_detector.rb
641
+ - components/plugins/webhook_notify.rb
612
642
  - components/reporters/ap.rb
613
643
  - components/reporters/html.rb
614
644
  - components/reporters/html/default.erb
@@ -774,6 +804,8 @@ files:
774
804
  - lib/arachni/element/capabilities/analyzable/signature.rb
775
805
  - lib/arachni/element/capabilities/analyzable/timeout.rb
776
806
  - lib/arachni/element/capabilities/auditable.rb
807
+ - lib/arachni/element/capabilities/auditable/buffered.rb
808
+ - lib/arachni/element/capabilities/auditable/line_buffered.rb
777
809
  - lib/arachni/element/capabilities/dom_only.rb
778
810
  - lib/arachni/element/capabilities/inputtable.rb
779
811
  - lib/arachni/element/capabilities/mutable.rb
@@ -884,6 +916,18 @@ files:
884
916
  - lib/arachni/page/dom/transition.rb
885
917
  - lib/arachni/page/scope.rb
886
918
  - lib/arachni/parser.rb
919
+ - lib/arachni/parser/document.rb
920
+ - lib/arachni/parser/extractors/base.rb
921
+ - lib/arachni/parser/nodes/base.rb
922
+ - lib/arachni/parser/nodes/comment.rb
923
+ - lib/arachni/parser/nodes/element.rb
924
+ - lib/arachni/parser/nodes/element/with_attributes.rb
925
+ - lib/arachni/parser/nodes/element/with_attributes/attributes.rb
926
+ - lib/arachni/parser/nodes/text.rb
927
+ - lib/arachni/parser/nodes/with_value.rb
928
+ - lib/arachni/parser/sax.rb
929
+ - lib/arachni/parser/with_children.rb
930
+ - lib/arachni/parser/with_children/search.rb
887
931
  - lib/arachni/platform.rb
888
932
  - lib/arachni/platform/fingerprinter.rb
889
933
  - lib/arachni/platform/list.rb
@@ -945,6 +989,7 @@ files:
945
989
  - lib/arachni/ruby/webrick/httprequest.rb
946
990
  - lib/arachni/scope.rb
947
991
  - lib/arachni/selenium/webdriver/element.rb
992
+ - lib/arachni/selenium/webdriver/remote/typhoeus.rb
948
993
  - lib/arachni/session.rb
949
994
  - lib/arachni/snapshot.rb
950
995
  - lib/arachni/state.rb
@@ -989,6 +1034,8 @@ files:
989
1034
  - lib/arachni/utilities.rb
990
1035
  - lib/arachni/version.rb
991
1036
  - lib/version
1037
+ - logs/error-11897.log
1038
+ - logs/error-3855.log
992
1039
  - logs/placeholder
993
1040
  - profiles/placeholder
994
1041
  - spec/arachni/browser/element_locator_spec.rb
@@ -1100,6 +1147,15 @@ files:
1100
1147
  - spec/arachni/page/dom_spec.rb
1101
1148
  - spec/arachni/page/scope_spec.rb
1102
1149
  - spec/arachni/page_spec.rb
1150
+ - spec/arachni/parser/document_spec.rb
1151
+ - spec/arachni/parser/nodes/comment_spec.rb
1152
+ - spec/arachni/parser/nodes/element/with_attributes/attributes_spec.rb
1153
+ - spec/arachni/parser/nodes/element/with_attributes_spec.rb
1154
+ - spec/arachni/parser/nodes/element_spec.rb
1155
+ - spec/arachni/parser/nodes/text_spec.rb
1156
+ - spec/arachni/parser/sax_spec.rb
1157
+ - spec/arachni/parser/with_children/search_spec.rb
1158
+ - spec/arachni/parser/with_children_spec.rb
1103
1159
  - spec/arachni/parser_spec.rb
1104
1160
  - spec/arachni/platform/fingerprinter_spec.rb
1105
1161
  - spec/arachni/platform/list_spec.rb
@@ -1282,6 +1338,7 @@ files:
1282
1338
  - spec/components/plugins/vector_collector_spec.rb
1283
1339
  - spec/components/plugins/vector_feed_spec.rb
1284
1340
  - spec/components/plugins/waf_detector_spec.rb
1341
+ - spec/components/plugins/webhook_notify_spec.rb
1285
1342
  - spec/components/reporters/ap_spec.rb
1286
1343
  - spec/components/reporters/html_spec.rb
1287
1344
  - spec/components/reporters/json_spec.rb
@@ -1394,6 +1451,68 @@ files:
1394
1451
  - spec/support/lib/web_server_client.rb
1395
1452
  - spec/support/lib/web_server_dispatcher.rb
1396
1453
  - spec/support/lib/web_server_manager.rb
1454
+ - spec/support/logs/Dispatcher - 1024-31864.log
1455
+ - spec/support/logs/Dispatcher - 1047-41465.log
1456
+ - spec/support/logs/Dispatcher - 1274-60799.log
1457
+ - spec/support/logs/Dispatcher - 1295-1058.log
1458
+ - spec/support/logs/Dispatcher - 1313-27076.log
1459
+ - spec/support/logs/Dispatcher - 1332-17127.log
1460
+ - spec/support/logs/Dispatcher - 1350-7351.log
1461
+ - spec/support/logs/Dispatcher - 1368-38528.log
1462
+ - spec/support/logs/Dispatcher - 1386-17419.log
1463
+ - spec/support/logs/Dispatcher - 31030-26156.log
1464
+ - spec/support/logs/Dispatcher - 321-27189.log
1465
+ - spec/support/logs/Dispatcher - 32353-50061.log
1466
+ - spec/support/logs/Dispatcher - 32450-61574.log
1467
+ - spec/support/logs/Dispatcher - 32470-53874.log
1468
+ - spec/support/logs/Dispatcher - 32491-10523.log
1469
+ - spec/support/logs/Dispatcher - 32509-8583.log
1470
+ - spec/support/logs/Dispatcher - 32536-21209.log
1471
+ - spec/support/logs/Dispatcher - 32556-53881.log
1472
+ - spec/support/logs/Dispatcher - 32579-49083.log
1473
+ - spec/support/logs/Dispatcher - 32761-20025.log
1474
+ - spec/support/logs/Dispatcher - 347-17512.log
1475
+ - spec/support/logs/Dispatcher - 3489-43230.log
1476
+ - spec/support/logs/Dispatcher - 3524-57459.log
1477
+ - spec/support/logs/Dispatcher - 3559-21544.log
1478
+ - spec/support/logs/Dispatcher - 3764-33844.log
1479
+ - spec/support/logs/Dispatcher - 3798-45350.log
1480
+ - spec/support/logs/Dispatcher - 382-15725.log
1481
+ - spec/support/logs/Dispatcher - 3836-6205.log
1482
+ - spec/support/logs/Dispatcher - 4112-45433.log
1483
+ - spec/support/logs/Dispatcher - 4148-53510.log
1484
+ - spec/support/logs/Dispatcher - 415-29873.log
1485
+ - spec/support/logs/Dispatcher - 4185-29736.log
1486
+ - spec/support/logs/Dispatcher - 4268-60912.log
1487
+ - spec/support/logs/Dispatcher - 4303-39372.log
1488
+ - spec/support/logs/Dispatcher - 4342-42190.log
1489
+ - spec/support/logs/Dispatcher - 463-55220.log
1490
+ - spec/support/logs/Dispatcher - 4649-12104.log
1491
+ - spec/support/logs/Dispatcher - 4683-32355.log
1492
+ - spec/support/logs/Dispatcher - 4724-41636.log
1493
+ - spec/support/logs/Dispatcher - 4881-57692.log
1494
+ - spec/support/logs/Dispatcher - 4961-64665.log
1495
+ - spec/support/logs/Dispatcher - 502-8742.log
1496
+ - spec/support/logs/Dispatcher - 5052-61726.log
1497
+ - spec/support/logs/Dispatcher - 536-15972.log
1498
+ - spec/support/logs/Dispatcher - 620-2220.log
1499
+ - spec/support/logs/Dispatcher - 638-17826.log
1500
+ - spec/support/logs/Dispatcher - 656-23967.log
1501
+ - spec/support/logs/Dispatcher - 700-15701.log
1502
+ - spec/support/logs/Dispatcher - 726-6080.log
1503
+ - spec/support/logs/Dispatcher - 749-56590.log
1504
+ - spec/support/logs/Dispatcher - 807-19073.log
1505
+ - spec/support/logs/Dispatcher - 871-8764.log
1506
+ - spec/support/logs/Dispatcher - 898-21496.log
1507
+ - spec/support/logs/Dispatcher - 933-64070.log
1508
+ - spec/support/logs/Instance - 1577-32284.error.log
1509
+ - spec/support/logs/Instance - 1625-58174.error.log
1510
+ - spec/support/logs/Instance - 2727-57968.error.log
1511
+ - spec/support/logs/Instance - 2898-20648.error.log
1512
+ - spec/support/logs/Instance - 2901-30845.error.log
1513
+ - spec/support/logs/Instance - 31185-37600.error.log
1514
+ - spec/support/logs/Instance - 3319-20111.error.log
1515
+ - spec/support/logs/error-3855.log
1397
1516
  - spec/support/logs/placeholder
1398
1517
  - spec/support/pems/cacert.pem
1399
1518
  - spec/support/pems/client/cert.pem
@@ -1434,6 +1553,8 @@ files:
1434
1553
  - spec/support/servers/arachni/framework.rb
1435
1554
  - spec/support/servers/arachni/http/client.rb
1436
1555
  - spec/support/servers/arachni/http/client/dynamic_404_handler.rb
1556
+ - spec/support/servers/arachni/http/client/dynamic_404_handler_redirect_1.rb
1557
+ - spec/support/servers/arachni/http/client/dynamic_404_handler_redirect_2.rb
1437
1558
  - spec/support/servers/arachni/http/proxy_server.rb
1438
1559
  - spec/support/servers/arachni/http/proxy_server_https.rb
1439
1560
  - spec/support/servers/arachni/page/page_dom.rb
@@ -1467,6 +1588,7 @@ files:
1467
1588
  - spec/support/servers/checks/active/sql_injection/informix
1468
1589
  - spec/support/servers/checks/active/sql_injection/ingres
1469
1590
  - spec/support/servers/checks/active/sql_injection/interbase
1591
+ - spec/support/servers/checks/active/sql_injection/java
1470
1592
  - spec/support/servers/checks/active/sql_injection/jdbc
1471
1593
  - spec/support/servers/checks/active/sql_injection/maxdb
1472
1594
  - spec/support/servers/checks/active/sql_injection/mssql
@@ -1547,12 +1669,15 @@ files:
1547
1669
  - spec/support/servers/plugins/uncommon_headers.rb
1548
1670
  - spec/support/servers/plugins/vector_collector.rb
1549
1671
  - spec/support/servers/plugins/waf_detector.rb
1672
+ - spec/support/servers/plugins/webhook_notify.rb
1550
1673
  - spec/support/shared/browser/javascript/taint_tracer/sink/base.rb
1551
1674
  - spec/support/shared/check.rb
1552
1675
  - spec/support/shared/component.rb
1553
1676
  - spec/support/shared/component/options/base.rb
1554
1677
  - spec/support/shared/element/base.rb
1555
1678
  - spec/support/shared/element/capabilities/auditable.rb
1679
+ - spec/support/shared/element/capabilities/auditable/buffered.rb
1680
+ - spec/support/shared/element/capabilities/auditable/line_buffered.rb
1556
1681
  - spec/support/shared/element/capabilities/dom_only.rb
1557
1682
  - spec/support/shared/element/capabilities/inputtable.rb
1558
1683
  - spec/support/shared/element/capabilities/mutable.rb
@@ -1585,6 +1710,8 @@ files:
1585
1710
  - ui/cli/output.rb
1586
1711
  - ui/cli/reporter.rb
1587
1712
  - ui/cli/reporter/option_parser.rb
1713
+ - ui/cli/reproduce.rb
1714
+ - ui/cli/reproduce/option_parser.rb
1588
1715
  - ui/cli/rest/server.rb
1589
1716
  - ui/cli/rest/server/option_parser.rb
1590
1717
  - ui/cli/restored_framework.rb
@@ -1618,7 +1745,7 @@ post_install_message: |2+
1618
1745
  (https://github.com/Arachni/arachni/blob/master/LICENSE.md)
1619
1746
  Author - Tasos "Zapotek" Laskos (http://twitter.com/Zap0tek)
1620
1747
  Twitter - http://twitter.com/ArachniScanner
1621
- Copyright - 2010-2016 Tasos Laskos
1748
+ Copyright - 2010-2017 Sarosys LLC (http://www.sarosys.com)
1622
1749
 
1623
1750
  Please do not hesitate to ask for assistance (via the support portal)
1624
1751
  or report a bug (via GitHub Issues) if you come across any problem.
@@ -1631,7 +1758,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
1631
1758
  requirements:
1632
1759
  - - ">="
1633
1760
  - !ruby/object:Gem::Version
1634
- version: 2.0.0
1761
+ version: 2.2.0
1635
1762
  required_rubygems_version: !ruby/object:Gem::Requirement
1636
1763
  requirements:
1637
1764
  - - ">="
@@ -1717,6 +1844,7 @@ test_files:
1717
1844
  - spec/support/servers/plugins/meta/remedies/timing_attacks.rb
1718
1845
  - spec/support/servers/plugins/meta/remedies/discovery.rb
1719
1846
  - spec/support/servers/plugins/http_dicattack_secure.rb
1847
+ - spec/support/servers/plugins/webhook_notify.rb
1720
1848
  - spec/support/servers/plugins/restrict_to_dom_state.rb
1721
1849
  - spec/support/servers/plugins/autothrottle.rb
1722
1850
  - spec/support/servers/checks/check_server.rb
@@ -1734,6 +1862,7 @@ test_files:
1734
1862
  - spec/support/servers/checks/active/xss_script_context.rb
1735
1863
  - spec/support/servers/checks/active/no_sql_injection.rb
1736
1864
  - spec/support/servers/checks/active/no_sql_injection/mongodb
1865
+ - spec/support/servers/checks/active/sql_injection/java
1737
1866
  - spec/support/servers/checks/active/sql_injection/sqlite
1738
1867
  - spec/support/servers/checks/active/sql_injection/ingres
1739
1868
  - spec/support/servers/checks/active/sql_injection/access
@@ -1840,7 +1969,9 @@ test_files:
1840
1969
  - spec/support/servers/arachni/browser.rb
1841
1970
  - spec/support/servers/arachni/framework.rb
1842
1971
  - spec/support/servers/arachni/http/proxy_server_https.rb
1972
+ - spec/support/servers/arachni/http/client/dynamic_404_handler_redirect_1.rb
1843
1973
  - spec/support/servers/arachni/http/client/dynamic_404_handler.rb
1974
+ - spec/support/servers/arachni/http/client/dynamic_404_handler_redirect_2.rb
1844
1975
  - spec/support/servers/arachni/http/client.rb
1845
1976
  - spec/support/servers/arachni/http/proxy_server.rb
1846
1977
  - spec/support/servers/arachni/browser_cluster/jobs/event_trigger.rb
@@ -1884,7 +2015,69 @@ test_files:
1884
2015
  - spec/support/factories/browser_cluster/job.rb
1885
2016
  - spec/support/factories/vector.rb
1886
2017
  - spec/support/factories/issue.rb
2018
+ - spec/support/logs/Dispatcher - 1024-31864.log
2019
+ - spec/support/logs/Dispatcher - 32509-8583.log
2020
+ - spec/support/logs/Dispatcher - 638-17826.log
2021
+ - spec/support/logs/Instance - 1577-32284.error.log
2022
+ - spec/support/logs/Dispatcher - 3559-21544.log
2023
+ - spec/support/logs/Dispatcher - 1368-38528.log
2024
+ - spec/support/logs/Dispatcher - 1313-27076.log
2025
+ - spec/support/logs/Dispatcher - 4961-64665.log
2026
+ - spec/support/logs/Dispatcher - 32491-10523.log
2027
+ - spec/support/logs/Dispatcher - 347-17512.log
2028
+ - spec/support/logs/Dispatcher - 4268-60912.log
2029
+ - spec/support/logs/Dispatcher - 3836-6205.log
2030
+ - spec/support/logs/Dispatcher - 4148-53510.log
2031
+ - spec/support/logs/Dispatcher - 1295-1058.log
2032
+ - spec/support/logs/Dispatcher - 898-21496.log
2033
+ - spec/support/logs/Dispatcher - 871-8764.log
2034
+ - spec/support/logs/Dispatcher - 749-56590.log
2035
+ - spec/support/logs/Dispatcher - 4303-39372.log
2036
+ - spec/support/logs/Dispatcher - 321-27189.log
2037
+ - spec/support/logs/Dispatcher - 700-15701.log
2038
+ - spec/support/logs/Dispatcher - 382-15725.log
2039
+ - spec/support/logs/Dispatcher - 32556-53881.log
2040
+ - spec/support/logs/Dispatcher - 4112-45433.log
2041
+ - spec/support/logs/Dispatcher - 933-64070.log
2042
+ - spec/support/logs/Instance - 1625-58174.error.log
2043
+ - spec/support/logs/Dispatcher - 32761-20025.log
2044
+ - spec/support/logs/Dispatcher - 4342-42190.log
2045
+ - spec/support/logs/Instance - 31185-37600.error.log
2046
+ - spec/support/logs/Dispatcher - 31030-26156.log
2047
+ - spec/support/logs/Dispatcher - 32450-61574.log
2048
+ - spec/support/logs/Dispatcher - 3524-57459.log
2049
+ - spec/support/logs/Dispatcher - 502-8742.log
2050
+ - spec/support/logs/Dispatcher - 4683-32355.log
2051
+ - spec/support/logs/Instance - 2898-20648.error.log
2052
+ - spec/support/logs/Dispatcher - 4649-12104.log
2053
+ - spec/support/logs/Dispatcher - 536-15972.log
2054
+ - spec/support/logs/Dispatcher - 726-6080.log
2055
+ - spec/support/logs/Dispatcher - 1047-41465.log
2056
+ - spec/support/logs/Dispatcher - 32579-49083.log
2057
+ - spec/support/logs/Dispatcher - 32353-50061.log
2058
+ - spec/support/logs/Dispatcher - 32536-21209.log
1887
2059
  - spec/support/logs/placeholder
2060
+ - spec/support/logs/Dispatcher - 3798-45350.log
2061
+ - spec/support/logs/Dispatcher - 4185-29736.log
2062
+ - spec/support/logs/Dispatcher - 463-55220.log
2063
+ - spec/support/logs/Dispatcher - 620-2220.log
2064
+ - spec/support/logs/Dispatcher - 1332-17127.log
2065
+ - spec/support/logs/error-3855.log
2066
+ - spec/support/logs/Dispatcher - 3764-33844.log
2067
+ - spec/support/logs/Dispatcher - 656-23967.log
2068
+ - spec/support/logs/Dispatcher - 1274-60799.log
2069
+ - spec/support/logs/Dispatcher - 807-19073.log
2070
+ - spec/support/logs/Dispatcher - 4881-57692.log
2071
+ - spec/support/logs/Dispatcher - 1350-7351.log
2072
+ - spec/support/logs/Dispatcher - 4724-41636.log
2073
+ - spec/support/logs/Dispatcher - 415-29873.log
2074
+ - spec/support/logs/Instance - 2727-57968.error.log
2075
+ - spec/support/logs/Instance - 3319-20111.error.log
2076
+ - spec/support/logs/Dispatcher - 1386-17419.log
2077
+ - spec/support/logs/Dispatcher - 3489-43230.log
2078
+ - spec/support/logs/Dispatcher - 32470-53874.log
2079
+ - spec/support/logs/Dispatcher - 5052-61726.log
2080
+ - spec/support/logs/Instance - 2901-30845.error.log
1888
2081
  - spec/support/lib/web_server_manager.rb
1889
2082
  - spec/support/lib/factory.rb
1890
2083
  - spec/support/lib/web_server_dispatcher.rb
@@ -1904,6 +2097,8 @@ test_files:
1904
2097
  - spec/support/shared/element/capabilities/submittable.rb
1905
2098
  - spec/support/shared/element/capabilities/with_source.rb
1906
2099
  - spec/support/shared/element/capabilities/dom_only.rb
2100
+ - spec/support/shared/element/capabilities/auditable/line_buffered.rb
2101
+ - spec/support/shared/element/capabilities/auditable/buffered.rb
1907
2102
  - spec/support/shared/element/capabilities/with_auditor.rb
1908
2103
  - spec/support/shared/element/capabilities/with_scope.rb
1909
2104
  - spec/support/shared/element/capabilities/with_dom.rb
@@ -1952,6 +2147,7 @@ test_files:
1952
2147
  - spec/components/plugins/http_dicattack_spec.rb
1953
2148
  - spec/components/plugins/waf_detector_spec.rb
1954
2149
  - spec/components/plugins/script_spec.rb
2150
+ - spec/components/plugins/webhook_notify_spec.rb
1955
2151
  - spec/components/plugins/cookie_collector_spec.rb
1956
2152
  - spec/components/plugins/uncommon_headers_spec.rb
1957
2153
  - spec/components/plugins/login_script_spec.rb
@@ -2229,9 +2425,17 @@ test_files:
2229
2425
  - spec/arachni/reporter/options_spec.rb
2230
2426
  - spec/arachni/reporter/manager_spec.rb
2231
2427
  - spec/arachni/reporter/base_spec.rb
2428
+ - spec/arachni/parser/document_spec.rb
2429
+ - spec/arachni/parser/nodes/comment_spec.rb
2430
+ - spec/arachni/parser/nodes/element/with_attributes/attributes_spec.rb
2431
+ - spec/arachni/parser/nodes/element/with_attributes_spec.rb
2432
+ - spec/arachni/parser/nodes/element_spec.rb
2433
+ - spec/arachni/parser/nodes/text_spec.rb
2434
+ - spec/arachni/parser/sax_spec.rb
2435
+ - spec/arachni/parser/with_children_spec.rb
2436
+ - spec/arachni/parser/with_children/search_spec.rb
2232
2437
  - spec/arachni/parser_spec.rb
2233
2438
  - spec/arachni/issue/severity/base_spec.rb
2234
2439
  - spec/arachni/issue/severity_spec.rb
2235
2440
  - spec/arachni/rest/server_spec.rb
2236
2441
  - spec/arachni/data_spec.rb
2237
- has_rdoc: