arachni 0.4.7 → 1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1585) hide show
  1. checksums.yaml +5 -13
  2. data/AUTHORS.md +1 -1
  3. data/CHANGELOG.md +211 -0
  4. data/CONTRIBUTORS.md +1 -0
  5. data/Gemfile +23 -2
  6. data/LICENSE.md +34 -1
  7. data/README.md +211 -127
  8. data/Rakefile +79 -67
  9. data/arachni.gemspec +54 -62
  10. data/bin/arachni +6 -18
  11. data/bin/arachni_console +5 -13
  12. data/bin/arachni_multi +6 -16
  13. data/bin/arachni_reporter +12 -0
  14. data/bin/arachni_restore +12 -0
  15. data/bin/arachni_rpc +6 -16
  16. data/bin/arachni_rpcd +6 -17
  17. data/bin/arachni_rpcd_monitor +6 -18
  18. data/bin/arachni_script +8 -19
  19. data/components/checks/active/code_injection.rb +123 -0
  20. data/components/checks/active/code_injection_php_input_wrapper.rb +99 -0
  21. data/components/checks/active/code_injection_timing.rb +106 -0
  22. data/components/checks/active/csrf.rb +218 -0
  23. data/components/checks/active/file_inclusion.rb +152 -0
  24. data/components/checks/active/ldap_injection.rb +109 -0
  25. data/{modules/audit/ldapi → components/checks/active/ldap_injection}/errors.txt +0 -0
  26. data/components/checks/active/no_sql_injection.rb +94 -0
  27. data/components/checks/active/no_sql_injection/patterns/mongodb +1 -0
  28. data/{extras/placeholder → components/checks/active/no_sql_injection/regexp_ignore.txt} +0 -0
  29. data/components/checks/active/no_sql_injection_differential.rb +78 -0
  30. data/components/checks/active/os_cmd_injection.rb +116 -0
  31. data/components/checks/active/os_cmd_injection_timing.rb +92 -0
  32. data/components/checks/active/path_traversal.rb +174 -0
  33. data/components/checks/active/response_splitting.rb +94 -0
  34. data/components/checks/active/rfi.rb +172 -0
  35. data/components/checks/active/session_fixation.rb +117 -0
  36. data/components/checks/active/source_code_disclosure.rb +177 -0
  37. data/components/checks/active/sql_injection.rb +123 -0
  38. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/access +0 -0
  39. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/coldfusion +0 -0
  40. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/db2 +0 -0
  41. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/emc +0 -0
  42. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/firebird +0 -0
  43. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/frontbase +0 -0
  44. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/hsqldb +0 -0
  45. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/informix +0 -0
  46. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/ingres +0 -0
  47. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/interbase +0 -0
  48. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/maxdb +0 -0
  49. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/mssql +0 -0
  50. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/mysql +0 -0
  51. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/oracle +0 -0
  52. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/pgsql +0 -0
  53. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/sqlite +0 -0
  54. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/sybase +0 -0
  55. data/{modules/audit/sqli → components/checks/active/sql_injection}/regexp_ignore.txt +0 -0
  56. data/components/checks/active/sql_injection_differential.rb +114 -0
  57. data/{modules/audit/sqli_blind_rdiff → components/checks/active/sql_injection_differential}/payloads.txt +0 -0
  58. data/components/checks/active/sql_injection_timing.rb +98 -0
  59. data/{modules/audit/sqli_blind_timing → components/checks/active/sql_injection_timing}/mssql.txt +0 -0
  60. data/{modules/audit/sqli_blind_timing → components/checks/active/sql_injection_timing}/mysql.txt +0 -0
  61. data/{modules/audit/sqli_blind_timing → components/checks/active/sql_injection_timing}/pgsql.txt +0 -0
  62. data/components/checks/active/trainer.rb +40 -0
  63. data/components/checks/active/unvalidated_redirect.rb +108 -0
  64. data/components/checks/active/xpath_injection.rb +87 -0
  65. data/{modules/audit/xpath → components/checks/active/xpath_injection}/errors.txt +0 -0
  66. data/components/checks/active/xss.rb +169 -0
  67. data/components/checks/active/xss_dom.rb +119 -0
  68. data/components/checks/active/xss_dom_inputs.rb +132 -0
  69. data/components/checks/active/xss_dom_script_context.rb +118 -0
  70. data/components/checks/active/xss_event.rb +165 -0
  71. data/components/checks/active/xss_path.rb +146 -0
  72. data/components/checks/active/xss_script_context.rb +207 -0
  73. data/components/checks/active/xss_tag.rb +135 -0
  74. data/components/checks/passive/allowed_methods.rb +92 -0
  75. data/components/checks/passive/backdoors.rb +79 -0
  76. data/{modules/recon → components/checks/passive}/backdoors/filenames.txt +0 -0
  77. data/components/checks/passive/backup_directories.rb +86 -0
  78. data/components/checks/passive/backup_directories/formats.txt +56 -0
  79. data/components/checks/passive/backup_files.rb +99 -0
  80. data/components/checks/passive/backup_files/formats.txt +106 -0
  81. data/components/checks/passive/common_directories.rb +81 -0
  82. data/{modules/recon → components/checks/passive}/common_directories/directories.txt +0 -0
  83. data/components/checks/passive/common_files.rb +73 -0
  84. data/components/checks/passive/common_files/filenames.txt +24 -0
  85. data/components/checks/passive/directory_listing.rb +129 -0
  86. data/components/checks/passive/grep/captcha.rb +73 -0
  87. data/components/checks/passive/grep/cookie_set_for_parent_domain.rb +71 -0
  88. data/components/checks/passive/grep/credit_card.rb +124 -0
  89. data/components/checks/passive/grep/cvs_svn_users.rb +75 -0
  90. data/components/checks/passive/grep/emails.rb +53 -0
  91. data/components/checks/passive/grep/form_upload.rb +75 -0
  92. data/components/checks/passive/grep/hsts.rb +74 -0
  93. data/components/checks/passive/grep/html_objects.rb +45 -0
  94. data/components/checks/passive/grep/http_only_cookies.rb +72 -0
  95. data/components/checks/passive/grep/insecure_cookies.rb +74 -0
  96. data/components/checks/passive/grep/mixed_resource.rb +109 -0
  97. data/components/checks/passive/grep/password_autocomplete.rb +80 -0
  98. data/components/checks/passive/grep/private_ip.rb +73 -0
  99. data/components/checks/passive/grep/ssn.rb +62 -0
  100. data/components/checks/passive/grep/unencrypted_password_forms.rb +88 -0
  101. data/components/checks/passive/htaccess_limit.rb +71 -0
  102. data/components/checks/passive/http_put.rb +91 -0
  103. data/components/checks/passive/interesting_responses.rb +88 -0
  104. data/components/checks/passive/localstart_asp.rb +88 -0
  105. data/components/checks/passive/origin_spoof_access_restriction_bypass.rb +83 -0
  106. data/components/checks/passive/webdav.rb +101 -0
  107. data/components/checks/passive/xst.rb +90 -0
  108. data/components/fingerprinters/frameworks/rack.rb +33 -0
  109. data/components/fingerprinters/languages/asp.rb +34 -0
  110. data/components/fingerprinters/languages/aspx.rb +55 -0
  111. data/components/fingerprinters/languages/jsp.rb +34 -0
  112. data/components/fingerprinters/languages/php.rb +35 -0
  113. data/components/fingerprinters/languages/python.rb +32 -0
  114. data/components/fingerprinters/languages/ruby.rb +33 -0
  115. data/components/fingerprinters/os/bsd.rb +28 -0
  116. data/components/fingerprinters/os/linux.rb +34 -0
  117. data/components/fingerprinters/os/solaris.rb +33 -0
  118. data/components/fingerprinters/os/unix.rb +28 -0
  119. data/components/fingerprinters/os/windows.rb +33 -0
  120. data/components/fingerprinters/servers/apache.rb +28 -0
  121. data/components/fingerprinters/servers/iis.rb +28 -0
  122. data/components/fingerprinters/servers/jetty.rb +28 -0
  123. data/components/fingerprinters/servers/nginx.rb +28 -0
  124. data/components/fingerprinters/servers/tomcat.rb +28 -0
  125. data/components/path_extractors/anchors.rb +29 -0
  126. data/components/path_extractors/areas.rb +29 -0
  127. data/components/path_extractors/comments.rb +21 -0
  128. data/components/path_extractors/forms.rb +29 -0
  129. data/components/path_extractors/frames.rb +29 -0
  130. data/components/path_extractors/generic.rb +76 -0
  131. data/components/path_extractors/links.rb +29 -0
  132. data/components/path_extractors/meta_refresh.rb +50 -0
  133. data/components/path_extractors/scripts.rb +31 -0
  134. data/components/plugins/autologin.rb +120 -0
  135. data/components/plugins/beep_notify.rb +43 -0
  136. data/components/plugins/content_types.rb +110 -0
  137. data/components/plugins/cookie_collector.rb +94 -0
  138. data/components/plugins/defaults/autothrottle.rb +73 -0
  139. data/components/plugins/defaults/healthmap.rb +79 -0
  140. data/components/plugins/defaults/meta/remedies/discovery.rb +122 -0
  141. data/components/plugins/defaults/meta/remedies/timing_attacks.rb +98 -0
  142. data/components/plugins/defaults/meta/uniformity.rb +55 -0
  143. data/components/plugins/email_notify.rb +112 -0
  144. data/components/plugins/form_dicattack.rb +128 -0
  145. data/components/plugins/http_dicattack.rb +102 -0
  146. data/components/plugins/proxy.rb +492 -0
  147. data/{plugins → components/plugins}/proxy/panel/403_forbidden.html.erb +0 -0
  148. data/{plugins → components/plugins}/proxy/panel/404_not_found.html.erb +0 -0
  149. data/{plugins → components/plugins}/proxy/panel/css/bootstrap-responsive.css +0 -0
  150. data/{plugins → components/plugins}/proxy/panel/css/bootstrap.min.css +0 -0
  151. data/{plugins → components/plugins}/proxy/panel/css/panel.css +0 -0
  152. data/{plugins → components/plugins}/proxy/panel/help.html.erb +0 -0
  153. data/{plugins → components/plugins}/proxy/panel/img/glyphicons-halflings-white.png +0 -0
  154. data/{plugins → components/plugins}/proxy/panel/img/glyphicons-halflings.png +0 -0
  155. data/{plugins → components/plugins}/proxy/panel/img/record.png +0 -0
  156. data/{plugins → components/plugins}/proxy/panel/inspect.html.erb +0 -0
  157. data/{plugins → components/plugins}/proxy/panel/js/bootstrap.min.js +0 -0
  158. data/{plugins → components/plugins}/proxy/panel/js/jquery.min.js +0 -0
  159. data/{plugins → components/plugins}/proxy/panel/js/panel.js +0 -0
  160. data/{plugins → components/plugins}/proxy/panel/layout.html.erb +0 -0
  161. data/components/plugins/proxy/panel/page_accordion.html.erb +67 -0
  162. data/{plugins → components/plugins}/proxy/panel/page_twin_accordion.html.erb +0 -0
  163. data/components/plugins/proxy/panel/panel.html.erb +69 -0
  164. data/{plugins → components/plugins}/proxy/panel/shutdown_message.html.erb +0 -0
  165. data/{plugins → components/plugins}/proxy/panel/sign_in.html.erb +0 -0
  166. data/{plugins → components/plugins}/proxy/panel/vectors.yml.erb +0 -0
  167. data/{plugins → components/plugins}/proxy/panel/verify_login_check.html.erb +0 -0
  168. data/{plugins → components/plugins}/proxy/panel/verify_login_final.html.erb +0 -0
  169. data/components/plugins/proxy/panel/verify_login_sequence.html.erb +45 -0
  170. data/components/plugins/proxy/template_scope.rb +130 -0
  171. data/components/plugins/script.rb +48 -0
  172. data/components/plugins/uncommon_headers.rb +92 -0
  173. data/components/plugins/vector_feed.rb +225 -0
  174. data/components/plugins/waf_detector.rb +169 -0
  175. data/components/reporters/ap.rb +38 -0
  176. data/components/reporters/html.rb +468 -0
  177. data/components/reporters/html/default.erb +68 -0
  178. data/components/reporters/html/default/configuration.erb +78 -0
  179. data/components/reporters/html/default/css/lib/bootstrap-theme.min.css +7 -0
  180. data/components/reporters/html/default/css/lib/bootstrap.min.css +7 -0
  181. data/components/reporters/html/default/css/lib/c3.css +203 -0
  182. data/components/reporters/html/default/css/lib/font-awesome.min.css +4 -0
  183. data/components/reporters/html/default/css/main.css +140 -0
  184. data/components/reporters/html/default/fonts/FontAwesome.otf +0 -0
  185. data/components/reporters/html/default/fonts/fontawesome-webfont.eot +0 -0
  186. data/components/reporters/html/default/fonts/fontawesome-webfont.svg +504 -0
  187. data/components/reporters/html/default/fonts/fontawesome-webfont.ttf +0 -0
  188. data/components/reporters/html/default/fonts/fontawesome-webfont.woff +0 -0
  189. data/components/reporters/html/default/fonts/glyphicons-halflings-regular.eot +0 -0
  190. data/components/reporters/html/default/fonts/glyphicons-halflings-regular.svg +229 -0
  191. data/components/reporters/html/default/fonts/glyphicons-halflings-regular.ttf +0 -0
  192. data/components/reporters/html/default/fonts/glyphicons-halflings-regular.woff +0 -0
  193. data/components/reporters/html/default/issue.erb +81 -0
  194. data/components/reporters/html/default/issue/details.erb +68 -0
  195. data/components/reporters/html/default/issue/info.erb +74 -0
  196. data/components/reporters/html/default/issue/page.erb +117 -0
  197. data/components/reporters/html/default/issue/page/body.erb +42 -0
  198. data/components/reporters/html/default/issue/page/sink/data_flow.erb +95 -0
  199. data/components/reporters/html/default/issue/page/sink/data_flow/arguments.erb +70 -0
  200. data/components/reporters/html/default/issue/page/sink/data_flow/source.erb +1 -0
  201. data/components/reporters/html/default/issue/page/sink/execution_flow.erb +63 -0
  202. data/components/reporters/html/default/issue/page/sink/frame/source.erb +32 -0
  203. data/components/reporters/html/default/issue/page/sink/trace/table.erb +127 -0
  204. data/components/reporters/html/default/issue/page/transitions.erb +86 -0
  205. data/components/reporters/html/default/issue/platform.erb +8 -0
  206. data/components/reporters/html/default/issue/remarks.erb +28 -0
  207. data/components/reporters/html/default/issue/vector.erb +40 -0
  208. data/components/reporters/html/default/issues.erb +46 -0
  209. data/components/reporters/html/default/issues/grouped.erb +147 -0
  210. data/components/reporters/html/default/js/charts.js.erb +117 -0
  211. data/components/reporters/html/default/js/configuration.js.erb +12 -0
  212. data/components/reporters/html/default/js/helpers.js +107 -0
  213. data/components/reporters/html/default/js/init.js.erb +23 -0
  214. data/components/reporters/html/default/js/lib/bootstrap.min.js +6 -0
  215. data/components/reporters/html/default/js/lib/c3.min.js +3 -0
  216. data/components/reporters/html/default/js/lib/d3.min.js +5 -0
  217. data/components/reporters/html/default/js/lib/jquery.min.js +4 -0
  218. data/components/reporters/html/default/navigation.erb +136 -0
  219. data/components/reporters/html/default/plugins.erb +30 -0
  220. data/components/reporters/html/default/shared/hash.erb +10 -0
  221. data/components/reporters/html/default/shared/hash_table.erb +22 -0
  222. data/components/reporters/html/default/sitemap.erb +29 -0
  223. data/components/reporters/html/default/summary.erb +34 -0
  224. data/components/reporters/html/default/summary/charts.erb +67 -0
  225. data/components/reporters/html/default/summary/issues.erb +129 -0
  226. data/components/reporters/json.rb +44 -0
  227. data/components/reporters/marshal.rb +38 -0
  228. data/components/reporters/plugin_formatters/html/autologin.rb +50 -0
  229. data/components/reporters/plugin_formatters/html/content_types.rb +59 -0
  230. data/components/reporters/plugin_formatters/html/cookie_collector.rb +46 -0
  231. data/components/reporters/plugin_formatters/html/form_dicattack.rb +36 -0
  232. data/components/reporters/plugin_formatters/html/healthmap.rb +88 -0
  233. data/components/reporters/plugin_formatters/html/http_dicattack.rb +36 -0
  234. data/components/reporters/plugin_formatters/html/uncommon_headers.rb +40 -0
  235. data/components/reporters/plugin_formatters/html/uniformity.rb +55 -0
  236. data/components/reporters/plugin_formatters/html/waf_detector.rb +69 -0
  237. data/components/reporters/plugin_formatters/stdout/autologin.rb +25 -0
  238. data/components/reporters/plugin_formatters/stdout/content_types.rb +39 -0
  239. data/components/reporters/plugin_formatters/stdout/cookie_collector.rb +31 -0
  240. data/components/reporters/plugin_formatters/stdout/form_dicattack.rb +24 -0
  241. data/components/reporters/plugin_formatters/stdout/healthmap.rb +41 -0
  242. data/components/reporters/plugin_formatters/stdout/http_dicattack.rb +24 -0
  243. data/components/reporters/plugin_formatters/stdout/uncommon_headers.rb +29 -0
  244. data/components/reporters/plugin_formatters/stdout/uniformity.rb +35 -0
  245. data/components/reporters/plugin_formatters/stdout/waf_detector.rb +21 -0
  246. data/components/reporters/plugin_formatters/xml/autologin.rb +28 -0
  247. data/components/reporters/plugin_formatters/xml/content_types.rb +36 -0
  248. data/components/reporters/plugin_formatters/xml/cookie_collector.rb +32 -0
  249. data/components/reporters/plugin_formatters/xml/form_dicattack.rb +22 -0
  250. data/components/reporters/plugin_formatters/xml/healthmap.rb +30 -0
  251. data/components/reporters/plugin_formatters/xml/http_dicattack.rb +22 -0
  252. data/components/reporters/plugin_formatters/xml/uncommon_headers.rb +29 -0
  253. data/components/reporters/plugin_formatters/xml/uniformity.rb +23 -0
  254. data/components/reporters/plugin_formatters/xml/waf_detector.rb +22 -0
  255. data/components/reporters/stdout.rb +226 -0
  256. data/components/reporters/txt.rb +50 -0
  257. data/components/reporters/xml.rb +285 -0
  258. data/components/reporters/xml/schema.xsd +664 -0
  259. data/components/reporters/yaml.rb +37 -0
  260. data/{rpcd_handlers → components/services}/placeholder +0 -0
  261. data/lib/arachni.rb +29 -18
  262. data/lib/arachni/banner.rb +5 -13
  263. data/lib/arachni/browser.rb +1292 -0
  264. data/lib/arachni/browser/element_locator.rb +137 -0
  265. data/lib/arachni/browser/javascript.rb +383 -0
  266. data/lib/arachni/browser/javascript/dom_monitor.rb +31 -0
  267. data/lib/arachni/browser/javascript/proxy.rb +92 -0
  268. data/lib/arachni/browser/javascript/proxy/stub.rb +90 -0
  269. data/lib/arachni/browser/javascript/scripts/dom_monitor.js +146 -0
  270. data/lib/arachni/browser/javascript/scripts/taint_tracer.js +486 -0
  271. data/lib/arachni/browser/javascript/taint_tracer.rb +101 -0
  272. data/lib/arachni/browser/javascript/taint_tracer/frame.rb +73 -0
  273. data/lib/arachni/browser/javascript/taint_tracer/frame/called_function.rb +78 -0
  274. data/lib/arachni/browser/javascript/taint_tracer/sink/base.rb +63 -0
  275. data/lib/arachni/browser/javascript/taint_tracer/sink/data_flow.rb +83 -0
  276. data/lib/arachni/browser/javascript/taint_tracer/sink/execution_flow.rb +30 -0
  277. data/lib/arachni/browser_cluster.rb +414 -0
  278. data/lib/arachni/browser_cluster/job.rb +193 -0
  279. data/lib/arachni/browser_cluster/job/result.rb +29 -0
  280. data/lib/arachni/browser_cluster/jobs/browser_provider.rb +27 -0
  281. data/lib/arachni/browser_cluster/jobs/resource_exploration.rb +60 -0
  282. data/lib/arachni/browser_cluster/jobs/resource_exploration/event_trigger.rb +43 -0
  283. data/lib/arachni/browser_cluster/jobs/resource_exploration/event_trigger/result.rb +23 -0
  284. data/lib/arachni/browser_cluster/jobs/resource_exploration/result.rb +23 -0
  285. data/lib/arachni/browser_cluster/jobs/taint_trace.rb +48 -0
  286. data/lib/arachni/browser_cluster/jobs/taint_trace/event_trigger.rb +33 -0
  287. data/lib/arachni/browser_cluster/jobs/taint_trace/event_trigger/result.rb +23 -0
  288. data/lib/arachni/browser_cluster/jobs/taint_trace/result.rb +23 -0
  289. data/lib/arachni/browser_cluster/worker.rb +277 -0
  290. data/lib/arachni/check.rb +12 -0
  291. data/lib/arachni/check/auditor.rb +612 -0
  292. data/lib/arachni/check/base.rb +177 -0
  293. data/lib/arachni/check/manager.rb +137 -0
  294. data/lib/arachni/component.rb +11 -0
  295. data/lib/arachni/component/base.rb +62 -0
  296. data/lib/arachni/component/manager.rb +92 -90
  297. data/lib/arachni/component/options.rb +6 -28
  298. data/lib/arachni/component/options/address.rb +14 -30
  299. data/lib/arachni/component/options/base.rb +96 -81
  300. data/lib/arachni/component/options/bool.rb +20 -37
  301. data/lib/arachni/component/options/float.rb +12 -31
  302. data/lib/arachni/component/options/int.rb +14 -31
  303. data/lib/arachni/component/options/multiple_choice.rb +40 -0
  304. data/lib/arachni/component/options/object.rb +16 -0
  305. data/lib/arachni/component/options/path.rb +12 -25
  306. data/lib/arachni/component/options/port.rb +15 -25
  307. data/lib/arachni/component/options/string.rb +10 -32
  308. data/lib/arachni/component/options/url.rb +15 -30
  309. data/lib/arachni/component/output.rb +33 -0
  310. data/lib/arachni/component/utilities.rb +49 -0
  311. data/lib/arachni/data.rb +109 -0
  312. data/lib/arachni/data/framework.rb +160 -0
  313. data/lib/arachni/data/framework/rpc.rb +68 -0
  314. data/lib/arachni/data/issues.rb +227 -0
  315. data/lib/arachni/data/plugins.rb +109 -0
  316. data/lib/arachni/data/session.rb +48 -0
  317. data/lib/arachni/element/base.rb +131 -82
  318. data/lib/arachni/element/body.rb +43 -13
  319. data/lib/arachni/element/capabilities/analyzable.rb +46 -0
  320. data/lib/arachni/element/capabilities/analyzable/differential.rb +436 -0
  321. data/lib/arachni/element/capabilities/analyzable/taint.rb +218 -0
  322. data/lib/arachni/element/capabilities/analyzable/timeout.rb +433 -0
  323. data/lib/arachni/element/capabilities/auditable.rb +172 -577
  324. data/lib/arachni/element/capabilities/auditable/dom.rb +156 -0
  325. data/lib/arachni/element/capabilities/inputtable.rb +267 -0
  326. data/lib/arachni/element/capabilities/mutable.rb +197 -155
  327. data/lib/arachni/element/capabilities/refreshable.rb +31 -24
  328. data/lib/arachni/element/capabilities/submittable.rb +128 -0
  329. data/lib/arachni/element/capabilities/with_auditor.rb +60 -0
  330. data/lib/arachni/element/capabilities/with_auditor/output.rb +33 -0
  331. data/lib/arachni/element/capabilities/with_dom.rb +40 -0
  332. data/lib/arachni/element/capabilities/with_node.rb +52 -0
  333. data/lib/arachni/element/capabilities/with_scope.rb +25 -0
  334. data/lib/arachni/element/capabilities/with_scope/scope.rb +38 -0
  335. data/lib/arachni/element/cookie.rb +337 -862
  336. data/lib/arachni/element/cookie/dom.rb +67 -0
  337. data/lib/arachni/element/form.rb +326 -756
  338. data/lib/arachni/element/form/dom.rb +52 -0
  339. data/lib/arachni/element/generic_dom.rb +133 -0
  340. data/lib/arachni/element/header.rb +46 -46
  341. data/lib/arachni/element/link.rb +134 -172
  342. data/lib/arachni/element/link/dom.rb +128 -0
  343. data/lib/arachni/element/link_template.rb +268 -0
  344. data/lib/arachni/element/link_template/dom.rb +143 -0
  345. data/lib/arachni/element/path.rb +24 -13
  346. data/lib/arachni/element/server.rb +89 -13
  347. data/lib/arachni/element_filter.rb +101 -99
  348. data/lib/arachni/error.rb +5 -15
  349. data/lib/arachni/ethon/easy.rb +22 -0
  350. data/lib/arachni/framework.rb +841 -476
  351. data/lib/arachni/http.rb +6 -714
  352. data/lib/arachni/http/client.rb +801 -0
  353. data/lib/arachni/http/cookie_jar.rb +50 -51
  354. data/lib/arachni/http/headers.rb +122 -0
  355. data/lib/arachni/http/message.rb +76 -0
  356. data/lib/arachni/http/message/scope.rb +35 -0
  357. data/lib/arachni/http/proxy_server.rb +303 -0
  358. data/{plugins/proxy → lib/arachni/http/proxy_server}/ssl-interceptor-cert.pem +0 -0
  359. data/{plugins/proxy → lib/arachni/http/proxy_server}/ssl-interceptor-pkey.pem +0 -0
  360. data/lib/arachni/http/request.rb +471 -0
  361. data/lib/arachni/http/request/scope.rb +30 -0
  362. data/lib/arachni/http/response.rb +226 -0
  363. data/lib/arachni/http/response/scope.rb +67 -0
  364. data/lib/arachni/issue.rb +389 -223
  365. data/lib/arachni/issue/severity.rb +34 -0
  366. data/lib/arachni/issue/severity/base.rb +39 -0
  367. data/lib/arachni/option_group.rb +137 -0
  368. data/lib/arachni/option_groups.rb +13 -0
  369. data/lib/arachni/option_groups/audit.rb +226 -0
  370. data/lib/arachni/option_groups/browser_cluster.rb +50 -0
  371. data/lib/arachni/option_groups/datastore.rb +31 -0
  372. data/lib/arachni/option_groups/dispatcher.rb +132 -0
  373. data/lib/arachni/option_groups/http.rb +174 -0
  374. data/lib/arachni/option_groups/input.rb +156 -0
  375. data/lib/arachni/option_groups/output.rb +22 -0
  376. data/lib/arachni/option_groups/paths.rb +63 -0
  377. data/lib/arachni/option_groups/rpc.rb +87 -0
  378. data/lib/arachni/option_groups/scope.rb +233 -0
  379. data/lib/arachni/option_groups/session.rb +54 -0
  380. data/lib/arachni/option_groups/snapshot.rb +22 -0
  381. data/lib/arachni/options.rb +286 -1486
  382. data/lib/arachni/page.rb +504 -108
  383. data/lib/arachni/page/dom.rb +280 -0
  384. data/lib/arachni/page/dom/transition.rb +302 -0
  385. data/lib/arachni/page/scope.rb +53 -0
  386. data/lib/arachni/parser.rb +177 -210
  387. data/lib/arachni/platform.rb +5 -13
  388. data/lib/arachni/platform/fingerprinter.rb +24 -23
  389. data/lib/arachni/platform/list.rb +48 -27
  390. data/lib/arachni/platform/manager.rb +146 -83
  391. data/lib/arachni/plugin.rb +5 -13
  392. data/lib/arachni/plugin/base.rb +90 -110
  393. data/lib/arachni/plugin/formatter.rb +40 -0
  394. data/lib/arachni/plugin/manager.rb +129 -108
  395. data/lib/arachni/processes.rb +6 -14
  396. data/lib/arachni/processes/dispatchers.rb +51 -58
  397. data/lib/arachni/processes/executables/base.rb +9 -0
  398. data/lib/arachni/processes/executables/dispatcher.rb +6 -0
  399. data/lib/arachni/processes/executables/instance.rb +13 -0
  400. data/lib/arachni/processes/helpers.rb +4 -12
  401. data/lib/arachni/processes/helpers/dispatchers.rb +8 -12
  402. data/lib/arachni/processes/helpers/instances.rb +13 -13
  403. data/lib/arachni/processes/helpers/processes.rb +8 -28
  404. data/lib/arachni/processes/instances.rb +86 -63
  405. data/lib/arachni/processes/manager.rb +89 -52
  406. data/lib/arachni/report.rb +282 -15
  407. data/lib/arachni/reporter.rb +12 -0
  408. data/lib/arachni/reporter/base.rb +126 -0
  409. data/lib/arachni/reporter/formatter_manager.rb +20 -0
  410. data/lib/arachni/reporter/manager.rb +54 -0
  411. data/lib/arachni/reporter/options.rb +47 -0
  412. data/lib/arachni/rpc/client/base.rb +27 -35
  413. data/lib/arachni/rpc/client/dispatcher.rb +13 -21
  414. data/lib/arachni/rpc/client/instance.rb +45 -40
  415. data/lib/arachni/rpc/client/instance/framework.rb +88 -0
  416. data/lib/arachni/rpc/client/instance/service.rb +106 -0
  417. data/lib/arachni/rpc/serializer.rb +98 -0
  418. data/lib/arachni/rpc/server/active_options.rb +26 -42
  419. data/lib/arachni/rpc/server/base.rb +35 -26
  420. data/lib/arachni/rpc/server/check/manager.rb +38 -0
  421. data/lib/arachni/rpc/server/dispatcher.rb +125 -211
  422. data/lib/arachni/rpc/server/dispatcher/node.rb +36 -50
  423. data/lib/arachni/rpc/server/dispatcher/service.rb +153 -0
  424. data/lib/arachni/rpc/server/framework.rb +83 -176
  425. data/lib/arachni/rpc/server/framework/distributor.rb +292 -271
  426. data/lib/arachni/rpc/server/framework/master.rb +164 -296
  427. data/lib/arachni/rpc/server/framework/multi_instance.rb +96 -128
  428. data/lib/arachni/rpc/server/framework/slave.rb +79 -89
  429. data/lib/arachni/rpc/server/instance.rb +362 -413
  430. data/lib/arachni/rpc/server/output.rb +33 -147
  431. data/lib/arachni/rpc/server/plugin/manager.rb +18 -54
  432. data/lib/arachni/ruby.rb +5 -14
  433. data/lib/arachni/ruby/array.rb +4 -14
  434. data/lib/arachni/ruby/hash.rb +47 -15
  435. data/lib/arachni/ruby/io.rb +4 -14
  436. data/lib/arachni/ruby/object.rb +10 -52
  437. data/lib/arachni/ruby/set.rb +4 -12
  438. data/lib/arachni/ruby/string.rb +60 -40
  439. data/lib/arachni/ruby/webrick.rb +4 -12
  440. data/lib/arachni/ruby/webrick/cookie.rb +4 -12
  441. data/lib/arachni/ruby/webrick/httprequest.rb +4 -12
  442. data/lib/arachni/scope.rb +40 -0
  443. data/lib/arachni/selenium/webdriver/remote/http/typhoeus.rb +46 -0
  444. data/lib/arachni/session.rb +150 -173
  445. data/lib/arachni/snapshot.rb +181 -0
  446. data/lib/arachni/state.rb +122 -0
  447. data/lib/arachni/state/audit.rb +57 -0
  448. data/lib/arachni/state/element_filter.rb +67 -0
  449. data/lib/arachni/state/framework.rb +419 -0
  450. data/lib/arachni/state/framework/rpc.rb +63 -0
  451. data/lib/arachni/state/http.rb +60 -0
  452. data/lib/arachni/state/options.rb +39 -0
  453. data/lib/arachni/state/plugins.rb +94 -0
  454. data/lib/arachni/support.rb +6 -15
  455. data/lib/arachni/support/buffer.rb +5 -13
  456. data/lib/arachni/support/buffer/autoflush.rb +5 -15
  457. data/lib/arachni/support/buffer/base.rb +41 -70
  458. data/lib/arachni/support/cache.rb +5 -13
  459. data/lib/arachni/support/cache/base.rb +45 -50
  460. data/lib/arachni/support/cache/least_cost_replacement.rb +9 -19
  461. data/lib/arachni/support/cache/least_recently_used.rb +5 -15
  462. data/lib/arachni/support/cache/preference.rb +11 -20
  463. data/lib/arachni/support/cache/random_replacement.rb +10 -15
  464. data/lib/arachni/support/crypto.rb +5 -13
  465. data/lib/arachni/support/crypto/rsa_aes_cbc.rb +15 -27
  466. data/lib/arachni/support/database.rb +5 -13
  467. data/lib/arachni/support/database/base.rb +20 -37
  468. data/lib/arachni/support/database/hash.rb +265 -350
  469. data/lib/arachni/support/database/queue.rb +86 -27
  470. data/lib/arachni/support/lookup.rb +5 -13
  471. data/lib/arachni/support/lookup/base.rb +33 -26
  472. data/lib/arachni/support/lookup/hash_set.rb +11 -15
  473. data/lib/arachni/support/lookup/moolb.rb +9 -20
  474. data/lib/arachni/support/mixins.rb +14 -0
  475. data/lib/arachni/support/mixins/observable.rb +105 -0
  476. data/lib/arachni/support/mixins/terminal.rb +65 -0
  477. data/lib/arachni/support/profiler.rb +130 -0
  478. data/lib/arachni/support/signature.rb +37 -67
  479. data/lib/arachni/trainer.rb +57 -97
  480. data/lib/arachni/ui/foo/output.rb +31 -33
  481. data/lib/arachni/uri.rb +456 -462
  482. data/lib/arachni/uri/scope.rb +168 -0
  483. data/lib/arachni/utilities.rb +125 -147
  484. data/lib/arachni/version.rb +4 -12
  485. data/lib/arachni/watir/element.rb +17 -0
  486. data/lib/version +1 -1
  487. data/{spec/support/servers/modules/audit/sqli/jdbc → profiles/placeholder} +0 -0
  488. data/spec/arachni/browser/element_locator_spec.rb +228 -0
  489. data/spec/arachni/browser/javascript/dom_monitor_spec.rb +195 -0
  490. data/spec/arachni/browser/javascript/proxy/stub_spec.rb +106 -0
  491. data/spec/arachni/browser/javascript/proxy_spec.rb +144 -0
  492. data/spec/arachni/browser/javascript/taint_tracer/frame/called_function_spec.rb +72 -0
  493. data/spec/arachni/browser/javascript/taint_tracer/frame_spec.rb +46 -0
  494. data/spec/arachni/browser/javascript/taint_tracer/sink/data_flow_spec.rb +81 -0
  495. data/spec/arachni/browser/javascript/taint_tracer/sink/execution_flow_spec.rb +47 -0
  496. data/spec/arachni/browser/javascript/taint_tracer_spec.rb +1304 -0
  497. data/spec/arachni/browser/javascript_spec.rb +355 -0
  498. data/spec/arachni/browser_cluster/job/result_spec.rb +14 -0
  499. data/spec/arachni/browser_cluster/job_spec.rb +264 -0
  500. data/spec/arachni/browser_cluster/jobs/resource_exploration/event_trigger/result_spec.rb +7 -0
  501. data/spec/arachni/browser_cluster/jobs/resource_exploration/event_trigger_spec.rb +68 -0
  502. data/spec/arachni/browser_cluster/jobs/resource_exploration/result_spec.rb +7 -0
  503. data/spec/arachni/browser_cluster/jobs/resource_exploration_spec.rb +89 -0
  504. data/spec/arachni/browser_cluster/jobs/taint_tracer_spec.rb +149 -0
  505. data/spec/arachni/browser_cluster/worker_spec.rb +314 -0
  506. data/spec/arachni/browser_cluster_spec.rb +543 -0
  507. data/spec/arachni/browser_spec.rb +2368 -0
  508. data/spec/arachni/check/auditor_spec.rb +1089 -0
  509. data/spec/arachni/check/base_spec.rb +33 -0
  510. data/spec/arachni/check/manager_spec.rb +100 -0
  511. data/spec/arachni/component/base_spec.rb +64 -0
  512. data/spec/arachni/component/manager_spec.rb +37 -26
  513. data/spec/arachni/component/options/address_spec.rb +5 -11
  514. data/spec/arachni/component/options/base_spec.rb +29 -81
  515. data/spec/arachni/component/options/bool_spec.rb +16 -19
  516. data/spec/arachni/component/options/float_spec.rb +17 -16
  517. data/spec/arachni/component/options/int_spec.rb +17 -20
  518. data/spec/arachni/component/options/multiple_choice_spec.rb +82 -0
  519. data/spec/arachni/component/options/object_spec.rb +24 -0
  520. data/spec/arachni/component/options/path_spec.rb +8 -11
  521. data/spec/arachni/component/options/port_spec.rb +16 -15
  522. data/spec/arachni/component/options/string_spec.rb +8 -17
  523. data/spec/arachni/component/options/url_spec.rb +16 -14
  524. data/spec/arachni/component/utilities_spec.rb +30 -0
  525. data/spec/arachni/{module → component}/utilities_spec/read_file.txt +0 -0
  526. data/spec/arachni/data/framework/rpc_spec.rb +72 -0
  527. data/spec/arachni/data/framework_spec.rb +266 -0
  528. data/spec/arachni/data/issues_spec.rb +347 -0
  529. data/spec/arachni/data/plugins_spec.rb +102 -0
  530. data/spec/arachni/data/session_spec.rb +59 -0
  531. data/spec/arachni/data_spec.rb +71 -0
  532. data/spec/arachni/element/body_spec.rb +63 -4
  533. data/spec/arachni/element/capabilities/analyzable/differential_spec.rb +135 -0
  534. data/spec/arachni/element/capabilities/analyzable/taint_spec.rb +355 -0
  535. data/spec/arachni/element/capabilities/analyzable/timeout_spec.rb +386 -0
  536. data/spec/arachni/element/capabilities/with_scope/scope_spec.rb +25 -0
  537. data/spec/arachni/element/cookie/dom_spec.rb +145 -0
  538. data/spec/arachni/element/cookie_spec.rb +147 -108
  539. data/spec/arachni/element/form/dom_spec.rb +146 -0
  540. data/spec/arachni/element/form_spec.rb +519 -271
  541. data/spec/arachni/element/generic_dom_spec.rb +113 -0
  542. data/spec/arachni/element/header_spec.rb +68 -20
  543. data/spec/arachni/element/link/dom_spec.rb +206 -0
  544. data/spec/arachni/element/link_spec.rb +218 -130
  545. data/spec/arachni/element/link_template/dom_spec.rb +218 -0
  546. data/spec/arachni/element/link_template_spec.rb +403 -0
  547. data/spec/arachni/element/path_spec.rb +28 -4
  548. data/spec/arachni/element/server_spec.rb +171 -4
  549. data/spec/arachni/element_filter_spec.rb +227 -96
  550. data/spec/arachni/framework_spec.rb +1099 -759
  551. data/spec/arachni/http/client_spec.rb +1470 -0
  552. data/spec/arachni/http/cookie_jar_spec.rb +164 -130
  553. data/spec/arachni/http/headers_spec.rb +111 -0
  554. data/spec/arachni/http/message_spec.rb +5 -0
  555. data/spec/arachni/http/proxy_server_spec.rb +354 -0
  556. data/spec/arachni/http/request_spec.rb +602 -0
  557. data/spec/arachni/http/response/scope_spec.rb +135 -0
  558. data/spec/arachni/http/response_spec.rb +350 -0
  559. data/spec/arachni/issue/severity/base_spec.rb +15 -0
  560. data/spec/arachni/issue/severity_spec.rb +43 -0
  561. data/spec/arachni/issue_spec.rb +547 -284
  562. data/spec/arachni/option_groups/audit_spec.rb +298 -0
  563. data/spec/arachni/option_groups/browser_cluster_spec.rb +12 -0
  564. data/spec/arachni/option_groups/datastore_spec.rb +54 -0
  565. data/spec/arachni/option_groups/dispatcher_spec.rb +123 -0
  566. data/spec/arachni/option_groups/http_spec.rb +42 -0
  567. data/spec/arachni/option_groups/input_spec.rb +202 -0
  568. data/spec/arachni/option_groups/output_spec.rb +11 -0
  569. data/spec/arachni/option_groups/paths_spec.rb +34 -0
  570. data/spec/arachni/option_groups/rpc_spec.rb +13 -0
  571. data/spec/arachni/option_groups/scope_spec.rb +237 -0
  572. data/spec/arachni/option_groups/session_spec.rb +51 -0
  573. data/spec/arachni/option_groups/snapshot_spec.rb +11 -0
  574. data/spec/arachni/options_spec.rb +202 -756
  575. data/spec/arachni/page/dom/transition_spec.rb +515 -0
  576. data/spec/arachni/page/dom_spec.rb +308 -0
  577. data/spec/arachni/page/scope_spec.rb +80 -0
  578. data/spec/arachni/page_spec.rb +789 -175
  579. data/spec/arachni/parser_spec.rb +308 -200
  580. data/spec/arachni/platform/fingerprinter_spec.rb +51 -52
  581. data/spec/arachni/platform/manager_spec.rb +146 -34
  582. data/spec/arachni/plugin/base_spec.rb +97 -0
  583. data/spec/arachni/plugin/manager_spec.rb +186 -80
  584. data/spec/arachni/report_spec.rb +275 -0
  585. data/spec/arachni/reporter/base_spec.rb +96 -0
  586. data/spec/arachni/reporter/manager_spec.rb +38 -0
  587. data/spec/arachni/reporter/options_spec.rb +48 -0
  588. data/spec/arachni/rpc/client/base_spec.rb +43 -45
  589. data/spec/arachni/rpc/client/dispatcher_spec.rb +3 -3
  590. data/spec/arachni/rpc/client/instance_spec.rb +18 -40
  591. data/spec/arachni/rpc/server/active_options_spec.rb +35 -296
  592. data/spec/arachni/rpc/server/base_spec.rb +12 -6
  593. data/spec/arachni/rpc/server/checks/manager_spec.rb +48 -0
  594. data/spec/arachni/rpc/server/dispatcher/node_spec.rb +47 -74
  595. data/spec/arachni/rpc/server/dispatcher/service_spec.rb +99 -0
  596. data/spec/arachni/rpc/server/dispatcher_spec.rb +77 -38
  597. data/spec/arachni/rpc/server/framework/distributor_spec.rb +356 -396
  598. data/spec/arachni/rpc/server/framework_multi_spec.rb +336 -0
  599. data/spec/arachni/rpc/server/framework_spec.rb +396 -0
  600. data/spec/arachni/rpc/server/instance_spec.rb +480 -281
  601. data/spec/arachni/rpc/server/output_spec.rb +9 -212
  602. data/spec/arachni/rpc/server/plugin/manager_spec.rb +6 -11
  603. data/spec/arachni/ruby/hash_spec.rb +30 -0
  604. data/spec/arachni/ruby/object_spec.rb +0 -16
  605. data/spec/arachni/ruby/string_spec.rb +98 -6
  606. data/spec/arachni/scope_spec.rb +13 -0
  607. data/spec/arachni/session_spec.rb +279 -251
  608. data/spec/arachni/snapshot_spec.rb +127 -0
  609. data/spec/arachni/state/audit_spec.rb +107 -0
  610. data/spec/arachni/state/element_filter_spec.rb +66 -0
  611. data/spec/arachni/state/framework/rpc_spec.rb +85 -0
  612. data/spec/arachni/state/framework_spec.rb +853 -0
  613. data/spec/arachni/state/http_spec.rb +63 -0
  614. data/spec/arachni/state/options_spec.rb +55 -0
  615. data/spec/arachni/state/plugins_spec.rb +76 -0
  616. data/spec/arachni/state_spec.rb +87 -0
  617. data/spec/arachni/support/cache/least_cost_replacement_spec.rb +30 -32
  618. data/spec/arachni/support/cache/least_recently_used_spec.rb +39 -40
  619. data/spec/arachni/support/cache/preference_spec.rb +17 -18
  620. data/spec/arachni/support/cache/random_replacement_spec.rb +19 -20
  621. data/spec/arachni/support/database/queue_spec.rb +200 -32
  622. data/spec/arachni/support/lookup/hash_set_spec.rb +74 -0
  623. data/spec/arachni/support/mixins/observable_spec.rb +81 -0
  624. data/spec/arachni/support/signature_spec.rb +9 -25
  625. data/spec/arachni/trainer_spec.rb +141 -124
  626. data/spec/arachni/uri/scope_spec.rb +416 -0
  627. data/spec/arachni/uri_spec.rb +187 -195
  628. data/spec/arachni/utilities_spec.rb +178 -525
  629. data/spec/components/checks/active/code_injection_spec.rb +26 -0
  630. data/spec/components/checks/active/code_injection_timing_spec.rb +26 -0
  631. data/spec/components/checks/active/csrf_spec.rb +44 -0
  632. data/spec/components/checks/active/file_inclusion_spec.rb +56 -0
  633. data/spec/components/checks/active/ldap_injection_spec.rb +16 -0
  634. data/spec/components/checks/active/no_sql_injection_differential_spec.rb +15 -0
  635. data/spec/components/checks/active/no_sql_injection_spec.rb +28 -0
  636. data/spec/components/checks/active/os_cmd_injection_spec.rb +26 -0
  637. data/spec/components/checks/active/os_cmd_injection_timing_spec.rb +26 -0
  638. data/spec/components/checks/active/path_traversal_spec.rb +42 -0
  639. data/spec/components/checks/active/response_splitting_spec.rb +22 -0
  640. data/spec/components/checks/active/rfi_spec.rb +20 -0
  641. data/spec/components/checks/active/session_fixation_spec.rb +20 -0
  642. data/spec/components/checks/active/source_code_disclosure_spec.rb +26 -0
  643. data/spec/components/checks/active/sql_injection_differential_spec.rb +15 -0
  644. data/spec/components/checks/active/sql_injection_spec.rb +142 -0
  645. data/spec/components/checks/active/sql_injection_timing_spec.rb +24 -0
  646. data/spec/components/checks/active/trainer_spec.rb +36 -0
  647. data/spec/components/checks/active/unvalidated_redirect_spec.rb +20 -0
  648. data/spec/components/checks/active/xpath_injection_spec.rb +16 -0
  649. data/spec/components/checks/active/xss_dom_inputs_spec.rb +32 -0
  650. data/spec/components/checks/active/xss_dom_script_context_spec.rb +63 -0
  651. data/spec/components/checks/active/xss_dom_spec.rb +67 -0
  652. data/spec/components/checks/active/xss_event_spec.rb +15 -0
  653. data/spec/components/checks/active/xss_path_spec.rb +15 -0
  654. data/spec/components/checks/active/xss_script_context_spec.rb +22 -0
  655. data/spec/components/checks/active/xss_spec.rb +22 -0
  656. data/spec/components/checks/active/xss_tag_spec.rb +15 -0
  657. data/spec/components/checks/passive/allowed_methods_spec.rb +15 -0
  658. data/spec/components/checks/passive/backdoors_spec.rb +15 -0
  659. data/spec/components/checks/passive/backup_directories_spec.rb +15 -0
  660. data/spec/components/checks/passive/backup_files_spec.rb +15 -0
  661. data/spec/components/checks/passive/common_directories_spec.rb +15 -0
  662. data/spec/components/checks/passive/common_files_spec.rb +15 -0
  663. data/spec/components/checks/passive/directory_listing_spec.rb +15 -0
  664. data/spec/components/checks/passive/grep/captcha_spec.rb +15 -0
  665. data/spec/components/checks/passive/grep/cookie_set_for_parent_domain_spec.rb +15 -0
  666. data/spec/components/checks/passive/grep/credit_card_spec.rb +15 -0
  667. data/spec/components/checks/passive/grep/cvs_svn_users_spec.rb +15 -0
  668. data/spec/components/checks/passive/grep/emails_spec.rb +15 -0
  669. data/spec/components/checks/passive/grep/form_upload_spec.rb +15 -0
  670. data/spec/components/checks/passive/grep/hsts_spec.rb +17 -0
  671. data/spec/components/checks/passive/grep/html_objects_spec.rb +15 -0
  672. data/spec/components/checks/passive/grep/http_only_cookies_spec.rb +15 -0
  673. data/spec/components/checks/passive/grep/insecure_cookies_spec.rb +15 -0
  674. data/spec/components/checks/passive/grep/mixed_resource_spec.rb +16 -0
  675. data/spec/components/checks/passive/grep/password_autocomplete_spec.rb +15 -0
  676. data/spec/components/checks/passive/grep/private_ip_spec.rb +22 -0
  677. data/spec/components/checks/passive/grep/ssn_spec.rb +15 -0
  678. data/spec/components/checks/passive/grep/unencrypted_password_forms_spec.rb +15 -0
  679. data/spec/components/checks/passive/htaccess_limit_spec.rb +15 -0
  680. data/spec/components/checks/passive/http_put_spec.rb +15 -0
  681. data/spec/components/checks/passive/interesting_responses_spec.rb +23 -0
  682. data/spec/components/checks/passive/localstart_asp_spec.rb +15 -0
  683. data/spec/components/checks/passive/origin_spoof_access_restriction_bypass_spec.rb +15 -0
  684. data/spec/components/checks/passive/webdav_spec.rb +15 -0
  685. data/spec/components/checks/passive/xst_spec.rb +15 -0
  686. data/spec/components/fingerprinters/frameworks/rack_spec.rb +42 -0
  687. data/spec/components/fingerprinters/languages/asp_spec.rb +38 -0
  688. data/spec/components/fingerprinters/languages/aspx_spec.rb +79 -0
  689. data/spec/components/fingerprinters/languages/jsp_spec.rb +56 -0
  690. data/spec/components/fingerprinters/languages/php_spec.rb +59 -0
  691. data/spec/components/fingerprinters/languages/python_spec.rb +23 -0
  692. data/spec/components/fingerprinters/languages/ruby.rb +34 -0
  693. data/spec/components/fingerprinters/os/bsd_spec.rb +26 -0
  694. data/spec/components/fingerprinters/os/linux_spec.rb +34 -0
  695. data/spec/components/fingerprinters/os/solaris_spec.rb +34 -0
  696. data/spec/components/fingerprinters/os/unix_spec.rb +26 -0
  697. data/spec/components/fingerprinters/os/windows_spec.rb +34 -0
  698. data/spec/components/fingerprinters/servers/apache_spec.rb +26 -0
  699. data/spec/components/fingerprinters/servers/iis_spec.rb +28 -0
  700. data/spec/components/fingerprinters/servers/jetty_spec.rb +28 -0
  701. data/spec/components/fingerprinters/servers/nginx_spec.rb +26 -0
  702. data/spec/components/fingerprinters/servers/tomcat_spec.rb +28 -0
  703. data/spec/{path_extractors → components/path_extractors}/anchors_spec.rb +0 -0
  704. data/spec/{path_extractors → components/path_extractors}/areas_spec.rb +0 -0
  705. data/spec/components/path_extractors/comments_spec.rb +23 -0
  706. data/spec/{path_extractors → components/path_extractors}/forms_spec.rb +0 -0
  707. data/spec/{path_extractors → components/path_extractors}/frames_spec.rb +0 -0
  708. data/spec/{path_extractors → components/path_extractors}/generic_spec.rb +0 -0
  709. data/spec/{path_extractors → components/path_extractors}/links_spec.rb +0 -0
  710. data/spec/{path_extractors → components/path_extractors}/meta_refresh_spec.rb +0 -0
  711. data/spec/components/path_extractors/scripts_spec.rb +30 -0
  712. data/spec/components/plugins/autologin_spec.rb +96 -0
  713. data/spec/components/plugins/autothrottle_spec.rb +56 -0
  714. data/spec/components/plugins/content_types_spec.rb +91 -0
  715. data/spec/components/plugins/cookie_collector_spec.rb +41 -0
  716. data/spec/components/plugins/form_dicattack_spec.rb +54 -0
  717. data/spec/components/plugins/healthmap_spec.rb +40 -0
  718. data/spec/components/plugins/http_dicattack_spec.rb +40 -0
  719. data/spec/components/plugins/meta/remedies/discovery_spec.rb +23 -0
  720. data/spec/components/plugins/meta/remedies/timing_attacks_spec.rb +31 -0
  721. data/spec/components/plugins/meta/uniformity_spec.rb +29 -0
  722. data/spec/components/plugins/script_spec.rb +13 -0
  723. data/spec/components/plugins/uncommon_headers_spec.rb +64 -0
  724. data/spec/components/plugins/vector_feed_spec.rb +169 -0
  725. data/spec/components/plugins/waf_detector_spec.rb +50 -0
  726. data/spec/components/reporters/ap_spec.rb +9 -0
  727. data/spec/components/reporters/html_spec.rb +9 -0
  728. data/spec/components/reporters/json_spec.rb +17 -0
  729. data/spec/components/reporters/marshal_spec.rb +13 -0
  730. data/spec/components/reporters/stdout_spec.rb +9 -0
  731. data/spec/components/reporters/txt_spec.rb +8 -0
  732. data/spec/components/reporters/xml_spec.rb +9 -0
  733. data/spec/components/reporters/yaml_spec.rb +14 -0
  734. data/spec/external/wavsep/active/lfi_spec.rb +1 -1
  735. data/spec/external/wavsep/active/obsolete_files_spec.rb +225 -0
  736. data/spec/external/wavsep/active/rfi_spec.rb +1 -1
  737. data/spec/external/wavsep/active/sqli_spec.rb +8 -6
  738. data/spec/external/wavsep/active/unvalidated_redirect_spec.rb +57 -0
  739. data/spec/external/wavsep/active/xss_dom_spec.rb +27 -0
  740. data/spec/external/wavsep/active/xss_spec.rb +13 -3
  741. data/spec/external/wavsep/false_positives/lfi_spec.rb +4 -16
  742. data/spec/external/wavsep/false_positives/obsolete_files_spec.rb +21 -0
  743. data/spec/external/wavsep/false_positives/rfi_spec.rb +2 -2
  744. data/spec/external/wavsep/false_positives/sqli_spec.rb +4 -15
  745. data/spec/external/wavsep/false_positives/unvalidated_redirect_spec.rb +21 -0
  746. data/spec/external/wavsep/false_positives/xss_spec.rb +2 -2
  747. data/spec/spec_helper.rb +17 -18
  748. data/spec/support/factories/browser/javascript/taint_tracer/frame.rb +10 -0
  749. data/spec/support/factories/browser/javascript/taint_tracer/frame/called_function.rb +11 -0
  750. data/spec/support/factories/browser/javascript/taint_tracer/sink/data_flow.rb +14 -0
  751. data/spec/support/factories/browser/javascript/taint_tracer/sink/execution_flow.rb +10 -0
  752. data/spec/support/factories/browser_cluster/job.rb +27 -0
  753. data/spec/support/factories/element/cookie.rb +7 -0
  754. data/spec/support/factories/element/form.rb +12 -0
  755. data/spec/support/factories/element/header.rb +5 -0
  756. data/spec/support/factories/element/link.rb +11 -0
  757. data/spec/support/factories/element/link_template.rb +11 -0
  758. data/spec/support/factories/http/request.rb +9 -0
  759. data/spec/support/factories/http/response.rb +42 -0
  760. data/spec/support/factories/issue.rb +67 -0
  761. data/spec/support/factories/page.rb +7 -0
  762. data/spec/support/factories/page/dom.rb +13 -0
  763. data/spec/support/factories/page/dom/transition.rb +21 -0
  764. data/spec/support/factories/scan_report.rb +35 -0
  765. data/spec/support/factories/vector.rb +32 -0
  766. data/spec/support/fixtures/check_with_invalid_platforms/with_invalid_platforms.rb +37 -0
  767. data/spec/support/fixtures/checks/test.rb +58 -0
  768. data/spec/support/fixtures/checks/test2.rb +41 -0
  769. data/spec/support/fixtures/checks/test3.rb +41 -0
  770. data/spec/support/fixtures/executables/node.rb +47 -0
  771. data/spec/support/fixtures/fingerprinters/test.rb +5 -13
  772. data/spec/support/fixtures/option_groups/input.yml +2 -0
  773. data/spec/support/fixtures/plugins/bad.rb +5 -13
  774. data/spec/support/fixtures/plugins/defaults/default.rb +6 -14
  775. data/spec/support/fixtures/plugins/distributable.rb +7 -15
  776. data/spec/support/fixtures/plugins/loop.rb +5 -13
  777. data/spec/support/fixtures/plugins/suspendable.rb +44 -0
  778. data/spec/support/fixtures/plugins/wait.rb +6 -14
  779. data/spec/support/fixtures/plugins/with_options.rb +20 -16
  780. data/spec/support/fixtures/plugins_with_priorities/p0.rb +17 -0
  781. data/spec/support/fixtures/plugins_with_priorities/p00.rb +17 -0
  782. data/spec/support/fixtures/plugins_with_priorities/p1.rb +17 -0
  783. data/spec/support/fixtures/plugins_with_priorities/p2.rb +17 -0
  784. data/spec/support/fixtures/plugins_with_priorities/p22.rb +17 -0
  785. data/spec/support/fixtures/plugins_with_priorities/p222.rb +17 -0
  786. data/spec/support/fixtures/plugins_with_priorities/p_nil.rb +16 -0
  787. data/spec/support/fixtures/plugins_with_priorities/p_nil2.rb +16 -0
  788. data/spec/support/fixtures/report.afr +0 -0
  789. data/spec/support/fixtures/reporters/base_spec/plugin_formatters/with_formatters/foobar.rb +13 -0
  790. data/spec/support/fixtures/reporters/base_spec/with_formatters.rb +15 -0
  791. data/spec/support/fixtures/reporters/base_spec/with_outfile.rb +16 -0
  792. data/spec/support/fixtures/reporters/base_spec/without_outfile.rb +12 -0
  793. data/spec/support/fixtures/reporters/manager_spec/afr.rb +13 -0
  794. data/spec/support/fixtures/reporters/manager_spec/foo.rb +18 -0
  795. data/spec/support/fixtures/rescan.afr.tpl +4 -5
  796. data/spec/support/fixtures/run_check/body.rb +48 -0
  797. data/spec/support/fixtures/run_check/cookies.rb +48 -0
  798. data/spec/support/fixtures/run_check/empty.rb +34 -0
  799. data/spec/support/fixtures/run_check/flch.rb +53 -0
  800. data/spec/support/fixtures/run_check/forms.rb +48 -0
  801. data/spec/support/fixtures/run_check/headers.rb +48 -0
  802. data/spec/support/fixtures/run_check/links.rb +48 -0
  803. data/spec/support/fixtures/run_check/nil.rb +47 -0
  804. data/spec/support/fixtures/run_check/path.rb +48 -0
  805. data/spec/support/fixtures/run_check/server.rb +48 -0
  806. data/spec/support/fixtures/services/echo.rb +64 -0
  807. data/spec/support/fixtures/taint_check/taint.rb +38 -0
  808. data/spec/support/fixtures/wait_check/wait.rb +38 -0
  809. data/spec/support/helpers/auditor.rb +18 -5
  810. data/spec/support/helpers/browser.rb +6 -0
  811. data/spec/support/helpers/browser_cluster/jobs/taint_tracer.rb +32 -0
  812. data/spec/support/helpers/framework.rb +5 -13
  813. data/spec/support/helpers/misc.rb +4 -12
  814. data/spec/support/helpers/pages.rb +18 -0
  815. data/spec/support/helpers/paths.rb +4 -12
  816. data/spec/support/helpers/requires.rb +5 -13
  817. data/spec/support/helpers/resets.rb +12 -19
  818. data/spec/support/helpers/web_server.rb +11 -15
  819. data/spec/support/lib/factory.rb +115 -0
  820. data/spec/support/lib/web_server_client.rb +49 -0
  821. data/spec/support/lib/web_server_dispatcher.rb +33 -0
  822. data/spec/support/lib/web_server_manager.rb +29 -32
  823. data/spec/support/pems/cacert.pem +35 -37
  824. data/spec/support/pems/client/cert.pem +35 -37
  825. data/spec/support/pems/client/key.pem +49 -49
  826. data/spec/support/pems/server/cert.pem +35 -37
  827. data/spec/support/pems/server/key.pem +49 -49
  828. data/spec/support/servers/arachni/browser.rb +836 -0
  829. data/spec/support/servers/arachni/browser/javascript.rb +7 -0
  830. data/spec/support/servers/arachni/browser/javascript/angular-1.2.8.js +20554 -0
  831. data/spec/support/servers/arachni/browser/javascript/angular-route.js +911 -0
  832. data/spec/support/servers/arachni/browser/javascript/dom_monitor.rb +90 -0
  833. data/spec/support/servers/arachni/browser/javascript/jquery-2.0.3.js +8829 -0
  834. data/spec/support/servers/arachni/browser/javascript/proxy.rb +17 -0
  835. data/spec/support/servers/arachni/browser/javascript/taint_tracer.rb +714 -0
  836. data/spec/support/servers/arachni/browser_cluster/jobs/event_trigger.rb +25 -0
  837. data/spec/support/servers/arachni/browser_https.rb +60 -0
  838. data/spec/support/servers/arachni/check/auditor.rb +247 -0
  839. data/spec/support/servers/arachni/element/body.rb +5 -0
  840. data/spec/support/servers/arachni/element/capabilities/analyzable/differential.rb +162 -0
  841. data/spec/support/servers/arachni/element/capabilities/{auditable → analyzable}/taint.rb +0 -0
  842. data/spec/support/servers/arachni/element/capabilities/analyzable/timeout.rb +37 -0
  843. data/spec/support/servers/arachni/element/cookie.rb +1 -1
  844. data/spec/support/servers/arachni/element/cookie/cookie_dom.rb +21 -0
  845. data/spec/support/servers/arachni/element/form.rb +6 -22
  846. data/spec/support/servers/arachni/element/form/form_dom.rb +50 -0
  847. data/spec/support/servers/arachni/element/header.rb +7 -8
  848. data/spec/support/servers/arachni/element/link.rb +15 -7
  849. data/spec/support/servers/arachni/element/link/link_dom.rb +49 -0
  850. data/spec/support/servers/arachni/element/link_template.rb +11 -0
  851. data/spec/support/servers/arachni/element/link_template/link_template_dom.rb +43 -0
  852. data/spec/support/servers/arachni/framework.rb +18 -0
  853. data/spec/support/servers/arachni/http/client.rb +176 -0
  854. data/spec/support/servers/arachni/http/proxy_server.rb +9 -0
  855. data/spec/support/servers/arachni/http/proxy_server_https.rb +25 -0
  856. data/spec/support/servers/arachni/page/page_dom.rb +83 -0
  857. data/spec/support/servers/arachni/parser.rb +4 -0
  858. data/spec/support/servers/arachni/rpc/server/{framework_hpg.rb → framework_multi.rb} +0 -0
  859. data/spec/support/servers/arachni/session.rb +43 -9
  860. data/spec/support/servers/arachni/trainer.rb +11 -7
  861. data/spec/support/servers/checks/active/code_injection.rb +163 -0
  862. data/spec/support/servers/checks/active/code_injection_timing.rb +134 -0
  863. data/spec/support/servers/{modules/audit → checks/active}/csrf.rb +0 -0
  864. data/spec/support/servers/checks/active/file_inclusion.rb +228 -0
  865. data/spec/support/servers/checks/active/ldap_injection.rb +88 -0
  866. data/spec/support/servers/checks/active/no_sql_injection.rb +134 -0
  867. data/spec/support/servers/checks/active/no_sql_injection/mongodb +1 -0
  868. data/spec/support/servers/checks/active/no_sql_injection_differential.rb +61 -0
  869. data/spec/support/servers/checks/active/os_cmd_injection.rb +172 -0
  870. data/spec/support/servers/checks/active/os_cmd_injection_timing.rb +118 -0
  871. data/spec/support/servers/checks/active/path_traversal.rb +219 -0
  872. data/spec/support/servers/checks/active/response_splitting.rb +138 -0
  873. data/spec/support/servers/{modules/audit → checks/active}/rfi.rb +0 -0
  874. data/spec/support/servers/checks/active/session_fixation.rb +111 -0
  875. data/spec/support/servers/checks/active/source_code_disclosure.rb +118 -0
  876. data/spec/support/servers/checks/active/sql_injection.rb +133 -0
  877. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/access +0 -0
  878. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/coldfusion +0 -0
  879. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/db2 +0 -0
  880. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/emc +0 -0
  881. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/firebird +0 -0
  882. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/frontbase +0 -0
  883. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/hsqldb +0 -0
  884. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/informix +0 -0
  885. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/ingres +0 -0
  886. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/interbase +0 -0
  887. data/spec/support/servers/checks/active/sql_injection/jdbc +0 -0
  888. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/maxdb +0 -0
  889. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/mssql +0 -0
  890. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/mysql +0 -0
  891. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/oracle +0 -0
  892. data/spec/support/servers/{modules/audit/sqli/postgresql → checks/active/sql_injection/pgsql} +0 -0
  893. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/sqlite +0 -0
  894. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/sybase +0 -0
  895. data/spec/support/servers/{modules/audit/sqli_blind_rdiff.rb → checks/active/sql_injection_differential.rb} +0 -0
  896. data/spec/support/servers/checks/active/sql_injection_timing.rb +145 -0
  897. data/spec/support/servers/{modules/audit/trainer_module.rb → checks/active/trainer_check.rb} +0 -0
  898. data/spec/support/servers/checks/active/unvalidated_redirect.rb +141 -0
  899. data/spec/support/servers/checks/active/xpath_injection.rb +121 -0
  900. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/dotnet +0 -0
  901. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/general +0 -0
  902. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/java +0 -0
  903. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/libxml2 +0 -0
  904. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/php +0 -0
  905. data/spec/support/servers/checks/active/xss.rb +239 -0
  906. data/spec/support/servers/checks/active/xss_dom.rb +133 -0
  907. data/spec/support/servers/checks/active/xss_dom_inputs.rb +35 -0
  908. data/spec/support/servers/checks/active/xss_dom_script_context.rb +139 -0
  909. data/spec/support/servers/checks/active/xss_event.rb +80 -0
  910. data/spec/support/servers/{modules/audit → checks/active}/xss_path.rb +0 -0
  911. data/spec/support/servers/checks/active/xss_script_context.rb +90 -0
  912. data/spec/support/servers/{modules/audit → checks/active}/xss_tag.rb +0 -0
  913. data/spec/support/servers/checks/check_server.rb +14 -0
  914. data/spec/support/servers/{modules/recon → checks/passive}/allowed_methods.rb +0 -0
  915. data/spec/support/servers/checks/passive/backdoors.rb +4 -0
  916. data/spec/support/servers/checks/passive/backup_directories.rb +15 -0
  917. data/spec/support/servers/checks/passive/backup_files.rb +15 -0
  918. data/spec/support/servers/checks/passive/common_directories.rb +6 -0
  919. data/spec/support/servers/checks/passive/common_files.rb +6 -0
  920. data/spec/support/servers/checks/passive/directory_listing.rb +30 -0
  921. data/spec/support/servers/{modules/recon → checks/passive}/grep/captcha.rb +0 -0
  922. data/spec/support/servers/checks/passive/grep/cookie_set_for_parent_domain.rb +21 -0
  923. data/spec/support/servers/{modules/recon → checks/passive}/grep/credit_card.rb +0 -0
  924. data/spec/support/servers/{modules/recon → checks/passive}/grep/cvs_svn_users.rb +0 -0
  925. data/spec/support/servers/checks/passive/grep/emails.rb +23 -0
  926. data/spec/support/servers/{modules/recon → checks/passive}/grep/form_upload.rb +0 -0
  927. data/spec/support/servers/checks/passive/grep/hsts_https.rb +37 -0
  928. data/spec/support/servers/{modules/recon → checks/passive}/grep/html_objects.rb +0 -0
  929. data/spec/support/servers/{modules/recon → checks/passive}/grep/http_only_cookies.rb +0 -0
  930. data/spec/support/servers/checks/passive/grep/insecure_cookies_https.rb +40 -0
  931. data/spec/support/servers/checks/passive/grep/mixed_resource_https.rb +69 -0
  932. data/spec/support/servers/checks/passive/grep/password_autocomplete.rb +33 -0
  933. data/spec/support/servers/{modules/recon → checks/passive}/grep/private_ip.rb +0 -0
  934. data/spec/support/servers/{modules/recon → checks/passive}/grep/ssn.rb +0 -0
  935. data/spec/support/servers/checks/passive/grep/unencrypted_password_forms.rb +33 -0
  936. data/spec/support/servers/{modules/recon → checks/passive}/htaccess_limit.rb +0 -0
  937. data/spec/support/servers/checks/passive/http_put.rb +7 -0
  938. data/spec/support/servers/checks/passive/interesting_responses.rb +5 -0
  939. data/spec/support/servers/{modules/recon → checks/passive}/localstart_asp.rb +0 -0
  940. data/spec/support/servers/checks/passive/origin_spoof_access_restriction_bypass.rb +30 -0
  941. data/spec/support/servers/checks/passive/webdav.rb +25 -0
  942. data/spec/support/servers/{modules/recon → checks/passive}/xst.rb +0 -0
  943. data/spec/support/servers/plugins/meta/remedies/discovery.rb +2 -2
  944. data/spec/support/servers/plugins/meta/remedies/timing_attacks.rb +2 -0
  945. data/spec/support/shared/browser/javascript/taint_tracer/sink/base.rb +36 -0
  946. data/spec/support/shared/check.rb +198 -0
  947. data/spec/support/shared/component.rb +15 -4
  948. data/spec/support/shared/component/options/base.rb +187 -0
  949. data/spec/support/shared/element/base.rb +131 -0
  950. data/spec/support/shared/element/capabilities/auditable.rb +371 -604
  951. data/spec/support/shared/element/capabilities/auditable/dom.rb +303 -0
  952. data/spec/support/shared/element/capabilities/inputtable.rb +499 -0
  953. data/spec/support/shared/element/capabilities/mutable.rb +362 -0
  954. data/spec/support/shared/element/capabilities/refreshable.rb +26 -26
  955. data/spec/support/shared/element/capabilities/submitable.rb +155 -0
  956. data/spec/support/shared/element/capabilities/with_auditor.rb +75 -0
  957. data/spec/support/shared/element/capabilities/with_dom.rb +39 -0
  958. data/spec/support/shared/element/capabilities/with_node.rb +42 -0
  959. data/spec/support/shared/element/capabilities/with_scope.rb +22 -0
  960. data/spec/support/shared/external/wavsep.rb +30 -9
  961. data/spec/support/shared/http/message.rb +72 -0
  962. data/spec/support/shared/option_group.rb +98 -0
  963. data/spec/support/shared/path_extractor.rb +1 -1
  964. data/spec/support/shared/plugin.rb +33 -16
  965. data/spec/support/shared/reporter.rb +41 -0
  966. data/spec/support/shared/support/cache.rb +341 -0
  967. data/spec/support/shared/support/lookup.rb +93 -13
  968. data/ui/cli/framework.rb +466 -0
  969. data/ui/cli/framework/option_parser.rb +628 -0
  970. data/ui/cli/option_parser.rb +104 -0
  971. data/ui/cli/output.rb +377 -0
  972. data/ui/cli/reporter.rb +52 -0
  973. data/ui/cli/reporter/option_parser.rb +102 -0
  974. data/ui/cli/restored_framework.rb +127 -0
  975. data/ui/cli/restored_framework/option_parser.rb +115 -0
  976. data/ui/cli/rpc/client/dispatcher_monitor.rb +157 -0
  977. data/ui/cli/rpc/client/dispatcher_monitor/option_parser.rb +41 -0
  978. data/ui/cli/rpc/client/instance.rb +294 -0
  979. data/ui/cli/rpc/client/local.rb +65 -0
  980. data/ui/cli/rpc/client/local/option_parser.rb +35 -0
  981. data/ui/cli/rpc/client/remote.rb +84 -0
  982. data/ui/cli/rpc/client/remote/option_parser.rb +99 -0
  983. data/ui/cli/rpc/server/dispatcher.rb +36 -0
  984. data/ui/cli/rpc/server/dispatcher/option_parser.rb +165 -0
  985. data/ui/cli/utilities.rb +228 -0
  986. metadata +1260 -1266
  987. data/EXPLOITATION.md +0 -431
  988. data/HACKING.md +0 -120
  989. data/NOTICE +0 -12
  990. data/data/crypto/public.pem +0 -9
  991. data/external/metasploit/LICENSE +0 -24
  992. data/external/metasploit/plugins/arachni.rb +0 -516
  993. data/external/metasploit/plugins/arachni/modules/auxiliary/arachni_sqlmap.rb +0 -91
  994. data/external/metasploit/plugins/arachni/modules/exploits/unix/webapp/arachni_exec.rb +0 -142
  995. data/external/metasploit/plugins/arachni/modules/exploits/unix/webapp/arachni_path_traversal.rb +0 -113
  996. data/external/metasploit/plugins/arachni/modules/exploits/unix/webapp/arachni_php_eval.rb +0 -150
  997. data/external/metasploit/plugins/arachni/modules/exploits/unix/webapp/arachni_php_include.rb +0 -141
  998. data/fingerprinters/frameworks/rack.rb +0 -41
  999. data/fingerprinters/languages/asp.rb +0 -42
  1000. data/fingerprinters/languages/aspx.rb +0 -63
  1001. data/fingerprinters/languages/jsp.rb +0 -42
  1002. data/fingerprinters/languages/php.rb +0 -43
  1003. data/fingerprinters/languages/python.rb +0 -40
  1004. data/fingerprinters/languages/ruby.rb +0 -41
  1005. data/fingerprinters/os/bsd.rb +0 -36
  1006. data/fingerprinters/os/linux.rb +0 -42
  1007. data/fingerprinters/os/solaris.rb +0 -41
  1008. data/fingerprinters/os/unix.rb +0 -36
  1009. data/fingerprinters/os/windows.rb +0 -41
  1010. data/fingerprinters/servers/apache.rb +0 -36
  1011. data/fingerprinters/servers/iis.rb +0 -36
  1012. data/fingerprinters/servers/jetty.rb +0 -36
  1013. data/fingerprinters/servers/nginx.rb +0 -36
  1014. data/fingerprinters/servers/tomcat.rb +0 -36
  1015. data/gfx/README.md +0 -18
  1016. data/gfx/compiled/banner.png +0 -0
  1017. data/gfx/compiled/favicon.ico +0 -0
  1018. data/gfx/compiled/icon.png +0 -0
  1019. data/gfx/compiled/logo.png +0 -0
  1020. data/gfx/compiled/spider.png +0 -0
  1021. data/gfx/font/Beneath_the_Surface.ttf +0 -0
  1022. data/gfx/font/bts_readme.txt +0 -14
  1023. data/gfx/source/banner.svg +0 -999
  1024. data/gfx/source/icon.svg +0 -627
  1025. data/gfx/source/logo.svg +0 -672
  1026. data/gfx/source/spider.png +0 -0
  1027. data/gfx/source/spider.svg +0 -277
  1028. data/lib/arachni/audit_store.rb +0 -321
  1029. data/lib/arachni/component/options/enum.rb +0 -51
  1030. data/lib/arachni/element/capabilities/auditable/rdiff.rb +0 -489
  1031. data/lib/arachni/element/capabilities/auditable/taint.rb +0 -238
  1032. data/lib/arachni/element/capabilities/auditable/timeout.rb +0 -469
  1033. data/lib/arachni/mixins/observable.rb +0 -91
  1034. data/lib/arachni/mixins/progress_bar.rb +0 -87
  1035. data/lib/arachni/mixins/terminal.rb +0 -112
  1036. data/lib/arachni/module.rb +0 -20
  1037. data/lib/arachni/module/auditor.rb +0 -618
  1038. data/lib/arachni/module/base.rb +0 -188
  1039. data/lib/arachni/module/manager.rb +0 -255
  1040. data/lib/arachni/module/output.rb +0 -68
  1041. data/lib/arachni/module/utilities.rb +0 -64
  1042. data/lib/arachni/report/base.rb +0 -201
  1043. data/lib/arachni/report/manager.rb +0 -86
  1044. data/lib/arachni/rpc/server/dispatcher/handler.rb +0 -166
  1045. data/lib/arachni/rpc/server/module/manager.rb +0 -46
  1046. data/lib/arachni/rpc/server/spider.rb +0 -404
  1047. data/lib/arachni/ruby/enumerable.rb +0 -29
  1048. data/lib/arachni/spider.rb +0 -477
  1049. data/lib/arachni/support/key_filler.rb +0 -68
  1050. data/lib/arachni/support/queue.rb +0 -18
  1051. data/lib/arachni/support/queue/disk.rb +0 -171
  1052. data/lib/arachni/typhoeus/hydra.rb +0 -56
  1053. data/lib/arachni/typhoeus/request.rb +0 -80
  1054. data/lib/arachni/typhoeus/response.rb +0 -103
  1055. data/lib/arachni/typhoeus/utils.rb +0 -25
  1056. data/lib/arachni/ui/cli/cli.rb +0 -469
  1057. data/lib/arachni/ui/cli/output.rb +0 -391
  1058. data/lib/arachni/ui/cli/rpc/dispatcher_monitor.rb +0 -188
  1059. data/lib/arachni/ui/cli/rpc/instance.rb +0 -407
  1060. data/lib/arachni/ui/cli/rpc/local.rb +0 -80
  1061. data/lib/arachni/ui/cli/rpc/remote.rb +0 -134
  1062. data/lib/arachni/ui/cli/utilities.rb +0 -509
  1063. data/modules/audit/code_injection.rb +0 -137
  1064. data/modules/audit/code_injection_php_input_wrapper.rb +0 -109
  1065. data/modules/audit/code_injection_timing.rb +0 -122
  1066. data/modules/audit/csrf.rb +0 -225
  1067. data/modules/audit/file_inclusion.rb +0 -156
  1068. data/modules/audit/ldapi.rb +0 -97
  1069. data/modules/audit/os_cmd_injection.rb +0 -109
  1070. data/modules/audit/os_cmd_injection_timing.rb +0 -98
  1071. data/modules/audit/path_traversal.rb +0 -170
  1072. data/modules/audit/response_splitting.rb +0 -99
  1073. data/modules/audit/rfi.rb +0 -181
  1074. data/modules/audit/session_fixation.rb +0 -117
  1075. data/modules/audit/source_code_disclosure.rb +0 -179
  1076. data/modules/audit/sqli.rb +0 -148
  1077. data/modules/audit/sqli_blind_rdiff.rb +0 -138
  1078. data/modules/audit/sqli_blind_timing.rb +0 -126
  1079. data/modules/audit/trainer.rb +0 -49
  1080. data/modules/audit/unvalidated_redirect.rb +0 -91
  1081. data/modules/audit/xpath.rb +0 -97
  1082. data/modules/audit/xss.rb +0 -154
  1083. data/modules/audit/xss_event.rb +0 -153
  1084. data/modules/audit/xss_path.rb +0 -152
  1085. data/modules/audit/xss_script_tag.rb +0 -137
  1086. data/modules/audit/xss_tag.rb +0 -137
  1087. data/modules/recon/allowed_methods.rb +0 -99
  1088. data/modules/recon/backdoors.rb +0 -82
  1089. data/modules/recon/backup_files.rb +0 -100
  1090. data/modules/recon/backup_files/extensions.txt +0 -28
  1091. data/modules/recon/common_directories.rb +0 -87
  1092. data/modules/recon/common_files.rb +0 -78
  1093. data/modules/recon/common_files/filenames.txt +0 -21
  1094. data/modules/recon/directory_listing.rb +0 -133
  1095. data/modules/recon/grep/captcha.rb +0 -74
  1096. data/modules/recon/grep/credit_card.rb +0 -128
  1097. data/modules/recon/grep/cvs_svn_users.rb +0 -81
  1098. data/modules/recon/grep/emails.rb +0 -73
  1099. data/modules/recon/grep/form_upload.rb +0 -86
  1100. data/modules/recon/grep/html_objects.rb +0 -56
  1101. data/modules/recon/grep/http_only_cookies.rb +0 -82
  1102. data/modules/recon/grep/insecure_cookies.rb +0 -82
  1103. data/modules/recon/grep/mixed_resource.rb +0 -113
  1104. data/modules/recon/grep/password_autocomplete.rb +0 -85
  1105. data/modules/recon/grep/private_ip.rb +0 -70
  1106. data/modules/recon/grep/ssn.rb +0 -66
  1107. data/modules/recon/grep/unencrypted_password_forms.rb +0 -103
  1108. data/modules/recon/htaccess_limit.rb +0 -76
  1109. data/modules/recon/http_put.rb +0 -95
  1110. data/modules/recon/interesting_responses.rb +0 -91
  1111. data/modules/recon/localstart_asp.rb +0 -97
  1112. data/modules/recon/webdav.rb +0 -106
  1113. data/modules/recon/x_forwarded_for_access_restriction_bypass.rb +0 -76
  1114. data/modules/recon/xst.rb +0 -103
  1115. data/path_extractors/anchors.rb +0 -37
  1116. data/path_extractors/areas.rb +0 -37
  1117. data/path_extractors/forms.rb +0 -37
  1118. data/path_extractors/frames.rb +0 -37
  1119. data/path_extractors/generic.rb +0 -84
  1120. data/path_extractors/links.rb +0 -37
  1121. data/path_extractors/meta_refresh.rb +0 -58
  1122. data/path_extractors/scripts.rb +0 -38
  1123. data/plugins/autologin.rb +0 -133
  1124. data/plugins/beep_notify.rb +0 -49
  1125. data/plugins/content_types.rb +0 -107
  1126. data/plugins/cookie_collector.rb +0 -85
  1127. data/plugins/defaults/autothrottle.rb +0 -78
  1128. data/plugins/defaults/healthmap.rb +0 -89
  1129. data/plugins/defaults/meta/remedies/discovery.rb +0 -138
  1130. data/plugins/defaults/meta/remedies/timing_attacks.rb +0 -117
  1131. data/plugins/defaults/meta/uniformity.rb +0 -82
  1132. data/plugins/defaults/resolver.rb +0 -60
  1133. data/plugins/email_notify.rb +0 -106
  1134. data/plugins/form_dicattack.rb +0 -123
  1135. data/plugins/http_dicattack.rb +0 -108
  1136. data/plugins/libnotify.rb +0 -82
  1137. data/plugins/profiler.rb +0 -179
  1138. data/plugins/proxy.rb +0 -502
  1139. data/plugins/proxy/panel/page_accordion.html.erb +0 -67
  1140. data/plugins/proxy/panel/panel.html.erb +0 -69
  1141. data/plugins/proxy/panel/verify_login_sequence.html.erb +0 -45
  1142. data/plugins/proxy/server.rb +0 -215
  1143. data/plugins/proxy/template_scope.rb +0 -138
  1144. data/plugins/rescan.rb +0 -59
  1145. data/plugins/script.rb +0 -53
  1146. data/plugins/uncommon_headers.rb +0 -92
  1147. data/plugins/vector_feed.rb +0 -226
  1148. data/plugins/waf_detector.rb +0 -167
  1149. data/profiles/full.afp +0 -48
  1150. data/reports/afr.rb +0 -44
  1151. data/reports/ap.rb +0 -46
  1152. data/reports/html.rb +0 -273
  1153. data/reports/html/default.erb +0 -82
  1154. data/reports/html/default/configuration.erb +0 -126
  1155. data/reports/html/default/css/jquery-ui.css +0 -570
  1156. data/reports/html/default/css/jquery.jqplot.min.css +0 -1
  1157. data/reports/html/default/css/main.css +0 -391
  1158. data/reports/html/default/headers.erb +0 -19
  1159. data/reports/html/default/issue.erb +0 -178
  1160. data/reports/html/default/issues.erb +0 -52
  1161. data/reports/html/default/js/charts.js +0 -147
  1162. data/reports/html/default/js/helpers.js +0 -53
  1163. data/reports/html/default/js/init.js +0 -72
  1164. data/reports/html/default/js/lib/jqplot.barRenderer.min.js +0 -57
  1165. data/reports/html/default/js/lib/jqplot.categoryAxisRenderer.min.js +0 -57
  1166. data/reports/html/default/js/lib/jqplot.cursor.min.js +0 -57
  1167. data/reports/html/default/js/lib/jqplot.pieRenderer.min.js +0 -57
  1168. data/reports/html/default/js/lib/jqplot.pointLabels.min.js +0 -57
  1169. data/reports/html/default/js/lib/jquery-ui.min.js +0 -404
  1170. data/reports/html/default/js/lib/jquery.jqplot.min.js +0 -57
  1171. data/reports/html/default/js/lib/jquery.min.js +0 -167
  1172. data/reports/html/default/plugins.erb +0 -22
  1173. data/reports/html/default/search.erb +0 -8
  1174. data/reports/html/default/sitemap.erb +0 -15
  1175. data/reports/html/default/summary.erb +0 -75
  1176. data/reports/html/default/summary_issue.erb +0 -20
  1177. data/reports/json.rb +0 -52
  1178. data/reports/marshal.rb +0 -46
  1179. data/reports/metareport.rb +0 -104
  1180. data/reports/plugin_formatters/html/autologin.rb +0 -45
  1181. data/reports/plugin_formatters/html/content_types.rb +0 -67
  1182. data/reports/plugin_formatters/html/cookie_collector.rb +0 -52
  1183. data/reports/plugin_formatters/html/discovery.rb +0 -45
  1184. data/reports/plugin_formatters/html/form_dicattack.rb +0 -40
  1185. data/reports/plugin_formatters/html/healthmap.rb +0 -60
  1186. data/reports/plugin_formatters/html/http_dicattack.rb +0 -40
  1187. data/reports/plugin_formatters/html/profiler.rb +0 -36
  1188. data/reports/plugin_formatters/html/profiler/template.erb +0 -84
  1189. data/reports/plugin_formatters/html/resolver.rb +0 -55
  1190. data/reports/plugin_formatters/html/timing_attacks.rb +0 -51
  1191. data/reports/plugin_formatters/html/uncommon_headers.rb +0 -47
  1192. data/reports/plugin_formatters/html/uniformity.rb +0 -54
  1193. data/reports/plugin_formatters/html/waf_detector.rb +0 -38
  1194. data/reports/plugin_formatters/stdout/autologin.rb +0 -38
  1195. data/reports/plugin_formatters/stdout/content_types.rb +0 -51
  1196. data/reports/plugin_formatters/stdout/cookie_collector.rb +0 -43
  1197. data/reports/plugin_formatters/stdout/discovery.rb +0 -37
  1198. data/reports/plugin_formatters/stdout/form_dicattack.rb +0 -34
  1199. data/reports/plugin_formatters/stdout/healthmap.rb +0 -49
  1200. data/reports/plugin_formatters/stdout/http_dicattack.rb +0 -34
  1201. data/reports/plugin_formatters/stdout/profiler.rb +0 -66
  1202. data/reports/plugin_formatters/stdout/resolver.rb +0 -29
  1203. data/reports/plugin_formatters/stdout/timing_attacks.rb +0 -37
  1204. data/reports/plugin_formatters/stdout/uncommon_headers.rb +0 -37
  1205. data/reports/plugin_formatters/stdout/uniformity.rb +0 -48
  1206. data/reports/plugin_formatters/stdout/waf_detector.rb +0 -31
  1207. data/reports/plugin_formatters/xml/autologin.rb +0 -41
  1208. data/reports/plugin_formatters/xml/content_types.rb +0 -61
  1209. data/reports/plugin_formatters/xml/cookie_collector.rb +0 -45
  1210. data/reports/plugin_formatters/xml/discovery.rb +0 -38
  1211. data/reports/plugin_formatters/xml/form_dicattack.rb +0 -34
  1212. data/reports/plugin_formatters/xml/healthmap.rb +0 -58
  1213. data/reports/plugin_formatters/xml/http_dicattack.rb +0 -33
  1214. data/reports/plugin_formatters/xml/profiler.rb +0 -80
  1215. data/reports/plugin_formatters/xml/resolver.rb +0 -33
  1216. data/reports/plugin_formatters/xml/timing_attacks.rb +0 -39
  1217. data/reports/plugin_formatters/xml/uncommon_headers.rb +0 -38
  1218. data/reports/plugin_formatters/xml/uniformity.rb +0 -54
  1219. data/reports/plugin_formatters/xml/waf_detector.rb +0 -34
  1220. data/reports/stdout.rb +0 -203
  1221. data/reports/txt.rb +0 -58
  1222. data/reports/xml.rb +0 -176
  1223. data/reports/xml/buffer.rb +0 -97
  1224. data/reports/yaml.rb +0 -46
  1225. data/spec/arachni/audit_store_spec.rb +0 -239
  1226. data/spec/arachni/component/options/enum_spec.rb +0 -51
  1227. data/spec/arachni/element/base_spec.rb +0 -138
  1228. data/spec/arachni/element/capabilities/auditable/rdiff_spec.rb +0 -134
  1229. data/spec/arachni/element/capabilities/auditable/taint_spec.rb +0 -409
  1230. data/spec/arachni/element/capabilities/auditable/timeout_spec.rb +0 -157
  1231. data/spec/arachni/element/capabilities/mutable_spec.rb +0 -284
  1232. data/spec/arachni/http_spec.rb +0 -962
  1233. data/spec/arachni/mixins/observable_spec.rb +0 -75
  1234. data/spec/arachni/mixins/progress_bar_spec.rb +0 -47
  1235. data/spec/arachni/module/auditor_spec.rb +0 -544
  1236. data/spec/arachni/module/manager_spec.rb +0 -150
  1237. data/spec/arachni/module/utilities_spec.rb +0 -30
  1238. data/spec/arachni/report/base_spec.rb +0 -61
  1239. data/spec/arachni/report/manager_spec.rb +0 -82
  1240. data/spec/arachni/rpc/server/dispatcher/handler_spec.rb +0 -102
  1241. data/spec/arachni/rpc/server/framework_hpg_spec.rb +0 -376
  1242. data/spec/arachni/rpc/server/framework_simple_spec.rb +0 -501
  1243. data/spec/arachni/rpc/server/modules/manager_spec.rb +0 -47
  1244. data/spec/arachni/rpc/server/spider_spec.rb +0 -68
  1245. data/spec/arachni/ruby/enumerable_spec.rb +0 -37
  1246. data/spec/arachni/spider_spec.rb +0 -539
  1247. data/spec/arachni/support/cache/base_spec.rb +0 -282
  1248. data/spec/arachni/support/key_filler.rb +0 -60
  1249. data/spec/arachni/support/queue/disk_spec.rb +0 -116
  1250. data/spec/arachni/typhoeus/requrest_spec.rb +0 -58
  1251. data/spec/arachni/typhoeus/response_spec.rb +0 -171
  1252. data/spec/fingerprinters/frameworks/rack_spec.rb +0 -41
  1253. data/spec/fingerprinters/languages/asp_spec.rb +0 -40
  1254. data/spec/fingerprinters/languages/aspx_spec.rb +0 -78
  1255. data/spec/fingerprinters/languages/jsp_spec.rb +0 -58
  1256. data/spec/fingerprinters/languages/php_spec.rb +0 -61
  1257. data/spec/fingerprinters/languages/python_spec.rb +0 -23
  1258. data/spec/fingerprinters/languages/ruby.rb +0 -34
  1259. data/spec/fingerprinters/os/bsd_spec.rb +0 -26
  1260. data/spec/fingerprinters/os/linux_spec.rb +0 -34
  1261. data/spec/fingerprinters/os/solaris_spec.rb +0 -34
  1262. data/spec/fingerprinters/os/unix_spec.rb +0 -26
  1263. data/spec/fingerprinters/os/windows_spec.rb +0 -34
  1264. data/spec/fingerprinters/servers/apache_spec.rb +0 -26
  1265. data/spec/fingerprinters/servers/iis_spec.rb +0 -28
  1266. data/spec/fingerprinters/servers/jetty_spec.rb +0 -28
  1267. data/spec/fingerprinters/servers/nginx_spec.rb +0 -26
  1268. data/spec/fingerprinters/servers/tomcat_spec.rb +0 -28
  1269. data/spec/modules/audit/code_injection_spec.rb +0 -25
  1270. data/spec/modules/audit/code_injection_timing_spec.rb +0 -24
  1271. data/spec/modules/audit/csrf_spec.rb +0 -45
  1272. data/spec/modules/audit/file_inclusion_spec.rb +0 -25
  1273. data/spec/modules/audit/ldapi_spec.rb +0 -19
  1274. data/spec/modules/audit/os_cmd_injection_spec.rb +0 -24
  1275. data/spec/modules/audit/os_cmd_injection_timing_spec.rb +0 -24
  1276. data/spec/modules/audit/path_traversal_spec.rb +0 -23
  1277. data/spec/modules/audit/response_splitting_spec.rb +0 -19
  1278. data/spec/modules/audit/rfi_spec.rb +0 -19
  1279. data/spec/modules/audit/session_fixation_spec.rb +0 -23
  1280. data/spec/modules/audit/source_code_disclosure_spec.rb +0 -24
  1281. data/spec/modules/audit/sqli_blind_rdiff_spec.rb +0 -19
  1282. data/spec/modules/audit/sqli_blind_timing_spec.rb +0 -23
  1283. data/spec/modules/audit/sqli_spec.rb +0 -25
  1284. data/spec/modules/audit/trainer_spec.rb +0 -35
  1285. data/spec/modules/audit/unvalidated_redirect_spec.rb +0 -24
  1286. data/spec/modules/audit/xpath_spec.rb +0 -25
  1287. data/spec/modules/audit/xss_event_spec.rb +0 -19
  1288. data/spec/modules/audit/xss_path_spec.rb +0 -19
  1289. data/spec/modules/audit/xss_script_tag_spec.rb +0 -27
  1290. data/spec/modules/audit/xss_spec.rb +0 -24
  1291. data/spec/modules/audit/xss_tag_spec.rb +0 -19
  1292. data/spec/modules/recon/allowed_methods_spec.rb +0 -19
  1293. data/spec/modules/recon/backdoors_spec.rb +0 -19
  1294. data/spec/modules/recon/backup_files_spec.rb +0 -19
  1295. data/spec/modules/recon/common_directories_spec.rb +0 -19
  1296. data/spec/modules/recon/common_files_spec.rb +0 -19
  1297. data/spec/modules/recon/directory_listing_spec.rb +0 -19
  1298. data/spec/modules/recon/grep/captcha_spec.rb +0 -19
  1299. data/spec/modules/recon/grep/credit_card_spec.rb +0 -19
  1300. data/spec/modules/recon/grep/cvs_svn_users_spec.rb +0 -19
  1301. data/spec/modules/recon/grep/emails_spec.rb +0 -19
  1302. data/spec/modules/recon/grep/form_upload_spec.rb +0 -19
  1303. data/spec/modules/recon/grep/html_objects_spec.rb +0 -19
  1304. data/spec/modules/recon/grep/http_only_cookies_spec.rb +0 -19
  1305. data/spec/modules/recon/grep/insecure_cookies_spec.rb +0 -19
  1306. data/spec/modules/recon/grep/mixed_resource_spec.rb +0 -20
  1307. data/spec/modules/recon/grep/password_autocomplete_spec.rb +0 -19
  1308. data/spec/modules/recon/grep/private_ip_spec.rb +0 -26
  1309. data/spec/modules/recon/grep/ssn_spec.rb +0 -19
  1310. data/spec/modules/recon/grep/unencrypted_password_forms_spec.rb +0 -19
  1311. data/spec/modules/recon/htaccess_limit_spec.rb +0 -19
  1312. data/spec/modules/recon/http_put_spec.rb +0 -19
  1313. data/spec/modules/recon/interesting_responses_spec.rb +0 -30
  1314. data/spec/modules/recon/localstart_asp_spec.rb +0 -19
  1315. data/spec/modules/recon/webdav_spec.rb +0 -19
  1316. data/spec/modules/recon/x_forwarded_for_access_restriction_bypass_spec.rb +0 -19
  1317. data/spec/modules/recon/xst_spec.rb +0 -19
  1318. data/spec/path_extractors/scripts_spec.rb +0 -19
  1319. data/spec/plugins/autologin_spec.rb +0 -94
  1320. data/spec/plugins/autothrottle_spec.rb +0 -45
  1321. data/spec/plugins/content_types_spec.rb +0 -93
  1322. data/spec/plugins/cookie_collector_spec.rb +0 -49
  1323. data/spec/plugins/form_dicattack_spec.rb +0 -60
  1324. data/spec/plugins/healthmap_spec.rb +0 -40
  1325. data/spec/plugins/http_dicattack_spec.rb +0 -40
  1326. data/spec/plugins/meta/remedies/discovery_spec.rb +0 -21
  1327. data/spec/plugins/meta/remedies/timing_attacks_spec.rb +0 -34
  1328. data/spec/plugins/meta/uniformity_spec.rb +0 -83
  1329. data/spec/plugins/profiler_spec.rb +0 -82
  1330. data/spec/plugins/rescan_spec.rb +0 -26
  1331. data/spec/plugins/resolver_spec.rb +0 -16
  1332. data/spec/plugins/script_spec.rb +0 -12
  1333. data/spec/plugins/uncommon_headers_spec.rb +0 -64
  1334. data/spec/plugins/vector_feed_spec.rb +0 -167
  1335. data/spec/plugins/waf_detector_spec.rb +0 -41
  1336. data/spec/reports/afr_spec.rb +0 -13
  1337. data/spec/reports/ap_spec.rb +0 -9
  1338. data/spec/reports/html_spec.rb +0 -13
  1339. data/spec/reports/json_spec.rb +0 -17
  1340. data/spec/reports/marshal_spec.rb +0 -13
  1341. data/spec/reports/stdout_spec.rb +0 -9
  1342. data/spec/reports/txt_spec.rb +0 -8
  1343. data/spec/reports/xml_spec.rb +0 -13
  1344. data/spec/reports/yaml_spec.rb +0 -13
  1345. data/spec/support/fixtures/auditstore.afr +0 -76074
  1346. data/spec/support/fixtures/modules/test.rb +0 -58
  1347. data/spec/support/fixtures/modules/test2.rb +0 -46
  1348. data/spec/support/fixtures/modules/test3.rb +0 -46
  1349. data/spec/support/fixtures/plugins/spider_hook.rb +0 -50
  1350. data/spec/support/fixtures/reports/base_spec/plugin_formatters/with_formatters/foobar.rb +0 -21
  1351. data/spec/support/fixtures/reports/base_spec/with_formatters.rb +0 -23
  1352. data/spec/support/fixtures/reports/base_spec/with_outfile.rb +0 -24
  1353. data/spec/support/fixtures/reports/base_spec/without_outfile.rb +0 -20
  1354. data/spec/support/fixtures/reports/manager_spec/afr.rb +0 -21
  1355. data/spec/support/fixtures/reports/manager_spec/foo.rb +0 -26
  1356. data/spec/support/fixtures/rpcd_handlers/echo.rb +0 -68
  1357. data/spec/support/fixtures/run_mod/body.rb +0 -58
  1358. data/spec/support/fixtures/run_mod/cookies.rb +0 -58
  1359. data/spec/support/fixtures/run_mod/empty.rb +0 -58
  1360. data/spec/support/fixtures/run_mod/flch.rb +0 -63
  1361. data/spec/support/fixtures/run_mod/forms.rb +0 -58
  1362. data/spec/support/fixtures/run_mod/headers.rb +0 -58
  1363. data/spec/support/fixtures/run_mod/links.rb +0 -58
  1364. data/spec/support/fixtures/run_mod/nil.rb +0 -57
  1365. data/spec/support/fixtures/run_mod/path.rb +0 -58
  1366. data/spec/support/fixtures/run_mod/server.rb +0 -58
  1367. data/spec/support/fixtures/taint_module/taint.rb +0 -48
  1368. data/spec/support/fixtures/wait_module/wait.rb +0 -48
  1369. data/spec/support/logs/Dispatcher - 1332-56847.log +0 -9
  1370. data/spec/support/logs/Dispatcher - 1361-63434.log +0 -21
  1371. data/spec/support/logs/Dispatcher - 1545-55308.log +0 -9
  1372. data/spec/support/logs/Dispatcher - 1559-18938.log +0 -19
  1373. data/spec/support/logs/Dispatcher - 1568-25013.log +0 -17
  1374. data/spec/support/logs/Dispatcher - 1577-55689.log +0 -13
  1375. data/spec/support/logs/Dispatcher - 1586-18577.log +0 -9
  1376. data/spec/support/logs/Dispatcher - 1595-49353.log +0 -9
  1377. data/spec/support/logs/Dispatcher - 1604-27831.log +0 -11
  1378. data/spec/support/logs/Dispatcher - 1617-57444.log +0 -11
  1379. data/spec/support/logs/Dispatcher - 1631-28737.log +0 -11
  1380. data/spec/support/logs/Dispatcher - 1644-21815.log +0 -33
  1381. data/spec/support/logs/Dispatcher - 1738-53470.log +0 -21
  1382. data/spec/support/logs/Dispatcher - 1747-64173.log +0 -21
  1383. data/spec/support/logs/Dispatcher - 1756-11866.log +0 -23
  1384. data/spec/support/logs/Dispatcher - 1798-12175.log +0 -19
  1385. data/spec/support/logs/Dispatcher - 1807-22790.log +0 -17
  1386. data/spec/support/logs/Dispatcher - 1816-57823.log +0 -15
  1387. data/spec/support/logs/Dispatcher - 1831-64825.log +0 -11
  1388. data/spec/support/logs/Dispatcher - 1845-27623.log +0 -9
  1389. data/spec/support/logs/Dispatcher - 1854-26066.log +0 -9
  1390. data/spec/support/logs/Dispatcher - 1863-37486.log +0 -9
  1391. data/spec/support/logs/Dispatcher - 1874-22463.log +0 -9
  1392. data/spec/support/logs/Dispatcher - 1883-41263.log +0 -11
  1393. data/spec/support/logs/Dispatcher - 1900-53660.log +0 -9
  1394. data/spec/support/logs/Dispatcher - 1909-44423.log +0 -9
  1395. data/spec/support/logs/Dispatcher - 1921-58931.log +0 -9
  1396. data/spec/support/logs/Dispatcher - 1993-6448.log +0 -63
  1397. data/spec/support/logs/Dispatcher - 2002-19206.log +0 -43
  1398. data/spec/support/logs/Dispatcher - 2011-11852.log +0 -39
  1399. data/spec/support/logs/Dispatcher - 2020-65055.log +0 -34
  1400. data/spec/support/logs/Dispatcher - 2029-48445.log +0 -28
  1401. data/spec/support/logs/Dispatcher - 2038-55271.log +0 -21
  1402. data/spec/support/logs/Dispatcher - 2047-45722.log +0 -13
  1403. data/spec/support/logs/Dispatcher - 2057-48194.log +0 -9
  1404. data/spec/support/logs/Dispatcher - 2189-39843.log +0 -19
  1405. data/spec/support/logs/Dispatcher - 2199-15985.log +0 -21
  1406. data/spec/support/logs/Dispatcher - 2208-22080.log +0 -15
  1407. data/spec/support/logs/Dispatcher - 2221-37690.log +0 -19
  1408. data/spec/support/logs/Dispatcher - 2230-47867.log +0 -21
  1409. data/spec/support/logs/Dispatcher - 2239-27060.log +0 -15
  1410. data/spec/support/logs/Dispatcher - 2358-8967.log +0 -17
  1411. data/spec/support/logs/Dispatcher - 2367-27103.log +0 -21
  1412. data/spec/support/logs/Dispatcher - 2376-16287.log +0 -13
  1413. data/spec/support/logs/Dispatcher - 2389-9109.log +0 -19
  1414. data/spec/support/logs/Dispatcher - 2398-62926.log +0 -21
  1415. data/spec/support/logs/Dispatcher - 2407-48685.log +0 -15
  1416. data/spec/support/logs/Dispatcher - 2459-62480.log +0 -17
  1417. data/spec/support/logs/Dispatcher - 2470-57894.log +0 -21
  1418. data/spec/support/logs/Dispatcher - 2479-51883.log +0 -13
  1419. data/spec/support/logs/Dispatcher - 2493-36944.log +0 -17
  1420. data/spec/support/logs/Dispatcher - 2503-59143.log +0 -21
  1421. data/spec/support/logs/Dispatcher - 2513-33084.log +0 -13
  1422. data/spec/support/logs/Dispatcher - 25430-46306.log +0 -9
  1423. data/spec/support/logs/Dispatcher - 25457-10711.log +0 -23
  1424. data/spec/support/logs/Dispatcher - 25603-48892.log +0 -9
  1425. data/spec/support/logs/Dispatcher - 25613-24775.log +0 -19
  1426. data/spec/support/logs/Dispatcher - 25622-59684.log +0 -17
  1427. data/spec/support/logs/Dispatcher - 25631-23195.log +0 -13
  1428. data/spec/support/logs/Dispatcher - 25640-9810.log +0 -9
  1429. data/spec/support/logs/Dispatcher - 25649-52757.log +0 -9
  1430. data/spec/support/logs/Dispatcher - 25658-58550.log +0 -11
  1431. data/spec/support/logs/Dispatcher - 25671-30871.log +0 -11
  1432. data/spec/support/logs/Dispatcher - 25684-48620.log +0 -11
  1433. data/spec/support/logs/Dispatcher - 25697-18124.log +0 -37
  1434. data/spec/support/logs/Dispatcher - 25762-35321.log +0 -21
  1435. data/spec/support/logs/Dispatcher - 25771-64633.log +0 -21
  1436. data/spec/support/logs/Dispatcher - 25780-43558.log +0 -23
  1437. data/spec/support/logs/Dispatcher - 25821-43561.log +0 -19
  1438. data/spec/support/logs/Dispatcher - 25830-39112.log +0 -17
  1439. data/spec/support/logs/Dispatcher - 25839-44093.log +0 -15
  1440. data/spec/support/logs/Dispatcher - 25852-12057.log +0 -11
  1441. data/spec/support/logs/Dispatcher - 25866-49029.log +0 -9
  1442. data/spec/support/logs/Dispatcher - 25875-32179.log +0 -9
  1443. data/spec/support/logs/Dispatcher - 25884-62703.log +0 -9
  1444. data/spec/support/logs/Dispatcher - 25894-4228.log +0 -9
  1445. data/spec/support/logs/Dispatcher - 25903-6709.log +0 -11
  1446. data/spec/support/logs/Dispatcher - 25917-29651.log +0 -9
  1447. data/spec/support/logs/Dispatcher - 25926-12708.log +0 -9
  1448. data/spec/support/logs/Dispatcher - 25935-54092.log +0 -9
  1449. data/spec/support/logs/Dispatcher - 25990-26756.log +0 -63
  1450. data/spec/support/logs/Dispatcher - 25999-4016.log +0 -43
  1451. data/spec/support/logs/Dispatcher - 26008-52076.log +0 -39
  1452. data/spec/support/logs/Dispatcher - 26017-48497.log +0 -34
  1453. data/spec/support/logs/Dispatcher - 26026-28839.log +0 -28
  1454. data/spec/support/logs/Dispatcher - 26035-54215.log +0 -21
  1455. data/spec/support/logs/Dispatcher - 26044-27216.log +0 -13
  1456. data/spec/support/logs/Dispatcher - 26054-53464.log +0 -9
  1457. data/spec/support/logs/Dispatcher - 26163-65271.log +0 -19
  1458. data/spec/support/logs/Dispatcher - 26173-58105.log +0 -21
  1459. data/spec/support/logs/Dispatcher - 26182-40848.log +0 -15
  1460. data/spec/support/logs/Dispatcher - 26195-2855.log +0 -19
  1461. data/spec/support/logs/Dispatcher - 26204-35297.log +0 -21
  1462. data/spec/support/logs/Dispatcher - 26213-59588.log +0 -15
  1463. data/spec/support/logs/Dispatcher - 26333-40774.log +0 -17
  1464. data/spec/support/logs/Dispatcher - 26342-45541.log +0 -21
  1465. data/spec/support/logs/Dispatcher - 26351-3349.log +0 -13
  1466. data/spec/support/logs/Dispatcher - 26364-37456.log +0 -19
  1467. data/spec/support/logs/Dispatcher - 26373-37340.log +0 -21
  1468. data/spec/support/logs/Dispatcher - 26382-54864.log +0 -15
  1469. data/spec/support/logs/Dispatcher - 26434-3070.log +0 -17
  1470. data/spec/support/logs/Dispatcher - 26448-14295.log +0 -21
  1471. data/spec/support/logs/Dispatcher - 26474-30587.log +0 -13
  1472. data/spec/support/logs/Dispatcher - 26500-32529.log +0 -17
  1473. data/spec/support/logs/Dispatcher - 26509-16952.log +0 -21
  1474. data/spec/support/logs/Dispatcher - 26519-43332.log +0 -13
  1475. data/spec/support/logs/Dispatcher - 26750-61867.log +0 -19
  1476. data/spec/support/logs/Dispatcher - 26759-22532.log +0 -21
  1477. data/spec/support/logs/Dispatcher - 26768-18231.log +0 -15
  1478. data/spec/support/logs/Dispatcher - 26792-41661.log +0 -21
  1479. data/spec/support/logs/Dispatcher - 26801-14384.log +0 -25
  1480. data/spec/support/logs/Dispatcher - 26810-2591.log +0 -15
  1481. data/spec/support/logs/Dispatcher - 26846-14591.log +0 -17
  1482. data/spec/support/logs/Dispatcher - 26855-15708.log +0 -21
  1483. data/spec/support/logs/Dispatcher - 26864-2062.log +0 -13
  1484. data/spec/support/logs/Dispatcher - 26877-14471.log +0 -21
  1485. data/spec/support/logs/Dispatcher - 26886-49795.log +0 -25
  1486. data/spec/support/logs/Dispatcher - 26895-21093.log +0 -15
  1487. data/spec/support/logs/Dispatcher - 26931-30049.log +0 -17
  1488. data/spec/support/logs/Dispatcher - 26940-34273.log +0 -21
  1489. data/spec/support/logs/Dispatcher - 26949-30040.log +0 -13
  1490. data/spec/support/logs/Dispatcher - 26962-8152.log +0 -17
  1491. data/spec/support/logs/Dispatcher - 26971-53062.log +0 -21
  1492. data/spec/support/logs/Dispatcher - 26980-7548.log +0 -13
  1493. data/spec/support/logs/Dispatcher - 2737-20989.log +0 -19
  1494. data/spec/support/logs/Dispatcher - 2746-5423.log +0 -21
  1495. data/spec/support/logs/Dispatcher - 2755-53393.log +0 -15
  1496. data/spec/support/logs/Dispatcher - 27615-41812.log +0 -19
  1497. data/spec/support/logs/Dispatcher - 27624-43683.log +0 -21
  1498. data/spec/support/logs/Dispatcher - 27633-11593.log +0 -15
  1499. data/spec/support/logs/Dispatcher - 27658-12186.log +0 -21
  1500. data/spec/support/logs/Dispatcher - 27667-15575.log +0 -25
  1501. data/spec/support/logs/Dispatcher - 27676-17207.log +0 -15
  1502. data/spec/support/logs/Dispatcher - 27712-2233.log +0 -17
  1503. data/spec/support/logs/Dispatcher - 27721-3842.log +0 -21
  1504. data/spec/support/logs/Dispatcher - 27730-22695.log +0 -13
  1505. data/spec/support/logs/Dispatcher - 27743-8364.log +0 -21
  1506. data/spec/support/logs/Dispatcher - 27752-6140.log +0 -25
  1507. data/spec/support/logs/Dispatcher - 27761-25015.log +0 -15
  1508. data/spec/support/logs/Dispatcher - 27797-9270.log +0 -17
  1509. data/spec/support/logs/Dispatcher - 2780-58168.log +0 -21
  1510. data/spec/support/logs/Dispatcher - 27806-48623.log +0 -21
  1511. data/spec/support/logs/Dispatcher - 27815-58778.log +0 -13
  1512. data/spec/support/logs/Dispatcher - 27828-29742.log +0 -17
  1513. data/spec/support/logs/Dispatcher - 27837-46211.log +0 -21
  1514. data/spec/support/logs/Dispatcher - 27846-16143.log +0 -13
  1515. data/spec/support/logs/Dispatcher - 2789-29375.log +0 -25
  1516. data/spec/support/logs/Dispatcher - 2798-10983.log +0 -15
  1517. data/spec/support/logs/Dispatcher - 2836-2354.log +0 -17
  1518. data/spec/support/logs/Dispatcher - 2845-65341.log +0 -21
  1519. data/spec/support/logs/Dispatcher - 2854-18936.log +0 -13
  1520. data/spec/support/logs/Dispatcher - 2867-51979.log +0 -21
  1521. data/spec/support/logs/Dispatcher - 2876-21086.log +0 -25
  1522. data/spec/support/logs/Dispatcher - 2887-17393.log +0 -15
  1523. data/spec/support/logs/Dispatcher - 2930-37394.log +0 -17
  1524. data/spec/support/logs/Dispatcher - 2943-46737.log +0 -21
  1525. data/spec/support/logs/Dispatcher - 2956-37866.log +0 -13
  1526. data/spec/support/logs/Dispatcher - 2976-21012.log +0 -17
  1527. data/spec/support/logs/Dispatcher - 2990-48082.log +0 -21
  1528. data/spec/support/logs/Dispatcher - 2999-16391.log +0 -13
  1529. data/spec/support/logs/Instance - 2204-45164.error.log +0 -356
  1530. data/spec/support/logs/Instance - 2475-49789.error.log +0 -356
  1531. data/spec/support/logs/Instance - 2509-39450.error.log +0 -455
  1532. data/spec/support/logs/Instance - 2533-5785.error.log +0 -354
  1533. data/spec/support/logs/Instance - 2539-42941.error.log +0 -356
  1534. data/spec/support/logs/Instance - 26178-57631.error.log +0 -324
  1535. data/spec/support/logs/Instance - 26458-60253.error.log +0 -326
  1536. data/spec/support/logs/Instance - 26514-44685.error.log +0 -423
  1537. data/spec/support/logs/Instance - 26538-43093.error.log +0 -322
  1538. data/spec/support/logs/Instance - 26544-52217.error.log +0 -328
  1539. data/spec/support/logs/Instance - 26682-37056.error.log +0 -345
  1540. data/spec/support/logs/Instance - 2669-56818.error.log +0 -354
  1541. data/spec/support/logs/Instance - 27547-3928.error.log +0 -309
  1542. data/spec/support/servers/arachni/element/capabilities/auditable/rdiff.rb +0 -162
  1543. data/spec/support/servers/arachni/element/capabilities/auditable/timeout.rb +0 -34
  1544. data/spec/support/servers/arachni/http.rb +0 -127
  1545. data/spec/support/servers/arachni/http_auth.rb +0 -9
  1546. data/spec/support/servers/arachni/module/auditor.rb +0 -136
  1547. data/spec/support/servers/arachni/rpc/server/framework_simple.rb +0 -30
  1548. data/spec/support/servers/arachni/spider.rb +0 -234
  1549. data/spec/support/servers/arachni/spider_https.rb +0 -58
  1550. data/spec/support/servers/modules/audit/code_injection.rb +0 -139
  1551. data/spec/support/servers/modules/audit/code_injection_timing.rb +0 -110
  1552. data/spec/support/servers/modules/audit/file_inclusion.rb +0 -202
  1553. data/spec/support/servers/modules/audit/ldapi.rb +0 -73
  1554. data/spec/support/servers/modules/audit/os_cmd_injection.rb +0 -140
  1555. data/spec/support/servers/modules/audit/os_cmd_injection_timing.rb +0 -103
  1556. data/spec/support/servers/modules/audit/path_traversal.rb +0 -197
  1557. data/spec/support/servers/modules/audit/response_splitting.rb +0 -114
  1558. data/spec/support/servers/modules/audit/session_fixation.rb +0 -87
  1559. data/spec/support/servers/modules/audit/source_code_disclosure.rb +0 -95
  1560. data/spec/support/servers/modules/audit/sqli.rb +0 -118
  1561. data/spec/support/servers/modules/audit/sqli_blind_timing.rb +0 -121
  1562. data/spec/support/servers/modules/audit/unvalidated_redirect.rb +0 -115
  1563. data/spec/support/servers/modules/audit/xpath.rb +0 -111
  1564. data/spec/support/servers/modules/audit/xss.rb +0 -152
  1565. data/spec/support/servers/modules/audit/xss_event.rb +0 -80
  1566. data/spec/support/servers/modules/audit/xss_script_tag.rb +0 -73
  1567. data/spec/support/servers/modules/module_server.rb +0 -14
  1568. data/spec/support/servers/modules/recon/backdoors.rb +0 -4
  1569. data/spec/support/servers/modules/recon/backup_files.rb +0 -28
  1570. data/spec/support/servers/modules/recon/common_directories.rb +0 -6
  1571. data/spec/support/servers/modules/recon/common_files.rb +0 -6
  1572. data/spec/support/servers/modules/recon/directory_listing.rb +0 -30
  1573. data/spec/support/servers/modules/recon/grep/emails.rb +0 -21
  1574. data/spec/support/servers/modules/recon/grep/insecure_cookies.rb +0 -21
  1575. data/spec/support/servers/modules/recon/grep/mixed_resource.rb +0 -83
  1576. data/spec/support/servers/modules/recon/grep/password_autocomplete.rb +0 -33
  1577. data/spec/support/servers/modules/recon/grep/unencrypted_password_forms.rb +0 -33
  1578. data/spec/support/servers/modules/recon/http_put.rb +0 -7
  1579. data/spec/support/servers/modules/recon/interesting_responses.rb +0 -5
  1580. data/spec/support/servers/modules/recon/webdav.rb +0 -25
  1581. data/spec/support/servers/modules/recon/x_forwarded_for_access_restriction_bypass.rb +0 -16
  1582. data/spec/support/servers/plugins/profiler.rb +0 -82
  1583. data/spec/support/servers/plugins/rescan.rb +0 -31
  1584. data/spec/support/shared/module.rb +0 -162
  1585. data/spec/support/shared/reports.rb +0 -47
