arachni 1.4 → 1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (746) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +136 -0
  3. data/Gemfile +3 -1
  4. data/LICENSE.md +1 -1
  5. data/README.md +5 -2
  6. data/Rakefile +1 -1
  7. data/arachni.gemspec +35 -30
  8. data/bin/arachni +1 -1
  9. data/bin/arachni_console +1 -1
  10. data/bin/arachni_multi +6 -1
  11. data/bin/arachni_reporter +1 -1
  12. data/bin/arachni_reproduce +12 -0
  13. data/bin/arachni_rest_server +1 -1
  14. data/bin/arachni_restore +1 -1
  15. data/bin/arachni_rpc +6 -1
  16. data/bin/arachni_rpcd +1 -1
  17. data/bin/arachni_rpcd_monitor +6 -1
  18. data/bin/arachni_script +1 -1
  19. data/components/checks/active/code_injection.rb +1 -1
  20. data/components/checks/active/code_injection_php_input_wrapper.rb +1 -1
  21. data/components/checks/active/code_injection_timing.rb +1 -1
  22. data/components/checks/active/csrf.rb +15 -75
  23. data/components/checks/active/file_inclusion.rb +1 -1
  24. data/components/checks/active/ldap_injection.rb +1 -1
  25. data/components/checks/active/no_sql_injection.rb +1 -1
  26. data/components/checks/active/no_sql_injection_differential.rb +1 -1
  27. data/components/checks/active/os_cmd_injection.rb +1 -1
  28. data/components/checks/active/os_cmd_injection_timing.rb +1 -1
  29. data/components/checks/active/path_traversal.rb +3 -3
  30. data/components/checks/active/response_splitting.rb +1 -1
  31. data/components/checks/active/rfi.rb +1 -1
  32. data/components/checks/active/session_fixation.rb +1 -1
  33. data/components/checks/active/source_code_disclosure.rb +1 -1
  34. data/components/checks/active/sql_injection.rb +1 -1
  35. data/components/checks/active/sql_injection/regexps/hsqldb.yaml +1 -0
  36. data/components/checks/active/sql_injection/substrings/hsqldb +1 -0
  37. data/components/checks/active/sql_injection/substrings/java +4 -0
  38. data/components/checks/active/sql_injection/substrings/oracle +0 -1
  39. data/components/checks/active/sql_injection/substrings/sqlite +1 -0
  40. data/components/checks/active/sql_injection_differential.rb +1 -1
  41. data/components/checks/active/sql_injection_timing.rb +1 -1
  42. data/components/checks/active/trainer.rb +1 -1
  43. data/components/checks/active/unvalidated_redirect.rb +34 -11
  44. data/components/checks/active/unvalidated_redirect_dom.rb +4 -4
  45. data/components/checks/active/xpath_injection.rb +1 -1
  46. data/components/checks/active/xss.rb +52 -27
  47. data/components/checks/active/xss_dom.rb +15 -11
  48. data/components/checks/active/xss_dom_script_context.rb +4 -6
  49. data/components/checks/active/xss_event.rb +45 -33
  50. data/components/checks/active/xss_path.rb +9 -6
  51. data/components/checks/active/xss_script_context.rb +99 -46
  52. data/components/checks/active/xss_tag.rb +39 -14
  53. data/components/checks/active/xxe.rb +1 -1
  54. data/components/checks/passive/allowed_methods.rb +1 -1
  55. data/components/checks/passive/backdoors.rb +1 -1
  56. data/components/checks/passive/backup_directories.rb +15 -3
  57. data/components/checks/passive/backup_files.rb +39 -6
  58. data/components/checks/passive/common_admin_interfaces.rb +1 -1
  59. data/components/checks/passive/common_admin_interfaces/admin-panels.txt +1 -0
  60. data/components/checks/passive/common_directories.rb +1 -1
  61. data/components/checks/passive/common_files.rb +1 -1
  62. data/components/checks/passive/directory_listing.rb +1 -1
  63. data/components/checks/passive/grep/captcha.rb +8 -9
  64. data/components/checks/passive/grep/cookie_set_for_parent_domain.rb +1 -1
  65. data/components/checks/passive/grep/credit_card.rb +1 -1
  66. data/components/checks/passive/grep/cvs_svn_users.rb +1 -1
  67. data/components/checks/passive/grep/emails.rb +1 -1
  68. data/components/checks/passive/grep/form_upload.rb +3 -5
  69. data/components/checks/passive/grep/hsts.rb +1 -1
  70. data/components/checks/passive/grep/html_objects.rb +1 -1
  71. data/components/checks/passive/grep/http_only_cookies.rb +1 -1
  72. data/components/checks/passive/grep/insecure_cookies.rb +5 -5
  73. data/components/checks/passive/grep/insecure_cors_policy.rb +1 -1
  74. data/components/checks/passive/grep/mixed_resource.rb +4 -4
  75. data/components/checks/passive/grep/password_autocomplete.rb +1 -1
  76. data/components/checks/passive/grep/private_ip.rb +1 -1
  77. data/components/checks/passive/grep/ssn.rb +1 -1
  78. data/components/checks/passive/grep/unencrypted_password_forms.rb +3 -3
  79. data/components/checks/passive/grep/x_frame_options.rb +1 -1
  80. data/components/checks/passive/htaccess_limit.rb +1 -1
  81. data/components/checks/passive/http_put.rb +1 -1
  82. data/components/checks/passive/insecure_client_access_policy.rb +2 -2
  83. data/components/checks/passive/insecure_cross_domain_policy_access.rb +2 -2
  84. data/components/checks/passive/insecure_cross_domain_policy_headers.rb +2 -2
  85. data/components/checks/passive/interesting_responses.rb +1 -1
  86. data/components/checks/passive/localstart_asp.rb +1 -1
  87. data/components/checks/passive/origin_spoof_access_restriction_bypass.rb +1 -1
  88. data/components/checks/passive/webdav.rb +1 -1
  89. data/components/checks/passive/xst.rb +10 -12
  90. data/components/fingerprinters/frameworks/aspx_mvc.rb +1 -1
  91. data/components/fingerprinters/frameworks/cakephp.rb +1 -1
  92. data/components/fingerprinters/frameworks/cherrypy.rb +1 -1
  93. data/components/fingerprinters/frameworks/django.rb +1 -1
  94. data/components/fingerprinters/frameworks/jsf.rb +1 -1
  95. data/components/fingerprinters/frameworks/nette.rb +1 -1
  96. data/components/fingerprinters/frameworks/rack.rb +1 -1
  97. data/components/fingerprinters/frameworks/rails.rb +1 -1
  98. data/components/fingerprinters/frameworks/symfony.rb +1 -1
  99. data/components/fingerprinters/languages/asp.rb +1 -1
  100. data/components/fingerprinters/languages/aspx.rb +1 -1
  101. data/components/fingerprinters/languages/java.rb +1 -1
  102. data/components/fingerprinters/languages/php.rb +1 -1
  103. data/components/fingerprinters/languages/python.rb +1 -1
  104. data/components/fingerprinters/languages/ruby.rb +1 -1
  105. data/components/fingerprinters/os/bsd.rb +1 -1
  106. data/components/fingerprinters/os/linux.rb +1 -1
  107. data/components/fingerprinters/os/solaris.rb +1 -1
  108. data/components/fingerprinters/os/unix.rb +1 -1
  109. data/components/fingerprinters/os/windows.rb +1 -1
  110. data/components/fingerprinters/servers/apache.rb +1 -1
  111. data/components/fingerprinters/servers/gunicorn.rb +1 -1
  112. data/components/fingerprinters/servers/iis.rb +1 -1
  113. data/components/fingerprinters/servers/jetty.rb +1 -1
  114. data/components/fingerprinters/servers/nginx.rb +1 -1
  115. data/components/fingerprinters/servers/tomcat.rb +1 -1
  116. data/components/path_extractors/anchors.rb +3 -5
  117. data/components/path_extractors/areas.rb +3 -4
  118. data/components/path_extractors/comments.rb +4 -5
  119. data/components/path_extractors/data_url.rb +4 -5
  120. data/components/path_extractors/forms.rb +3 -4
  121. data/components/path_extractors/frames.rb +3 -5
  122. data/components/path_extractors/generic.rb +3 -1
  123. data/components/path_extractors/links.rb +3 -4
  124. data/components/path_extractors/meta_refresh.rb +11 -17
  125. data/components/path_extractors/scripts.rb +18 -15
  126. data/components/plugins/autologin.rb +3 -2
  127. data/components/plugins/beep_notify.rb +1 -1
  128. data/components/plugins/content_types.rb +1 -1
  129. data/components/plugins/cookie_collector.rb +1 -1
  130. data/components/plugins/debug/browser_cluster_job_monitor.rb +60 -0
  131. data/components/plugins/defaults/autothrottle.rb +1 -1
  132. data/components/plugins/defaults/healthmap.rb +3 -1
  133. data/components/plugins/defaults/meta/remedies/discovery.rb +1 -1
  134. data/components/plugins/defaults/meta/remedies/timing_attacks.rb +1 -1
  135. data/components/plugins/defaults/meta/uniformity.rb +1 -1
  136. data/components/plugins/email_notify.rb +26 -9
  137. data/components/plugins/exec.rb +1 -1
  138. data/components/plugins/form_dicattack.rb +3 -4
  139. data/components/plugins/headers_collector.rb +1 -1
  140. data/components/plugins/http_dicattack.rb +4 -5
  141. data/components/plugins/login_script.rb +2 -2
  142. data/components/plugins/metrics.rb +41 -15
  143. data/components/plugins/page_dump.rb +60 -0
  144. data/components/plugins/proxy.rb +42 -30
  145. data/components/plugins/proxy/template_scope.rb +6 -1
  146. data/components/plugins/rate_limiter.rb +80 -0
  147. data/components/plugins/restrict_to_dom_state.rb +1 -1
  148. data/components/plugins/script.rb +1 -1
  149. data/components/plugins/uncommon_headers.rb +1 -1
  150. data/components/plugins/vector_collector.rb +1 -1
  151. data/components/plugins/vector_feed.rb +1 -1
  152. data/components/plugins/waf_detector.rb +3 -3
  153. data/components/plugins/webhook_notify.rb +99 -0
  154. data/components/reporters/ap.rb +1 -1
  155. data/components/reporters/html.rb +2 -3
  156. data/components/reporters/html/default.erb +1 -2
  157. data/components/reporters/html/default/configuration.erb +2 -0
  158. data/components/reporters/json.rb +1 -1
  159. data/components/reporters/marshal.rb +1 -1
  160. data/components/reporters/plugin_formatters/html/autologin.rb +1 -1
  161. data/components/reporters/plugin_formatters/html/content_types.rb +1 -1
  162. data/components/reporters/plugin_formatters/html/cookie_collector.rb +1 -1
  163. data/components/reporters/plugin_formatters/html/exec.rb +1 -1
  164. data/components/reporters/plugin_formatters/html/form_dicattack.rb +1 -1
  165. data/components/reporters/plugin_formatters/html/healthmap.rb +1 -1
  166. data/components/reporters/plugin_formatters/html/http_dicattack.rb +1 -1
  167. data/components/reporters/plugin_formatters/html/login_script.rb +1 -1
  168. data/components/reporters/plugin_formatters/html/metrics.rb +46 -1
  169. data/components/reporters/plugin_formatters/html/uncommon_headers.rb +1 -1
  170. data/components/reporters/plugin_formatters/html/uniformity.rb +1 -1
  171. data/components/reporters/plugin_formatters/html/vector_collector.rb +1 -1
  172. data/components/reporters/plugin_formatters/html/waf_detector.rb +1 -1
  173. data/components/reporters/plugin_formatters/stdout/autologin.rb +1 -1
  174. data/components/reporters/plugin_formatters/stdout/content_types.rb +1 -1
  175. data/components/reporters/plugin_formatters/stdout/cookie_collector.rb +1 -1
  176. data/components/reporters/plugin_formatters/stdout/exec.rb +1 -1
  177. data/components/reporters/plugin_formatters/stdout/form_dicattack.rb +1 -1
  178. data/components/reporters/plugin_formatters/stdout/healthmap.rb +1 -1
  179. data/components/reporters/plugin_formatters/stdout/http_dicattack.rb +1 -1
  180. data/components/reporters/plugin_formatters/stdout/login_script.rb +1 -1
  181. data/components/reporters/plugin_formatters/stdout/metrics.rb +11 -1
  182. data/components/reporters/plugin_formatters/stdout/uncommon_headers.rb +1 -1
  183. data/components/reporters/plugin_formatters/stdout/uniformity.rb +1 -1
  184. data/components/reporters/plugin_formatters/stdout/vector_collector.rb +1 -1
  185. data/components/reporters/plugin_formatters/stdout/waf_detector.rb +1 -1
  186. data/components/reporters/plugin_formatters/xml/autologin.rb +1 -1
  187. data/components/reporters/plugin_formatters/xml/content_types.rb +10 -7
  188. data/components/reporters/plugin_formatters/xml/cookie_collector.rb +6 -3
  189. data/components/reporters/plugin_formatters/xml/exec.rb +1 -1
  190. data/components/reporters/plugin_formatters/xml/form_dicattack.rb +1 -1
  191. data/components/reporters/plugin_formatters/xml/healthmap.rb +1 -1
  192. data/components/reporters/plugin_formatters/xml/http_dicattack.rb +1 -1
  193. data/components/reporters/plugin_formatters/xml/login_script.rb +1 -1
  194. data/components/reporters/plugin_formatters/xml/metrics.rb +1 -1
  195. data/components/reporters/plugin_formatters/xml/uncommon_headers.rb +5 -2
  196. data/components/reporters/plugin_formatters/xml/uniformity.rb +1 -1
  197. data/components/reporters/plugin_formatters/xml/vector_collector.rb +8 -5
  198. data/components/reporters/plugin_formatters/xml/waf_detector.rb +1 -1
  199. data/components/reporters/stdout.rb +3 -2
  200. data/components/reporters/txt.rb +1 -1
  201. data/components/reporters/xml.rb +39 -22
  202. data/components/reporters/xml/schema.xsd +28 -13
  203. data/components/reporters/yaml.rb +1 -1
  204. data/lib/arachni.rb +1 -1
  205. data/lib/arachni/banner.rb +1 -1
  206. data/lib/arachni/browser.rb +242 -231
  207. data/lib/arachni/browser/element_locator.rb +9 -5
  208. data/lib/arachni/browser/javascript.rb +103 -168
  209. data/lib/arachni/browser/javascript/dom_monitor.rb +1 -1
  210. data/lib/arachni/browser/javascript/proxy.rb +1 -1
  211. data/lib/arachni/browser/javascript/proxy/stub.rb +1 -1
  212. data/lib/arachni/browser/javascript/scripts/dom_monitor.js +295 -51
  213. data/lib/arachni/browser/javascript/scripts/polyfills.js +0 -28
  214. data/lib/arachni/browser/javascript/scripts/taint_tracer.js +46 -8
  215. data/lib/arachni/browser/javascript/taint_tracer.rb +1 -1
  216. data/lib/arachni/browser/javascript/taint_tracer/frame.rb +1 -1
  217. data/lib/arachni/browser/javascript/taint_tracer/frame/called_function.rb +1 -1
  218. data/lib/arachni/browser/javascript/taint_tracer/sink/base.rb +1 -1
  219. data/lib/arachni/browser/javascript/taint_tracer/sink/data_flow.rb +1 -1
  220. data/lib/arachni/browser/javascript/taint_tracer/sink/execution_flow.rb +1 -1
  221. data/lib/arachni/browser_cluster.rb +78 -60
  222. data/lib/arachni/browser_cluster/job.rb +9 -2
  223. data/lib/arachni/browser_cluster/job/result.rb +1 -1
  224. data/lib/arachni/browser_cluster/jobs/browser_provider.rb +8 -2
  225. data/lib/arachni/browser_cluster/jobs/dom_exploration.rb +13 -1
  226. data/lib/arachni/browser_cluster/jobs/dom_exploration/event_trigger.rb +1 -1
  227. data/lib/arachni/browser_cluster/jobs/dom_exploration/event_trigger/result.rb +1 -1
  228. data/lib/arachni/browser_cluster/jobs/dom_exploration/result.rb +1 -1
  229. data/lib/arachni/browser_cluster/jobs/taint_trace.rb +1 -1
  230. data/lib/arachni/browser_cluster/jobs/taint_trace/event_trigger.rb +1 -1
  231. data/lib/arachni/browser_cluster/jobs/taint_trace/event_trigger/result.rb +1 -1
  232. data/lib/arachni/browser_cluster/jobs/taint_trace/result.rb +1 -1
  233. data/lib/arachni/browser_cluster/worker.rb +109 -84
  234. data/lib/arachni/check.rb +1 -1
  235. data/lib/arachni/check/auditor.rb +137 -93
  236. data/lib/arachni/check/base.rb +1 -1
  237. data/lib/arachni/check/manager.rb +1 -1
  238. data/lib/arachni/component.rb +1 -1
  239. data/lib/arachni/component/base.rb +3 -1
  240. data/lib/arachni/component/manager.rb +1 -1
  241. data/lib/arachni/component/options.rb +1 -1
  242. data/lib/arachni/component/options/address.rb +1 -1
  243. data/lib/arachni/component/options/base.rb +1 -1
  244. data/lib/arachni/component/options/bool.rb +1 -1
  245. data/lib/arachni/component/options/float.rb +1 -1
  246. data/lib/arachni/component/options/int.rb +1 -1
  247. data/lib/arachni/component/options/multiple_choice.rb +1 -1
  248. data/lib/arachni/component/options/object.rb +1 -1
  249. data/lib/arachni/component/options/path.rb +1 -1
  250. data/lib/arachni/component/options/port.rb +1 -1
  251. data/lib/arachni/component/options/string.rb +1 -1
  252. data/lib/arachni/component/options/url.rb +1 -1
  253. data/lib/arachni/component/output.rb +8 -2
  254. data/lib/arachni/component/utilities.rb +1 -1
  255. data/lib/arachni/data.rb +1 -1
  256. data/lib/arachni/data/framework.rb +2 -1
  257. data/lib/arachni/data/framework/rpc.rb +1 -1
  258. data/lib/arachni/data/issues.rb +1 -1
  259. data/lib/arachni/data/plugins.rb +1 -1
  260. data/lib/arachni/data/session.rb +1 -1
  261. data/lib/arachni/element/base.rb +1 -1
  262. data/lib/arachni/element/body.rb +1 -1
  263. data/lib/arachni/element/capabilities/analyzable.rb +1 -1
  264. data/lib/arachni/element/capabilities/analyzable/differential.rb +142 -175
  265. data/lib/arachni/element/capabilities/analyzable/signature.rb +39 -17
  266. data/lib/arachni/element/capabilities/analyzable/timeout.rb +1 -1
  267. data/lib/arachni/element/capabilities/auditable.rb +2 -8
  268. data/lib/arachni/element/capabilities/auditable/buffered.rb +92 -0
  269. data/lib/arachni/element/capabilities/auditable/line_buffered.rb +103 -0
  270. data/lib/arachni/element/capabilities/dom_only.rb +1 -1
  271. data/lib/arachni/element/capabilities/inputtable.rb +6 -2
  272. data/lib/arachni/element/capabilities/mutable.rb +1 -1
  273. data/lib/arachni/element/capabilities/refreshable.rb +1 -1
  274. data/lib/arachni/element/capabilities/submittable.rb +1 -1
  275. data/lib/arachni/element/capabilities/with_auditor.rb +1 -1
  276. data/lib/arachni/element/capabilities/with_auditor/output.rb +4 -3
  277. data/lib/arachni/element/capabilities/with_dom.rb +1 -1
  278. data/lib/arachni/element/capabilities/with_node.rb +3 -3
  279. data/lib/arachni/element/capabilities/with_scope.rb +1 -1
  280. data/lib/arachni/element/capabilities/with_scope/scope.rb +1 -1
  281. data/lib/arachni/element/capabilities/with_source.rb +2 -2
  282. data/lib/arachni/element/cookie.rb +49 -24
  283. data/lib/arachni/element/cookie/capabilities/inputtable.rb +1 -1
  284. data/lib/arachni/element/cookie/capabilities/mutable.rb +1 -1
  285. data/lib/arachni/element/cookie/capabilities/with_dom.rb +1 -1
  286. data/lib/arachni/element/cookie/dom.rb +1 -1
  287. data/lib/arachni/element/dom.rb +1 -1
  288. data/lib/arachni/element/dom/capabilities/auditable.rb +44 -3
  289. data/lib/arachni/element/dom/capabilities/inputtable.rb +1 -1
  290. data/lib/arachni/element/dom/capabilities/locatable.rb +1 -1
  291. data/lib/arachni/element/dom/capabilities/mutable.rb +7 -3
  292. data/lib/arachni/element/dom/capabilities/submittable.rb +51 -22
  293. data/lib/arachni/element/form.rb +21 -32
  294. data/lib/arachni/element/form/capabilities/auditable.rb +1 -1
  295. data/lib/arachni/element/form/capabilities/mutable.rb +16 -11
  296. data/lib/arachni/element/form/capabilities/submittable.rb +1 -1
  297. data/lib/arachni/element/form/capabilities/with_dom.rb +1 -1
  298. data/lib/arachni/element/form/dom.rb +1 -1
  299. data/lib/arachni/element/generic_dom.rb +1 -1
  300. data/lib/arachni/element/header.rb +3 -1
  301. data/lib/arachni/element/header/capabilities/inputtable.rb +1 -1
  302. data/lib/arachni/element/header/capabilities/mutable.rb +1 -1
  303. data/lib/arachni/element/json.rb +4 -8
  304. data/lib/arachni/element/json/capabilities/inputtable.rb +1 -1
  305. data/lib/arachni/element/json/capabilities/mutable.rb +1 -1
  306. data/lib/arachni/element/link.rb +11 -30
  307. data/lib/arachni/element/link/capabilities/auditable.rb +1 -1
  308. data/lib/arachni/element/link/capabilities/submittable.rb +1 -1
  309. data/lib/arachni/element/link/capabilities/with_dom.rb +1 -1
  310. data/lib/arachni/element/link/dom.rb +1 -1
  311. data/lib/arachni/element/link/dom/capabilities/submittable.rb +1 -1
  312. data/lib/arachni/element/link_template.rb +10 -19
  313. data/lib/arachni/element/link_template/capabilities/auditable.rb +1 -1
  314. data/lib/arachni/element/link_template/capabilities/inputtable.rb +1 -1
  315. data/lib/arachni/element/link_template/capabilities/with_dom.rb +1 -1
  316. data/lib/arachni/element/link_template/dom.rb +2 -2
  317. data/lib/arachni/element/link_template/dom/capabilities/submittable.rb +1 -1
  318. data/lib/arachni/element/path.rb +1 -1
  319. data/lib/arachni/element/server.rb +11 -11
  320. data/lib/arachni/element/ui_form.rb +5 -6
  321. data/lib/arachni/element/ui_form/dom.rb +1 -1
  322. data/lib/arachni/element/ui_input.rb +4 -6
  323. data/lib/arachni/element/ui_input/dom.rb +1 -1
  324. data/lib/arachni/element/xml.rb +3 -7
  325. data/lib/arachni/element/xml/capabilities/inputtable.rb +1 -1
  326. data/lib/arachni/element/xml/capabilities/mutable.rb +1 -1
  327. data/lib/arachni/element_filter.rb +1 -1
  328. data/lib/arachni/error.rb +1 -1
  329. data/lib/arachni/ethon/easy.rb +1 -1
  330. data/lib/arachni/framework.rb +1 -1
  331. data/lib/arachni/framework/parts/audit.rb +6 -1
  332. data/lib/arachni/framework/parts/browser.rb +14 -14
  333. data/lib/arachni/framework/parts/check.rb +1 -1
  334. data/lib/arachni/framework/parts/data.rb +1 -1
  335. data/lib/arachni/framework/parts/platform.rb +1 -1
  336. data/lib/arachni/framework/parts/plugin.rb +1 -1
  337. data/lib/arachni/framework/parts/report.rb +2 -2
  338. data/lib/arachni/framework/parts/scope.rb +1 -1
  339. data/lib/arachni/framework/parts/state.rb +1 -1
  340. data/lib/arachni/http.rb +1 -1
  341. data/lib/arachni/http/client.rb +32 -7
  342. data/lib/arachni/http/client/dynamic_404_handler.rb +74 -16
  343. data/lib/arachni/http/cookie_jar.rb +13 -8
  344. data/lib/arachni/http/headers.rb +11 -5
  345. data/lib/arachni/http/message.rb +9 -8
  346. data/lib/arachni/http/message/scope.rb +1 -1
  347. data/lib/arachni/http/proxy_server.rb +44 -11
  348. data/lib/arachni/http/proxy_server/connection.rb +113 -80
  349. data/lib/arachni/http/proxy_server/ssl_interceptor.rb +2 -1
  350. data/lib/arachni/http/proxy_server/tunnel.rb +4 -4
  351. data/lib/arachni/http/request.rb +236 -44
  352. data/lib/arachni/http/request/scope.rb +1 -1
  353. data/lib/arachni/http/response.rb +71 -8
  354. data/lib/arachni/http/response/scope.rb +1 -1
  355. data/lib/arachni/issue.rb +42 -14
  356. data/lib/arachni/issue/severity.rb +1 -1
  357. data/lib/arachni/issue/severity/base.rb +1 -1
  358. data/lib/arachni/option_group.rb +1 -1
  359. data/lib/arachni/option_groups.rb +1 -1
  360. data/lib/arachni/option_groups/audit.rb +1 -1
  361. data/lib/arachni/option_groups/browser_cluster.rb +6 -2
  362. data/lib/arachni/option_groups/datastore.rb +1 -1
  363. data/lib/arachni/option_groups/dispatcher.rb +1 -1
  364. data/lib/arachni/option_groups/http.rb +35 -6
  365. data/lib/arachni/option_groups/input.rb +1 -1
  366. data/lib/arachni/option_groups/output.rb +1 -1
  367. data/lib/arachni/option_groups/paths.rb +1 -1
  368. data/lib/arachni/option_groups/rpc.rb +1 -1
  369. data/lib/arachni/option_groups/scope.rb +13 -1
  370. data/lib/arachni/option_groups/session.rb +1 -1
  371. data/lib/arachni/option_groups/snapshot.rb +1 -1
  372. data/lib/arachni/options.rb +23 -4
  373. data/lib/arachni/page.rb +8 -6
  374. data/lib/arachni/page/dom.rb +46 -54
  375. data/lib/arachni/page/dom/transition.rb +5 -2
  376. data/lib/arachni/page/scope.rb +1 -1
  377. data/lib/arachni/parser.rb +157 -77
  378. data/lib/arachni/parser/document.rb +34 -0
  379. data/lib/arachni/parser/extractors/base.rb +48 -0
  380. data/lib/arachni/parser/nodes/base.rb +22 -0
  381. data/lib/arachni/parser/nodes/comment.rb +32 -0
  382. data/lib/arachni/parser/nodes/element.rb +48 -0
  383. data/lib/arachni/parser/nodes/element/with_attributes.rb +35 -0
  384. data/lib/arachni/parser/nodes/element/with_attributes/attributes.rb +31 -0
  385. data/lib/arachni/parser/nodes/text.rb +32 -0
  386. data/lib/arachni/parser/nodes/with_value.rb +29 -0
  387. data/lib/arachni/parser/sax.rb +75 -0
  388. data/lib/arachni/parser/with_children.rb +35 -0
  389. data/lib/arachni/parser/with_children/search.rb +92 -0
  390. data/lib/arachni/platform.rb +1 -1
  391. data/lib/arachni/platform/fingerprinter.rb +1 -1
  392. data/lib/arachni/platform/list.rb +1 -1
  393. data/lib/arachni/platform/manager.rb +2 -2
  394. data/lib/arachni/plugin.rb +1 -1
  395. data/lib/arachni/plugin/base.rb +2 -2
  396. data/lib/arachni/plugin/formatter.rb +1 -1
  397. data/lib/arachni/plugin/manager.rb +8 -5
  398. data/lib/arachni/processes.rb +1 -1
  399. data/lib/arachni/processes/dispatchers.rb +1 -1
  400. data/lib/arachni/processes/executables/browser.rb +0 -2
  401. data/lib/arachni/processes/helpers.rb +1 -1
  402. data/lib/arachni/processes/helpers/dispatchers.rb +1 -1
  403. data/lib/arachni/processes/helpers/instances.rb +1 -1
  404. data/lib/arachni/processes/helpers/processes.rb +1 -1
  405. data/lib/arachni/processes/instances.rb +1 -1
  406. data/lib/arachni/processes/manager.rb +10 -5
  407. data/lib/arachni/report.rb +8 -1
  408. data/lib/arachni/reporter.rb +1 -1
  409. data/lib/arachni/reporter/base.rb +1 -1
  410. data/lib/arachni/reporter/formatter_manager.rb +1 -1
  411. data/lib/arachni/reporter/manager.rb +1 -1
  412. data/lib/arachni/reporter/options.rb +1 -1
  413. data/lib/arachni/rest/server.rb +7 -1
  414. data/lib/arachni/rest/server/instance_helpers.rb +1 -1
  415. data/lib/arachni/rpc/client/base.rb +1 -1
  416. data/lib/arachni/rpc/client/dispatcher.rb +1 -1
  417. data/lib/arachni/rpc/client/instance.rb +1 -1
  418. data/lib/arachni/rpc/client/instance/framework.rb +1 -1
  419. data/lib/arachni/rpc/client/instance/service.rb +1 -1
  420. data/lib/arachni/rpc/serializer.rb +1 -1
  421. data/lib/arachni/rpc/server/active_options.rb +1 -1
  422. data/lib/arachni/rpc/server/base.rb +1 -1
  423. data/lib/arachni/rpc/server/check/manager.rb +1 -1
  424. data/lib/arachni/rpc/server/dispatcher.rb +1 -1
  425. data/lib/arachni/rpc/server/dispatcher/node.rb +1 -1
  426. data/lib/arachni/rpc/server/dispatcher/service.rb +1 -1
  427. data/lib/arachni/rpc/server/framework.rb +1 -1
  428. data/lib/arachni/rpc/server/framework/distributor.rb +1 -1
  429. data/lib/arachni/rpc/server/framework/master.rb +1 -1
  430. data/lib/arachni/rpc/server/framework/multi_instance.rb +1 -1
  431. data/lib/arachni/rpc/server/framework/slave.rb +1 -1
  432. data/lib/arachni/rpc/server/instance.rb +1 -1
  433. data/lib/arachni/rpc/server/output.rb +1 -1
  434. data/lib/arachni/rpc/server/plugin/manager.rb +1 -1
  435. data/lib/arachni/ruby.rb +1 -1
  436. data/lib/arachni/ruby/array.rb +1 -1
  437. data/lib/arachni/ruby/hash.rb +1 -1
  438. data/lib/arachni/ruby/object.rb +1 -1
  439. data/lib/arachni/ruby/set.rb +1 -1
  440. data/lib/arachni/ruby/string.rb +9 -5
  441. data/lib/arachni/ruby/webrick.rb +1 -1
  442. data/lib/arachni/ruby/webrick/cookie.rb +1 -1
  443. data/lib/arachni/ruby/webrick/httprequest.rb +1 -1
  444. data/lib/arachni/scope.rb +1 -1
  445. data/lib/arachni/selenium/webdriver/element.rb +4 -4
  446. data/lib/arachni/selenium/webdriver/remote/typhoeus.rb +69 -0
  447. data/lib/arachni/session.rb +32 -13
  448. data/lib/arachni/snapshot.rb +1 -1
  449. data/lib/arachni/state.rb +1 -1
  450. data/lib/arachni/state/audit.rb +1 -1
  451. data/lib/arachni/state/element_filter.rb +1 -1
  452. data/lib/arachni/state/framework.rb +1 -1
  453. data/lib/arachni/state/framework/rpc.rb +1 -1
  454. data/lib/arachni/state/http.rb +2 -2
  455. data/lib/arachni/state/options.rb +1 -1
  456. data/lib/arachni/state/plugins.rb +1 -1
  457. data/lib/arachni/support.rb +1 -1
  458. data/lib/arachni/support/buffer.rb +1 -1
  459. data/lib/arachni/support/buffer/autoflush.rb +1 -1
  460. data/lib/arachni/support/buffer/base.rb +1 -1
  461. data/lib/arachni/support/cache.rb +1 -1
  462. data/lib/arachni/support/cache/base.rb +1 -1
  463. data/lib/arachni/support/cache/least_cost_replacement.rb +1 -1
  464. data/lib/arachni/support/cache/least_recently_pushed.rb +1 -1
  465. data/lib/arachni/support/cache/least_recently_used.rb +1 -1
  466. data/lib/arachni/support/cache/preference.rb +1 -1
  467. data/lib/arachni/support/cache/random_replacement.rb +1 -1
  468. data/lib/arachni/support/crypto.rb +1 -1
  469. data/lib/arachni/support/crypto/rsa_aes_cbc.rb +1 -1
  470. data/lib/arachni/support/database.rb +1 -1
  471. data/lib/arachni/support/database/base.rb +1 -1
  472. data/lib/arachni/support/database/hash.rb +1 -1
  473. data/lib/arachni/support/database/queue.rb +1 -1
  474. data/lib/arachni/support/glob.rb +1 -1
  475. data/lib/arachni/support/lookup.rb +1 -1
  476. data/lib/arachni/support/lookup/base.rb +1 -1
  477. data/lib/arachni/support/lookup/hash_set.rb +1 -1
  478. data/lib/arachni/support/lookup/moolb.rb +1 -1
  479. data/lib/arachni/support/mixins.rb +1 -1
  480. data/lib/arachni/support/mixins/observable.rb +1 -1
  481. data/lib/arachni/support/mixins/terminal.rb +1 -1
  482. data/lib/arachni/support/profiler.rb +52 -13
  483. data/lib/arachni/support/signature.rb +18 -6
  484. data/lib/arachni/trainer.rb +55 -39
  485. data/lib/arachni/ui/foo/output.rb +1 -1
  486. data/lib/arachni/uri.rb +132 -103
  487. data/lib/arachni/uri/scope.rb +15 -13
  488. data/lib/arachni/utilities.rb +10 -10
  489. data/lib/arachni/version.rb +1 -1
  490. data/lib/version +1 -1
  491. data/logs/error-11897.log +2006 -0
  492. data/logs/error-3855.log +382 -0
  493. data/spec/arachni/browser/element_locator_spec.rb +42 -18
  494. data/spec/arachni/browser/javascript/dom_monitor_spec.rb +214 -63
  495. data/spec/arachni/browser/javascript/polyfills_spec.rb +0 -15
  496. data/spec/arachni/browser/javascript/taint_tracer_spec.rb +68 -121
  497. data/spec/arachni/browser/javascript_spec.rb +92 -51
  498. data/spec/arachni/browser_cluster/job_spec.rb +23 -8
  499. data/spec/arachni/browser_cluster/jobs/dom_exploration_spec.rb +6 -1
  500. data/spec/arachni/browser_cluster/worker_spec.rb +31 -57
  501. data/spec/arachni/browser_cluster_spec.rb +124 -43
  502. data/spec/arachni/browser_spec.rb +352 -312
  503. data/spec/arachni/check/auditor_spec.rb +118 -33
  504. data/spec/arachni/element/capabilities/analyzable/signature_spec.rb +46 -3
  505. data/spec/arachni/element/cookie/dom_spec.rb +1 -1
  506. data/spec/arachni/element/cookie_spec.rb +158 -63
  507. data/spec/arachni/element/form/dom_spec.rb +1 -1
  508. data/spec/arachni/element/form_spec.rb +101 -54
  509. data/spec/arachni/element/header_spec.rb +3 -1
  510. data/spec/arachni/element/json_spec.rb +2 -0
  511. data/spec/arachni/element/link/dom_spec.rb +2 -2
  512. data/spec/arachni/element/link_spec.rb +46 -15
  513. data/spec/arachni/element/link_template/dom_spec.rb +1 -1
  514. data/spec/arachni/element/link_template_spec.rb +36 -12
  515. data/spec/arachni/element/server_spec.rb +22 -5
  516. data/spec/arachni/element/ui_form/dom_spec.rb +1 -1
  517. data/spec/arachni/element/ui_input/dom_spec.rb +1 -1
  518. data/spec/arachni/element/xml_spec.rb +5 -3
  519. data/spec/arachni/framework/parts/audit_spec.rb +2 -14
  520. data/spec/arachni/framework/parts/data_spec.rb +0 -6
  521. data/spec/arachni/http/client/dynamic_404_handlers_spec.rb +126 -0
  522. data/spec/arachni/http/client_spec.rb +82 -10
  523. data/spec/arachni/http/headers_spec.rb +59 -12
  524. data/spec/arachni/http/proxy_server_spec.rb +56 -25
  525. data/spec/arachni/http/request_spec.rb +379 -33
  526. data/spec/arachni/http/response_spec.rb +135 -7
  527. data/spec/arachni/issue_spec.rb +20 -1
  528. data/spec/arachni/option_groups/http_spec.rb +15 -0
  529. data/spec/arachni/option_groups/scope_spec.rb +26 -1
  530. data/spec/arachni/options_spec.rb +8 -1
  531. data/spec/arachni/page/dom_spec.rb +20 -6
  532. data/spec/arachni/page_spec.rb +5 -5
  533. data/spec/arachni/parser/document_spec.rb +49 -0
  534. data/spec/arachni/parser/nodes/comment_spec.rb +24 -0
  535. data/spec/arachni/parser/nodes/element/with_attributes/attributes_spec.rb +40 -0
  536. data/spec/arachni/parser/nodes/element/with_attributes_spec.rb +50 -0
  537. data/spec/arachni/parser/nodes/element_spec.rb +18 -0
  538. data/spec/arachni/parser/nodes/text_spec.rb +24 -0
  539. data/spec/arachni/parser/sax_spec.rb +88 -0
  540. data/spec/arachni/parser/with_children/search_spec.rb +146 -0
  541. data/spec/arachni/parser/with_children_spec.rb +37 -0
  542. data/spec/arachni/parser_spec.rb +166 -26
  543. data/spec/arachni/report_spec.rb +9 -2
  544. data/spec/arachni/rest/server_spec.rb +52 -6
  545. data/spec/arachni/rpc/server/active_options_spec.rb +1 -1
  546. data/spec/arachni/rpc/server/framework/distributor_spec.rb +6 -6
  547. data/spec/arachni/ruby/string_spec.rb +6 -0
  548. data/spec/arachni/session_spec.rb +69 -8
  549. data/spec/arachni/support/signature_spec.rb +58 -0
  550. data/spec/arachni/trainer_spec.rb +102 -21
  551. data/spec/arachni/uri_spec.rb +11 -8
  552. data/spec/arachni/utilities_spec.rb +3 -3
  553. data/spec/components/checks/active/csrf_spec.rb +1 -21
  554. data/spec/components/checks/active/path_traversal_spec.rb +12 -12
  555. data/spec/components/checks/active/sql_injection_spec.rb +10 -1
  556. data/spec/components/checks/active/unvalidated_redirect_spec.rb +6 -6
  557. data/spec/components/checks/active/xss_dom_script_context_spec.rb +1 -5
  558. data/spec/components/checks/active/xss_dom_spec.rb +2 -2
  559. data/spec/components/checks/active/xss_event_spec.rb +8 -2
  560. data/spec/components/checks/active/xss_script_context_spec.rb +5 -5
  561. data/spec/components/checks/active/xss_spec.rb +3 -3
  562. data/spec/components/checks/passive/backup_directories_spec.rb +3 -1
  563. data/spec/components/checks/passive/backup_files_spec.rb +8 -1
  564. data/spec/components/checks/passive/grep/insecure_cookies_spec.rb +2 -2
  565. data/spec/components/path_extractors/comments_spec.rb +3 -1
  566. data/spec/components/path_extractors/data_url_spec.rb +6 -2
  567. data/spec/components/path_extractors/links_spec.rb +1 -1
  568. data/spec/components/plugins/autologin_spec.rb +2 -2
  569. data/spec/components/plugins/webhook_notify_spec.rb +69 -0
  570. data/spec/spec_helper.rb +1 -1
  571. data/spec/support/factories/page/dom.rb +6 -0
  572. data/spec/support/factories/scan_report.rb +1 -0
  573. data/spec/support/factories/vector.rb +7 -3
  574. data/spec/support/fixtures/check_with_invalid_platforms/with_invalid_platforms.rb +1 -1
  575. data/spec/support/fixtures/checks/test.rb +1 -1
  576. data/spec/support/fixtures/checks/test2.rb +1 -1
  577. data/spec/support/fixtures/checks/test3.rb +1 -1
  578. data/spec/support/fixtures/cookies.txt +2 -2
  579. data/spec/support/fixtures/fingerprinters/test.rb +1 -1
  580. data/spec/support/fixtures/plugins/bad.rb +1 -1
  581. data/spec/support/fixtures/plugins/defaults/default.rb +1 -1
  582. data/spec/support/fixtures/plugins/distributable.rb +1 -1
  583. data/spec/support/fixtures/plugins/loop.rb +1 -1
  584. data/spec/support/fixtures/plugins/suspendable.rb +1 -1
  585. data/spec/support/fixtures/plugins/wait.rb +1 -1
  586. data/spec/support/fixtures/plugins/with_options.rb +1 -1
  587. data/spec/support/fixtures/plugins_with_priorities/p0.rb +1 -1
  588. data/spec/support/fixtures/plugins_with_priorities/p00.rb +1 -1
  589. data/spec/support/fixtures/plugins_with_priorities/p1.rb +1 -1
  590. data/spec/support/fixtures/plugins_with_priorities/p2.rb +1 -1
  591. data/spec/support/fixtures/plugins_with_priorities/p22.rb +1 -1
  592. data/spec/support/fixtures/plugins_with_priorities/p222.rb +1 -1
  593. data/spec/support/fixtures/plugins_with_priorities/p_nil.rb +1 -1
  594. data/spec/support/fixtures/plugins_with_priorities/p_nil2.rb +1 -1
  595. data/spec/support/fixtures/report.afr +0 -0
  596. data/spec/support/fixtures/reporters/base_spec/plugin_formatters/with_formatters/foobar.rb +1 -1
  597. data/spec/support/fixtures/reporters/base_spec/with_formatters.rb +1 -1
  598. data/spec/support/fixtures/reporters/base_spec/with_outfile.rb +1 -1
  599. data/spec/support/fixtures/reporters/base_spec/without_outfile.rb +1 -1
  600. data/spec/support/fixtures/reporters/manager_spec/afr.rb +1 -1
  601. data/spec/support/fixtures/reporters/manager_spec/error.rb +1 -1
  602. data/spec/support/fixtures/reporters/manager_spec/foo.rb +1 -1
  603. data/spec/support/fixtures/run_check/body.rb +1 -1
  604. data/spec/support/fixtures/run_check/cookies.rb +1 -1
  605. data/spec/support/fixtures/run_check/empty.rb +1 -1
  606. data/spec/support/fixtures/run_check/flch.rb +1 -1
  607. data/spec/support/fixtures/run_check/forms.rb +1 -1
  608. data/spec/support/fixtures/run_check/headers.rb +1 -1
  609. data/spec/support/fixtures/run_check/links.rb +1 -1
  610. data/spec/support/fixtures/run_check/nil.rb +1 -1
  611. data/spec/support/fixtures/run_check/path.rb +1 -1
  612. data/spec/support/fixtures/run_check/server.rb +1 -1
  613. data/spec/support/fixtures/signature_check/signature.rb +1 -1
  614. data/spec/support/fixtures/wait_check/wait.rb +1 -1
  615. data/spec/support/helpers/browser_cluster/jobs/taint_tracer.rb +0 -3
  616. data/spec/support/helpers/framework.rb +1 -1
  617. data/spec/support/helpers/misc.rb +1 -1
  618. data/spec/support/helpers/paths.rb +1 -1
  619. data/spec/support/helpers/requires.rb +1 -1
  620. data/spec/support/helpers/resets.rb +1 -1
  621. data/spec/support/helpers/web_server.rb +1 -1
  622. data/spec/support/lib/factory.rb +1 -1
  623. data/spec/support/lib/web_server_client.rb +1 -1
  624. data/spec/support/lib/web_server_dispatcher.rb +1 -1
  625. data/spec/support/lib/web_server_manager.rb +4 -2
  626. data/spec/support/logs/Dispatcher - 1024-31864.log +10 -0
  627. data/spec/support/logs/Dispatcher - 1047-41465.log +10 -0
  628. data/spec/support/logs/Dispatcher - 1274-60799.log +64 -0
  629. data/spec/support/logs/Dispatcher - 1295-1058.log +44 -0
  630. data/spec/support/logs/Dispatcher - 1313-27076.log +40 -0
  631. data/spec/support/logs/Dispatcher - 1332-17127.log +35 -0
  632. data/spec/support/logs/Dispatcher - 1350-7351.log +29 -0
  633. data/spec/support/logs/Dispatcher - 1368-38528.log +22 -0
  634. data/spec/support/logs/Dispatcher - 1386-17419.log +14 -0
  635. data/spec/support/logs/Dispatcher - 31030-26156.log +10 -0
  636. data/spec/support/logs/Dispatcher - 321-27189.log +12 -0
  637. data/spec/support/logs/Dispatcher - 32353-50061.log +20 -0
  638. data/spec/support/logs/Dispatcher - 32450-61574.log +10 -0
  639. data/spec/support/logs/Dispatcher - 32470-53874.log +20 -0
  640. data/spec/support/logs/Dispatcher - 32491-10523.log +18 -0
  641. data/spec/support/logs/Dispatcher - 32509-8583.log +14 -0
  642. data/spec/support/logs/Dispatcher - 32536-21209.log +10 -0
  643. data/spec/support/logs/Dispatcher - 32556-53881.log +10 -0
  644. data/spec/support/logs/Dispatcher - 32579-49083.log +50 -0
  645. data/spec/support/logs/Dispatcher - 32761-20025.log +12 -0
  646. data/spec/support/logs/Dispatcher - 347-17512.log +12 -0
  647. data/spec/support/logs/Dispatcher - 3489-43230.log +24 -0
  648. data/spec/support/logs/Dispatcher - 3524-57459.log +26 -0
  649. data/spec/support/logs/Dispatcher - 3559-21544.log +20 -0
  650. data/spec/support/logs/Dispatcher - 3764-33844.log +25 -0
  651. data/spec/support/logs/Dispatcher - 3798-45350.log +26 -0
  652. data/spec/support/logs/Dispatcher - 382-15725.log +12 -0
  653. data/spec/support/logs/Dispatcher - 3836-6205.log +21 -0
  654. data/spec/support/logs/Dispatcher - 4112-45433.log +22 -0
  655. data/spec/support/logs/Dispatcher - 4148-53510.log +26 -0
  656. data/spec/support/logs/Dispatcher - 415-29873.log +14 -0
  657. data/spec/support/logs/Dispatcher - 4185-29736.log +18 -0
  658. data/spec/support/logs/Dispatcher - 4268-60912.log +25 -0
  659. data/spec/support/logs/Dispatcher - 4303-39372.log +26 -0
  660. data/spec/support/logs/Dispatcher - 4342-42190.log +21 -0
  661. data/spec/support/logs/Dispatcher - 463-55220.log +26 -0
  662. data/spec/support/logs/Dispatcher - 4649-12104.log +22 -0
  663. data/spec/support/logs/Dispatcher - 4683-32355.log +26 -0
  664. data/spec/support/logs/Dispatcher - 4724-41636.log +18 -0
  665. data/spec/support/logs/Dispatcher - 4881-57692.log +22 -0
  666. data/spec/support/logs/Dispatcher - 4961-64665.log +26 -0
  667. data/spec/support/logs/Dispatcher - 502-8742.log +25 -0
  668. data/spec/support/logs/Dispatcher - 5052-61726.log +18 -0
  669. data/spec/support/logs/Dispatcher - 536-15972.log +22 -0
  670. data/spec/support/logs/Dispatcher - 620-2220.log +20 -0
  671. data/spec/support/logs/Dispatcher - 638-17826.log +18 -0
  672. data/spec/support/logs/Dispatcher - 656-23967.log +16 -0
  673. data/spec/support/logs/Dispatcher - 700-15701.log +12 -0
  674. data/spec/support/logs/Dispatcher - 726-6080.log +10 -0
  675. data/spec/support/logs/Dispatcher - 749-56590.log +18 -0
  676. data/spec/support/logs/Dispatcher - 807-19073.log +18 -0
  677. data/spec/support/logs/Dispatcher - 871-8764.log +10 -0
  678. data/spec/support/logs/Dispatcher - 898-21496.log +12 -0
  679. data/spec/support/logs/Dispatcher - 933-64070.log +12 -0
  680. data/spec/support/logs/Instance - 1577-32284.error.log +151 -0
  681. data/spec/support/logs/Instance - 1625-58174.error.log +154 -0
  682. data/spec/support/logs/Instance - 2727-57968.error.log +151 -0
  683. data/spec/support/logs/Instance - 2898-20648.error.log +303 -0
  684. data/spec/support/logs/Instance - 2901-30845.error.log +429 -0
  685. data/spec/support/logs/Instance - 31185-37600.error.log +174 -0
  686. data/spec/support/logs/Instance - 3319-20111.error.log +175 -0
  687. data/spec/support/logs/error-3855.log +5132 -0
  688. data/spec/support/servers/arachni/browser.rb +275 -4
  689. data/spec/support/servers/arachni/browser/javascript/dom_monitor.rb +48 -0
  690. data/spec/support/servers/arachni/browser/javascript/taint_tracer.rb +15 -3
  691. data/spec/support/servers/arachni/check/auditor.rb +8 -0
  692. data/spec/support/servers/arachni/element/cookie.rb +34 -0
  693. data/spec/support/servers/arachni/element/form.rb +34 -0
  694. data/spec/support/servers/arachni/element/header.rb +36 -1
  695. data/spec/support/servers/arachni/element/json.rb +33 -0
  696. data/spec/support/servers/arachni/element/link.rb +33 -1
  697. data/spec/support/servers/arachni/element/link_template.rb +37 -5
  698. data/spec/support/servers/arachni/element/xml.rb +33 -0
  699. data/spec/support/servers/arachni/http/client.rb +43 -4
  700. data/spec/support/servers/arachni/http/client/dynamic_404_handler.rb +36 -0
  701. data/spec/support/servers/arachni/http/client/dynamic_404_handler_redirect_1.rb +18 -0
  702. data/spec/support/servers/arachni/http/client/dynamic_404_handler_redirect_2.rb +11 -0
  703. data/spec/support/servers/arachni/http/proxy_server.rb +12 -0
  704. data/spec/support/servers/arachni/session.rb +24 -1
  705. data/spec/support/servers/checks/active/csrf.rb +0 -76
  706. data/spec/support/servers/checks/active/sql_injection/java +2 -0
  707. data/spec/support/servers/checks/active/unvalidated_redirect.rb +81 -0
  708. data/spec/support/servers/checks/active/xss_event.rb +1 -1
  709. data/spec/support/servers/checks/passive/backup_files.rb +20 -1
  710. data/spec/support/servers/checks/passive/grep/cookie_set_for_parent_domain.rb +3 -5
  711. data/spec/support/servers/checks/passive/grep/insecure_cookies_https.rb +9 -0
  712. data/spec/support/servers/plugins/autologin.rb +17 -1
  713. data/spec/support/servers/plugins/webhook_notify.rb +9 -0
  714. data/spec/support/shared/element/capabilities/auditable.rb +26 -32
  715. data/spec/support/shared/element/capabilities/auditable/buffered.rb +791 -0
  716. data/spec/support/shared/element/capabilities/auditable/line_buffered.rb +797 -0
  717. data/spec/support/shared/element/capabilities/inputtable.rb +26 -0
  718. data/spec/support/shared/element/capabilities/with_node.rb +2 -2
  719. data/spec/support/shared/element/dom/submittable.rb +10 -10
  720. data/spec/support/shared/path_extractor.rb +17 -5
  721. data/ui/cli/framework.rb +24 -4
  722. data/ui/cli/framework/option_parser.rb +35 -6
  723. data/ui/cli/option_parser.rb +1 -1
  724. data/ui/cli/output.rb +10 -3
  725. data/ui/cli/reporter.rb +1 -1
  726. data/ui/cli/reporter/option_parser.rb +1 -1
  727. data/ui/cli/reproduce.rb +228 -0
  728. data/ui/cli/reproduce/option_parser.rb +90 -0
  729. data/ui/cli/rest/server.rb +1 -1
  730. data/ui/cli/rest/server/option_parser.rb +1 -1
  731. data/ui/cli/restored_framework.rb +1 -1
  732. data/ui/cli/restored_framework/option_parser.rb +1 -1
  733. data/ui/cli/rpc/client/dispatcher_monitor.rb +9 -11
  734. data/ui/cli/rpc/client/dispatcher_monitor/option_parser.rb +1 -1
  735. data/ui/cli/rpc/client/instance.rb +1 -1
  736. data/ui/cli/rpc/client/local.rb +1 -1
  737. data/ui/cli/rpc/client/local/option_parser.rb +1 -1
  738. data/ui/cli/rpc/client/remote.rb +1 -1
  739. data/ui/cli/rpc/client/remote/option_parser.rb +1 -1
  740. data/ui/cli/rpc/server/dispatcher.rb +1 -1
  741. data/ui/cli/rpc/server/dispatcher/option_parser.rb +1 -1
  742. data/ui/cli/utilities.rb +1 -1
  743. metadata +253 -49
  744. data/ACKNOWLEDGMENTS.md +0 -21
  745. data/AUTHORS.md +0 -3
  746. data/CONTRIBUTORS.md +0 -22
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -43,8 +43,11 @@ class Scope < Arachni::Scope
43
43
  # @see OptionGroups::Scope#exclude_path_patterns