@@ -6,747 +6,891 @@ describe Arachni::Framework do
6
6
  @url = web_server_url_for( :auditor )
7
7
  @f_url = web_server_url_for( :framework )
8
8
 
9
- @opts = Arachni::Options.instance
9
+ @options = Arachni::Options.instance
10
10
  end
11
11
 
12
12
  before( :each ) do
13
13
  reset_options
14
- @opts.dir['reports'] = fixtures_path + '/reports/manager_spec/'
15
- @opts.dir['modules'] = fixtures_path + '/taint_module/'
14
+ @options.paths.reporters = fixtures_path + '/reporters/manager_spec/'
15
+ @options.paths.checks = fixtures_path + '/taint_check/'
16
16
 
17
17
  @f = Arachni::Framework.new
18
+ @f.options.url = @url
19
+ end
20
+ after( :each ) do
21
+ File.delete( @snapshot ) rescue nil
22
+
23
+ @f.clean_up
18
24
  @f.reset
19
25
  end
20
- after( :each ) { @f.reset }
21
26
 
22
- context 'when passed a block' do
23
- it 'executes it' do
24
- ran = false
25
- Arachni::Framework.new do |f|
26
- ran = true
27
+ subject { @f }
28
+
29
+ describe '#initialize' do
30
+ context 'when passed a block' do
31
+ it 'executes it' do
32
+ ran = false
33
+ Arachni::Framework.new do |f|
34
+ ran = true
35
+ end
36
+
37
+ ran.should be_true
38
+ end
39
+
40
+ it 'resets the framework' do
41
+ Arachni::Checks.constants.include?( :Taint ).should be_false
42
+
43
+ Arachni::Framework.new do |f|
44
+ f.checks.load_all.should == %w(taint)
45
+ Arachni::Checks.constants.include?( :Taint ).should be_true
46
+ end
47
+
48
+ Arachni::Checks.constants.include?( :Taint ).should be_false
49
+ end
50
+
51
+ context 'when an exception is raised' do
52
+ it 'raises it' do
53
+ expect { Arachni::Framework.new { |f| raise } }.to raise_error
54
+ end
55
+ end
56
+ end
57
+ end
58
+
59
+ describe '#version' do
60
+ it "returns #{Arachni::VERSION}" do
61
+ subject.version.should == Arachni::VERSION
62
+ end
63
+ end
64
+
65
+ describe '#browser_cluster' do
66
+ it "returns #{Arachni::BrowserCluster}" do
67
+ subject.browser_cluster.should be_kind_of Arachni::BrowserCluster
68
+ end
69
+
70
+ context "when #{Arachni::OptionGroups::BrowserCluster}#pool_size" do
71
+ it 'returns nil' do
72
+ subject.options.browser_cluster.pool_size = 0
73
+ subject.browser_cluster.should be_nil
74
+ end
75
+ end
76
+
77
+ context "when #{Arachni::OptionGroups::Scope}#dom_depth_limit" do
78
+ it 'returns nil' do
79
+ subject.options.scope.dom_depth_limit = 0
80
+ subject.browser_cluster.should be_nil
27
81
  end
82
+ end
83
+ end
28
84
 
29
- ran.should be_true
85
+ describe '#state' do
86
+ it "returns #{Arachni::State::Framework}" do
87
+ subject.state.should be_kind_of Arachni::State::Framework
30
88
  end
89
+ end
31
90
 
32
- it 'resets the framework' do
33
- Arachni::Modules.constants.include?( :Taint ).should be_false
91
+ describe '#data' do
92
+ it "returns #{Arachni::Data::Framework}" do
93
+ subject.data.should be_kind_of Arachni::Data::Framework
94
+ end
95
+ end
34
96
 
97
+ describe '#on_page_audit' do
98
+ it 'calls the given block before each page is audited' do
99
+ ok = false
35
100
  Arachni::Framework.new do |f|
36
- f.modules.load_all.should == %w(taint)
37
- Arachni::Modules.constants.include?( :Taint ).should be_true
101
+ f.options.url = @url
102
+ f.on_page_audit { ok = true }
103
+
104
+ f.audit_page Arachni::Page.from_url( @url + '/link' )
38
105
  end
106
+ ok.should be_true
107
+ end
108
+ end
109
+
110
+ describe '#after_page_audit' do
111
+ it 'calls the given block before each page is audited' do
112
+ ok = false
113
+ Arachni::Framework.new do |f|
114
+ f.options.url = @url
115
+ f.after_page_audit { ok = true }
39
116
 