44
44
  # @see #exclude_file_extension?
45
45
  def exclude?
46
- exclude_file_extension? ||
47
- !!options.exclude_path_patterns.find { |pattern| @url.to_s =~ pattern }
46
+ return true if exclude_file_extension?
47
+ return false if options.exclude_path_patterns.empty?
48
+
49
+ s = @url.to_s
50
+ !!options.exclude_path_patterns.find { |pattern| s =~ pattern }
48
51
  end
49
52
 
50
53
  # @return [Bool]
@@ -53,7 +56,10 @@ class Scope < Arachni::Scope
53
56
  #
54
57
  # @see OptionGroups::Scope#@exclude_file_extensions
55
58
  def exclude_file_extension?
56
- options.exclude_file_extensions.include? @url.resource_extension.to_s.downcase
59
+ options.exclude_file_extensions.any? &&
60
+ options.exclude_file_extensions.include?(
61
+ @url.resource_extension.to_s.downcase
62
+ )
57
63
  end
58
64
 
59
65
  # @return [Bool]
@@ -75,10 +81,9 @@ class Scope < Arachni::Scope
75
81
  def in_domain?
76
82
  return true if !Options.url
77
83
 
78
- reference = Arachni::URI( Options.url )
79
-
80
84
  options.include_subdomains ?