40
- Arachni::Modules.constants.include?( :Taint ).should be_false
117
+ f.audit_page Arachni::Page.from_url( @url + '/link' )
118
+ end
119
+ ok.should be_true
41
120
  end
42
121
  end
43
122
 
44
123
  context 'when unable to get a response for the given URL' do
45
124
  context 'due to a network error' do
46
125
  it 'returns an empty sitemap and have failures' do
47
- @opts.url = 'http://blahaha'
48
- @opts.do_not_crawl
126
+ @options.url = 'http://blahaha'
127
+ @options.scope.restrict_paths = [@options.url]
49
128
 
50
- @f.push_to_url_queue @opts.url
51
- @f.modules.load :taint
52
- @f.run
53
- @f.failures.should be_any
129
+ subject.checks.load :taint
130
+ subject.run
131
+ subject.failures.should be_any
54
132
  end
55
133
  end
56
134
 
57
135
  context 'due to a server error' do
58
136
  it 'returns an empty sitemap and have failures' do
59
- @opts.url = @f_url + '/fail'
60
- @opts.do_not_crawl
137
+ @options.url = @f_url + '/fail'
138
+ @options.scope.restrict_paths = [@options.url]
61
139
 
62
- @f.push_to_url_queue @opts.url
63
- @f.modules.load :taint
64
- @f.run
65
- @f.failures.should be_any
140
+ subject.checks.load :taint
141
+ subject.run
142
+ subject.failures.should be_any
66
143
  end