81
- reference.domain == @url.domain : reference.host == @url.host
85
+ Options.parsed_url.domain == @url.domain :
86
+ Options.parsed_url.host == @url.host
82
87
  end
83
88
 
84
89
  # @return [Bool]
@@ -89,14 +94,11 @@ class Scope < Arachni::Scope
89
94
  def follow_protocol?
90
95
  return true if !Options.url
91
96
 
92
- check_scheme = @url.scheme.to_s
93
-
94
- return false if check_scheme != 'http' && check_scheme != 'https'
97
+ check_scheme = @url.scheme
95
98
 
96
- parsed_ref = Arachni::URI( Options.url )
97
- return false if !parsed_ref
99
+ return false if !check_scheme
98
100
 
99
- ref_scheme = parsed_ref.scheme
101
+ ref_scheme = Options.parsed_url.scheme
100
102
 
101
103
  return true if ref_scheme != 'https'
102
104
  return true if ref_scheme == check_scheme
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -39,9 +39,9 @@ module Utilities
39
39
  Form.from_response( *args )
40
40
  end
41
41
 
42
- # @see Arachni::Element::Form.from_document
43
- def forms_from_document( *args )
44
- Form.from_document( *args )
42
+ # @see Arachni::Element::Form.from_parser
43
+ def forms_from_parser( *args )
44
+ Form.from_parser(*args )
45
45
  end
46
46
 
47
47
  # @see Arachni::Element::Form.encode
@@ -64,9 +64,9 @@ module Utilities
64
64
  Link.from_response( *args )
65
65
  end
66
66
 
67
- # @see Arachni::Element::Link.from_document
68
- def links_from_document( *args )
69
- Link.from_document( *args )
67
+ # @see Arachni::Element::Link.from_parser
68
+ def links_from_parser( *args )
69
+ Link.from_parser(*args )
70
70
  end
71
71
 
72
72
  # @see Arachni::Element::Cookie.from_response
@@ -74,9 +74,9 @@ module Utilities
74
74
  Cookie.from_response( *args )
75
75
  end
76
76
 
77
- # @see Arachni::Element::Cookie.from_document
78
- def cookies_from_document( *args )
79
- Cookie.from_document( *args )
77
+ # @see Arachni::Element::Cookie.from_parser
78
+ def cookies_from_parser( *args )
79
+ Cookie.from_parser(*args )
80
80
  end
81
81
 
82
82
  # @see Arachni::Element::Cookie.parse_set_cookie
@@ -1,5 +1,5 @@
1
1
  =begin
2
- Copyright 2010-2016 Tasos Laskos <tasos.laskos@arachni-scanner.com>
2
+ Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>
3
3
 