67
144
  end
68
145
 
69
146
  it "retries #{Arachni::Framework::AUDIT_PAGE_MAX_TRIES} times" do
70
- @opts.url = @f_url + '/fail_4_times'
71
- @opts.do_not_crawl
147
+ @options.url = @f_url + '/fail_4_times'
148
+ @options.scope.restrict_paths = [@options.url]
72
149
 
73
- @f.push_to_url_queue @opts.url
74
- @f.modules.load :taint
75
- @f.run
76
- @f.failures.should be_empty
150
+ subject.checks.load :taint
151
+ subject.run
152
+ subject.failures.should be_empty
77
153
  end
78
154
  end
79
155
 
80
156
  describe '#failures' do
81
157
  context 'when there are no failed requests' do
82
158
  it 'returns an empty array' do
83
- @opts.url = @f_url
84
- @opts.do_not_crawl
159
+ @options.url = @f_url
160
+ @options.scope.restrict_paths = [@options.url]
85
161
 
86
- @f.push_to_url_queue @opts.url
87
- @f.modules.load :taint
88
- @f.run
89
- @f.failures.should be_empty
162
+ subject.checks.load :taint
163
+ subject.run
164
+ subject.failures.should be_empty
90
165
  end
91
166
  end
92
167
  context 'when there are failed requests' do