4
4
  This file is part of the Arachni Framework project and is subject to
5
5
  redistribution and commercial restrictions. Please see the Arachni Framework
@@ -1 +1 @@
1
- 1.4
1
+ 1.5
@@ -0,0 +1,2006 @@
1
+
2
+ 2017-01-31 15:04:33 +0200 --------------------------------------------------------------------------------
3
+ ENV:
4
+ ---
5
+ XDG_VTNR: '7'
6
+ MANPATH: "/home/zapotek/.rvm/gems/ruby-2.3.1/gems/kramdown-1.4.1/man:/usr/local/qt/doc/man"
7
+ KDE_MULTIHEAD: 'false'
8
+ SSH_AGENT_PID: '4722'
9
+ XDG_SESSION_ID: '2'
10
+ PAM_KWALLET5_LOGIN: "/tmp/kwallet5_zapotek.socket"
11
+ rvm_bin_path: "/home/zapotek/.rvm/bin"
12
+ COMP_WORDBREAKS: " \t\n\"'><;|&(:"
13
+ GEM_HOME: "/home/zapotek/.rvm/gems/ruby-2.3.1"
14
+ GPG_AGENT_INFO: "/home/zapotek/.gnupg/S.gpg-agent:0:1"
15
+ TERM: xterm
16
+ SHELL: "/bin/bash"
17
+ XDG_SESSION_COOKIE: fcfc5e441c71f37c8387c8b500000003-1483286069.551162-1732414511
18
+ IRBRC: "/home/zapotek/.rvm/rubies/ruby-2.3.1/.irbrc"
19
+ GTK2_RC_FILES: "/etc/gtk-2.0/gtkrc:/home/zapotek/.gtkrc-2.0:/home/zapotek/.config/gtkrc-2.0"
20
+ KONSOLE_DBUS_SERVICE: ":1.103"
21
+ KONSOLE_PROFILE_NAME: Default
22
+ QT_LINUX_ACCESSIBILITY_ALWAYS_ON: '1'
23
+ GS_LIB: "/home/zapotek/.fonts"
24
+ GTK_RC_FILES: "/etc/gtk/gtkrc:/home/zapotek/.gtkrc:/home/zapotek/.config/gtkrc"
25
+ WINDOWID: '33554437'
26
+ QTDIR: "/usr/local/qt"
27
+ MY_RUBY_HOME: "/home/zapotek/.rvm/rubies/ruby-2.3.1"
28
+ SHELL_SESSION_ID: f1822d3c7d7c4000a427ae55194cdc52
29
+ GTK_MODULES: gail:atk-bridge
30
+ XDG_SESSION_CLASS: user
31
+ KDE_FULL_SESSION: 'true'
32
+ USER: zapotek
33
+ LS_COLORS: 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'
34
+ QT_ACCESSIBILITY: '1'
35
+ _system_type: Linux
36
+ XDG_SESSION_PATH: "/org/freedesktop/DisplayManager/Session2"
37
+ rvm_path: "/home/zapotek/.rvm"
38
+ XDG_SEAT_PATH: "/org/freedesktop/DisplayManager/Seat0"
39
+ SSH_AUTH_SOCK: "/tmp/ssh-eBQ20p36Bzoa/agent.4637"
40
+ SESSION_MANAGER: local/zonster:@/tmp/.ICE-unix/4901,unix/zonster:/tmp/.ICE-unix/4901
41
+ DEFAULTS_PATH: "/usr/share/gconf//usr/share/xsessions/plasma.default.path"
42
+ XDG_CONFIG_DIRS: "/etc/xdg/xdg-/usr/share/xsessions/plasma:/etc/xdg:/usr/share/kubuntu-default-settings/kf5-settings"
43
+ rvm_prefix: "/home/zapotek"
44
+ PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1/bin:/home/zapotek/.rvm/gems/ruby-2.3.1@global/bin:/home/zapotek/.rvm/rubies/ruby-2.3.1/bin:/home/zapotek/.rvm/bin:/usr/local/qt/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
45
+ DESKTOP_SESSION: "/usr/share/xsessions/plasma"
46
+ QT_QPA_PLATFORMTHEME: appmenu-qt5
47
+ QT_IM_MODULE: compose
48
+ XDG_SESSION_TYPE: x11
49
+ PWD: "/home/zapotek/workspace/arachni"
50
+ KONSOLE_DBUS_WINDOW: "/Windows/1"
51
+ LANG: en_US.UTF-8
52
+ KDE_SESSION_UID: '1000'
53
+ MANDATORY_PATH: "/usr/share/gconf//usr/share/xsessions/plasma.mandatory.path"
54
+ _system_arch: x86_64
55
+ _system_version: '16.04'
56
+ KONSOLE_DBUS_SESSION: "/Sessions/26"
57
+ rvm_version: 1.27.0 (master)
58
+ GTK2_MODULES: overlay-scrollbar
59
+ COLORFGBG: 15;0
60
+ XDG_SEAT: seat0
61
+ HOME: "/home/zapotek"
62
+ SHLVL: '1'
63
+ LANGUAGE: ''
64
+ KDE_SESSION_VERSION: '5'
65
+ rvm_ruby_string: ruby-2.3.1
66
+ XCURSOR_THEME: breeze_cursors
67
+ LOGNAME: zapotek
68
+ XDG_SESSION_DESKTOP: KDE
69
+ GEM_PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1:/home/zapotek/.rvm/gems/ruby-2.3.1@global"
70
+ DBUS_SESSION_BUS_ADDRESS: unix:abstract=/tmp/dbus-5ubIvmQGka,guid=2024c5c4a641ec523a052d1558692635
71
+ XDG_DATA_DIRS: "/usr/share//usr/share/xsessions/plasma:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop"
72
+ GOPATH: "/home/zapotek/workspace/gocode/"
73
+ LESSOPEN: "| /usr/bin/lesspipe %s"
74
+ rvm_delete_flag: '0'
75
+ XDG_RUNTIME_DIR: "/run/user/1000"
76
+ PROFILEHOME: ''
77
+ DISPLAY: ":0"
78
+ XDG_CURRENT_DESKTOP: KDE
79
+ RUBY_VERSION: ruby-2.3.1
80
+ LESSCLOSE: "/usr/bin/lesspipe %s %s"
81
+ PAM_KWALLET_LOGIN: "/tmp/kwallet_zapotek.socket"
82
+ _system_name: Ubuntu
83
+ XAUTHORITY: "/tmp/xauth-1000-_0"
84
+ _: "/home/zapotek/.rvm/gems/ruby-2.3.1/bin/bundle"
85
+ BUNDLE_ORIG_PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1/bin:/home/zapotek/.rvm/gems/ruby-2.3.1@global/bin:/home/zapotek/.rvm/rubies/ruby-2.3.1/bin:/home/zapotek/.rvm/bin:/usr/local/qt/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
86
+ BUNDLE_ORIG_GEM_PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1:/home/zapotek/.rvm/gems/ruby-2.3.1@global"
87
+ BUNDLE_BIN_PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1/gems/bundler-1.12.1/exe/bundle"
88
+ BUNDLE_GEMFILE: "/home/zapotek/workspace/arachni/Gemfile"
89
+ RUBYOPT: "-rbundler/setup"
90
+ RUBYLIB: "/home/zapotek/.rvm/gems/ruby-2.3.1/gems/bundler-1.12.1/lib"
91
+ BUNDLE_ORIG_MANPATH: "/usr/local/qt/doc/man:"
92
+ --------------------------------------------------------------------------------
93
+ OPTIONS:
94
+ ---
95
+ http:
96
+ user_agent: arachni_user
97
+ request_timeout: 10000
98
+ request_redirect_limit: 5
99
+ request_concurrency: 20
100
+ request_queue_size: 100
101
+ request_headers: {}
102
+ response_max_size: 500000
103
+ cookies: {}
104
+ authentication_type: auto
105
+ audit:
106
+ parameter_values: true
107
+ exclude_vector_patterns: []
108
+ include_vector_patterns: []
109
+ link_templates: []
110
+ input:
111
+ values: {}
112
+ default_values:
113
+ name: arachni_name
114
+ user: arachni_user
115
+ usr: arachni_user
116
+ pass: 5543!%arachni_secret
117
+ txt: arachni_text
118
+ num: '132'
119
+ amount: '100'
120
+ mail: arachni@email.gr
121
+ account: '12'
122
+ id: '1'
123
+ without_defaults: false
124
+ force: false
125
+ datastore: {}
126
+ browser_cluster:
127
+ local_storage: {}
128
+ wait_for_elements: {}
129
+ pool_size: 6
130
+ job_timeout: 10
131
+ worker_time_to_live: 100
132
+ ignore_images: false
133
+ screen_width: 1600
134
+ screen_height: 1200
135
+ scope:
136
+ redundant_path_patterns: {}
137
+ dom_depth_limit: 5
138
+ exclude_file_extensions: []
139
+ exclude_path_patterns: []
140
+ exclude_content_patterns: []
141
+ include_path_patterns: []
142
+ restrict_paths: []
143
+ extend_paths: []
144
+ url_rewrites: {}
145
+ session:
146
+ check_url:
147
+ check_pattern:
148
+ checks: []
149
+ platforms: []
150
+ plugins:
151
+ autologin:
152
+ url: http://zonster:58360//login
153
+ parameters: username2=john&password=doe
154
+ check: Hi there logged-in user
155
+ no_fingerprinting: false
156
+ authorized_by:
157
+ url: http://zonster:58360/
158
+ --------------------------------------------------------------------------------
159
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] [Arachni::Session::Error::FormNotFound] Login form could not be found with: {:url=>"http://zonster:58360//login", :inputs=>{"username2"=>"john", "password"=>"doe"}}
160
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:356:in `login_from_configuration'
161
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
162
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
163
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
164
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/autologin.rb:37:in `prepare'
165
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
166
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
167
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
168
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
169
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
170
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
171
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
172
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
173
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/autologin_spec.rb:66:in `block (3 levels) in <top (required)>'
174
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
175
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
176
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
177
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
178
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
179
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
180
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
181
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
182
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
183
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
184
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
185
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
186
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
187
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
188
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
189
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
190
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
191
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
192
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
193
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:429]
194
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:430] Parent:
195
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:431] Arachni::Session
196
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:432]
197
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:433] Block:
198
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:434] #<Proc:0x000000046a5078@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
199
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:435]
200
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:436] Caller:
201
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
202
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
203
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/autologin.rb:37:in `prepare'
204
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
205
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
206
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
207
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
208
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
209
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
210
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
211
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
212
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/autologin_spec.rb:66:in `block (3 levels) in <top (required)>'
213
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
214
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
215
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
216
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
217
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
218
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
219
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
220
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
221
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
222
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
223
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
224
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
225
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
226
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
227
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
228
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
229
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
230
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
231
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
232
+ [2017-01-31 15:04:33 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
233
+ [2017-01-31 15:04:33 +0200] AutoLogin: [components/plugins/autologin#handle_error:84] Could not find a form suiting the provided parameters.
234
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] [Arachni::Session::Error::FormNotFound] Login form could not be found with: {:url=>"http://zonster:58360//login", :inputs=>{"username2"=>"john", "password"=>"doe"}}
235
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:356:in `login_from_configuration'
236
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
237
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
238
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
239
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/autologin.rb:37:in `prepare'
240
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
241
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
242
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
243
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
244
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
245
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
246
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
247
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
248
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/autologin_spec.rb:73:in `block (3 levels) in <top (required)>'
249
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
250
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
251
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
252
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
253
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
254
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
255
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
256
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
257
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
258
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
259
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
260
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
261
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
262
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
263
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
264
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
265
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
266
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
267
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
268
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:429]
269
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:430] Parent:
270
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:431] Arachni::Session
271
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:432]
272
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:433] Block:
273
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:434] #<Proc:0x00000004963da0@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
274
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:435]
275
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:436] Caller:
276
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
277
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
278
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/autologin.rb:37:in `prepare'
279
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
280
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
281
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
282
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
283
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
284
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
285
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
286
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
287
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/autologin_spec.rb:73:in `block (3 levels) in <top (required)>'
288
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
289
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
290
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
291
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
292
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
293
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
294
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
295
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
296
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
297
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
298
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
299
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
300
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
301
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
302
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
303
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
304
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
305
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
306
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
307
+ [2017-01-31 15:04:34 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
308
+ [2017-01-31 15:04:34 +0200] AutoLogin: [components/plugins/autologin#handle_error:84] Could not find a form suiting the provided parameters.
309
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] [Arachni::Session::Error::FormNotVisible] Login form is not visible in the DOM.
310
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:370:in `login_from_configuration'
311
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
312
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
313
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
314
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/autologin.rb:37:in `prepare'
315
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
316
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
317
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
318
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
319
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
320
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
321
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
322
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
323
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/autologin_spec.rb:89:in `block (3 levels) in <top (required)>'
324
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
325
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
326
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
327
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
328
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
329
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
330
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
331
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
332
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
333
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
334
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
335
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
336
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
337
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
338
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
339
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
340
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
341
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
342
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
343
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:429]
344
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:430] Parent:
345
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:431] Arachni::Session
346
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:432]
347
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:433] Block:
348
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:434] #<Proc:0x0000000425fe50@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
349
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:435]
350
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:436] Caller:
351
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
352
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
353
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/autologin.rb:37:in `prepare'
354
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
355
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
356
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
357
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
358
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
359
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
360
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
361
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
362
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/autologin_spec.rb:89:in `block (3 levels) in <top (required)>'
363
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
364
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
365
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
366
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
367
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
368
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
369
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
370
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
371
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
372
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
373
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
374
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
375
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
376
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
377
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
378
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
379
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
380
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
381
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
382
+ [2017-01-31 15:04:35 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
383
+ [2017-01-31 15:04:36 +0200] AutoLogin: [components/plugins/autologin#handle_error:84] The form was located but its DOM element is not visible and thus cannot be submitted.
384
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] [Arachni::Session::Error::FormNotVisible] Login form is not visible in the DOM.
385
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:370:in `login_from_configuration'
386
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
387
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
388
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
389
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/autologin.rb:37:in `prepare'
390
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
391
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
392
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
393
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
394
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
395
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
396
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
397
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
398
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/autologin_spec.rb:96:in `block (3 levels) in <top (required)>'
399
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
400
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
401
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
402
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
403
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
404
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
405
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
406
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
407
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
408
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
409
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
410
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
411
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
412
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
413
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
414
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
415
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
416
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
417
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
418
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:429]
419
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:430] Parent:
420
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:431] Arachni::Session
421
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:432]
422
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:433] Block:
423
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:434] #<Proc:0x00000002c05ee8@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
424
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:435]
425
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:436] Caller:
426
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
427
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
428
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/autologin.rb:37:in `prepare'
429
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
430
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
431
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
432
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
433
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
434
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
435
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
436
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
437
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/autologin_spec.rb:96:in `block (3 levels) in <top (required)>'
438
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
439
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
440
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
441
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
442
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
443
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
444
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
445
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
446
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
447
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
448
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
449
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
450
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
451
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
452
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
453
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
454
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
455
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
456
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
457
+ [2017-01-31 15:04:37 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
458
+ [2017-01-31 15:04:37 +0200] AutoLogin: [components/plugins/autologin#handle_error:84] The form was located but its DOM element is not visible and thus cannot be submitted.
459
+ [2017-01-31 15:04:40 +0200] AutoLogin: [components/plugins/autologin#handle_error:84] The response did not match the verifier.
460
+ [2017-01-31 15:04:43 +0200] AutoLogin: [components/plugins/autologin#handle_error:84] The response did not match the verifier.
461
+ [2017-01-31 15:04:53 +0200] AutoLogin: [components/plugins/autologin#handle_error:84] The response did not match the verifier.
462
+ [2017-01-31 15:05:03 +0200] AutoLogin: [components/plugins/autologin#handle_error:84] The response did not match the verifier.
463
+
464
+ 2017-01-31 15:06:38 +0200 --------------------------------------------------------------------------------
465
+ ENV:
466
+ ---
467
+ XDG_VTNR: '7'
468
+ MANPATH: "/home/zapotek/.rvm/gems/ruby-2.3.1/gems/kramdown-1.4.1/man:/usr/local/qt/doc/man"
469
+ KDE_MULTIHEAD: 'false'
470
+ SSH_AGENT_PID: '4722'
471
+ XDG_SESSION_ID: '2'
472
+ PAM_KWALLET5_LOGIN: "/tmp/kwallet5_zapotek.socket"
473
+ rvm_bin_path: "/home/zapotek/.rvm/bin"
474
+ COMP_WORDBREAKS: " \t\n\"'><;|&(:"
475
+ GEM_HOME: "/home/zapotek/.rvm/gems/ruby-2.3.1"
476
+ GPG_AGENT_INFO: "/home/zapotek/.gnupg/S.gpg-agent:0:1"
477
+ TERM: xterm
478
+ SHELL: "/bin/bash"
479
+ XDG_SESSION_COOKIE: fcfc5e441c71f37c8387c8b500000003-1483286069.551162-1732414511
480
+ IRBRC: "/home/zapotek/.rvm/rubies/ruby-2.3.1/.irbrc"
481
+ GTK2_RC_FILES: "/etc/gtk-2.0/gtkrc:/home/zapotek/.gtkrc-2.0:/home/zapotek/.config/gtkrc-2.0"
482
+ KONSOLE_DBUS_SERVICE: ":1.103"
483
+ KONSOLE_PROFILE_NAME: Default
484
+ QT_LINUX_ACCESSIBILITY_ALWAYS_ON: '1'
485
+ GS_LIB: "/home/zapotek/.fonts"
486
+ GTK_RC_FILES: "/etc/gtk/gtkrc:/home/zapotek/.gtkrc:/home/zapotek/.config/gtkrc"
487
+ WINDOWID: '33554437'
488
+ QTDIR: "/usr/local/qt"
489
+ MY_RUBY_HOME: "/home/zapotek/.rvm/rubies/ruby-2.3.1"
490
+ SHELL_SESSION_ID: f1822d3c7d7c4000a427ae55194cdc52
491
+ GTK_MODULES: gail:atk-bridge
492
+ XDG_SESSION_CLASS: user
493
+ KDE_FULL_SESSION: 'true'
494
+ USER: zapotek
495
+ LS_COLORS: 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'
496
+ QT_ACCESSIBILITY: '1'
497
+ _system_type: Linux
498
+ XDG_SESSION_PATH: "/org/freedesktop/DisplayManager/Session2"
499
+ rvm_path: "/home/zapotek/.rvm"
500
+ XDG_SEAT_PATH: "/org/freedesktop/DisplayManager/Seat0"
501
+ SSH_AUTH_SOCK: "/tmp/ssh-eBQ20p36Bzoa/agent.4637"
502
+ SESSION_MANAGER: local/zonster:@/tmp/.ICE-unix/4901,unix/zonster:/tmp/.ICE-unix/4901
503
+ DEFAULTS_PATH: "/usr/share/gconf//usr/share/xsessions/plasma.default.path"
504
+ XDG_CONFIG_DIRS: "/etc/xdg/xdg-/usr/share/xsessions/plasma:/etc/xdg:/usr/share/kubuntu-default-settings/kf5-settings"
505
+ rvm_prefix: "/home/zapotek"
506
+ PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1/bin:/home/zapotek/.rvm/gems/ruby-2.3.1@global/bin:/home/zapotek/.rvm/rubies/ruby-2.3.1/bin:/home/zapotek/.rvm/bin:/usr/local/qt/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
507
+ DESKTOP_SESSION: "/usr/share/xsessions/plasma"
508
+ QT_QPA_PLATFORMTHEME: appmenu-qt5
509
+ QT_IM_MODULE: compose
510
+ XDG_SESSION_TYPE: x11
511
+ PWD: "/home/zapotek/workspace/arachni"
512
+ KONSOLE_DBUS_WINDOW: "/Windows/1"
513
+ LANG: en_US.UTF-8
514
+ KDE_SESSION_UID: '1000'
515
+ MANDATORY_PATH: "/usr/share/gconf//usr/share/xsessions/plasma.mandatory.path"
516
+ _system_arch: x86_64
517
+ _system_version: '16.04'
518
+ KONSOLE_DBUS_SESSION: "/Sessions/26"
519
+ rvm_version: 1.27.0 (master)
520
+ GTK2_MODULES: overlay-scrollbar
521
+ COLORFGBG: 15;0
522
+ XDG_SEAT: seat0
523
+ HOME: "/home/zapotek"
524
+ SHLVL: '1'
525
+ LANGUAGE: ''
526
+ KDE_SESSION_VERSION: '5'
527
+ rvm_ruby_string: ruby-2.3.1
528
+ XCURSOR_THEME: breeze_cursors
529
+ LOGNAME: zapotek
530
+ XDG_SESSION_DESKTOP: KDE
531
+ GEM_PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1:/home/zapotek/.rvm/gems/ruby-2.3.1@global"
532
+ DBUS_SESSION_BUS_ADDRESS: unix:abstract=/tmp/dbus-5ubIvmQGka,guid=2024c5c4a641ec523a052d1558692635
533
+ XDG_DATA_DIRS: "/usr/share//usr/share/xsessions/plasma:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop"
534
+ GOPATH: "/home/zapotek/workspace/gocode/"
535
+ LESSOPEN: "| /usr/bin/lesspipe %s"
536
+ rvm_delete_flag: '0'
537
+ XDG_RUNTIME_DIR: "/run/user/1000"
538
+ PROFILEHOME: ''
539
+ DISPLAY: ":0"
540
+ XDG_CURRENT_DESKTOP: KDE
541
+ RUBY_VERSION: ruby-2.3.1
542
+ LESSCLOSE: "/usr/bin/lesspipe %s %s"
543
+ PAM_KWALLET_LOGIN: "/tmp/kwallet_zapotek.socket"
544
+ _system_name: Ubuntu
545
+ XAUTHORITY: "/tmp/xauth-1000-_0"
546
+ _: "/home/zapotek/.rvm/gems/ruby-2.3.1/bin/bundle"
547
+ BUNDLE_ORIG_PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1/bin:/home/zapotek/.rvm/gems/ruby-2.3.1@global/bin:/home/zapotek/.rvm/rubies/ruby-2.3.1/bin:/home/zapotek/.rvm/bin:/usr/local/qt/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
548
+ BUNDLE_ORIG_GEM_PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1:/home/zapotek/.rvm/gems/ruby-2.3.1@global"
549
+ BUNDLE_BIN_PATH: "/home/zapotek/.rvm/gems/ruby-2.3.1/gems/bundler-1.12.1/exe/bundle"
550
+ BUNDLE_GEMFILE: "/home/zapotek/workspace/arachni/Gemfile"
551
+ RUBYOPT: "-rbundler/setup"
552
+ RUBYLIB: "/home/zapotek/.rvm/gems/ruby-2.3.1/gems/bundler-1.12.1/lib"
553
+ BUNDLE_ORIG_MANPATH: "/usr/local/qt/doc/man:"
554
+ --------------------------------------------------------------------------------
555
+ OPTIONS:
556
+ ---
557
+ http:
558
+ user_agent: arachni_user
559
+ request_timeout: 10000
560
+ request_redirect_limit: 5
561
+ request_concurrency: 20
562
+ request_queue_size: 100
563
+ request_headers: {}
564
+ response_max_size: 500000
565
+ cookies: {}
566
+ authentication_type: auto
567
+ audit:
568
+ parameter_values: true
569
+ exclude_vector_patterns: []
570
+ include_vector_patterns: []
571
+ link_templates: []
572
+ input:
573
+ values: {}
574
+ default_values:
575
+ name: arachni_name
576
+ user: arachni_user
577
+ usr: arachni_user
578
+ pass: 5543!%arachni_secret
579
+ txt: arachni_text
580
+ num: '132'
581
+ amount: '100'
582
+ mail: arachni@email.gr
583
+ account: '12'
584
+ id: '1'
585
+ without_defaults: false
586
+ force: false
587
+ datastore:
588
+ browser: Watir::Browser
589
+ screen_width: 1600
590
+ screen_height: 1200
591
+ browser_cluster:
592
+ local_storage: {}
593
+ wait_for_elements: {}
594
+ pool_size: 6
595
+ job_timeout: 10
596
+ worker_time_to_live: 100
597
+ ignore_images: false
598
+ screen_width: 1600
599
+ screen_height: 1200
600
+ scope:
601
+ redundant_path_patterns: {}
602
+ dom_depth_limit: 1
603
+ exclude_file_extensions: []
604
+ exclude_path_patterns: []
605
+ exclude_content_patterns: []
606
+ include_path_patterns: []
607
+ restrict_paths: []
608
+ extend_paths: []
609
+ url_rewrites: {}
610
+ session:
611
+ check_url:
612
+ check_pattern:
613
+ checks: []
614
+ platforms: []
615
+ plugins:
616
+ login_script:
617
+ script: "/tmp/login_script_1485867997"
618
+ no_fingerprinting: false
619
+ authorized_by:
620
+ url: http://zonster:56424/
621
+ --------------------------------------------------------------------------------
622
+ [2017-01-31 15:06:38 +0200] Login script: [components/plugins/login_script#set_status:99] No session check was provided, either via interface options or the script.
623
+ [2017-01-31 15:06:39 +0200] Login script: [components/plugins/login_script#set_status:99] No session check was provided, either via interface options or the script.
624
+ [2017-01-31 15:06:43 +0200] Login script: [components/plugins/login_script#set_status:99] No session check was provided, either via interface options or the script.
625
+ [2017-01-31 15:06:47 +0200] Login script: [components/plugins/login_script#set_status:99] No session check was provided, either via interface options or the script.
626
+ [2017-01-31 15:06:51 +0200] Login script: [components/plugins/login_script#set_status:99] No session check was provided, either via interface options or the script.
627
+ [2017-01-31 15:06:51 +0200] Login script: [components/plugins/login_script#set_status:99] A browser is required for this operation but is not available.
628
+ [2017-01-31 15:06:51 +0200] Login script: [components/plugins/login_script#set_status:99] A browser is required for this operation but is not available.
629
+ [2017-01-31 15:06:51 +0200] Login script: [components/plugins/login_script#set_status:99] A browser is required for this operation but is not available.
630
+ [2017-01-31 15:07:04 +0200] Login script: [components/plugins/login_script#set_status:99] No session check was provided, either via interface options or the script.
631
+ [2017-01-31 15:07:08 +0200] Login script: [components/plugins/login_script#set_status:99] No session check was provided, either via interface options or the script.
632
+ [2017-01-31 15:07:09 +0200] Login script: [components/plugins/login_script#set_status:99] No session check was provided, either via interface options or the script.
633
+ [2017-01-31 15:07:10 +0200] Login script: [components/plugins/login_script#set_status:99] The script was executed successfully, but the login check failed.
634
+ [2017-01-31 15:07:44 +0200] Login script: [components/plugins/login_script#set_status:99] The script was executed successfully, but the login check failed.
635
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#set_status:99] The script was executed successfully, but the login check failed.
636
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] [RuntimeError] (eval):1:in `block in prepare':
637
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
638
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
639
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
640
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
641
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
642
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
643
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
644
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
645
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
646
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
647
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
648
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
649
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
650
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
651
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
652
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
653
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
654
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:219:in `block (4 levels) in <top (required)>'
655
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
656
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
657
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
658
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
659
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
660
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
661
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
662
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
663
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
664
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
665
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
666
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
667
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
668
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
669
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
670
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
671
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
672
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
673
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
674
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
675
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
676
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
677
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:429]
678
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:430] Parent:
679
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:431] Arachni::Session
680
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:432]
681
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:433] Block:
682
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:434] #<Proc:0x0000000439a1f8@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
683
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:435]
684
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:436] Caller:
685
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
686
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
687
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
688
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
689
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
690
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
691
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
692
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
693
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
694
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
695
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
696
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:219:in `block (4 levels) in <top (required)>'
697
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
698
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
699
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
700
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
701
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
702
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
703
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
704
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
705
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
706
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
707
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
708
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
709
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
710
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
711
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
712
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
713
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
714
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
715
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
716
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
717
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
718
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
719
+ [2017-01-31 15:07:45 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
720
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] [RuntimeError] (eval):1:in `block in prepare':
721
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
722
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
723
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
724
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
725
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
726
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
727
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
728
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
729
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
730
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
731
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
732
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
733
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
734
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
735
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
736
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
737
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
738
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:219:in `block (4 levels) in <top (required)>'
739
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
740
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
741
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
742
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
743
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
744
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
745
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
746
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
747
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
748
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
749
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
750
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
751
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
752
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
753
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
754
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
755
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
756
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
757
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
758
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
759
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
760
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
761
+ [2017-01-31 15:07:45 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
762
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] [RuntimeError] (eval):1:in `block in prepare':
763
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
764
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
765
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
766
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
767
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
768
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
769
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
770
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
771
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
772
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
773
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
774
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
775
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
776
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
777
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
778
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
779
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
780
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:225:in `block (4 levels) in <top (required)>'
781
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
782
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
783
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
784
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
785
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
786
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
787
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
788
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
789
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
790
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
791
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
792
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
793
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
794
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
795
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
796
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
797
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
798
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
799
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
800
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
801
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
802
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
803
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:429]
804
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:430] Parent:
805
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:431] Arachni::Session
806
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:432]
807
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:433] Block:
808
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:434] #<Proc:0x000000049a5930@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
809
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:435]
810
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:436] Caller:
811
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
812
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
813
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
814
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
815
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
816
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
817
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
818
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
819
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
820
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
821
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
822
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:225:in `block (4 levels) in <top (required)>'
823
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
824
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
825
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
826
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
827
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
828
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
829
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
830
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
831
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
832
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
833
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
834
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
835
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
836
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
837
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
838
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
839
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
840
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
841
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
842
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
843
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
844
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
845
+ [2017-01-31 15:07:46 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
846
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] [RuntimeError] (eval):1:in `block in prepare':
847
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
848
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
849
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
850
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
851
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
852
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
853
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
854
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
855
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
856
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
857
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
858
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
859
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
860
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
861
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
862
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
863
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
864
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:225:in `block (4 levels) in <top (required)>'
865
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
866
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
867
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
868
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
869
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
870
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
871
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
872
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
873
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
874
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
875
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
876
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
877
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
878
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
879
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
880
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
881
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
882
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
883
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
884
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
885
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
886
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
887
+ [2017-01-31 15:07:46 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
888
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] [RuntimeError] (eval):1:in `block in prepare':
889
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
890
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
891
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
892
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
893
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
894
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
895
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
896
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
897
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
898
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
899
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
900
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
901
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
902
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
903
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
904
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
905
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
906
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:231:in `block (4 levels) in <top (required)>'
907
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
908
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
909
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
910
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
911
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
912
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
913
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
914
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
915
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
916
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
917
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
918
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
919
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
920
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
921
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
922
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
923
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
924
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
925
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
926
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
927
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
928
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
929
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:429]
930
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:430] Parent:
931
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:431] Arachni::Session
932
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:432]
933
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:433] Block:
934
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:434] #<Proc:0x00000002ed0f10@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
935
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:435]
936
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:436] Caller:
937
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
938
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
939
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
940
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
941
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
942
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
943
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
944
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
945
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
946
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
947
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
948
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:231:in `block (4 levels) in <top (required)>'
949
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
950
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
951
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
952
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
953
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
954
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
955
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
956
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
957
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
958
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
959
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
960
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
961
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
962
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
963
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
964
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
965
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
966
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
967
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
968
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
969
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
970
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
971
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
972
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] [RuntimeError] (eval):1:in `block in prepare':
973
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
974
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
975
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
976
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
977
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
978
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
979
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
980
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
981
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
982
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
983
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
984
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
985
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
986
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
987
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
988
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
989
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
990
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:231:in `block (4 levels) in <top (required)>'
991
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
992
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
993
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
994
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
995
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
996
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
997
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
998
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
999
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1000
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1001
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1002
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1003
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1004
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1005
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1006
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1007
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1008
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1009
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1010
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1011
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1012
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1013
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1014
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Can't find variable: doesNotExist","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"55","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:48386","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" doesNotExist()\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/44dee020-e7b6-11e6-a9e7-45428490537c/execute"}} (org.openqa.selenium.WebDriverException)
1015
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1016
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1017
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1018
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1019
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1020
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1021
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1022
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1023
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1024
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1025
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1026
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1027
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1028
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1029
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1030
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1031
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1032
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1033
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1034
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1035
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1036
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1037
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1038
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1039
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1040
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1041
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:246:in `block (4 levels) in <top (required)>'
1042
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1043
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1044
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1045
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1046
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1047
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1048
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1049
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1050
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1051
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1052
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1053
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1054
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1055
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1056
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1057
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1058
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1059
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1060
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1061
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1062
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1063
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1064
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:429]
1065
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:430] Parent:
1066
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:431] Arachni::Session
1067
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:432]
1068
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:433] Block:
1069
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:434] #<Proc:0x000000043d05a0@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
1070
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:435]
1071
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:436] Caller:
1072
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1073
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1074
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1075
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1076
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1077
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1078
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1079
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1080
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1081
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1082
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1083
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:246:in `block (4 levels) in <top (required)>'
1084
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1085
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1086
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1087
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1088
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1089
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1090
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1091
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1092
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1093
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1094
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1095
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1096
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1097
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1098
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1099
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1100
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1101
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1102
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1103
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1104
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1105
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1106
+ [2017-01-31 15:07:50 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
1107
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Can't find variable: doesNotExist","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"55","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:48386","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" doesNotExist()\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/44dee020-e7b6-11e6-a9e7-45428490537c/execute"}} (org.openqa.selenium.WebDriverException)
1108
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1109
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1110
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1111
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1112
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1113
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1114
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1115
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1116
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1117
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1118
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1119
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1120
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1121
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1122
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1123
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1124
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1125
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1126
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1127
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1128
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1129
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1130
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1131
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1132
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1133
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1134
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:246:in `block (4 levels) in <top (required)>'
1135
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1136
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1137
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1138
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1139
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1140
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1141
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1142
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1143
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1144
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1145
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1146
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1147
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1148
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1149
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1150
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1151
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1152
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1153
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1154
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1155
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1156
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1157
+ [2017-01-31 15:07:50 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1158
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Can't find variable: doesNotExist","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"55","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:62251","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" doesNotExist()\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/454d5960-e7b6-11e6-bfa0-b162702db00e/execute"}} (org.openqa.selenium.WebDriverException)
1159
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1160
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1161
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1162
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1163
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1164
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1165
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1166
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1167
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1168
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1169
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1170
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1171
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1172
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1173
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1174
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1175
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1176
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1177
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1178
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1179
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1180
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1181
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1182
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1183
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1184
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1185
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:252:in `block (4 levels) in <top (required)>'
1186
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1187
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1188
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1189
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1190
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1191
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1192
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1193
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1194
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1195
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1196
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1197
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1198
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1199
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1200
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1201
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1202
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1203
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1204
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1205
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1206
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1207
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1208
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:429]
1209
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:430] Parent:
1210
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:431] Arachni::Session
1211
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:432]
1212
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:433] Block:
1213
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:434] #<Proc:0x00000004a1d480@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
1214
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:435]
1215
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:436] Caller:
1216
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1217
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1218
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1219
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1220
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1221
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1222
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1223
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1224
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1225
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1226
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1227
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:252:in `block (4 levels) in <top (required)>'
1228
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1229
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1230
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1231
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1232
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1233
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1234
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1235
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1236
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1237
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1238
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1239
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1240
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1241
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1242
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1243
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1244
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1245
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1246
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1247
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1248
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1249
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1250
+ [2017-01-31 15:07:51 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
1251
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Can't find variable: doesNotExist","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"55","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:62251","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" doesNotExist()\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/454d5960-e7b6-11e6-bfa0-b162702db00e/execute"}} (org.openqa.selenium.WebDriverException)
1252
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1253
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1254
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1255
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1256
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1257
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1258
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1259
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1260
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1261
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1262
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1263
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1264
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1265
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1266
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1267
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1268
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1269
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1270
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1271
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1272
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1273
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1274
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1275
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1276
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1277
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1278
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:252:in `block (4 levels) in <top (required)>'
1279
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1280
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1281
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1282
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1283
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1284
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1285
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1286
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1287
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1288
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1289
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1290
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1291
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1292
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1293
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1294
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1295
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1296
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1297
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1298
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1299
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1300
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1301
+ [2017-01-31 15:07:51 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1302
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Can't find variable: doesNotExist","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"55","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:1415","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" doesNotExist()\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/45bc95f0-e7b6-11e6-a2d8-5ff960049ea9/execute"}} (org.openqa.selenium.WebDriverException)
1303
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1304
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1305
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1306
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1307
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1308
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1309
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1310
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1311
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1312
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1313
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1314
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1315
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1316
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1317
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1318
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1319
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1320
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1321
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1322
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1323
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1324
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1325
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1326
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1327
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1328
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1329
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:258:in `block (4 levels) in <top (required)>'
1330
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1331
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1332
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1333
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1334
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1335
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1336
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1337
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1338
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1339
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1340
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1341
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1342
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1343
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1344
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1345
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1346
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1347
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1348
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1349
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1350
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1351
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1352
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:429]
1353
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:430] Parent:
1354
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:431] Arachni::Session
1355
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:432]
1356
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:433] Block:
1357
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:434] #<Proc:0x0000000435bf20@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
1358
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:435]
1359
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:436] Caller:
1360
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1361
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1362
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1363
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1364
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1365
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1366
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1367
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1368
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1369
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1370
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1371
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:258:in `block (4 levels) in <top (required)>'
1372
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1373
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1374
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1375
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1376
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1377
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1378
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1379
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1380
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1381
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1382
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1383
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1384
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1385
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1386
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1387
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1388
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1389
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1390
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1391
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1392
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1393
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1394
+ [2017-01-31 15:07:52 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
1395
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Can't find variable: doesNotExist","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"55","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:1415","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" doesNotExist()\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/45bc95f0-e7b6-11e6-a2d8-5ff960049ea9/execute"}} (org.openqa.selenium.WebDriverException)
1396
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1397
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1398
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1399
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1400
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1401
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1402
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1403
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1404
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1405
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1406
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1407
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1408
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1409
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1410
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1411
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1412
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1413
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1414
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1415
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1416
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1417
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1418
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1419
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1420
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1421
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1422
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:258:in `block (4 levels) in <top (required)>'
1423
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1424
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1425
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1426
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1427
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1428
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1429
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1430
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1431
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1432
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1433
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1434
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1435
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1436
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1437
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1438
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1439
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1440
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1441
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1442
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1443
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1444
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1445
+ [2017-01-31 15:07:52 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1446
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] [SyntaxError] (eval):2: syntax error, unexpected =>
1447
+ id: => stuff
1448
+ ^
1449
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
1450
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
1451
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1452
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1453
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1454
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1455
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1456
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1457
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1458
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1459
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1460
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1461
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1462
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1463
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1464
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1465
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:276:in `block (4 levels) in <top (required)>'
1466
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1467
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1468
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1469
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1470
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1471
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1472
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1473
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1474
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1475
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1476
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1477
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1478
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1479
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1480
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1481
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1482
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1483
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1484
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1485
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1486
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1487
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1488
+ [2017-01-31 15:07:53 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1489
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] [SyntaxError] (eval):2: syntax error, unexpected =>
1490
+ id: => stuff
1491
+ ^
1492
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
1493
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
1494
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1495
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1496
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1497
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1498
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1499
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1500
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1501
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1502
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1503
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1504
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1505
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1506
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1507
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1508
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:282:in `block (4 levels) in <top (required)>'
1509
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1510
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1511
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1512
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1513
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1514
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1515
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1516
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1517
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1518
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1519
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1520
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1521
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1522
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1523
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1524
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1525
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1526
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1527
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1528
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1529
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1530
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1531
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1532
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] [SyntaxError] (eval):2: syntax error, unexpected =>
1533
+ id: => stuff
1534
+ ^
1535
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `eval'
1536
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:29:in `block in prepare'
1537
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1538
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1539
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1540
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1541
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1542
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1543
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1544
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1545
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1546
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1547
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1548
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1549
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1550
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1551
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:288:in `block (4 levels) in <top (required)>'
1552
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1553
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1554
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1555
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1556
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1557
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1558
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1559
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1560
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1561
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1562
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1563
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1564
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1565
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1566
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1567
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1568
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1569
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1570
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1571
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1572
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1573
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1574
+ [2017-01-31 15:07:57 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1575
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Unexpected EOF","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"60","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:21645","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" document.cookie = '\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/496b6d20-e7b6-11e6-82c3-67dea9e8747c/execute"}} (org.openqa.selenium.WebDriverException)
1576
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1577
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1578
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1579
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1580
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1581
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1582
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1583
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1584
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1585
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1586
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1587
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1588
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1589
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1590
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1591
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1592
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1593
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1594
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1595
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1596
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1597
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1598
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1599
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1600
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1601
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1602
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:303:in `block (4 levels) in <top (required)>'
1603
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1604
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1605
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1606
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1607
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1608
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1609
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1610
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1611
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1612
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1613
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1614
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1615
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1616
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1617
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1618
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1619
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1620
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1621
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1622
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1623
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1624
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1625
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:429]
1626
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:430] Parent:
1627
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:431] Arachni::Session
1628
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:432]
1629
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:433] Block:
1630
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:434] #<Proc:0x0000000414df08@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
1631
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:435]
1632
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:436] Caller:
1633
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1634
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1635
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1636
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1637
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1638
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1639
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1640
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1641
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1642
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1643
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1644
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:303:in `block (4 levels) in <top (required)>'
1645
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1646
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1647
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1648
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1649
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1650
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1651
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1652
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1653
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1654
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1655
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1656
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1657
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1658
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1659
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1660
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1661
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1662
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1663
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1664
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1665
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1666
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1667
+ [2017-01-31 15:07:58 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
1668
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Unexpected EOF","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"60","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:21645","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" document.cookie = '\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/496b6d20-e7b6-11e6-82c3-67dea9e8747c/execute"}} (org.openqa.selenium.WebDriverException)
1669
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1670
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1671
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1672
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1673
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1674
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1675
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1676
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1677
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1678
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1679
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1680
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1681
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1682
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1683
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1684
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1685
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1686
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1687
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1688
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1689
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1690
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1691
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1692
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1693
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1694
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1695
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:303:in `block (4 levels) in <top (required)>'
1696
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1697
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1698
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1699
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1700
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1701
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1702
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1703
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1704
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1705
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1706
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1707
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1708
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1709
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1710
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1711
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1712
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1713
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1714
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1715
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1716
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1717
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1718
+ [2017-01-31 15:07:58 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1719
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Unexpected EOF","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"60","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:13092","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" document.cookie = '\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/49d7ea90-e7b6-11e6-b653-a78b4822720a/execute"}} (org.openqa.selenium.WebDriverException)
1720
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1721
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1722
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1723
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1724
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1725
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1726
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1727
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1728
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1729
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1730
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1731
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1732
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1733
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1734
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1735
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1736
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1737
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1738
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1739
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1740
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1741
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1742
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1743
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1744
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1745
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1746
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:309:in `block (4 levels) in <top (required)>'
1747
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1748
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1749
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1750
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1751
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1752
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1753
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1754
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1755
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1756
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1757
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1758
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1759
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1760
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1761
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1762
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1763
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1764
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1765
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1766
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1767
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1768
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1769
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:429]
1770
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:430] Parent:
1771
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:431] Arachni::Session
1772
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:432]
1773
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:433] Block:
1774
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:434] #<Proc:0x00000004a32bf0@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
1775
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:435]
1776
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:436] Caller:
1777
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1778
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1779
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1780
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1781
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1782
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1783
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1784
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1785
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1786
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1787
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1788
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:309:in `block (4 levels) in <top (required)>'
1789
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1790
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1791
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1792
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1793
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1794
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1795
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1796
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1797
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1798
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1799
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1800
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1801
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1802
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1803
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1804
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1805
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1806
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1807
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1808
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1809
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1810
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1811
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
1812
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Unexpected EOF","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"60","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:13092","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" document.cookie = '\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/49d7ea90-e7b6-11e6-b653-a78b4822720a/execute"}} (org.openqa.selenium.WebDriverException)
1813
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1814
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1815
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1816
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1817
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1818
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1819
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1820
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1821
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1822
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1823
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1824
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1825
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1826
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1827
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1828
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1829
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1830
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1831
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1832
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1833
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1834
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1835
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1836
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1837
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1838
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1839
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:309:in `block (4 levels) in <top (required)>'
1840
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1841
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1842
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1843
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1844
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1845
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1846
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1847
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1848
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1849
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1850
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1851
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1852
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1853
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1854
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1855
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1856
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1857
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1858
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1859
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1860
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1861
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1862
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.
1863
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Unexpected EOF","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"60","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:52013","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" document.cookie = '\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/4a437da0-e7b6-11e6-89dc-c1016d44e9a0/execute"}} (org.openqa.selenium.WebDriverException)
1864
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1865
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1866
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1867
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1868
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1869
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1870
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1871
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1872
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1873
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1874
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1875
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1876
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1877
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1878
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1879
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1880
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1881
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1882
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1883
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1884
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1885
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1886
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1887
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1888
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1889
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1890
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:315:in `block (4 levels) in <top (required)>'
1891
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1892
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1893
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1894
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1895
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1896
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1897
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1898
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1899
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1900
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1901
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1902
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1903
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1904
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1905
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1906
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1907
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1908
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1909
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1910
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1911
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1912
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:428] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1913
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:429]
1914
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:430] Parent:
1915
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:431] Arachni::Session
1916
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:432]
1917
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:433] Block:
1918
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:434] #<Proc:0x000000044d0338@/home/zapotek/workspace/arachni/lib/arachni/session.rb:244>
1919
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:435]
1920
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:436] Caller:
1921
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1922
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1923
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1924
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1925
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1926
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1927
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1928
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1929
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1930
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1931
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1932
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:315:in `block (4 levels) in <top (required)>'
1933
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1934
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1935
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1936
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1937
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1938
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1939
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1940
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1941
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1942
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1943
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1944
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1945
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1946
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1947
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1948
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
1949
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
1950
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
1951
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
1952
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
1953
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
1954
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:437] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
1955
+ [2017-01-31 15:07:59 +0200] Session: [utilities#exception_jail:438] --------------------------------------------------------------------------------
1956
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] [Selenium::WebDriver::Error::UnknownError] {"errorMessage":"Unexpected EOF","request":{"headers":{"Accept":"application/json","Accept-Encoding":"gzip;q=1.0,deflate;q=0.6,identity;q=0.3","Connection":"close","Content-Length":"60","Content-Type":"application/json; charset=utf-8","Host":"127.0.0.1:52013","User-Agent":"Ruby"},"httpVersion":"1.1","method":"POST","post":"{\"script\":\" document.cookie = '\\n\",\"args\":[]}","url":"/execute","urlParsed":{"anchor":"","query":"","file":"execute","directory":"/","path":"/execute","relative":"/execute","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/execute","queryKey":{},"chunks":["execute"]},"urlOriginal":"/session/4a437da0-e7b6-11e6-89dc-c1016d44e9a0/execute"}} (org.openqa.selenium.WebDriverException)
1957
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok'
1958
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/response.rb:32:in `initialize'
1959
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `new'
1960
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:81:in `create_response'
1961
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/default.rb:86:in `request'
1962
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/http/common.rb:59:in `call'
1963
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:653:in `raw_execute'
1964
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:631:in `execute'
1965
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/remote/bridge.rb:355:in `execute_script'
1966
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/selenium-webdriver-3.0.1/lib/selenium/webdriver/common/driver.rb:215:in `execute_script'
1967
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/watir-webdriver-0.8.0/lib/watir-webdriver/browser.rb:254:in `execute_script'
1968
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:27:in `block in prepare'
1969
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:47:in `block in prepare'
1970
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:322:in `login_from_sequence'
1971
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:245:in `block in login'
1972
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1973
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/session.rb:244:in `login'
1974
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/components/plugins/login_script.rb:57:in `prepare'
1975
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:69:in `block (2 levels) in run'
1976
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/utilities.rb:425:in `exception_jail'
1977
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:68:in `block in run'
1978
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `each'
1979
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/plugin/manager.rb:65:in `run'
1980
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework/parts/state.rb:348:in `prepare'
1981
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/lib/arachni/framework.rb:110:in `run'
1982
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/support/shared/plugin.rb:34:in `run'
1983
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/workspace/arachni/spec/components/plugins/login_script_spec.rb:315:in `block (4 levels) in <top (required)>'
1984
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
1985
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
1986
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:116:in `block in run'
1987
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:248:in `with_around_each_hooks'
1988
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example.rb:113:in `run'
1989
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:515:in `block in run_examples'
1990
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `map'
1991
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:511:in `run_examples'
1992
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:496:in `run'
1993
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1994
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1995
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1996
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `block in run'
1997
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `map'
1998
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/example_group.rb:497:in `run'
1999
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block (2 levels) in run'
2000
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `map'
2001
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:24:in `block in run'
2002
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/reporter.rb:58:in `report'
2003
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/command_line.rb:21:in `run'
2004
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:103:in `run'
2005
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#prepare:59] /home/zapotek/.rvm/gems/ruby-2.3.1/gems/rspec-core-2.99.2/lib/rspec/core/runner.rb:17:in `block in autorun'
2006
+ [2017-01-31 15:07:59 +0200] Login script: [components/plugins/login_script#set_status:99] An error was encountered while executing the login script.