93
168
  it 'returns an array containing the failed URLs' do
94
- @opts.url = @f_url + '/fail'
95
- @opts.do_not_crawl
169
+ @options.url = @f_url + '/fail'
170
+ @options.scope.restrict_paths = [@options.url]
96
171
 
97
- @f.push_to_url_queue @opts.url
98
- @f.modules.load :taint
99
- @f.run
100
- @f.failures.should be_any
172
+ subject.checks.load :taint
173
+ subject.run
174
+ subject.failures.should be_any
101
175
  end
102
176
  end
103
177
  end
104
178
 
105
- describe '#opts' do
106
- it 'provides access to the framework options' do
107
- @f.opts.is_a?( Arachni::Options ).should be_true
179
+ describe '#options' do
180
+ it "provides access to #{Arachni::Options}" do
181
+ subject.options.should be_kind_of Arachni::Options
108
182
  end
109
183
 
110
- describe '#exclude_binaries' do
111
- it 'excludes binary pages from the audit' do
112
- f = Arachni::Framework.new
184
+ describe "#{Arachni::OptionGroups::Scope}#exclude_binaries" do
185
+ it 'excludes binary pages from the scan' do
186
+ audited = []
187
+ Arachni::Framework.new do |f|
188
+ f.options.url = @url
189
+ f.options.scope.restrict_paths << @url + '/binary'
190
+ f.options.audit.elements :links, :forms, :cookies
191
+ f.checks.load :taint
192
+
193
+ f.on_page_audit { |p| audited << p.url }
194
+ f.run
195
+ end
196
+ audited.sort.should == [@url + '/binary'].sort
113
197
 
114
- f.opts.url = @url + '/binary'
115
- f.opts.audit :links, :forms, :cookies
116
- f.modules.load :taint
198
+ audited = []
199
+ Arachni::Framework.new do |f|
200
+ f.options.url = @url
201
+ f.options.scope.restrict_paths << @url + '/binary'
202
+ f.options.scope.exclude_binaries = true
203
+ f.checks.load :taint
117
204
 
118
- ok = false
119
- f.on_audit_page { ok = true }
120
- f.run
121
- ok.should be_true
122
- f.reset
205
+ f.on_page_audit { |p| audited << p.url }
206
+ f.run
207
+ end
208
+ audited.should be_empty
209
+ end
210
+ end
123
211
 
124
- f.opts.url = @url + '/binary'
125
- f.opts.exclude_binaries = true
126
- f.modules.load :taint
212
+ describe "#{Arachni::OptionGroups::Scope}#restrict_paths" do
213
+ it 'serves as a replacement to crawling' do
214
+ Arachni::Framework.new do |f|
215
+ f.options.url = "#{@url}/elem_combo"
216
+ f.options.scope.restrict_paths = %w(/log_remote_file_if_exists/true)
217
+ f.options.audit.elements :links, :forms, :cookies
218
+ f.checks.load :taint
127
219
 
128
- ok = true
129
- f.on_audit_page { ok = false }
220
+ f.run
130
221
 
131
- f.run
132
- f.reset
133
- ok.should be_true
222
+ sitemap = f.report.sitemap.map { |u, _| u.split( '?' ).first }
223
+ sitemap.sort.uniq.should == f.options.scope.restrict_paths.
224
+ map { |p| f.to_absolute( p ) }.sort
225
+ end
134
226
  end
135
227
  end
136
- describe '#restrict_paths' do
137
- it 'serves as a replacement to crawling' do
138
- f = Arachni::Framework.new
139
- f.opts.url = @url
140
- f.opts.restrict_paths = %w(/elem_combo /log_remote_file_if_exists/true)
141
- f.opts.audit :links, :forms, :cookies
142
- f.modules.load :taint
228
+ end
143
229
 
144
- f.run
230
+ describe '#sitemap' do
231
+ it 'returns a hash with covered URLs and HTTP status codes' do
232
+ Arachni::Framework.new do |f|
233
+ f.options.url = "#{@url}/"
234
+ f.options.audit.elements :links, :forms, :cookies
235
+ f.checks.load :taint
145
236
 
146
- sitemap = f.auditstore.sitemap.sort.map { |u| u.split( '?' ).first }
147
- sitemap.uniq.should == f.opts.restrict_paths.sort
148
- f.modules.clear
237
+ f.run
238
+ f.sitemap.should == { "#{@url}/" => 200 }
149
239
  end
150
240
  end
151
241
  end
152
242
 
153
- describe '#reports' do
154
- it 'provides access to the report manager' do
155
- @f.reports.is_a?( Arachni::Report::Manager ).should be_true
156
- @f.reports.available.sort.should == %w(afr foo).sort
243
+ describe '#reporters' do
244
+ it 'provides access to the reporter manager' do
245
+ subject.reporters.is_a?( Arachni::Reporter::Manager ).should be_true
246
+ subject.reporters.available.sort.should == %w(afr foo).sort
157
247
  end
158
248
  end
159
249
 
160
- describe '#modules' do
161
- it 'provides access to the module manager' do
162
- @f.modules.is_a?( Arachni::Module::Manager ).should be_true
163
- @f.modules.available.should == %w(taint)
250
+ describe '#checks' do
251
+ it 'provides access to the check manager' do
252
+ subject.checks.is_a?( Arachni::Check::Manager ).should be_true
253
+ subject.checks.available.should == %w(taint)
164
254
  end
165
255
  end
166
256
 
167
257
  describe '#plugins' do
168
258
  it 'provides access to the plugin manager' do
169
- @f.plugins.is_a?( Arachni::Plugin::Manager ).should be_true
170
- @f.plugins.available.sort.should ==
171
- %w(wait bad with_options distributable loop default spider_hook).sort
259
+ subject.plugins.is_a?( Arachni::Plugin::Manager ).should be_true
260
+ subject.plugins.available.sort.should ==
261
+ %w(wait bad with_options distributable loop default suspendable).sort
172
262
  end
173
263
  end
174
264
 
175
265
  describe '#http' do
176
266
  it 'provides access to the HTTP interface' do
177
- @f.http.is_a?( Arachni::HTTP ).should be_true
267
+ subject.http.is_a?( Arachni::HTTP::Client ).should be_true
178
268
  end
179
269
  end
180
270
 
181
- describe '#spider' do
182
- it 'provides access to the Spider' do
183
- @f.spider.is_a?( Arachni::Spider ).should be_true
271
+ describe '#scanning?' do
272
+ it "delegates to #{Arachni::State::Framework}#scanning?" do
273
+ subject.state.stub(:scanning?) { :stuff }
274
+ subject.scanning?.should == :stuff
184
275
  end
185
276
  end
186
277
 
187
- describe '#run' do
278
+ describe '#paused?' do
279
+ it "delegates to #{Arachni::State::Framework}#paused?" do
280
+ subject.state.stub(:paused?) { :stuff }
281
+ subject.paused?.should == :stuff
282
+ end
283
+ end
188
284
 
189
- it 'performs the audit' do
190
- @f.opts.url = @url + '/elem_combo'
191
- @f.opts.audit :links, :forms, :cookies
192
- @f.modules.load :taint
193
- @f.plugins.load :wait
194
- @f.reports.load :foo
285
+ describe '#run' do
286
+ it 'follows redirects' do
287
+ subject.options.url = @f_url + '/redirect'
288
+ subject.run
289
+ subject.sitemap.should == {
290
+ "#{@f_url}/redirect" => 302,
291
+ "#{@f_url}/redirected" => 200
292
+ }
293
+ end
195
294
 
196
- @f.status.should == 'ready'
295
+ it 'performs the scan' do
296
+ subject.options.url = @url + '/elem_combo'
297
+ subject.options.audit.elements :links, :forms, :cookies
298
+ subject.checks.load :taint
299
+ subject.plugins.load :wait
197
300
 
198
- @f.pause
199
- @f.status.should == 'paused'
301
+ subject.run
302
+ subject.report.issues.size.should == 3
200
303
 
201
- @f.resume
202
- @f.status.should == 'ready'
304
+ subject.report.plugins[:wait][:results].should == { 'stuff' => true }
305
+ end
203
306
 
204
- called = false
205
- t = Thread.new{
206
- @f.run {
207
- called = true
208
- @f.status.should == 'cleanup'
209
- }
210
- }
307
+ it 'sets #status to scanning' do
308
+ described_class.new do |f|
309
+ f.options.url = @url + '/elem_combo'
310
+ f.options.audit.elements :links, :forms, :cookies
311
+ f.checks.load :taint
211
312
 
212
- raised = false
213
- begin
214
- Timeout.timeout( 10 ) {
215
- sleep( 0.01 ) while @f.status == 'preparing'
216
- sleep( 0.01 ) while @f.status == 'crawling'
217
- sleep( 0.01 ) while @f.status == 'auditing'
218
- }
219
- rescue TimeoutError
220
- raised = true
313
+ t = Thread.new { f.run }
314
+ Timeout.timeout( 5 ) do
315
+ sleep 0.1 while f.status != :scanning
316
+ end
317
+ t.join
221
318
  end
319
+ end
222
320
 
223
- raised.should be_false
224
-
225
- t.join
226
- called.should be_true
321
+ it 'handles heavy load' do
322
+ @options.paths.checks = fixtures_path + '/taint_check/'
227
323
 
228
- @f.status.should == 'done'
229
- @f.auditstore.issues.size.should == 5
324
+ Arachni::Framework.new do |f|
325
+ f.options.url = web_server_url_for :framework_multi
326
+ f.options.audit.elements :links
230
327
 
231
- @f.auditstore.plugins['wait'][:results].should == { stuff: true }
328
+ f.checks.load :taint
232
329
 
233
- File.exists?( 'afr' ).should be_true
234
- File.exists?( 'foo' ).should be_true
235
- File.delete( 'foo' )
236
- File.delete( 'afr' )
330
+ f.run
331
+ f.report.issues.size.should == 500
332
+ end
237
333
  end
238
334
 
239
- it 'handles heavy load' do
240
- @opts.dir['modules'] = fixtures_path + '/taint_module/'
241
- f = Arachni::Framework.new
242
-
243
- f.opts.url = web_server_url_for :framework_hpg
244
- f.opts.audit :links
335
+ it 'handles pages with JavaScript code' do
336
+ Arachni::Framework.new do |f|
337
+ f.options.url = @url + '/with_javascript'
338
+ f.options.audit.elements :links, :forms, :cookies
245
339
 
246
- f.modules.load :taint
340
+ f.checks.load :taint
341
+ f.run
247
342
 
248
- f.run
249
- f.auditstore.issues.size.should == 500
250
- f.modules.clear
343
+ f.report.issues.
344
+ map { |i| i.variations.first.vector.affected_input_name }.
345
+ uniq.sort.should == %w(link_input form_input cookie_input).sort
346
+ end
251
347
  end
252
348
 
253
- context 'when the page has a body which is' do
254
- context 'not empty' do
255
- it 'runs modules that audit the page body' do
256
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
257
- f = Arachni::Framework.new
349
+ it 'handles AJAX' do
350
+ Arachni::Framework.new do |f|
351
+ f.options.url = @url + '/with_ajax'
352
+ f.options.audit.elements :links, :forms, :cookies
258
353
 
259
- f.opts.audit :links
260
- f.modules.load %w(body)
354
+ f.checks.load :taint
355
+ f.run
261
356
 
262
- link = Arachni::Element::Link.new( 'http://test' )
263
- p = Arachni::Page.new( url: 'http://test', body: 'stuff' )
264
- f.push_to_page_queue( p )
357
+ f.report.issues.
358
+ map { |i| i.variations.first.vector.affected_input_name }.
359
+ uniq.sort.should == %w(link_input form_input cookie_taint).sort
360
+ end
361
+ end
362
+
363
+ context 'when done' do
364
+ it 'sets #status to :done' do
365
+ described_class.new do |f|
366
+ f.options.url = @url + '/elem_combo'
367
+ f.options.audit.elements :links, :forms, :cookies
368
+ f.checks.load :taint
265
369
 
266
370
  f.run
267
- f.auditstore.issues.size.should == 1
268
- f.modules.clear
371
+ f.status.should == :done
269
372
  end
270
373
  end
271
- context 'empty' do
272
- it 'skips modules that audit the page body' do
273
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
274
- f = Arachni::Framework.new
374
+ end
375
+
376
+ context 'when it has log-in capabilities and gets logged out' do
377
+ it 'logs-in again before continuing with the audit' do
378
+ Arachni::Framework.new do |f|
379
+ url = web_server_url_for( :framework ) + '/'
380
+ f.options.url = "#{url}/congrats"
275
381
 
276
- f.opts.audit :links
277
- f.modules.load %w(body)
382
+ f.options.audit.elements :links, :forms
383
+ f.checks.load_all
278
384
 
279
- link = Arachni::Element::Link.new( 'http://test' )
280
- p = Arachni::Page.new( url: 'http://test', body: '' )
281
- f.push_to_page_queue( p )
385
+ f.session.configure(
386
+ url: url,
387
+ inputs: {
388
+ username: 'john',
389
+ password: 'doe'
390
+ }
391
+ )
392
+
393
+ f.options.session.check_url = url
394
+ f.options.session.check_pattern = 'logged-in user'
282
395
 
283
396
  f.run
284
- f.auditstore.issues.size.should == 0
285
- f.modules.clear
397
+ f.report.issues.size.should == 1
286
398
  end
287
399
  end
288
400
  end
401
+ end
289
402
 
290
- context 'when auditing links is' do
291
- context 'enabled' do
292
- context 'and the page contains links' do
293
- it 'runs modules that audit links' do
294
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
295
- f = Arachni::Framework.new
403
+ describe '#abort' do
404
+ it 'aborts the system' do
405
+ @options.paths.checks = fixtures_path + '/taint_check/'
296
406
 
297
- f.opts.audit :links
298
- f.modules.load %w(links forms cookies headers flch)
407
+ described_class.new do |f|
408
+ f.options.url = web_server_url_for :framework_multi
409
+ f.options.audit.elements :links
299
410
 
300
- link = Arachni::Element::Link.new( 'http://test' )
301
- p = Arachni::Page.new( url: 'http://test', links: [link] )
302
- f.push_to_page_queue( p )
411
+ f.plugins.load :wait
412
+ f.checks.load :taint
303
413
 
304
- f.run
305
- f.auditstore.issues.size.should == 2
306
- f.modules.clear
307
- end
414
+ t = Thread.new do
415
+ f.run
416
+ end
308
417
 
309
- it 'runs modules that audit path and server' do
310
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
311
- f = Arachni::Framework.new
418
+ sleep 0.1 while Arachni::Data.issues.size < 2
312
419
 
313
- f.opts.audit :links
314
- f.modules.load %w(path server)
420
+ f.abort
421
+ t.join
315
422
 
316
- link = Arachni::Element::Link.new( 'http://test' )
317
- p = Arachni::Page.new( url: 'http://test', links: [link] )
318
- f.push_to_page_queue( p )
423
+ Arachni::Data.issues.size.should < 500
424
+ end
425
+ end
319
426
 
320
- f.run
321
- f.auditstore.issues.size.should == 2
322
- f.modules.clear
323
- end
427
+ it 'sets #status to :aborted' do
428
+ described_class.new do |f|
429
+ f.options.url = web_server_url_for :framework_multi
430
+ f.options.audit.elements :links
431
+ f.checks.load :taint
432
+
433
+ t = Thread.new do
434
+ f.run
435
+ end
436
+ sleep 0.1 while f.status != :scanning
324
437
 
325
- it 'runs modules that have not specified any elements' do
326
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
327
- f = Arachni::Framework.new
438
+ f.abort
439
+ f.status.should == :aborted
328
440
 
329
- f.opts.audit :links
330
- f.modules.load %w(nil empty)
441
+ t.join
442
+ f.status.should == :aborted
443
+ end
444
+ end
445
+ end
331
446
 
332
- link = Arachni::Element::Link.new( 'http://test' )
333
- p = Arachni::Page.new( url: 'http://test', links: [link] )
334
- f.push_to_page_queue( p )
447
+ describe '#suspend' do
448
+ it 'suspends the system' do
449
+ @options.paths.checks = fixtures_path + '/taint_check/'
335
450
 
336
- f.run
337
- f.auditstore.issues.size.should == 1
338
- f.modules.clear
339
- end
451
+ described_class.new do |f|
452
+ f.options.url = web_server_url_for :framework_multi
453
+ f.options.audit.elements :links
454
+
455
+ f.plugins.load :wait
456
+ f.checks.load :taint
457
+
458
+ t = Thread.new do
459
+ f.run
340
460
  end
341
- end
342
461
 
343
- context 'disabled' do
344
- context 'and the page contains links' do
345
- it 'skips modules that audit links' do
346
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
347
- f = Arachni::Framework.new
462
+ sleep 0.1 while Arachni::Data.issues.size < 2
348
463
 
349
- f.opts.dont_audit :links
350
- f.modules.load %w(links forms cookies headers flch)
464
+ @snapshot = f.suspend
465
+ t.join
351
466
 
352
- link = Arachni::Element::Link.new( 'http://test' )
353
- p = Arachni::Page.new( url: 'http://test', links: [link] )
354
- f.push_to_page_queue( p )
467
+ Arachni::Data.issues.size.should < 500
468
+ end
355
469
 
356
- f.run
357
- f.auditstore.issues.size.should == 0
358
- f.modules.clear
359
- end
470
+ Arachni::Snapshot.load( @snapshot ).should be_true
471
+ end
360
472
 
361
- it 'runs modules that audit path and server' do
362
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
363
- f = Arachni::Framework.new
473
+ it 'sets #status to :suspended' do
474
+ described_class.new do |f|
475
+ f.options.url = web_server_url_for :framework_multi
476
+ f.options.audit.elements :links
477
+ f.checks.load :taint
364
478
 
365
- f.opts.dont_audit :links
366
- f.modules.load %w(path server)
479
+ t = Thread.new do
480
+ f.run
481
+ end
482
+ sleep 0.1 while f.status != :scanning
367
483
 
368
- link = Arachni::Element::Link.new( 'http://test' )
369
- p = Arachni::Page.new( url: 'http://test', links: [link] )
370
- f.push_to_page_queue( p )
484
+ @snapshot = f.suspend
485
+ f.status.should == :suspended
371
486
 
372
- f.run
373
- f.auditstore.issues.size.should == 2
374
- f.modules.clear
375
- end
487
+ t.join
488
+ f.status.should == :suspended
489
+ end
490
+ end
376
491
 
377
- it 'runs modules that have not specified any elements' do
378
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
379
- f = Arachni::Framework.new
492
+ it 'suspends plugins' do
493
+ Arachni::Options.plugins['suspendable'] = {
494
+ 'my_option' => 'my value'
495
+ }
380
496
 
381
- f.opts.dont_audit :links
382
- f.modules.load %w(nil empty)
497
+ described_class.new do |f|
498
+ f.options.url = web_server_url_for :framework_multi
499
+ f.options.audit.elements :links
383
500
 
384
- link = Arachni::Element::Link.new( 'http://test' )
385
- p = Arachni::Page.new( url: 'http://test', links: [link] )
386
- f.push_to_page_queue( p )
501
+ f.checks.load :taint
502
+ f.plugins.load :suspendable
387
503
 
388
- f.run
389
- f.auditstore.issues.size.should == 1
390
- f.modules.clear
391
- end
504
+ t = Thread.new do
505
+ f.run
392
506
  end
393
- end
394
507
 
508
+ sleep 0.1 while f.status != :scanning
509
+
510
+ f.suspend
511
+ t.join
512
+
513
+ Arachni::State.plugins.runtime[:suspendable][:data].should == 1
514
+ end
395
515
  end
396
516
 
397
- context 'when auditing forms is' do
398
- context 'enabled' do
399
- context 'and the page contains forms' do
400
- it 'runs modules that audit forms' do
401
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
402
- f = Arachni::Framework.new
517
+ it 'waits for the BrowserCluster jobs to finish'
403
518
 
404
- f.opts.audit :forms
405
- f.modules.load %w(links forms cookies headers flch)
519
+ context "when #{Arachni::OptionGroups::Snapshot}#save_path" do
520
+ context 'is a directory' do
521
+ it 'stores the snapshot under it' do
522
+ @options.paths.checks = fixtures_path + '/taint_check/'
523
+ @options.snapshot.save_path = Dir.tmpdir
406
524
 
407
- form = Arachni::Element::Form.new( 'http://test' )
408
- p = Arachni::Page.new( url: 'http://test', forms: [form] )
409
- f.push_to_page_queue( p )
525
+ described_class.new do |f|
526
+ f.options.url = web_server_url_for :framework_multi
527
+ f.options.audit.elements :links
410
528
 
411
- f.run
412
- f.auditstore.issues.size.should == 2
413
- f.modules.clear
414
- end
529
+ f.plugins.load :wait
530
+ f.checks.load :taint
415
531
 
416
- it 'runs modules that audit path and server' do
417
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
418
- f = Arachni::Framework.new
532
+ t = Thread.new do
533
+ f.run
534
+ end
419
535
 
420
- f.opts.audit :forms
421
- f.modules.load %w(path server)
536
+ sleep 0.1 while Arachni::Data.issues.size < 2
422
537
 
423
- form = Arachni::Element::Form.new( 'http://test' )
424
- p = Arachni::Page.new( url: 'http://test', forms: [form] )
425
- f.push_to_page_queue( p )
538
+ @snapshot = f.suspend
539
+ t.join
426
540
 
427
- f.run
428
- f.auditstore.issues.size.should == 2
429
- f.modules.clear
541
+ Arachni::Data.issues.size.should < 500
430
542
  end
431
543
 
432
- it 'runs modules that have not specified any elements' do
433
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
434
- f = Arachni::Framework.new
544
+ File.dirname( @snapshot ).should == Dir.tmpdir
545
+ Arachni::Snapshot.load( @snapshot ).should be_true
546
+ end
547
+ end
435
548
 
436
- f.opts.audit :forms
437
- f.modules.load %w(nil empty)
549
+ context 'is a file path' do
550
+ it 'stores the snapshot there' do
551
+ @options.paths.checks = fixtures_path + '/taint_check/'
552
+ @options.snapshot.save_path = "#{Dir.tmpdir}/snapshot"
438
553
 
439
- form = Arachni::Element::Form.new( 'http://test' )
440
- p = Arachni::Page.new( url: 'http://test', forms: [form] )
441
- f.push_to_page_queue( p )
554
+ described_class.new do |f|
555
+ f.options.url = web_server_url_for :framework_multi
556
+ f.options.audit.elements :links
442
557
 
443
- f.run
444
- f.auditstore.issues.size.should == 1
445
- f.modules.clear
558
+ f.plugins.load :wait
559
+ f.checks.load :taint
560
+
561
+ t = Thread.new do
562
+ f.run
563
+ end
564
+
565
+ sleep 0.1 while Arachni::Data.issues.size < 2
566
+
567
+ @snapshot = f.suspend
568
+ t.join
569
+
570
+ Arachni::Data.issues.size.should < 500
446
571
  end
572
+
573
+ @snapshot.should == "#{Dir.tmpdir}/snapshot"
574
+ Arachni::Snapshot.load( @snapshot ).should be_true
447
575
  end
448
576
  end
577
+ end
578
+ end
449
579
 
450
- context 'disabled' do
451
- context 'and the page contains forms' do
452
- it 'skips modules that audit forms' do
453
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
454
- f = Arachni::Framework.new
455
-
456
- f.opts.dont_audit :forms
457
- f.modules.load %w(links forms cookies headers flch)
580
+ describe '#restore' do
581
+ it 'restores a suspended scan' do
582
+ @options.paths.checks = fixtures_path + '/taint_check/'
458
583
 
459
- form = Arachni::Element::Form.new( 'http://test' )
460
- p = Arachni::Page.new( url: 'http://test', forms: [form] )
461
- f.push_to_page_queue( p )
584
+ logged_issues = 0
585
+ described_class.new do |f|
586
+ f.options.url = web_server_url_for :framework_multi
587
+ f.options.audit.elements :links
462
588
 
463
- f.run
464
- f.auditstore.issues.size.should == 0
465
- f.modules.clear
466
- end
589
+ f.plugins.load :wait
590
+ f.checks.load :taint
467
591
 
468
- it 'runs modules that audit path and server' do
469
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
470
- f = Arachni::Framework.new
592
+ Arachni::Data.issues.on_new do
593
+ logged_issues += 1
594
+ end
471
595
 
472
- f.opts.dont_audit :forms
473
- f.modules.load %w(path server)
596
+ t = Thread.new do
597
+ f.run
598
+ end
474
599
 
475
- form = Arachni::Element::Form.new( 'http://test' )
476
- p = Arachni::Page.new( url: 'http://test', forms: [form] )
477
- f.push_to_page_queue( p )
600
+ sleep 0.1 while logged_issues < 200
478
601
 
479
- f.run
480
- f.auditstore.issues.size.should == 2
481
- f.modules.clear
482
- end
602
+ @snapshot = f.suspend
603
+ t.join
483
604
 
484
- it 'runs modules that have not specified any elements' do
485
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
486
- f = Arachni::Framework.new
605
+ logged_issues.should < 500
606
+ end
487
607
 
488
- f.opts.dont_audit :forms
489
- f.modules.load %w(nil empty)
608
+ reset_options
609
+ @options.paths.checks = fixtures_path + '/taint_check/'
490
610
 
491
- form = Arachni::Element::Form.new( 'http://test' )
492
- p = Arachni::Page.new( url: 'http://test', forms: [form] )
493
- f.push_to_page_queue( p )
611
+ described_class.new do |f|
612
+ f.restore @snapshot
494
613
 
495
- f.run
496
- f.auditstore.issues.size.should == 1
497
- f.modules.clear
498
- end
614
+ Arachni::Data.issues.on_new do
615
+ logged_issues += 1
499
616
  end
500
- end
617
+ f.run
618
+
619
+ # logged_issues.should == 500
620
+ Arachni::Data.issues.size.should == 500
501
621
 
622
+ f.report.plugins[:wait][:results].should == { 'stuff' => true }
623
+ end
502
624
  end
503
625
 
504
- context 'when auditing cookies is' do
505
- context 'enabled' do
506
- context 'and the page contains cookies' do
507
- it 'runs modules that audit cookies' do
508
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
509
- f = Arachni::Framework.new
626
+ it 'restores options' do
627
+ options_hash = nil
510
628
 
511
- f.opts.audit :cookies
512
- f.modules.load %w(links forms cookies headers flch)
629
+ described_class.new do |f|
630
+ f.options.url = @url + '/with_ajax'
631
+ f.options.audit.elements :links, :forms, :cookies
632
+ f.options.datastore.my_custom_option = 'my custom value'
633
+ options_hash = f.options.update( f.options.to_rpc_data ).to_h.deep_clone
513
634
 
514
- cookie = Arachni::Element::Cookie.new( 'http://test' )
515
- p = Arachni::Page.new( url: 'http://test', cookies: [cookie] )
516
- f.push_to_page_queue( p )
635
+ f.checks.load :taint
517
636
 
518
- f.run
519
- f.auditstore.issues.size.should == 2
520
- f.modules.clear
521
- end
637
+ t = Thread.new { f.run }
522
638
 
523
- it 'runs modules that audit path and server' do
524
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
525
- f = Arachni::Framework.new
639
+ sleep 0.1 while f.browser_cluster.done?
640
+ @snapshot = f.suspend
526
641
 
527
- f.opts.audit :cookies
528
- f.modules.load %w(path server)
642
+ t.join
643
+ end
529
644
 
530
- cookie = Arachni::Element::Form.new( 'http://test' )
531
- p = Arachni::Page.new( url: 'http://test', cookies: [cookie] )
532
- f.push_to_page_queue( p )
645
+ described_class.restore( @snapshot ) do |f|
646
+ f.options.to_h.should == options_hash.merge( checks: ['taint'] )
647
+ f.browser_job_skip_states.should be_any
648
+ end
649
+ end
533
650
 
534
- f.run
535
- f.auditstore.issues.size.should == 2
536
- f.modules.clear
537
- end
651
+ it 'restores BrowserCluster skip states' do
652
+ described_class.new do |f|
653
+ f.options.url = @url + '/with_ajax'
654
+ f.options.audit.elements :links, :forms, :cookies
538
655
 
539
- it 'runs modules that have not specified any elements' do
540
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
541
- f = Arachni::Framework.new
656
+ f.checks.load :taint
542
657
 
543
- f.opts.audit :cookies
544
- f.modules.load %w(nil empty)
658
+ t = Thread.new { f.run }
545
659
 
546
- cookie = Arachni::Element::Form.new( 'http://test' )
547
- p = Arachni::Page.new( url: 'http://test', cookies: [cookie] )
548
- f.push_to_page_queue( p )
660
+ sleep 0.1 while f.browser_cluster.done?
661
+ @snapshot = f.suspend
549
662
 
550
- f.run
551
- f.auditstore.issues.size.should == 1
552
- f.modules.clear
553
- end
554
- end
663
+ t.join
555
664
  end
556
665
 
557
- context 'disabled' do
558
- context 'and the page contains cookies' do
559
- it 'skips modules that audit cookies' do
560
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
561
- f = Arachni::Framework.new
666
+ described_class.restore( @snapshot ) do |f|
667
+ f.browser_job_skip_states.should be_any
668
+ end
669
+ end
562
670
 
563
- f.opts.dont_audit :cookies
564
- f.modules.load %w(links forms cookies headers flch)
671
+ it 'restores loaded checks' do
672
+ described_class.new do |f|
673
+ f.options.url = @url
674
+ f.checks.load :taint
565
675
 
566
- cookie = Arachni::Element::Form.new( 'http://test' )
567
- p = Arachni::Page.new( url: 'http://test', cookies: [cookie] )
568
- f.push_to_page_queue( p )
676
+ t = Thread.new { f.run }
677
+ sleep 0.1 while f.status != :scanning
569
678
 
570
- f.run
571
- f.auditstore.issues.size.should == 0
572
- f.modules.clear
573
- end
679
+ @snapshot = f.suspend
574
680
 
575
- it 'runs modules that audit path and server' do
576
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
577
- f = Arachni::Framework.new
681
+ t.join
682
+ end
578
683
 
579
- f.opts.dont_audit :cookies
580
- f.modules.load %w(path server)
684
+ described_class.restore( @snapshot ) do |f|
685
+ f.checks.loaded.should == ['taint']
686
+ end
687
+ end
581
688
 
582
- cookie = Arachni::Element::Form.new( 'http://test' )
583
- p = Arachni::Page.new( url: 'http://test', cookies: [cookie] )
584
- f.push_to_page_queue( p )
689
+ it 'restores loaded plugins' do
690
+ described_class.new do |f|
691
+ f.options.url = @url
692
+ f.plugins.load :wait
585
693
 
586
- f.run
587
- f.auditstore.issues.size.should == 2
588
- f.modules.clear
589
- end
694
+ t = Thread.new { f.run }
695
+ sleep 0.1 while f.status != :scanning
590
696
 
591
- it 'runs modules that have not specified any elements' do
592
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
593
- f = Arachni::Framework.new
697
+ @snapshot = f.suspend
698
+ t.join
699
+ end
594
700
 
595
- f.opts.dont_audit :cookies
596
- f.modules.load %w(nil empty)
701
+ described_class.restore( @snapshot ) do |f|
702
+ f.plugins.loaded.should == ['wait']
703
+ end
704
+ end
705
+
706
+ it 'restores plugin states' do
707
+ Arachni::Options.plugins['suspendable'] = {
708
+ 'my_option' => 'my value'
709
+ }
597
710
 
598
- cookie = Arachni::Element::Form.new( 'http://test' )
599
- p = Arachni::Page.new( url: 'http://test', cookies: [cookie] )
600
- f.push_to_page_queue( p )
711
+ described_class.new do |f|
712
+ f.options.url = web_server_url_for :framework_multi
713
+ f.options.audit.elements :links
601
714
 
602
- f.run
603
- f.auditstore.issues.size.should == 1
604
- f.modules.clear
605
- end
715
+ f.checks.load :taint
716
+ f.plugins.load :suspendable
717
+
718
+ t = Thread.new do
719
+ f.run
606
720
  end
607
- end
608
721
 
609
- end
722
+ sleep 0.1 while f.status != :scanning
610
723
 
611
- context 'when auditing headers is' do
612
- context 'enabled' do
613
- context 'and the page contains headers' do
614
- it 'runs modules that audit headers' do
615
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
616
- f = Arachni::Framework.new
724
+ @snapshot = f.suspend
725
+ t.join
617
726
 
618
- f.opts.audit :headers
619
- f.modules.load %w(links forms cookies headers flch)
727
+ Arachni::State.plugins.runtime[:suspendable][:data].should == 1
728
+ end
620
729
 
621
- header = Arachni::Element::Cookie.new( 'http://test' )
622
- p = Arachni::Page.new( url: 'http://test', headers: [header] )
623
- f.push_to_page_queue( p )
730
+ described_class.restore( @snapshot ) do |f|
731
+ t = Thread.new do
732
+ f.run
733
+ end
624
734
 
625
- f.run
626
- f.auditstore.issues.size.should == 2
627
- f.modules.clear
628
- end
735
+ sleep 0.1 while f.status != :scanning
629
736
 
630
- it 'runs modules that audit path and server' do
631
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
632
- f = Arachni::Framework.new
737
+ f.plugins.jobs[:suspendable][:instance].counter.should == 2
633
738
 
634
- f.opts.audit :headers
635
- f.modules.load %w(path server)
739
+ f.abort
740
+ t.join
741
+ end
742
+ end
743
+ end
636
744
 
637
- header = Arachni::Element::Form.new( 'http://test' )
638
- p = Arachni::Page.new( url: 'http://test', headers: [header] )
639
- f.push_to_page_queue( p )
745
+ describe '#pause' do
746
+ it 'pauses the system' do
747
+ described_class.new do |f|
748
+ f.options.url = @url + '/elem_combo'
749
+ f.options.audit.elements :links, :forms, :cookies
750
+ f.checks.load :taint
640
751
 
641
- f.run
642
- f.auditstore.issues.size.should == 2
643
- f.modules.clear
644
- end
752
+ t = Thread.new do
753
+ f.run
754
+ end
645
755
 
646
- it 'runs modules that have not specified any elements' do
647
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
648
- f = Arachni::Framework.new
756
+ f.pause
649
757
 
650
- f.opts.audit :headers
651
- f.modules.load %w(nil empty)
758
+ sleep 10
652
759
 
653
- header = Arachni::Element::Form.new( 'http://test' )
654
- p = Arachni::Page.new( url: 'http://test', headers: [header] )
655
- f.push_to_page_queue( p )
760
+ f.running?.should be_true
761
+ t.kill
762
+ end
763
+ end
656
764
 
657
- f.run
658
- f.auditstore.issues.size.should == 1
659
- f.modules.clear
660
- end
765
+ it 'returns an Integer request ID' do
766
+ described_class.new do |f|
767
+ f.options.url = @url + '/elem_combo'
768
+ f.options.audit.elements :links, :forms, :cookies
769
+ f.checks.load :taint
770
+
771
+ t = Thread.new do
772
+ f.run
661
773
  end
774
+
775
+ f.pause.should be_kind_of Integer
776
+
777
+ sleep 10
778
+
779
+ f.running?.should be_true
780
+ t.kill
662
781
  end
782
+ end
663
783
 
664
- context 'disabled' do
665
- context 'and the page contains headers' do
666
- it 'skips modules that audit headers' do
667
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
668
- f = Arachni::Framework.new
784
+ it 'sets #status to :paused' do
785
+ described_class.new do |f|
786
+ f.options.url = @url + '/elem_combo'
787
+ f.options.audit.elements :links, :forms, :cookies
788
+ f.checks.load :taint
669
789
 
670
- f.opts.dont_audit :headers
671
- f.modules.load %w(links forms cookies headers flch)
790
+ t = Thread.new do
791
+ f.run
792
+ end
793
+ sleep 0.1 while f.status != :scanning
672
794
 
673
- header = Arachni::Element::Form.new( 'http://test' )
674
- p = Arachni::Page.new( url: 'http://test', headers: [header] )
675
- f.push_to_page_queue( p )
795
+ f.pause
796
+ f.status.should == :paused
676
797
 
677
- f.run
678
- f.auditstore.issues.size.should == 0
679
- f.modules.clear
680
- end
798
+ t.kill
799
+ end
800
+ end
801
+ end
802
+
803
+ describe '#resume' do
804
+ it 'resumes the system' do
805
+ described_class.new do |f|
806
+ f.options.url = @url + '/elem_combo'
807
+ f.options.audit.elements :links, :forms, :cookies
808
+ f.checks.load :taint
681
809
 
682
- it 'runs modules that audit path and server' do
683
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
684
- f = Arachni::Framework.new
810
+ t = Thread.new do
811
+ f.run
812
+ end
685
813
 
686
- f.opts.dont_audit :headers
687
- f.modules.load %w(path server)
814
+ id = f.pause
688
815
 
689
- header = Arachni::Element::Form.new( 'http://test' )
690
- p = Arachni::Page.new( url: 'http://test', headers: [header] )
691
- f.push_to_page_queue( p )
816
+ sleep 10
692
817
 
693
- f.run
694
- f.auditstore.issues.size.should == 2
695
- f.modules.clear
696
- end
818
+ f.running?.should be_true
819
+ f.resume id
820
+ t.join
821
+ end
822
+ end
697
823
 
698
- it 'runs modules that have not specified any elements' do
699
- @opts.dir['modules'] = fixtures_path + '/run_mod/'
700
- f = Arachni::Framework.new
824
+ it 'sets #status to scanning' do
825
+ described_class.new do |f|
826
+ f.options.url = @url + '/elem_combo'
827
+ f.options.audit.elements :links, :forms, :cookies
828
+ f.checks.load :taint
701
829
 
702
- f.opts.dont_audit :headers
703
- f.modules.load %w(nil empty)
830
+ t = Thread.new do
831
+ f.run
832
+ end
704
833
 
705
- header = Arachni::Element::Form.new( 'http://test' )
706
- p = Arachni::Page.new( url: 'http://test', headers: [header] )
707
- f.push_to_page_queue( p )
834
+ id = f.pause
835
+ f.status.should == :paused
708
836
 
709
- f.run
710
- f.auditstore.issues.size.should == 1
711
- f.modules.clear
712
- end
837
+ f.resume id
838
+ Timeout.timeout( 5 ) do
839
+ sleep 0.1 while f.status != :scanning
713
840
  end
841
+ t.join
714
842
  end
715
-
716
843
  end
844
+ end
717
845
 
718
- context 'when it has log-in capabilities and gets logged out' do
719
- it 'logs-in again before continuing with the audit' do
720
- f = Arachni::Framework.new
721
- url = web_server_url_for( :framework ) + '/'
722
- f.opts.url = "#{url}/congrats"
846
+ describe '#clean_up' do
847
+ it 'stops the #plugins' do
848
+ described_class.new do |f|
849
+ f.options.url = @url + '/elem_combo'
850
+ f.plugins.load :wait
723
851
 
724
- f.opts.audit :links, :forms
725
- f.modules.load_all
852
+ f.plugins.run
853
+ f.clean_up
854
+ f.plugins.jobs.should be_empty
855
+ end
856
+ end
726
857
 
727
- f.session.login_sequence = proc do
728
- res = f.http.get( url, async: false, follow_location: true ).response
729
- return false if !res
858
+ it 'sets the status to cleanup' do
859
+ described_class.new do |f|
860
+ f.options.url = @url + '/elem_combo'
730
861
 
731
- login_form = f.forms_from_response( res ).first
732
- next false if !login_form
862
+ f.clean_up
863
+ f.status.should == :cleanup
864
+ end
865
+ end
733
866
 
734
- login_form['username'] = 'john'
735
- login_form['password'] = 'doe'
736
- res = login_form.submit( async: false, update_cookies: true, follow_location: false ).response
737
- return false if !res
867
+ it 'clears the page queue' do
868
+ described_class.new do |f|
869
+ f.options.url = @url + '/elem_combo'
870
+ f.push_to_page_queue Arachni::Page.from_url( f.options.url )
738
871
 
739
- true
740
- end
872
+ f.data.page_queue.should_not be_empty
873
+ f.clean_up
874
+ f.data.page_queue.should be_empty
875
+ end
876
+ end
741
877
 
742
- f.session.login_check = proc do
743
- !!f.http.get( url, async: false, follow_location: true ).
744
- response.body.match( 'logged-in user' )
745
- end
878
+ it 'clears the URL queue' do
879
+ described_class.new do |f|
880
+ f.options.url = @url + '/elem_combo'
881
+ f.push_to_url_queue f.options.url
746
882
 
747
- f.run
748
- f.auditstore.issues.size.should == 1
749
- f.reset
883
+ f.data.url_queue.should_not be_empty
884
+ f.clean_up
885
+ f.data.url_queue.should be_empty
886
+ end
887
+ end
888
+
889
+ it 'sets #running? to false' do
890
+ described_class.new do |f|
891
+ f.options.url = @url + '/elem_combo'
892
+ f.clean_up
893
+ f.should_not be_running
750
894
  end
751
895
  end
752
896
  end
@@ -757,10 +901,10 @@ describe Arachni::Framework do
757
901
  @new_framework = Arachni::Framework.new
758
902
  end
759
903
 
760
- context 'when passed a valid report name' do
761
- it 'returns the report as a string' do
904
+ context 'when passed a valid reporter name' do
905
+ it 'returns the reporter as a string' do
762
906
  json = @new_framework.report_as( :json )
763
- JSON.load( json )['issues'].size.should == @new_framework.auditstore.issues.size
907
+ JSON.load( json )['issues'].size.should == @new_framework.report.issues.size
764
908
  end
765
909
 
766
910
  context 'which does not support the \'outfile\' option' do
@@ -770,7 +914,7 @@ describe Arachni::Framework do
770
914
  end
771
915
  end
772
916
 
773
- context 'when passed an invalid report name' do
917
+ context 'when passed an invalid reporter name' do
774
918
  it 'raises Arachni::Component::Error::NotFound' do
775
919
  expect { @new_framework.report_as( :blah ) }.to raise_error Arachni::Component::Error::NotFound
776
920
  end
@@ -778,41 +922,205 @@ describe Arachni::Framework do
778
922
  end
779
923
 
780
924
  describe '#audit_page' do
781
- context 'when the page does not match exclusion criteria' do
782
- it 'audits it and returns true' do
783
- @f.opts.audit :links, :forms, :cookies
925
+ it 'updates the #sitemap with the DOM URL' do
926
+ subject.options.audit.elements :links, :forms, :cookies
927
+ subject.checks.load :taint
928
+
929
+ subject.sitemap.should be_empty
930
+
931
+ page = Arachni::Page.from_url( @url + '/link' )
932
+ page.dom.url = @url + '/link/#/stuff'
933
+
934
+ subject.audit_page page
935
+ subject.sitemap.should include @url + '/link/#/stuff'
936
+ end
937
+
938
+ it "runs #{Arachni::Check::Manager}#without_platforms before #{Arachni::Check::Manager}#with_platforms" do
939
+ @options.paths.checks = fixtures_path + '/checks/'
940
+
941
+ described_class.new do |f|
942
+ f.checks.load_all
943
+
944
+ page = Arachni::Page.from_url( @url + '/link' )
945
+
946
+ responses = []
947
+ f.http.on_complete do |response|
948
+ responses << response.url
949
+ end
950
+
951
+ f.audit_page page
952
+
953
+ responses.sort.should ==
954
+ %w(http://localhost/test3 http://localhost/test
955
+ http://localhost/test2).sort
956
+ end
957
+ end
958
+
959
+ context 'when checks were' do
960
+ context 'ran against the page' do
961
+ it 'returns true' do
962
+ subject.checks.load :taint
963
+ subject.audit_page( Arachni::Page.from_url( @url + '/link' ) ).should be_true
964
+ end
965
+ end
966
+
967
+ context 'not ran against the page' do
968
+ it 'returns false' do
969
+ subject.audit_page( Arachni::Page.from_url( @url + '/link' ) ).should be_false
970
+ end
971
+ end
972
+ end
973
+
974
+ context 'when the page contains JavaScript code' do
975
+ it 'analyzes the DOM and pushes new pages to the page queue' do
976
+ Arachni::Framework.new do |f|
977
+ f.options.audit.elements :links, :forms, :cookies
978
+ f.checks.load :taint
979
+
980
+ f.page_queue_total_size.should == 0
981
+
982
+ f.audit_page( Arachni::Page.from_url( @url + '/with_javascript' ) )
983
+
984
+ sleep 0.1 while f.wait_for_browser?
985
+
986
+ f.page_queue_total_size.should > 0
987
+ end
988
+ end
784
989
 
785
- @f.modules.load :taint
990
+ it 'analyzes the DOM and pushes new paths to the url queue' do
991
+ Arachni::Framework.new do |f|
992
+ f.options.url = @url
993
+ f.options.audit.elements :links, :forms, :cookies
994
+ f.checks.load :taint
786
995
 
787
- @f.audit_page( Arachni::Page.from_url( @url + '/link' ) ).should be_true
788
- @f.auditstore.issues.size.should == 1
996
+ f.url_queue_total_size.should == 0
997
+
998
+ f.audit_page( Arachni::Page.from_url( @url + '/with_javascript' ) )
999
+
1000
+ sleep 0.1 while f.wait_for_browser?
1001
+
1002
+ f.url_queue_total_size.should == 2
1003
+ end
1004
+ end
1005
+
1006
+ context 'when the DOM depth limit has been reached' do
1007
+ it 'does not analyze the DOM' do
1008
+ Arachni::Framework.new do |f|
1009
+ f.options.url = @url
1010
+
1011
+ f.options.audit.elements :links, :forms, :cookies
1012
+ f.checks.load :taint
1013
+ f.options.scope.dom_depth_limit = 1
1014
+ f.url_queue_total_size.should == 0
1015
+ f.audit_page( Arachni::Page.from_url( @url + '/with_javascript' ) ).should be_true
1016
+ sleep 0.1 while f.wait_for_browser?
1017
+ f.url_queue_total_size.should == 2
1018
+
1019
+ f.reset
1020
+
1021
+ f.options.audit.elements :links, :forms, :cookies
1022
+ f.checks.load :taint
1023
+ f.options.scope.dom_depth_limit = 1
1024
+ f.url_queue_total_size.should == 0
1025
+
1026
+ page = Arachni::Page.from_url( @url + '/with_javascript' )
1027
+ page.dom.push_transition Arachni::Page::DOM::Transition.new( :page, :load )
1028
+
1029
+ f.audit_page( page ).should be_true
1030
+ sleep 0.1 while f.wait_for_browser?
1031
+ f.url_queue_total_size.should == 0
1032
+ end
1033
+ end
1034
+
1035
+ it 'returns false' do
1036
+ page = Arachni::Page.from_data(
1037
+ url: @url,
1038
+ dom: {
1039
+ transitions: [
1040
+ { page: :load },
1041
+ { "<a href='javascript:click();'>" => :click },
1042
+ { "<button dblclick='javascript:doubleClick();'>" => :ondblclick }
1043
+ ].map { |t| Arachni::Page::DOM::Transition.new *t.first }
1044
+ }
1045
+ )
1046
+
1047
+ Arachni::Framework.new do |f|
1048
+ f.checks.load :taint
1049
+
1050
+ f.options.scope.dom_depth_limit = 10
1051
+ f.audit_page( page ).should be_true
1052
+
1053
+ f.options.scope.dom_depth_limit = 2
1054
+ f.audit_page( page ).should be_false
1055
+ end
1056
+ end
789
1057
  end
790
1058
  end
1059
+
791
1060
  context 'when the page matches exclusion criteria' do
792
- it 'does not audit it and returns false' do
793
- @f.opts.exclude << /link/
794
- @f.opts.audit :links, :forms, :cookies
1061
+ it 'does not audit it' do
1062
+ subject.options.scope.exclude_path_patterns << /link/
1063
+ subject.options.audit.elements :links, :forms, :cookies
1064
+
1065
+ subject.checks.load :taint
1066
+
1067
+ subject.audit_page( Arachni::Page.from_url( @url + '/link' ) )
1068
+ subject.report.issues.size.should == 0
1069
+ end
1070
+
1071
+ it 'returns false' do
1072
+ subject.options.scope.exclude_path_patterns << /link/
1073
+ subject.audit_page( Arachni::Page.from_url( @url + '/link' ) ).should be_false
1074
+ end
1075
+ end
1076
+
1077
+ context "when #{Arachni::Check::Auditor}.has_timeout_candidates?" do
1078
+ it "calls #{Arachni::Check::Auditor}.timeout_audit_run" do
1079
+ Arachni::Check::Auditor.stub(:has_timeout_candidates?){ true }
1080
+
1081
+ Arachni::Check::Auditor.should receive(:timeout_audit_run)
1082
+ subject.audit_page( Arachni::Page.from_url( @url + '/link' ) )
1083
+ end
1084
+ end
1085
+
1086
+ context 'when a check fails with an exception' do
1087
+ it 'moves to the next one' do
1088
+ @options.paths.checks = fixtures_path + '/checks/'
1089
+
1090
+ described_class.new do |f|
1091
+ f.checks.load_all
1092
+
1093
+ f.checks[:test].any_instance.stub(:run) { raise }
1094
+
1095
+ page = Arachni::Page.from_url( @url + '/link' )
1096
+
1097
+ responses = []
1098
+ f.http.on_complete do |response|
1099
+ responses << response.url
1100
+ end
795
1101
 
796
- @f.modules.load :taint
1102
+ f.audit_page page
797
1103
 
798
- @f.audit_page( Arachni::Page.from_url( @url + '/link' ) ).should be_false
799
- @f.auditstore.issues.size.should == 0
1104
+ responses.should == %w(http://localhost/test3 http://localhost/test2)
1105
+ end
800
1106
  end
801
1107
  end
802
1108
  end
803
1109
 
804
- describe 'link_count_limit_reached?' do
805
- context 'when the Options#link_count_limit has' do
1110
+ describe '#page_limit_reached?' do
1111
+ context "when the #{Arachni::OptionGroups::Scope}#page_limit has" do
806
1112
  context 'been reached' do
807
1113
  it 'returns true' do
808
1114
  Arachni::Framework.new do |f|
809
- f.opts.url = web_server_url_for :framework_hpg
810
- f.opts.audit :links
811
- f.opts.link_count_limit = 10
1115
+ f.options.url = web_server_url_for :framework_multi
1116
+ f.options.audit.elements :links
1117
+ f.options.scope.page_limit = 10
812
1118
 
813
- f.link_count_limit_reached?.should be_false
1119
+ f.page_limit_reached?.should be_false
814
1120
  f.run
815
- f.link_count_limit_reached?.should be_true
1121
+ f.page_limit_reached?.should be_true
1122
+
1123
+ f.sitemap.size.should == 10
816
1124
  end
817
1125
  end
818
1126
  end
@@ -820,15 +1128,15 @@ describe Arachni::Framework do
820
1128
  context 'not been reached' do
821
1129
  it 'returns false' do
822
1130
  Arachni::Framework.new do |f|
823
- f.opts.url = web_server_url_for :framework
824
- f.opts.audit :links
825
- f.opts.link_count_limit = 100
1131
+ f.options.url = web_server_url_for :framework
1132
+ f.options.audit.elements :links
1133
+ f.options.scope.page_limit = 100
826
1134
 
827
- f.modules.load :taint
1135
+ f.checks.load :taint
828
1136
 
829
- f.link_count_limit_reached?.should be_false
1137
+ f.page_limit_reached?.should be_false
830
1138
  f.run
831
- f.link_count_limit_reached?.should be_false
1139
+ f.page_limit_reached?.should be_false
832
1140
  end
833
1141
  end
834
1142
  end
@@ -836,83 +1144,250 @@ describe Arachni::Framework do
836
1144
  context 'not been set' do
837
1145
  it 'returns false' do
838
1146
  Arachni::Framework.new do |f|
839
- f.opts.url = web_server_url_for :framework
840
- f.opts.audit :links
1147
+ f.options.url = web_server_url_for :framework
1148
+ f.options.audit.elements :links
841
1149
 
842
- f.modules.load :taint
1150
+ f.checks.load :taint
843
1151
 
844
- f.link_count_limit_reached?.should be_false
1152
+ f.page_limit_reached?.should be_false
845
1153
  f.run
846
- f.link_count_limit_reached?.should be_false
1154
+ f.page_limit_reached?.should be_false
847
1155
  end
848
1156
  end
849
1157
  end
850
1158
  end
851
1159
  end
852
1160
 
1161
+ describe '#accepts_more_pages?' do
1162
+ context 'when #page_limit_reached? and #crawl?' do
1163
+ it 'return true' do
1164
+ subject.stub(:page_limit_reached?) { false }
1165
+ subject.stub(:crawl?) { true }
1166
+
1167
+ subject.accepts_more_pages?.should be_true
1168
+ end
1169
+ end
1170
+
1171
+ context 'when #page_limit_reached?' do
1172
+ context true do
1173
+ it 'returns false' do
1174
+ subject.stub(:page_limit_reached?) { true }
1175
+ subject.accepts_more_pages?.should be_false
1176
+ end
1177
+ end
1178
+ end
1179
+
1180
+ context 'when #crawl?' do
1181
+ context false do
1182
+ it 'returns false' do
1183
+ subject.stub(:crawl?) { false }
1184
+ subject.accepts_more_pages?.should be_false
1185
+ end
1186
+ end
1187
+ end
1188
+ end
1189
+
853
1190
  describe '#push_to_page_queue' do
854
- context 'when the page does not match exclusion criteria' do
855
- it 'pushes it to the page audit queue and returns true' do
856
- page = Arachni::Page.from_url( @url + '/train/true' )
1191
+ let(:page) { Arachni::Page.from_url( @url + '/train/true' ) }
1192
+
1193
+ it 'pushes it to the page audit queue and returns true' do
1194
+ page = Arachni::Page.from_url( @url + '/train/true' )
1195
+
1196
+ subject.options.audit.elements :links, :forms, :cookies
1197
+ subject.checks.load :taint
857
1198
 
858
- @f.opts.audit :links, :forms, :cookies
859
- @f.modules.load :taint
1199
+ subject.page_queue_total_size.should == 0
1200
+ subject.push_to_page_queue( page ).should be_true
1201
+ subject.run
860
1202
 
861
- @f.page_queue_total_size.should == 0
862
- @f.push_to_page_queue( page ).should be_true
863
- @f.run
864
- @f.auditstore.issues.size.should == 3
865
- @f.page_queue_total_size.should > 0
866
- @f.modules.clear
1203
+ subject.report.issues.size.should == 1
1204
+ subject.page_queue_total_size.should > 0
1205
+ end
1206
+
1207
+ it 'updates the #sitemap with the DOM URL' do
1208
+ subject.options.audit.elements :links, :forms, :cookies
1209
+ subject.checks.load :taint
1210
+
1211
+ subject.sitemap.should be_empty
1212
+
1213
+ page = Arachni::Page.from_url( @url + '/link' )
1214
+ page.dom.url = @url + '/link/#/stuff'
1215
+
1216
+ subject.push_to_page_queue page
1217
+ subject.sitemap.should include @url + '/link/#/stuff'
1218
+ end
1219
+
1220
+ it "passes it to #{Arachni::ElementFilter}#update_from_page_cache" do
1221
+ page = Arachni::Page.from_url( @url + '/link' )
1222
+
1223
+ Arachni::ElementFilter.should receive(:update_from_page_cache).with(page)
1224
+
1225
+ subject.push_to_page_queue page
1226
+ end
1227
+
1228
+ context 'when the page has already been seen' do
1229
+ it 'ignores it' do
1230
+ page = Arachni::Page.from_url( @url + '/stuff' )
1231
+
1232
+ subject.page_queue_total_size.should == 0
1233
+ subject.push_to_page_queue( page )
1234
+ subject.push_to_page_queue( page )
1235
+ subject.push_to_page_queue( page )
1236
+ subject.page_queue_total_size.should == 1
1237
+ end
1238
+
1239
+ it 'returns false' do
1240
+ page = Arachni::Page.from_url( @url + '/stuff' )
1241
+
1242
+ subject.page_queue_total_size.should == 0
1243
+ subject.push_to_page_queue( page ).should be_true
1244
+ subject.push_to_page_queue( page ).should be_false
1245
+ subject.push_to_page_queue( page ).should be_false
1246
+ subject.page_queue_total_size.should == 1
867
1247
  end
868
1248
  end
869
- context 'when the page matches exclusion criteria' do
870
- it 'does not push it to the page audit queue and returns false' do
871
- page = Arachni::Page.from_url( @url + '/train/true' )
872
1249
 
873
- @f.opts.audit :links, :forms, :cookies
874
- @f.modules.load :taint
1250
+ context 'when #accepts_more_pages?' do
1251
+ context false do
1252
+ it 'returns false' do
1253
+ subject.stub(:accepts_more_pages?) { false }
1254
+ subject.push_to_page_queue( page ).should be_false
1255
+ end
1256
+ end
875
1257
 
876
- @f.opts.exclude << /train/
1258
+ context true do
1259
+ it 'returns true' do
1260
+ subject.stub(:accepts_more_pages?) { true }
1261
+ subject.push_to_page_queue( page ).should be_true
1262
+ end
1263
+ end
1264
+ end
1265
+
1266
+ context "when #{Arachni::Page::Scope}#out? is true" do
1267
+ it 'returns false' do
1268
+ Arachni::Page::Scope.any_instance.stub(:out?) { true }
1269
+ subject.push_to_page_queue( page ).should be_false
1270
+ end
1271
+ end
1272
+
1273
+ context "when #{Arachni::URI::Scope}#redundant? is true" do
1274
+ it 'returns false' do
1275
+ Arachni::Page::Scope.any_instance.stub(:redundant?) { true }
1276
+ subject.push_to_page_queue( page ).should be_false
1277
+ end
1278
+ end
877
1279
 
878
- @f.page_queue_total_size.should == 0
879
- @f.push_to_page_queue( page ).should be_false
880
- @f.run
881
- @f.auditstore.issues.size.should == 0
882
- @f.page_queue_total_size.should == 0
883
- @f.modules.clear
1280
+ context "when #{Arachni::Page::Scope}#auto_redundant? is true" do
1281
+ it 'returns false' do
1282
+ Arachni::Page::Scope.any_instance.stub(:auto_redundant?) { true }
1283
+ subject.push_to_page_queue( page ).should be_false
884
1284
  end
885
1285
  end
886
1286
  end
887
1287
 
888
1288
  describe '#push_to_url_queue' do
889
1289
  it 'pushes a URL to the URL audit queue' do
890
- @f.opts.audit :links, :forms, :cookies
891
- @f.modules.load :taint
1290
+ subject.options.audit.elements :links, :forms, :cookies
1291
+ subject.checks.load :taint
1292
+
1293
+ subject.url_queue_total_size.should == 0
1294
+ subject.push_to_url_queue( @url + '/link' ).should be_true
1295
+ subject.run
1296
+
1297
+ subject.report.issues.size.should == 1
1298
+ subject.url_queue_total_size.should == 3
1299
+ end
1300
+
1301
+ context 'when the URL has already been seen' do
1302
+ it 'returns false' do
1303
+ subject.push_to_url_queue( @url + '/link' ).should be_true
1304
+ subject.push_to_url_queue( @url + '/link' ).should be_false
1305
+ end
1306
+
1307
+ it 'ignores it' do
1308
+ subject.url_queue_total_size.should == 0
1309
+ subject.push_to_url_queue( @url + '/link' )
1310
+ subject.push_to_url_queue( @url + '/link' )
1311
+ subject.push_to_url_queue( @url + '/link' )
1312
+ subject.url_queue_total_size.should == 1
1313
+ end
1314
+ end
1315
+
1316
+ context 'when #accepts_more_pages?' do
1317
+ context false do
1318
+ it 'returns false' do
1319
+ subject.stub(:accepts_more_pages?) { false }
1320
+ subject.push_to_url_queue( @url ).should be_false
1321
+ end
1322
+ end
1323
+
1324
+ context true do
1325
+ it 'returns true' do
1326
+ subject.stub(:accepts_more_pages?) { true }
1327
+ subject.push_to_url_queue( @url ).should be_true
1328
+ end
1329
+ end
1330
+ end
892
1331
 
893
- @f.url_queue_total_size.should == 0
894
- @f.push_to_url_queue( @url + '/link' )
895
- @f.run
896
- @f.auditstore.issues.size.should == 1
897
- @f.url_queue_total_size.should > 0
1332
+ context "when #{Arachni::URI::Scope}#out? is true" do
1333
+ it 'returns false' do
1334
+ Arachni::URI::Scope.any_instance.stub(:out?) { true }
1335
+ subject.push_to_url_queue( @url ).should be_false
1336
+ end
1337
+ end
1338
+
1339
+ context "when #{Arachni::URI::Scope}#redundant? is true" do
1340
+ it 'returns false' do
1341
+ Arachni::URI::Scope.any_instance.stub(:redundant?) { true }
1342
+ subject.push_to_url_queue( @url ).should be_false
1343
+ end
1344
+ end
1345
+
1346
+ context "when #{Arachni::URI::Scope}#auto_redundant? is true" do
1347
+ it 'returns false' do
1348
+ Arachni::URI::Scope.any_instance.stub(:auto_redundant?) { true }
1349
+ subject.push_to_url_queue( @url ).should be_false
1350
+ end
898
1351
  end
899
1352
  end
900
1353
 
901
- describe '#stats' do
902
- it 'returns a hash with stats' do
903
- @f.stats.keys.sort.should == [ :requests, :responses, :time_out_count,
904
- :time, :avg, :sitemap_size, :auditmap_size, :progress, :curr_res_time,
905
- :curr_res_cnt, :curr_avg, :average_res_time, :max_concurrency, :current_page, :eta ].sort
1354
+ describe '#statistics' do
1355
+ let(:statistics) { subject.statistics }
1356
+
1357
+ it 'includes http statistics' do
1358
+ statistics[:http].should == subject.http.statistics
1359
+ end
1360
+
1361
+ [:found_pages, :audited_pages, :current_page].each do |k|
1362
+ it "includes #{k}" do
1363
+ statistics.should include k
1364
+ end
1365
+ end
1366
+
1367
+ describe :runtime do
1368
+ context 'when the scan has been running' do
1369
+ it 'returns the runtime in seconds' do
1370
+ subject.run
1371
+ statistics[:runtime].should > 0
1372
+ end
1373
+ end
1374
+
1375
+ context 'when no scan has been running' do
1376
+ it 'returns 0' do
1377
+ statistics[:runtime].should == 0
1378
+ end
1379
+ end
906
1380
  end
907
1381
  end
908
1382
 
909
1383
  describe '#list_platforms' do
910
1384
  it 'returns information about all valid platforms' do
911
- @f.list_platforms.should == {
1385
+ subject.list_platforms.should == {
912
1386
  'Operating systems' => {
913
1387
  unix: 'Generic Unix family',
914
1388
  linux: 'Linux',
915
1389
  bsd: 'Generic BSD family',
1390
+ aix: 'IBM AIX',
916
1391
  solaris: 'Solaris',
917
1392
  windows: 'MS Windows'
918
1393
  },
@@ -933,7 +1408,8 @@ describe Arachni::Framework do
933
1408
  oracle: 'Oracle',
934
1409
  pgsql: 'Postgresql',
935
1410
  sqlite: 'SQLite',
936
- sybase: 'Sybase'
1411
+ sybase: 'Sybase',
1412
+ mongodb: 'MongoDB'
937
1413
  },
938
1414
  'Web servers' => {
939
1415
  apache: 'Apache',
@@ -959,203 +1435,67 @@ describe Arachni::Framework do
959
1435
  end
960
1436
  end
961
1437
 
962
- describe '#list_modules' do
963
- it 'aliased to #lsmod return info on all modules' do
964
- @f.modules.load :taint
965
- info = @f.modules.values.first.info
966
- loaded = @f.modules.loaded
1438
+ describe '#list_checks' do
1439
+ context 'when a pattern is given' do
1440
+ it 'uses it to filter out checks that do not match it' do
1441
+ subject.list_checks( 'boo' ).size == 0
967
1442
 
968
- mods = @f.list_modules
969
- mods.should == @f.lsmod
1443
+ subject.list_checks( 'taint' ).should == subject.list_checks
1444
+ subject.list_checks.size == 1
1445
+ end
1446
+ end
1447
+ end
970
1448
 
971
- @f.modules.loaded.should == loaded
1449
+ describe '#list_plugins' do
1450
+ it 'returns info on all plugins' do
1451
+ subject.list_plugins.size.should == subject.plugins.available.size
972
1452
 
973
- mods.size.should == 1
974
- mod = mods.first
975
- mod[:name].should == info[:name]
976
- mod[:mod_name].should == 'taint'
977
- mod[:shortname].should == mod[:mod_name]
978
- mod[:description].should == info[:description]
979
- mod[:author].should == [info[:author]].flatten
980
- mod[:version].should == info[:version]
981
- mod[:references].should == info[:references]
982
- mod[:targets].should == info[:targets]
983
- mod[:issue].should == info[:issue]
984
- end
1453
+ info = subject.list_plugins.find { |p| p[:options].any? }
1454
+ plugin = subject.plugins[info[:shortname]]
985
1455
 
986
- context 'when the #lsmod option is set' do
987
- it 'uses it to filter out modules that do not match it' do
988
- @f.opts.lsmod = 'boo'
989
- @f.list_modules.should == @f.lsmod
990
- @f.lsmod.size == 0
1456
+ plugin.info.each do |k, v|
1457
+ if k == :author
1458
+ info[k].should == [v].flatten
1459
+ next
1460
+ end
991
1461
 
992
- @f.opts.lsmod = 'taint'
993
- @f.list_modules.should == @f.lsmod
994
- @f.lsmod.size == 1
1462
+ info[k].should == v
995
1463
  end
1464
+
1465
+ info[:shortname].should == plugin.shortname
996
1466
  end
997
- end
998
1467
 
999
- describe '#list_plugins' do
1000
- it 'aliased to #lsplug return info on all plugins' do
1001
- loaded = @f.plugins.loaded
1002
-
1003
- @f.list_plugins.should == @f.lsplug
1004
-
1005
- @f.list_plugins.map { |r| r.delete( :path ); r }
1006
- .sort_by { |e| e[:plug_name] }.should == YAML.load( '
1007
- ---
1008
- - :name: \'\'
1009
- :description: \'\'
1010
- :author:
1011
- - Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
1012
- :version: \'0.1\'
1013
- :plug_name: !binary |-
1014
- YmFk
1015
- :shortname: !binary |-
1016
- YmFk
1017
- - :name: Default
1018
- :description: Some description
1019
- :author:
1020
- - Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
1021
- :version: \'0.1\'
1022
- :options:
1023
- - !ruby/object:Arachni::Component::Options::Int
1024
- name: int_opt
1025
- required: false
1026
- desc: An integer.
1027
- default: 4
1028
- enums: []
1029
- :plug_name: !binary |-
1030
- ZGVmYXVsdA==
1031
- :shortname: !binary |-
1032
- ZGVmYXVsdA==
1033
- - :name: Distributable
1034
- :description: \'\'
1035
- :author:
1036
- - Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
1037
- :version: \'0.1\'
1038
- :issue:
1039
- :tags:
1040
- - distributable_string
1041
- - :distributable_sym
1042
- :plug_name: !binary |-
1043
- ZGlzdHJpYnV0YWJsZQ==
1044
- :shortname: !binary |-
1045
- ZGlzdHJpYnV0YWJsZQ==
1046
- - :name: \'\'
1047
- :description: \'\'
1048
- :author:
1049
- - Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
1050
- :version: \'0.1\'
1051
- :plug_name: !binary |-
1052
- bG9vcA==
1053
- :shortname: !binary |-
1054
- bG9vcA==
1055
- - :name: SpiderHook
1056
- :description: \'\'
1057
- :author:
1058
- - Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
1059
- :version: \'0.1\'
1060
- :plug_name: !binary |-
1061
- c3BpZGVyX2hvb2s=
1062
- :shortname: !binary |-
1063
- c3BpZGVyX2hvb2s=
1064
- - :name: Wait
1065
- :description: \'\'
1066
- :tags:
1067
- - wait_string
1068
- - :wait_sym
1069
- :author:
1070
- - Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
1071
- :version: \'0.1\'
1072
- :plug_name: !binary |-
1073
- d2FpdA==
1074
- :shortname: !binary |-
1075
- d2FpdA==
1076
- - :name: Component
1077
- :description: Component with options
1078
- :author:
1079
- - Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
1080
- :version: \'0.1\'
1081
- :options:
1082
- - !ruby/object:Arachni::Component::Options::String
1083
- name: req_opt
1084
- required: true
1085
- desc: Required option
1086
- default:
1087
- enums: []
1088
- - !ruby/object:Arachni::Component::Options::String
1089
- name: opt_opt
1090
- required: false
1091
- desc: Optional option
1092
- default:
1093
- enums: []
1094
- - !ruby/object:Arachni::Component::Options::String
1095
- name: default_opt
1096
- required: false
1097
- desc: Option with default value
1098
- default: value
1099
- enums: []
1100
- :plug_name: !binary |-
1101
- d2l0aF9vcHRpb25z
1102
- :shortname: !binary |-
1103
- d2l0aF9vcHRpb25z
1104
- ' ).sort_by { |e| e[:plug_name] }
1105
- @f.plugins.loaded.should == loaded
1106
- end
1107
-
1108
- context 'when the #lsplug option is set' do
1468
+ context 'when a pattern is given' do
1109
1469
  it 'uses it to filter out plugins that do not match it' do
1110
- @f.opts.lsplug = 'bad|foo'
1111
- @f.list_plugins.should == @f.lsplug
1112
- @f.lsplug.size == 2
1113
-
1114
- @f.opts.lsplug = 'boo'
1115
- @f.list_plugins.should == @f.lsplug
1116
- @f.lsplug.size == 0
1470
+ subject.list_plugins( 'bad|foo' ).size == 2
1471
+ subject.list_plugins( 'boo' ).size == 0
1117
1472
  end
1118
1473
  end
1119
1474
  end
1120
1475
 
1121
- describe '#list_reports' do
1122
- it 'returns info on all reports' do
1123
- loaded = @f.reports.loaded
1124
- @f.list_reports.should == @f.lsrep
1125
- @f.list_reports.map { |r| r[:options] = []; r.delete( :path ); r }
1126
- .sort_by { |e| e[:rep_name] }.should == YAML.load( '
1127
- ---
1128
- - :name: Report abstract class.
1129
- :options: []
1130
-
1131
- :description: This class should be extended by all reports.
1132
- :author:
1133
- - zapotek
1134
- :version: 0.1.1
1135
- :rep_name: afr
1136
- :shortname: afr
1137
- - :name: Report abstract class.
1138
- :options: []
1139
-
1140
- :description: This class should be extended by all reports.
1141
- :author:
1142
- - zapotek
1143
- :version: 0.1.1
1144
- :rep_name: foo
1145
- :shortname: foo
1146
- ').sort_by { |e| e[:rep_name] }
1147
- @f.reports.loaded.should == loaded
1148
- end
1149
-
1150
- context 'when the #lsrep option is set' do
1151
- it 'uses it to filter out reports that do not match it' do
1152
- @f.opts.lsrep = 'foo'
1153
- @f.list_reports.should == @f.lsrep
1154
- @f.lsrep.size == 1
1155
-
1156
- @f.opts.lsrep = 'boo'
1157
- @f.list_reports.should == @f.lsrep
1158
- @f.lsrep.size == 0
1476
+ describe '#list_reporters' do
1477
+ it 'returns info on all reporters' do
1478
+ subject.list_reporters.size.should == subject.reporters.available.size
1479
+
1480
+ info = subject.list_reporters.find { |p| p[:options].any? }
1481
+ report = subject.reporters[info[:shortname]]
1482
+
1483
+ report.info.each do |k, v|
1484
+ if k == :author
1485
+ info[k].should == [v].flatten
1486
+ next
1487
+ end
1488
+
1489
+ info[k].should == v
1490
+ end
1491
+
1492
+ info[:shortname].should == report.shortname
1493
+ end
1494
+
1495
+ context 'when a pattern is given' do
1496
+ it 'uses it to filter out reporters that do not match it' do
1497
+ subject.list_reporters( 'foo' ).size == 1
1498
+ subject.list_reporters( 'boo' ).size == 0
1159
1499
  end
1160
1500
  end
1161
1501
  end