codesake-dawn 0.85 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (315) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +1 -1
  4. data/Changelog.md +67 -1
  5. data/README.md +137 -29
  6. data/Rakefile +29 -2
  7. data/Roadmap.md +10 -93
  8. data/features/{dawn_complains_about_an_incorrect_command_line.feature → dawn_complains_about_an_incorrect_command_line.feature.disabled} +0 -0
  9. data/features/{dawn_scan_a_secure_sinatra_app.feature → dawn_scan_a_secure_sinatra_app.feature.disabled} +0 -0
  10. data/features/{dawn_scan_a_vulnerable_sinatra_app.feature → dawn_scan_a_vulnerable_sinatra_app.feature.disabled} +0 -0
  11. data/lib/codesake/dawn/kb/basic_check.rb +7 -1
  12. data/lib/codesake/dawn/kb/cve_2004_0755.rb +32 -0
  13. data/lib/codesake/dawn/kb/cve_2004_0983.rb +30 -0
  14. data/lib/codesake/dawn/kb/cve_2005_1992.rb +30 -0
  15. data/lib/codesake/dawn/kb/cve_2005_2337.rb +32 -0
  16. data/lib/codesake/dawn/kb/cve_2006_1931.rb +32 -0
  17. data/lib/codesake/dawn/kb/cve_2006_2582.rb +30 -0
  18. data/lib/codesake/dawn/kb/cve_2006_3694.rb +31 -0
  19. data/lib/codesake/dawn/kb/cve_2006_4112.rb +29 -0
  20. data/lib/codesake/dawn/kb/cve_2006_5467.rb +30 -0
  21. data/lib/codesake/dawn/kb/cve_2006_6303.rb +30 -0
  22. data/lib/codesake/dawn/kb/cve_2006_6852.rb +29 -0
  23. data/lib/codesake/dawn/kb/cve_2006_6979.rb +31 -0
  24. data/lib/codesake/dawn/kb/cve_2007_0469.rb +29 -0
  25. data/lib/codesake/dawn/kb/cve_2007_5162.rb +30 -0
  26. data/lib/codesake/dawn/kb/cve_2007_5379.rb +29 -0
  27. data/lib/codesake/dawn/kb/cve_2007_5380.rb +29 -0
  28. data/lib/codesake/dawn/kb/cve_2007_5770.rb +32 -0
  29. data/lib/codesake/dawn/kb/cve_2007_6077.rb +31 -0
  30. data/lib/codesake/dawn/kb/cve_2007_6612.rb +30 -0
  31. data/lib/codesake/dawn/kb/cve_2008_1145.rb +40 -0
  32. data/lib/codesake/dawn/kb/cve_2008_1891.rb +40 -0
  33. data/lib/codesake/dawn/kb/cve_2008_2376.rb +32 -0
  34. data/lib/codesake/dawn/kb/cve_2008_2662.rb +35 -0
  35. data/lib/codesake/dawn/kb/cve_2008_2663.rb +34 -0
  36. data/lib/codesake/dawn/kb/cve_2008_2664.rb +35 -0
  37. data/lib/codesake/dawn/kb/cve_2008_2725.rb +33 -0
  38. data/lib/codesake/dawn/kb/cve_2008_3655.rb +39 -0
  39. data/lib/codesake/dawn/kb/cve_2008_3657.rb +39 -0
  40. data/lib/codesake/dawn/kb/cve_2008_3790.rb +32 -0
  41. data/lib/codesake/dawn/kb/cve_2008_3905.rb +38 -0
  42. data/lib/codesake/dawn/kb/cve_2008_4094.rb +29 -0
  43. data/lib/codesake/dawn/kb/cve_2008_4310.rb +103 -0
  44. data/lib/codesake/dawn/kb/cve_2008_5189.rb +29 -0
  45. data/lib/codesake/dawn/kb/cve_2008_7248.rb +29 -0
  46. data/lib/codesake/dawn/kb/cve_2009_4078.rb +31 -0
  47. data/lib/codesake/dawn/kb/cve_2009_4124.rb +32 -0
  48. data/lib/codesake/dawn/kb/cve_2009_4214.rb +29 -0
  49. data/lib/codesake/dawn/kb/cve_2010_2489.rb +62 -0
  50. data/lib/codesake/dawn/kb/cve_2010_3933.rb +29 -0
  51. data/lib/codesake/dawn/kb/cve_2011_0188.rb +69 -0
  52. data/lib/codesake/dawn/kb/cve_2011_0739.rb +30 -0
  53. data/lib/codesake/dawn/kb/cve_2011_1004.rb +36 -0
  54. data/lib/codesake/dawn/kb/cve_2011_1005.rb +33 -0
  55. data/lib/codesake/dawn/kb/cve_2011_2686.rb +31 -0
  56. data/lib/codesake/dawn/kb/cve_2011_2705.rb +34 -0
  57. data/lib/codesake/dawn/kb/cve_2011_2930.rb +29 -0
  58. data/lib/codesake/dawn/kb/cve_2011_3009.rb +30 -0
  59. data/lib/codesake/dawn/kb/cve_2011_3187.rb +30 -0
  60. data/lib/codesake/dawn/kb/cve_2011_4319.rb +30 -0
  61. data/lib/codesake/dawn/kb/cve_2013_2090.rb +30 -0
  62. data/lib/codesake/dawn/kb/cve_2013_4457.rb +1 -1
  63. data/lib/codesake/dawn/kb/dependency_check.rb +2 -2
  64. data/lib/codesake/dawn/kb/nokogiri_dos_20131217.rb +1 -0
  65. data/lib/codesake/dawn/kb/operating_system_check.rb +4 -3
  66. data/lib/codesake/dawn/kb/ruby_version_check.rb +9 -3
  67. data/lib/codesake/dawn/knowledge_base.rb +113 -0
  68. data/lib/codesake/dawn/padrino.rb +1 -1
  69. data/lib/codesake/dawn/version.rb +14 -2
  70. data/lib/tasks/dawn.rake +4 -0
  71. data/spec/lib/dawn/codesake_knowledgebase_spec.rb +256 -0
  72. data/spec/lib/dawn/{codesake_padrino_engine_spec.rb → codesake_padrino_engine_disabled.rb} +0 -0
  73. data/spec/lib/dawn/{codesake_rails_engine_spec.rb → codesake_rails_engine_disabled.rb} +0 -0
  74. data/spec/lib/dawn/{codesake_sinatra_engine_spec.rb → codesake_sinatra_engine_disabled.rb} +5 -5
  75. data/spec/lib/kb/codesake_cve_2013_4457_spec.rb +40 -0
  76. data/spec/lib/kb/{codesake_cve_2013_6416.rb → codesake_cve_2013_6416_spec.rb} +5 -5
  77. data/spec/lib/kb/codesake_ruby_version_check_spec.rb +1 -0
  78. data/spec/lib/kb/cve_2004_0983_spec.rb +8 -0
  79. data/spec/lib/kb/cve_2005_1992_spec.rb +8 -0
  80. data/spec/lib/kb/cve_2005_2337_spec.rb +8 -0
  81. data/spec/lib/kb/cve_2006_1931_spec.rb +8 -0
  82. data/spec/lib/kb/cve_2006_2582_spec.rb +8 -0
  83. data/spec/lib/kb/cve_2006_3694_spec.rb +8 -0
  84. data/spec/lib/kb/cve_2006_4112_spec.rb +8 -0
  85. data/spec/lib/kb/cve_2006_5467_spec.rb +8 -0
  86. data/spec/lib/kb/cve_2006_6303_spec.rb +8 -0
  87. data/spec/lib/kb/cve_2006_6852_spec.rb +8 -0
  88. data/spec/lib/kb/cve_2006_6979_spec.rb +8 -0
  89. data/spec/lib/kb/cve_2007_0469_spec.rb +8 -0
  90. data/spec/lib/kb/cve_2007_5162_spec.rb +8 -0
  91. data/spec/lib/kb/cve_2007_5379_spec.rb +8 -0
  92. data/spec/lib/kb/cve_2007_5380_spec.rb +8 -0
  93. data/spec/lib/kb/cve_2007_5770_spec.rb +8 -0
  94. data/spec/lib/kb/cve_2007_6077_spec.rb +8 -0
  95. data/spec/lib/kb/cve_2007_6612_spec.rb +8 -0
  96. data/spec/lib/kb/cve_2008_1145_spec.rb +8 -0
  97. data/spec/lib/kb/cve_2008_1891_spec.rb +8 -0
  98. data/spec/lib/kb/cve_2008_2376_spec.rb +8 -0
  99. data/spec/lib/kb/cve_2008_2662_spec.rb +8 -0
  100. data/spec/lib/kb/cve_2008_2663_spec.rb +8 -0
  101. data/spec/lib/kb/cve_2008_2664_spec.rb +8 -0
  102. data/spec/lib/kb/cve_2008_2725_spec.rb +8 -0
  103. data/spec/lib/kb/cve_2008_3655_spec.rb +8 -0
  104. data/spec/lib/kb/cve_2008_3657_spec.rb +8 -0
  105. data/spec/lib/kb/cve_2008_3790_spec.rb +8 -0
  106. data/spec/lib/kb/cve_2008_3905_spec.rb +8 -0
  107. data/spec/lib/kb/cve_2008_4094_spec.rb +8 -0
  108. data/spec/lib/kb/cve_2008_4310_spec.rb +8 -0
  109. data/spec/lib/kb/cve_2008_5189_spec.rb +8 -0
  110. data/spec/lib/kb/cve_2008_7248_spec.rb +8 -0
  111. data/spec/lib/kb/cve_2009_4078_spec.rb +8 -0
  112. data/spec/lib/kb/cve_2009_4124_spec.rb +8 -0
  113. data/spec/lib/kb/cve_2009_4214_spec.rb +8 -0
  114. data/spec/lib/kb/cve_2010_2489_spec.rb +8 -0
  115. data/spec/lib/kb/cve_2010_3933_spec.rb +8 -0
  116. data/spec/lib/kb/cve_2011_0188_spec.rb +8 -0
  117. data/spec/lib/kb/cve_2011_0739_spec.rb +8 -0
  118. data/spec/lib/kb/cve_2011_1004_spec.rb +8 -0
  119. data/spec/lib/kb/cve_2011_1005_spec.rb +8 -0
  120. data/spec/lib/kb/cve_2011_2686_spec.rb +8 -0
  121. data/spec/lib/kb/cve_2011_2705_spec.rb +8 -0
  122. data/spec/lib/kb/cve_2011_2930_spec.rb +8 -0
  123. data/spec/lib/kb/cve_2011_3009_spec.rb +8 -0
  124. data/spec/lib/kb/cve_2011_3187_spec.rb +8 -0
  125. data/spec/lib/kb/cve_2011_4319_spec.rb +8 -0
  126. data/spec/lib/kb/cve_2013_2090_spec.rb +8 -0
  127. data/spec/lib/kb/{owasp_ror_cheatsheet_spec.rb → owasp_ror_cheatsheet_disabled.rb} +0 -0
  128. metadata +172 -395
  129. data/Competitive_matrix.md +0 -177
  130. data/TODO.md +0 -64
  131. data/spec/support/hello_world_3.0.19/Gemfile +0 -31
  132. data/spec/support/hello_world_3.0.19/README +0 -256
  133. data/spec/support/hello_world_3.0.19/Rakefile +0 -7
  134. data/spec/support/hello_world_3.0.19/app/controllers/application_controller.rb +0 -3
  135. data/spec/support/hello_world_3.0.19/app/helpers/application_helper.rb +0 -2
  136. data/spec/support/hello_world_3.0.19/app/views/layouts/application.html.erb +0 -14
  137. data/spec/support/hello_world_3.0.19/config.ru +0 -4
  138. data/spec/support/hello_world_3.0.19/config/application.rb +0 -42
  139. data/spec/support/hello_world_3.0.19/config/boot.rb +0 -6
  140. data/spec/support/hello_world_3.0.19/config/database.yml +0 -22
  141. data/spec/support/hello_world_3.0.19/config/environment.rb +0 -5
  142. data/spec/support/hello_world_3.0.19/config/environments/development.rb +0 -26
  143. data/spec/support/hello_world_3.0.19/config/environments/production.rb +0 -49
  144. data/spec/support/hello_world_3.0.19/config/environments/test.rb +0 -35
  145. data/spec/support/hello_world_3.0.19/config/initializers/backtrace_silencers.rb +0 -7
  146. data/spec/support/hello_world_3.0.19/config/initializers/inflections.rb +0 -10
  147. data/spec/support/hello_world_3.0.19/config/initializers/mime_types.rb +0 -5
  148. data/spec/support/hello_world_3.0.19/config/initializers/secret_token.rb +0 -7
  149. data/spec/support/hello_world_3.0.19/config/initializers/session_store.rb +0 -8
  150. data/spec/support/hello_world_3.0.19/config/locales/en.yml +0 -5
  151. data/spec/support/hello_world_3.0.19/config/routes.rb +0 -58
  152. data/spec/support/hello_world_3.0.19/db/seeds.rb +0 -7
  153. data/spec/support/hello_world_3.0.19/lib/tasks/.gitkeep +0 -0
  154. data/spec/support/hello_world_3.0.19/public/404.html +0 -26
  155. data/spec/support/hello_world_3.0.19/public/422.html +0 -26
  156. data/spec/support/hello_world_3.0.19/public/500.html +0 -26
  157. data/spec/support/hello_world_3.0.19/public/favicon.ico +0 -0
  158. data/spec/support/hello_world_3.0.19/public/images/rails.png +0 -0
  159. data/spec/support/hello_world_3.0.19/public/index.html +0 -239
  160. data/spec/support/hello_world_3.0.19/public/javascripts/application.js +0 -2
  161. data/spec/support/hello_world_3.0.19/public/javascripts/controls.js +0 -965
  162. data/spec/support/hello_world_3.0.19/public/javascripts/dragdrop.js +0 -974
  163. data/spec/support/hello_world_3.0.19/public/javascripts/effects.js +0 -1123
  164. data/spec/support/hello_world_3.0.19/public/javascripts/prototype.js +0 -6001
  165. data/spec/support/hello_world_3.0.19/public/javascripts/rails.js +0 -202
  166. data/spec/support/hello_world_3.0.19/public/robots.txt +0 -5
  167. data/spec/support/hello_world_3.0.19/public/stylesheets/.gitkeep +0 -0
  168. data/spec/support/hello_world_3.0.19/script/rails +0 -6
  169. data/spec/support/hello_world_3.0.19/test/performance/browsing_test.rb +0 -9
  170. data/spec/support/hello_world_3.0.19/test/test_helper.rb +0 -13
  171. data/spec/support/hello_world_3.0.19/vendor/plugins/.gitkeep +0 -0
  172. data/spec/support/hello_world_3.1.0/Gemfile +0 -33
  173. data/spec/support/hello_world_3.1.0/README +0 -261
  174. data/spec/support/hello_world_3.1.0/Rakefile +0 -7
  175. data/spec/support/hello_world_3.1.0/app/assets/images/rails.png +0 -0
  176. data/spec/support/hello_world_3.1.0/app/assets/javascripts/application.js +0 -9
  177. data/spec/support/hello_world_3.1.0/app/assets/stylesheets/application.css +0 -7
  178. data/spec/support/hello_world_3.1.0/app/controllers/application_controller.rb +0 -3
  179. data/spec/support/hello_world_3.1.0/app/helpers/application_helper.rb +0 -2
  180. data/spec/support/hello_world_3.1.0/app/mailers/.gitkeep +0 -0
  181. data/spec/support/hello_world_3.1.0/app/models/.gitkeep +0 -0
  182. data/spec/support/hello_world_3.1.0/app/views/layouts/application.html.erb +0 -14
  183. data/spec/support/hello_world_3.1.0/config.ru +0 -4
  184. data/spec/support/hello_world_3.1.0/config/application.rb +0 -48
  185. data/spec/support/hello_world_3.1.0/config/boot.rb +0 -6
  186. data/spec/support/hello_world_3.1.0/config/database.yml +0 -25
  187. data/spec/support/hello_world_3.1.0/config/environment.rb +0 -5
  188. data/spec/support/hello_world_3.1.0/config/environments/development.rb +0 -30
  189. data/spec/support/hello_world_3.1.0/config/environments/production.rb +0 -60
  190. data/spec/support/hello_world_3.1.0/config/environments/test.rb +0 -42
  191. data/spec/support/hello_world_3.1.0/config/initializers/backtrace_silencers.rb +0 -7
  192. data/spec/support/hello_world_3.1.0/config/initializers/inflections.rb +0 -10
  193. data/spec/support/hello_world_3.1.0/config/initializers/mime_types.rb +0 -5
  194. data/spec/support/hello_world_3.1.0/config/initializers/secret_token.rb +0 -7
  195. data/spec/support/hello_world_3.1.0/config/initializers/session_store.rb +0 -8
  196. data/spec/support/hello_world_3.1.0/config/initializers/wrap_parameters.rb +0 -14
  197. data/spec/support/hello_world_3.1.0/config/locales/en.yml +0 -5
  198. data/spec/support/hello_world_3.1.0/config/routes.rb +0 -58
  199. data/spec/support/hello_world_3.1.0/db/seeds.rb +0 -7
  200. data/spec/support/hello_world_3.1.0/lib/assets/.gitkeep +0 -0
  201. data/spec/support/hello_world_3.1.0/lib/tasks/.gitkeep +0 -0
  202. data/spec/support/hello_world_3.1.0/log/.gitkeep +0 -0
  203. data/spec/support/hello_world_3.1.0/public/404.html +0 -26
  204. data/spec/support/hello_world_3.1.0/public/422.html +0 -26
  205. data/spec/support/hello_world_3.1.0/public/500.html +0 -26
  206. data/spec/support/hello_world_3.1.0/public/favicon.ico +0 -0
  207. data/spec/support/hello_world_3.1.0/public/index.html +0 -241
  208. data/spec/support/hello_world_3.1.0/public/robots.txt +0 -5
  209. data/spec/support/hello_world_3.1.0/script/rails +0 -6
  210. data/spec/support/hello_world_3.1.0/test/fixtures/.gitkeep +0 -0
  211. data/spec/support/hello_world_3.1.0/test/functional/.gitkeep +0 -0
  212. data/spec/support/hello_world_3.1.0/test/integration/.gitkeep +0 -0
  213. data/spec/support/hello_world_3.1.0/test/performance/browsing_test.rb +0 -12
  214. data/spec/support/hello_world_3.1.0/test/test_helper.rb +0 -13
  215. data/spec/support/hello_world_3.1.0/test/unit/.gitkeep +0 -0
  216. data/spec/support/hello_world_3.1.0/vendor/assets/stylesheets/.gitkeep +0 -0
  217. data/spec/support/hello_world_3.1.0/vendor/plugins/.gitkeep +0 -0
  218. data/spec/support/hello_world_3.2.13/Gemfile +0 -38
  219. data/spec/support/hello_world_3.2.13/README.rdoc +0 -261
  220. data/spec/support/hello_world_3.2.13/Rakefile +0 -7
  221. data/spec/support/hello_world_3.2.13/app/assets/images/rails.png +0 -0
  222. data/spec/support/hello_world_3.2.13/app/assets/javascripts/application.js +0 -15
  223. data/spec/support/hello_world_3.2.13/app/assets/stylesheets/application.css +0 -13
  224. data/spec/support/hello_world_3.2.13/app/controllers/application_controller.rb +0 -3
  225. data/spec/support/hello_world_3.2.13/app/helpers/application_helper.rb +0 -10
  226. data/spec/support/hello_world_3.2.13/app/mailers/.gitkeep +0 -0
  227. data/spec/support/hello_world_3.2.13/app/models/.gitkeep +0 -0
  228. data/spec/support/hello_world_3.2.13/app/models/test.rb +0 -3
  229. data/spec/support/hello_world_3.2.13/app/views/layouts/application.html.erb +0 -14
  230. data/spec/support/hello_world_3.2.13/config.ru +0 -4
  231. data/spec/support/hello_world_3.2.13/config/application.rb +0 -62
  232. data/spec/support/hello_world_3.2.13/config/boot.rb +0 -6
  233. data/spec/support/hello_world_3.2.13/config/database.yml +0 -25
  234. data/spec/support/hello_world_3.2.13/config/environment.rb +0 -5
  235. data/spec/support/hello_world_3.2.13/config/environments/development.rb +0 -37
  236. data/spec/support/hello_world_3.2.13/config/environments/production.rb +0 -67
  237. data/spec/support/hello_world_3.2.13/config/environments/test.rb +0 -37
  238. data/spec/support/hello_world_3.2.13/config/initializers/backtrace_silencers.rb +0 -7
  239. data/spec/support/hello_world_3.2.13/config/initializers/inflections.rb +0 -15
  240. data/spec/support/hello_world_3.2.13/config/initializers/mime_types.rb +0 -5
  241. data/spec/support/hello_world_3.2.13/config/initializers/secret_token.rb +0 -7
  242. data/spec/support/hello_world_3.2.13/config/initializers/session_store.rb +0 -8
  243. data/spec/support/hello_world_3.2.13/config/initializers/wrap_parameters.rb +0 -14
  244. data/spec/support/hello_world_3.2.13/config/locales/en.yml +0 -5
  245. data/spec/support/hello_world_3.2.13/config/routes.rb +0 -58
  246. data/spec/support/hello_world_3.2.13/db/seeds.rb +0 -7
  247. data/spec/support/hello_world_3.2.13/lib/assets/.gitkeep +0 -0
  248. data/spec/support/hello_world_3.2.13/lib/tasks/.gitkeep +0 -0
  249. data/spec/support/hello_world_3.2.13/log/.gitkeep +0 -0
  250. data/spec/support/hello_world_3.2.13/public/404.html +0 -26
  251. data/spec/support/hello_world_3.2.13/public/422.html +0 -26
  252. data/spec/support/hello_world_3.2.13/public/500.html +0 -25
  253. data/spec/support/hello_world_3.2.13/public/favicon.ico +0 -0
  254. data/spec/support/hello_world_3.2.13/public/index.html +0 -241
  255. data/spec/support/hello_world_3.2.13/public/robots.txt +0 -5
  256. data/spec/support/hello_world_3.2.13/script/rails +0 -6
  257. data/spec/support/hello_world_3.2.13/test/fixtures/.gitkeep +0 -0
  258. data/spec/support/hello_world_3.2.13/test/functional/.gitkeep +0 -0
  259. data/spec/support/hello_world_3.2.13/test/integration/.gitkeep +0 -0
  260. data/spec/support/hello_world_3.2.13/test/performance/browsing_test.rb +0 -12
  261. data/spec/support/hello_world_3.2.13/test/test_helper.rb +0 -13
  262. data/spec/support/hello_world_3.2.13/test/unit/.gitkeep +0 -0
  263. data/spec/support/hello_world_3.2.13/vendor/assets/javascripts/.gitkeep +0 -0
  264. data/spec/support/hello_world_3.2.13/vendor/assets/stylesheets/.gitkeep +0 -0
  265. data/spec/support/hello_world_3.2.13/vendor/plugins/.gitkeep +0 -0
  266. data/spec/support/hello_world_padrino/.components +0 -9
  267. data/spec/support/hello_world_padrino/.gitignore +0 -8
  268. data/spec/support/hello_world_padrino/Gemfile +0 -42
  269. data/spec/support/hello_world_padrino/Rakefile +0 -6
  270. data/spec/support/hello_world_padrino/app/app.rb +0 -61
  271. data/spec/support/hello_world_padrino/config.ru +0 -9
  272. data/spec/support/hello_world_padrino/config/apps.rb +0 -39
  273. data/spec/support/hello_world_padrino/config/boot.rb +0 -46
  274. data/spec/support/hello_world_padrino/config/database.rb +0 -19
  275. data/spec/support/hello_world_padrino/cucumber.yml +0 -2
  276. data/spec/support/hello_world_padrino/db/migrate/001_create_users.rb +0 -16
  277. data/spec/support/hello_world_padrino/dispatcher/app.rb +0 -61
  278. data/spec/support/hello_world_padrino/features/add.feature +0 -11
  279. data/spec/support/hello_world_padrino/features/step_definitions/add_steps.rb +0 -15
  280. data/spec/support/hello_world_padrino/features/support/env.rb +0 -10
  281. data/spec/support/hello_world_padrino/features/support/url.rb +0 -17
  282. data/spec/support/hello_world_padrino/models/user.rb +0 -11
  283. data/spec/support/hello_world_padrino/public/favicon.ico +0 -0
  284. data/spec/support/hello_world_padrino/public/javascripts/application.js +0 -1
  285. data/spec/support/hello_world_padrino/public/javascripts/jquery-ujs.js +0 -95
  286. data/spec/support/hello_world_padrino/public/javascripts/jquery.js +0 -4
  287. data/spec/support/lorem.txt +0 -23
  288. data/spec/support/sinatra-safe/.gems +0 -4
  289. data/spec/support/sinatra-safe/Gemfile +0 -18
  290. data/spec/support/sinatra-safe/MIT-LICENSE +0 -20
  291. data/spec/support/sinatra-safe/README.rdoc +0 -35
  292. data/spec/support/sinatra-safe/Rakefile +0 -32
  293. data/spec/support/sinatra-safe/application.rb +0 -23
  294. data/spec/support/sinatra-safe/config.ru +0 -11
  295. data/spec/support/sinatra-safe/environment.rb +0 -25
  296. data/spec/support/sinatra-safe/lib/profile.rb +0 -11
  297. data/spec/support/sinatra-safe/public/main.css +0 -52
  298. data/spec/support/sinatra-safe/script/console +0 -16
  299. data/spec/support/sinatra-safe/views/layout.haml +0 -14
  300. data/spec/support/sinatra-safe/views/root.haml +0 -4
  301. data/spec/support/sinatra-vulnerable/.gems +0 -4
  302. data/spec/support/sinatra-vulnerable/Gemfile +0 -17
  303. data/spec/support/sinatra-vulnerable/MIT-LICENSE +0 -20
  304. data/spec/support/sinatra-vulnerable/README.rdoc +0 -35
  305. data/spec/support/sinatra-vulnerable/Rakefile +0 -32
  306. data/spec/support/sinatra-vulnerable/application.rb +0 -34
  307. data/spec/support/sinatra-vulnerable/config.ru +0 -11
  308. data/spec/support/sinatra-vulnerable/disabled.png +0 -0
  309. data/spec/support/sinatra-vulnerable/environment.rb +0 -25
  310. data/spec/support/sinatra-vulnerable/lib/profile.rb +0 -11
  311. data/spec/support/sinatra-vulnerable/public/main.css +0 -52
  312. data/spec/support/sinatra-vulnerable/script/console +0 -16
  313. data/spec/support/sinatra-vulnerable/views/layout.haml +0 -14
  314. data/spec/support/sinatra-vulnerable/views/root.haml +0 -4
  315. data/spec/support/sinatra-vulnerable/views/xss.haml +0 -3
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2009-4124 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2009_4124.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2009-4214 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2009_4214.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2010-2489 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2010_2489.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2010-3933 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2010_3933.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-0188 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_0188.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-0739 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_0739.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-1004 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_1004.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-1005 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_1005.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-2686 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_2686.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-2705 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_2705.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-2930 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_2930.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-3009 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_3009.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-3187 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_3187.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2011-4319 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2011_4319.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+ describe "The CVE-2013-2090 vulnerability" do
3
+ before(:all) do
4
+ @check = Codesake::Dawn::Kb::CVE_2013_2090.new
5
+ # @check.debug = true
6
+ end
7
+ it "needs some test..."
8
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codesake-dawn
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.85'
4
+ version: 1.0.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paolo Perego
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-17 00:00:00.000000000 Z
11
+ date: 2014-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: codesake-commons
@@ -222,18 +222,16 @@ files:
222
222
  - .ruby-version
223
223
  - .travis.yml
224
224
  - Changelog.md
225
- - Competitive_matrix.md
226
225
  - Gemfile
227
226
  - LICENSE.txt
228
227
  - README.md
229
228
  - Rakefile
230
229
  - Roadmap.md
231
- - TODO.md
232
230
  - bin/dawn
233
231
  - codesake-dawn.gemspec
234
- - features/dawn_complains_about_an_incorrect_command_line.feature
235
- - features/dawn_scan_a_secure_sinatra_app.feature
236
- - features/dawn_scan_a_vulnerable_sinatra_app.feature
232
+ - features/dawn_complains_about_an_incorrect_command_line.feature.disabled
233
+ - features/dawn_scan_a_secure_sinatra_app.feature.disabled
234
+ - features/dawn_scan_a_vulnerable_sinatra_app.feature.disabled
237
235
  - features/step_definition/dawn_steps.rb
238
236
  - features/support/env.rb
239
237
  - lib/codesake-dawn.rb
@@ -242,15 +240,64 @@ files:
242
240
  - lib/codesake/dawn/gemfile_lock.rb
243
241
  - lib/codesake/dawn/kb/basic_check.rb
244
242
  - lib/codesake/dawn/kb/combo_check.rb
243
+ - lib/codesake/dawn/kb/cve_2004_0755.rb
244
+ - lib/codesake/dawn/kb/cve_2004_0983.rb
245
+ - lib/codesake/dawn/kb/cve_2005_1992.rb
246
+ - lib/codesake/dawn/kb/cve_2005_2337.rb
247
+ - lib/codesake/dawn/kb/cve_2006_1931.rb
248
+ - lib/codesake/dawn/kb/cve_2006_2582.rb
249
+ - lib/codesake/dawn/kb/cve_2006_3694.rb
250
+ - lib/codesake/dawn/kb/cve_2006_4112.rb
251
+ - lib/codesake/dawn/kb/cve_2006_5467.rb
252
+ - lib/codesake/dawn/kb/cve_2006_6303.rb
253
+ - lib/codesake/dawn/kb/cve_2006_6852.rb
254
+ - lib/codesake/dawn/kb/cve_2006_6979.rb
255
+ - lib/codesake/dawn/kb/cve_2007_0469.rb
256
+ - lib/codesake/dawn/kb/cve_2007_5162.rb
257
+ - lib/codesake/dawn/kb/cve_2007_5379.rb
258
+ - lib/codesake/dawn/kb/cve_2007_5380.rb
259
+ - lib/codesake/dawn/kb/cve_2007_5770.rb
260
+ - lib/codesake/dawn/kb/cve_2007_6077.rb
261
+ - lib/codesake/dawn/kb/cve_2007_6612.rb
262
+ - lib/codesake/dawn/kb/cve_2008_1145.rb
263
+ - lib/codesake/dawn/kb/cve_2008_1891.rb
264
+ - lib/codesake/dawn/kb/cve_2008_2376.rb
265
+ - lib/codesake/dawn/kb/cve_2008_2662.rb
266
+ - lib/codesake/dawn/kb/cve_2008_2663.rb
267
+ - lib/codesake/dawn/kb/cve_2008_2664.rb
268
+ - lib/codesake/dawn/kb/cve_2008_2725.rb
269
+ - lib/codesake/dawn/kb/cve_2008_3655.rb
270
+ - lib/codesake/dawn/kb/cve_2008_3657.rb
271
+ - lib/codesake/dawn/kb/cve_2008_3790.rb
272
+ - lib/codesake/dawn/kb/cve_2008_3905.rb
273
+ - lib/codesake/dawn/kb/cve_2008_4094.rb
274
+ - lib/codesake/dawn/kb/cve_2008_4310.rb
275
+ - lib/codesake/dawn/kb/cve_2008_5189.rb
276
+ - lib/codesake/dawn/kb/cve_2008_7248.rb
277
+ - lib/codesake/dawn/kb/cve_2009_4078.rb
278
+ - lib/codesake/dawn/kb/cve_2009_4124.rb
279
+ - lib/codesake/dawn/kb/cve_2009_4214.rb
245
280
  - lib/codesake/dawn/kb/cve_2010_1330.rb
281
+ - lib/codesake/dawn/kb/cve_2010_2489.rb
282
+ - lib/codesake/dawn/kb/cve_2010_3933.rb
283
+ - lib/codesake/dawn/kb/cve_2011_0188.rb
246
284
  - lib/codesake/dawn/kb/cve_2011_0446.rb
247
285
  - lib/codesake/dawn/kb/cve_2011_0447.rb
286
+ - lib/codesake/dawn/kb/cve_2011_0739.rb
248
287
  - lib/codesake/dawn/kb/cve_2011_0995.rb
288
+ - lib/codesake/dawn/kb/cve_2011_1004.rb
289
+ - lib/codesake/dawn/kb/cve_2011_1005.rb
249
290
  - lib/codesake/dawn/kb/cve_2011_2197.rb
291
+ - lib/codesake/dawn/kb/cve_2011_2686.rb
292
+ - lib/codesake/dawn/kb/cve_2011_2705.rb
250
293
  - lib/codesake/dawn/kb/cve_2011_2929.rb
294
+ - lib/codesake/dawn/kb/cve_2011_2930.rb
251
295
  - lib/codesake/dawn/kb/cve_2011_2931.rb
252
296
  - lib/codesake/dawn/kb/cve_2011_2932.rb
297
+ - lib/codesake/dawn/kb/cve_2011_3009.rb
253
298
  - lib/codesake/dawn/kb/cve_2011_3186.rb
299
+ - lib/codesake/dawn/kb/cve_2011_3187.rb
300
+ - lib/codesake/dawn/kb/cve_2011_4319.rb
254
301
  - lib/codesake/dawn/kb/cve_2011_4815.rb
255
302
  - lib/codesake/dawn/kb/cve_2012_1099.rb
256
303
  - lib/codesake/dawn/kb/cve_2012_1241.rb
@@ -301,6 +348,7 @@ files:
301
348
  - lib/codesake/dawn/kb/cve_2013_1947.rb
302
349
  - lib/codesake/dawn/kb/cve_2013_1948.rb
303
350
  - lib/codesake/dawn/kb/cve_2013_2065.rb
351
+ - lib/codesake/dawn/kb/cve_2013_2090.rb
304
352
  - lib/codesake/dawn/kb/cve_2013_2615.rb
305
353
  - lib/codesake/dawn/kb/cve_2013_2616.rb
306
354
  - lib/codesake/dawn/kb/cve_2013_2617.rb
@@ -338,202 +386,67 @@ files:
338
386
  - lib/codesake/dawn/sinatra.rb
339
387
  - lib/codesake/dawn/utils.rb
340
388
  - lib/codesake/dawn/version.rb
389
+ - lib/tasks/dawn.rake
341
390
  - spec/lib/dawn/codesake_knowledgebase_spec.rb
342
- - spec/lib/dawn/codesake_padrino_engine_spec.rb
343
- - spec/lib/dawn/codesake_rails_engine_spec.rb
344
- - spec/lib/dawn/codesake_sinatra_engine_spec.rb
391
+ - spec/lib/dawn/codesake_padrino_engine_disabled.rb
392
+ - spec/lib/dawn/codesake_rails_engine_disabled.rb
393
+ - spec/lib/dawn/codesake_sinatra_engine_disabled.rb
345
394
  - spec/lib/kb/codesake_cve_2013_0175_spec.rb
346
395
  - spec/lib/kb/codesake_cve_2013_1655_spec.rb
347
- - spec/lib/kb/codesake_cve_2013_6416.rb
396
+ - spec/lib/kb/codesake_cve_2013_4457_spec.rb
397
+ - spec/lib/kb/codesake_cve_2013_6416_spec.rb
348
398
  - spec/lib/kb/codesake_ruby_version_check_spec.rb
349
- - spec/lib/kb/owasp_ror_cheatsheet_spec.rb
399
+ - spec/lib/kb/cve_2004_0983_spec.rb
400
+ - spec/lib/kb/cve_2005_1992_spec.rb
401
+ - spec/lib/kb/cve_2005_2337_spec.rb
402
+ - spec/lib/kb/cve_2006_1931_spec.rb
403
+ - spec/lib/kb/cve_2006_2582_spec.rb
404
+ - spec/lib/kb/cve_2006_3694_spec.rb
405
+ - spec/lib/kb/cve_2006_4112_spec.rb
406
+ - spec/lib/kb/cve_2006_5467_spec.rb
407
+ - spec/lib/kb/cve_2006_6303_spec.rb
408
+ - spec/lib/kb/cve_2006_6852_spec.rb
409
+ - spec/lib/kb/cve_2006_6979_spec.rb
410
+ - spec/lib/kb/cve_2007_0469_spec.rb
411
+ - spec/lib/kb/cve_2007_5162_spec.rb
412
+ - spec/lib/kb/cve_2007_5379_spec.rb
413
+ - spec/lib/kb/cve_2007_5380_spec.rb
414
+ - spec/lib/kb/cve_2007_5770_spec.rb
415
+ - spec/lib/kb/cve_2007_6077_spec.rb
416
+ - spec/lib/kb/cve_2007_6612_spec.rb
417
+ - spec/lib/kb/cve_2008_1145_spec.rb
418
+ - spec/lib/kb/cve_2008_1891_spec.rb
419
+ - spec/lib/kb/cve_2008_2376_spec.rb
420
+ - spec/lib/kb/cve_2008_2662_spec.rb
421
+ - spec/lib/kb/cve_2008_2663_spec.rb
422
+ - spec/lib/kb/cve_2008_2664_spec.rb
423
+ - spec/lib/kb/cve_2008_2725_spec.rb
424
+ - spec/lib/kb/cve_2008_3655_spec.rb
425
+ - spec/lib/kb/cve_2008_3657_spec.rb
426
+ - spec/lib/kb/cve_2008_3790_spec.rb
427
+ - spec/lib/kb/cve_2008_3905_spec.rb
428
+ - spec/lib/kb/cve_2008_4094_spec.rb
429
+ - spec/lib/kb/cve_2008_4310_spec.rb
430
+ - spec/lib/kb/cve_2008_5189_spec.rb
431
+ - spec/lib/kb/cve_2008_7248_spec.rb
432
+ - spec/lib/kb/cve_2009_4078_spec.rb
433
+ - spec/lib/kb/cve_2009_4124_spec.rb
434
+ - spec/lib/kb/cve_2009_4214_spec.rb
435
+ - spec/lib/kb/cve_2010_2489_spec.rb
436
+ - spec/lib/kb/cve_2010_3933_spec.rb
437
+ - spec/lib/kb/cve_2011_0188_spec.rb
438
+ - spec/lib/kb/cve_2011_0739_spec.rb
439
+ - spec/lib/kb/cve_2011_1004_spec.rb
440
+ - spec/lib/kb/cve_2011_1005_spec.rb
441
+ - spec/lib/kb/cve_2011_2686_spec.rb
442
+ - spec/lib/kb/cve_2011_2705_spec.rb
443
+ - spec/lib/kb/cve_2011_2930_spec.rb
444
+ - spec/lib/kb/cve_2011_3009_spec.rb
445
+ - spec/lib/kb/cve_2011_3187_spec.rb
446
+ - spec/lib/kb/cve_2011_4319_spec.rb
447
+ - spec/lib/kb/cve_2013_2090_spec.rb
448
+ - spec/lib/kb/owasp_ror_cheatsheet_disabled.rb
350
449
  - spec/spec_helper.rb
351
- - spec/support/hello_world_3.0.19/Gemfile
352
- - spec/support/hello_world_3.0.19/README
353
- - spec/support/hello_world_3.0.19/Rakefile
354
- - spec/support/hello_world_3.0.19/app/controllers/application_controller.rb
355
- - spec/support/hello_world_3.0.19/app/helpers/application_helper.rb
356
- - spec/support/hello_world_3.0.19/app/views/layouts/application.html.erb
357
- - spec/support/hello_world_3.0.19/config.ru
358
- - spec/support/hello_world_3.0.19/config/application.rb
359
- - spec/support/hello_world_3.0.19/config/boot.rb
360
- - spec/support/hello_world_3.0.19/config/database.yml
361
- - spec/support/hello_world_3.0.19/config/environment.rb
362
- - spec/support/hello_world_3.0.19/config/environments/development.rb
363
- - spec/support/hello_world_3.0.19/config/environments/production.rb
364
- - spec/support/hello_world_3.0.19/config/environments/test.rb
365
- - spec/support/hello_world_3.0.19/config/initializers/backtrace_silencers.rb
366
- - spec/support/hello_world_3.0.19/config/initializers/inflections.rb
367
- - spec/support/hello_world_3.0.19/config/initializers/mime_types.rb
368
- - spec/support/hello_world_3.0.19/config/initializers/secret_token.rb
369
- - spec/support/hello_world_3.0.19/config/initializers/session_store.rb
370
- - spec/support/hello_world_3.0.19/config/locales/en.yml
371
- - spec/support/hello_world_3.0.19/config/routes.rb
372
- - spec/support/hello_world_3.0.19/db/seeds.rb
373
- - spec/support/hello_world_3.0.19/lib/tasks/.gitkeep
374
- - spec/support/hello_world_3.0.19/public/404.html
375
- - spec/support/hello_world_3.0.19/public/422.html
376
- - spec/support/hello_world_3.0.19/public/500.html
377
- - spec/support/hello_world_3.0.19/public/favicon.ico
378
- - spec/support/hello_world_3.0.19/public/images/rails.png
379
- - spec/support/hello_world_3.0.19/public/index.html
380
- - spec/support/hello_world_3.0.19/public/javascripts/application.js
381
- - spec/support/hello_world_3.0.19/public/javascripts/controls.js
382
- - spec/support/hello_world_3.0.19/public/javascripts/dragdrop.js
383
- - spec/support/hello_world_3.0.19/public/javascripts/effects.js
384
- - spec/support/hello_world_3.0.19/public/javascripts/prototype.js
385
- - spec/support/hello_world_3.0.19/public/javascripts/rails.js
386
- - spec/support/hello_world_3.0.19/public/robots.txt
387
- - spec/support/hello_world_3.0.19/public/stylesheets/.gitkeep
388
- - spec/support/hello_world_3.0.19/script/rails
389
- - spec/support/hello_world_3.0.19/test/performance/browsing_test.rb
390
- - spec/support/hello_world_3.0.19/test/test_helper.rb
391
- - spec/support/hello_world_3.0.19/vendor/plugins/.gitkeep
392
- - spec/support/hello_world_3.1.0/Gemfile
393
- - spec/support/hello_world_3.1.0/README
394
- - spec/support/hello_world_3.1.0/Rakefile
395
- - spec/support/hello_world_3.1.0/app/assets/images/rails.png
396
- - spec/support/hello_world_3.1.0/app/assets/javascripts/application.js
397
- - spec/support/hello_world_3.1.0/app/assets/stylesheets/application.css
398
- - spec/support/hello_world_3.1.0/app/controllers/application_controller.rb
399
- - spec/support/hello_world_3.1.0/app/helpers/application_helper.rb
400
- - spec/support/hello_world_3.1.0/app/mailers/.gitkeep
401
- - spec/support/hello_world_3.1.0/app/models/.gitkeep
402
- - spec/support/hello_world_3.1.0/app/views/layouts/application.html.erb
403
- - spec/support/hello_world_3.1.0/config.ru
404
- - spec/support/hello_world_3.1.0/config/application.rb
405
- - spec/support/hello_world_3.1.0/config/boot.rb
406
- - spec/support/hello_world_3.1.0/config/database.yml
407
- - spec/support/hello_world_3.1.0/config/environment.rb
408
- - spec/support/hello_world_3.1.0/config/environments/development.rb
409
- - spec/support/hello_world_3.1.0/config/environments/production.rb
410
- - spec/support/hello_world_3.1.0/config/environments/test.rb
411
- - spec/support/hello_world_3.1.0/config/initializers/backtrace_silencers.rb
412
- - spec/support/hello_world_3.1.0/config/initializers/inflections.rb
413
- - spec/support/hello_world_3.1.0/config/initializers/mime_types.rb
414
- - spec/support/hello_world_3.1.0/config/initializers/secret_token.rb
415
- - spec/support/hello_world_3.1.0/config/initializers/session_store.rb
416
- - spec/support/hello_world_3.1.0/config/initializers/wrap_parameters.rb
417
- - spec/support/hello_world_3.1.0/config/locales/en.yml
418
- - spec/support/hello_world_3.1.0/config/routes.rb
419
- - spec/support/hello_world_3.1.0/db/seeds.rb
420
- - spec/support/hello_world_3.1.0/lib/assets/.gitkeep
421
- - spec/support/hello_world_3.1.0/lib/tasks/.gitkeep
422
- - spec/support/hello_world_3.1.0/log/.gitkeep
423
- - spec/support/hello_world_3.1.0/public/404.html
424
- - spec/support/hello_world_3.1.0/public/422.html
425
- - spec/support/hello_world_3.1.0/public/500.html
426
- - spec/support/hello_world_3.1.0/public/favicon.ico
427
- - spec/support/hello_world_3.1.0/public/index.html
428
- - spec/support/hello_world_3.1.0/public/robots.txt
429
- - spec/support/hello_world_3.1.0/script/rails
430
- - spec/support/hello_world_3.1.0/test/fixtures/.gitkeep
431
- - spec/support/hello_world_3.1.0/test/functional/.gitkeep
432
- - spec/support/hello_world_3.1.0/test/integration/.gitkeep
433
- - spec/support/hello_world_3.1.0/test/performance/browsing_test.rb
434
- - spec/support/hello_world_3.1.0/test/test_helper.rb
435
- - spec/support/hello_world_3.1.0/test/unit/.gitkeep
436
- - spec/support/hello_world_3.1.0/vendor/assets/stylesheets/.gitkeep
437
- - spec/support/hello_world_3.1.0/vendor/plugins/.gitkeep
438
- - spec/support/hello_world_3.2.13/Gemfile
439
- - spec/support/hello_world_3.2.13/README.rdoc
440
- - spec/support/hello_world_3.2.13/Rakefile
441
- - spec/support/hello_world_3.2.13/app/assets/images/rails.png
442
- - spec/support/hello_world_3.2.13/app/assets/javascripts/application.js
443
- - spec/support/hello_world_3.2.13/app/assets/stylesheets/application.css
444
- - spec/support/hello_world_3.2.13/app/controllers/application_controller.rb
445
- - spec/support/hello_world_3.2.13/app/helpers/application_helper.rb
446
- - spec/support/hello_world_3.2.13/app/mailers/.gitkeep
447
- - spec/support/hello_world_3.2.13/app/models/.gitkeep
448
- - spec/support/hello_world_3.2.13/app/models/test.rb
449
- - spec/support/hello_world_3.2.13/app/views/layouts/application.html.erb
450
- - spec/support/hello_world_3.2.13/config.ru
451
- - spec/support/hello_world_3.2.13/config/application.rb
452
- - spec/support/hello_world_3.2.13/config/boot.rb
453
- - spec/support/hello_world_3.2.13/config/database.yml
454
- - spec/support/hello_world_3.2.13/config/environment.rb
455
- - spec/support/hello_world_3.2.13/config/environments/development.rb
456
- - spec/support/hello_world_3.2.13/config/environments/production.rb
457
- - spec/support/hello_world_3.2.13/config/environments/test.rb
458
- - spec/support/hello_world_3.2.13/config/initializers/backtrace_silencers.rb
459
- - spec/support/hello_world_3.2.13/config/initializers/inflections.rb
460
- - spec/support/hello_world_3.2.13/config/initializers/mime_types.rb
461
- - spec/support/hello_world_3.2.13/config/initializers/secret_token.rb
462
- - spec/support/hello_world_3.2.13/config/initializers/session_store.rb
463
- - spec/support/hello_world_3.2.13/config/initializers/wrap_parameters.rb
464
- - spec/support/hello_world_3.2.13/config/locales/en.yml
465
- - spec/support/hello_world_3.2.13/config/routes.rb
466
- - spec/support/hello_world_3.2.13/db/seeds.rb
467
- - spec/support/hello_world_3.2.13/lib/assets/.gitkeep
468
- - spec/support/hello_world_3.2.13/lib/tasks/.gitkeep
469
- - spec/support/hello_world_3.2.13/log/.gitkeep
470
- - spec/support/hello_world_3.2.13/public/404.html
471
- - spec/support/hello_world_3.2.13/public/422.html
472
- - spec/support/hello_world_3.2.13/public/500.html
473
- - spec/support/hello_world_3.2.13/public/favicon.ico
474
- - spec/support/hello_world_3.2.13/public/index.html
475
- - spec/support/hello_world_3.2.13/public/robots.txt
476
- - spec/support/hello_world_3.2.13/script/rails
477
- - spec/support/hello_world_3.2.13/test/fixtures/.gitkeep
478
- - spec/support/hello_world_3.2.13/test/functional/.gitkeep
479
- - spec/support/hello_world_3.2.13/test/integration/.gitkeep
480
- - spec/support/hello_world_3.2.13/test/performance/browsing_test.rb
481
- - spec/support/hello_world_3.2.13/test/test_helper.rb
482
- - spec/support/hello_world_3.2.13/test/unit/.gitkeep
483
- - spec/support/hello_world_3.2.13/vendor/assets/javascripts/.gitkeep
484
- - spec/support/hello_world_3.2.13/vendor/assets/stylesheets/.gitkeep
485
- - spec/support/hello_world_3.2.13/vendor/plugins/.gitkeep
486
- - spec/support/hello_world_padrino/.components
487
- - spec/support/hello_world_padrino/.gitignore
488
- - spec/support/hello_world_padrino/Gemfile
489
- - spec/support/hello_world_padrino/Rakefile
490
- - spec/support/hello_world_padrino/app/app.rb
491
- - spec/support/hello_world_padrino/config.ru
492
- - spec/support/hello_world_padrino/config/apps.rb
493
- - spec/support/hello_world_padrino/config/boot.rb
494
- - spec/support/hello_world_padrino/config/database.rb
495
- - spec/support/hello_world_padrino/cucumber.yml
496
- - spec/support/hello_world_padrino/db/migrate/001_create_users.rb
497
- - spec/support/hello_world_padrino/dispatcher/app.rb
498
- - spec/support/hello_world_padrino/features/add.feature
499
- - spec/support/hello_world_padrino/features/step_definitions/add_steps.rb
500
- - spec/support/hello_world_padrino/features/support/env.rb
501
- - spec/support/hello_world_padrino/features/support/url.rb
502
- - spec/support/hello_world_padrino/log/app.rb
503
- - spec/support/hello_world_padrino/models/user.rb
504
- - spec/support/hello_world_padrino/public/favicon.ico
505
- - spec/support/hello_world_padrino/public/javascripts/application.js
506
- - spec/support/hello_world_padrino/public/javascripts/jquery-ujs.js
507
- - spec/support/hello_world_padrino/public/javascripts/jquery.js
508
- - spec/support/lorem.txt
509
- - spec/support/sinatra-safe/.gems
510
- - spec/support/sinatra-safe/Gemfile
511
- - spec/support/sinatra-safe/MIT-LICENSE
512
- - spec/support/sinatra-safe/README.rdoc
513
- - spec/support/sinatra-safe/Rakefile
514
- - spec/support/sinatra-safe/application.rb
515
- - spec/support/sinatra-safe/config.ru
516
- - spec/support/sinatra-safe/environment.rb
517
- - spec/support/sinatra-safe/lib/profile.rb
518
- - spec/support/sinatra-safe/public/main.css
519
- - spec/support/sinatra-safe/script/console
520
- - spec/support/sinatra-safe/views/layout.haml
521
- - spec/support/sinatra-safe/views/root.haml
522
- - spec/support/sinatra-vulnerable/.gems
523
- - spec/support/sinatra-vulnerable/Gemfile
524
- - spec/support/sinatra-vulnerable/MIT-LICENSE
525
- - spec/support/sinatra-vulnerable/README.rdoc
526
- - spec/support/sinatra-vulnerable/Rakefile
527
- - spec/support/sinatra-vulnerable/application.rb
528
- - spec/support/sinatra-vulnerable/config.ru
529
- - spec/support/sinatra-vulnerable/disabled.png
530
- - spec/support/sinatra-vulnerable/environment.rb
531
- - spec/support/sinatra-vulnerable/lib/profile.rb
532
- - spec/support/sinatra-vulnerable/public/main.css
533
- - spec/support/sinatra-vulnerable/script/console
534
- - spec/support/sinatra-vulnerable/views/layout.haml
535
- - spec/support/sinatra-vulnerable/views/root.haml
536
- - spec/support/sinatra-vulnerable/views/xss.haml
537
450
  homepage: http://dawn.codesake.com
538
451
  licenses: []
539
452
  metadata: {}
@@ -548,215 +461,79 @@ required_ruby_version: !ruby/object:Gem::Requirement
548
461
  version: '0'
549
462
  required_rubygems_version: !ruby/object:Gem::Requirement
550
463
  requirements:
551
- - - '>='
464
+ - - '>'
552
465
  - !ruby/object:Gem::Version
553
- version: '0'
466
+ version: 1.3.1
554
467
  requirements: []
555
468
  rubyforge_project:
556
- rubygems_version: 2.0.4
469
+ rubygems_version: 2.1.11
557
470
  signing_key:
558
471
  specification_version: 4
559
472
  summary: dawn is a security static source code analyzer for sinatra, padrino and ruby
560
473
  on rails web applicartions.
561
474
  test_files:
562
- - features/dawn_complains_about_an_incorrect_command_line.feature
563
- - features/dawn_scan_a_secure_sinatra_app.feature
564
- - features/dawn_scan_a_vulnerable_sinatra_app.feature
475
+ - features/dawn_complains_about_an_incorrect_command_line.feature.disabled
476
+ - features/dawn_scan_a_secure_sinatra_app.feature.disabled
477
+ - features/dawn_scan_a_vulnerable_sinatra_app.feature.disabled
565
478
  - features/step_definition/dawn_steps.rb
566
479
  - features/support/env.rb
567
480
  - spec/lib/dawn/codesake_knowledgebase_spec.rb
568
- - spec/lib/dawn/codesake_padrino_engine_spec.rb
569
- - spec/lib/dawn/codesake_rails_engine_spec.rb
570
- - spec/lib/dawn/codesake_sinatra_engine_spec.rb
481
+ - spec/lib/dawn/codesake_padrino_engine_disabled.rb
482
+ - spec/lib/dawn/codesake_rails_engine_disabled.rb
483
+ - spec/lib/dawn/codesake_sinatra_engine_disabled.rb
571
484
  - spec/lib/kb/codesake_cve_2013_0175_spec.rb
572
485
  - spec/lib/kb/codesake_cve_2013_1655_spec.rb
573
- - spec/lib/kb/codesake_cve_2013_6416.rb
486
+ - spec/lib/kb/codesake_cve_2013_4457_spec.rb
487
+ - spec/lib/kb/codesake_cve_2013_6416_spec.rb
574
488
  - spec/lib/kb/codesake_ruby_version_check_spec.rb
575
- - spec/lib/kb/owasp_ror_cheatsheet_spec.rb
489
+ - spec/lib/kb/cve_2004_0983_spec.rb
490
+ - spec/lib/kb/cve_2005_1992_spec.rb
491
+ - spec/lib/kb/cve_2005_2337_spec.rb
492
+ - spec/lib/kb/cve_2006_1931_spec.rb
493
+ - spec/lib/kb/cve_2006_2582_spec.rb
494
+ - spec/lib/kb/cve_2006_3694_spec.rb
495
+ - spec/lib/kb/cve_2006_4112_spec.rb
496
+ - spec/lib/kb/cve_2006_5467_spec.rb
497
+ - spec/lib/kb/cve_2006_6303_spec.rb
498
+ - spec/lib/kb/cve_2006_6852_spec.rb
499
+ - spec/lib/kb/cve_2006_6979_spec.rb
500
+ - spec/lib/kb/cve_2007_0469_spec.rb
501
+ - spec/lib/kb/cve_2007_5162_spec.rb
502
+ - spec/lib/kb/cve_2007_5379_spec.rb
503
+ - spec/lib/kb/cve_2007_5380_spec.rb
504
+ - spec/lib/kb/cve_2007_5770_spec.rb
505
+ - spec/lib/kb/cve_2007_6077_spec.rb
506
+ - spec/lib/kb/cve_2007_6612_spec.rb
507
+ - spec/lib/kb/cve_2008_1145_spec.rb
508
+ - spec/lib/kb/cve_2008_1891_spec.rb
509
+ - spec/lib/kb/cve_2008_2376_spec.rb
510
+ - spec/lib/kb/cve_2008_2662_spec.rb
511
+ - spec/lib/kb/cve_2008_2663_spec.rb
512
+ - spec/lib/kb/cve_2008_2664_spec.rb
513
+ - spec/lib/kb/cve_2008_2725_spec.rb
514
+ - spec/lib/kb/cve_2008_3655_spec.rb
515
+ - spec/lib/kb/cve_2008_3657_spec.rb
516
+ - spec/lib/kb/cve_2008_3790_spec.rb
517
+ - spec/lib/kb/cve_2008_3905_spec.rb
518
+ - spec/lib/kb/cve_2008_4094_spec.rb
519
+ - spec/lib/kb/cve_2008_4310_spec.rb
520
+ - spec/lib/kb/cve_2008_5189_spec.rb
521
+ - spec/lib/kb/cve_2008_7248_spec.rb
522
+ - spec/lib/kb/cve_2009_4078_spec.rb
523
+ - spec/lib/kb/cve_2009_4124_spec.rb
524
+ - spec/lib/kb/cve_2009_4214_spec.rb
525
+ - spec/lib/kb/cve_2010_2489_spec.rb
526
+ - spec/lib/kb/cve_2010_3933_spec.rb
527
+ - spec/lib/kb/cve_2011_0188_spec.rb
528
+ - spec/lib/kb/cve_2011_0739_spec.rb
529
+ - spec/lib/kb/cve_2011_1004_spec.rb
530
+ - spec/lib/kb/cve_2011_1005_spec.rb
531
+ - spec/lib/kb/cve_2011_2686_spec.rb
532
+ - spec/lib/kb/cve_2011_2705_spec.rb
533
+ - spec/lib/kb/cve_2011_2930_spec.rb
534
+ - spec/lib/kb/cve_2011_3009_spec.rb
535
+ - spec/lib/kb/cve_2011_3187_spec.rb
536
+ - spec/lib/kb/cve_2011_4319_spec.rb
537
+ - spec/lib/kb/cve_2013_2090_spec.rb
538
+ - spec/lib/kb/owasp_ror_cheatsheet_disabled.rb
576
539
  - spec/spec_helper.rb
577
- - spec/support/hello_world_3.0.19/Gemfile
578
- - spec/support/hello_world_3.0.19/README
579
- - spec/support/hello_world_3.0.19/Rakefile
580
- - spec/support/hello_world_3.0.19/app/controllers/application_controller.rb
581
- - spec/support/hello_world_3.0.19/app/helpers/application_helper.rb
582
- - spec/support/hello_world_3.0.19/app/views/layouts/application.html.erb
583
- - spec/support/hello_world_3.0.19/config.ru
584
- - spec/support/hello_world_3.0.19/config/application.rb
585
- - spec/support/hello_world_3.0.19/config/boot.rb
586
- - spec/support/hello_world_3.0.19/config/database.yml
587
- - spec/support/hello_world_3.0.19/config/environment.rb
588
- - spec/support/hello_world_3.0.19/config/environments/development.rb
589
- - spec/support/hello_world_3.0.19/config/environments/production.rb
590
- - spec/support/hello_world_3.0.19/config/environments/test.rb
591
- - spec/support/hello_world_3.0.19/config/initializers/backtrace_silencers.rb
592
- - spec/support/hello_world_3.0.19/config/initializers/inflections.rb
593
- - spec/support/hello_world_3.0.19/config/initializers/mime_types.rb
594
- - spec/support/hello_world_3.0.19/config/initializers/secret_token.rb
595
- - spec/support/hello_world_3.0.19/config/initializers/session_store.rb
596
- - spec/support/hello_world_3.0.19/config/locales/en.yml
597
- - spec/support/hello_world_3.0.19/config/routes.rb
598
- - spec/support/hello_world_3.0.19/db/seeds.rb
599
- - spec/support/hello_world_3.0.19/lib/tasks/.gitkeep
600
- - spec/support/hello_world_3.0.19/public/404.html
601
- - spec/support/hello_world_3.0.19/public/422.html
602
- - spec/support/hello_world_3.0.19/public/500.html
603
- - spec/support/hello_world_3.0.19/public/favicon.ico
604
- - spec/support/hello_world_3.0.19/public/images/rails.png
605
- - spec/support/hello_world_3.0.19/public/index.html
606
- - spec/support/hello_world_3.0.19/public/javascripts/application.js
607
- - spec/support/hello_world_3.0.19/public/javascripts/controls.js
608
- - spec/support/hello_world_3.0.19/public/javascripts/dragdrop.js
609
- - spec/support/hello_world_3.0.19/public/javascripts/effects.js
610
- - spec/support/hello_world_3.0.19/public/javascripts/prototype.js
611
- - spec/support/hello_world_3.0.19/public/javascripts/rails.js
612
- - spec/support/hello_world_3.0.19/public/robots.txt
613
- - spec/support/hello_world_3.0.19/public/stylesheets/.gitkeep
614
- - spec/support/hello_world_3.0.19/script/rails
615
- - spec/support/hello_world_3.0.19/test/performance/browsing_test.rb
616
- - spec/support/hello_world_3.0.19/test/test_helper.rb
617
- - spec/support/hello_world_3.0.19/vendor/plugins/.gitkeep
618
- - spec/support/hello_world_3.1.0/Gemfile
619
- - spec/support/hello_world_3.1.0/README
620
- - spec/support/hello_world_3.1.0/Rakefile
621
- - spec/support/hello_world_3.1.0/app/assets/images/rails.png
622
- - spec/support/hello_world_3.1.0/app/assets/javascripts/application.js
623
- - spec/support/hello_world_3.1.0/app/assets/stylesheets/application.css
624
- - spec/support/hello_world_3.1.0/app/controllers/application_controller.rb
625
- - spec/support/hello_world_3.1.0/app/helpers/application_helper.rb
626
- - spec/support/hello_world_3.1.0/app/mailers/.gitkeep
627
- - spec/support/hello_world_3.1.0/app/models/.gitkeep
628
- - spec/support/hello_world_3.1.0/app/views/layouts/application.html.erb
629
- - spec/support/hello_world_3.1.0/config.ru
630
- - spec/support/hello_world_3.1.0/config/application.rb
631
- - spec/support/hello_world_3.1.0/config/boot.rb
632
- - spec/support/hello_world_3.1.0/config/database.yml
633
- - spec/support/hello_world_3.1.0/config/environment.rb
634
- - spec/support/hello_world_3.1.0/config/environments/development.rb
635
- - spec/support/hello_world_3.1.0/config/environments/production.rb
636
- - spec/support/hello_world_3.1.0/config/environments/test.rb
637
- - spec/support/hello_world_3.1.0/config/initializers/backtrace_silencers.rb
638
- - spec/support/hello_world_3.1.0/config/initializers/inflections.rb
639
- - spec/support/hello_world_3.1.0/config/initializers/mime_types.rb
640
- - spec/support/hello_world_3.1.0/config/initializers/secret_token.rb
641
- - spec/support/hello_world_3.1.0/config/initializers/session_store.rb
642
- - spec/support/hello_world_3.1.0/config/initializers/wrap_parameters.rb
643
- - spec/support/hello_world_3.1.0/config/locales/en.yml
644
- - spec/support/hello_world_3.1.0/config/routes.rb
645
- - spec/support/hello_world_3.1.0/db/seeds.rb
646
- - spec/support/hello_world_3.1.0/lib/assets/.gitkeep
647
- - spec/support/hello_world_3.1.0/lib/tasks/.gitkeep
648
- - spec/support/hello_world_3.1.0/log/.gitkeep
649
- - spec/support/hello_world_3.1.0/public/404.html
650
- - spec/support/hello_world_3.1.0/public/422.html
651
- - spec/support/hello_world_3.1.0/public/500.html
652
- - spec/support/hello_world_3.1.0/public/favicon.ico
653
- - spec/support/hello_world_3.1.0/public/index.html
654
- - spec/support/hello_world_3.1.0/public/robots.txt
655
- - spec/support/hello_world_3.1.0/script/rails
656
- - spec/support/hello_world_3.1.0/test/fixtures/.gitkeep
657
- - spec/support/hello_world_3.1.0/test/functional/.gitkeep
658
- - spec/support/hello_world_3.1.0/test/integration/.gitkeep
659
- - spec/support/hello_world_3.1.0/test/performance/browsing_test.rb
660
- - spec/support/hello_world_3.1.0/test/test_helper.rb
661
- - spec/support/hello_world_3.1.0/test/unit/.gitkeep
662
- - spec/support/hello_world_3.1.0/vendor/assets/stylesheets/.gitkeep
663
- - spec/support/hello_world_3.1.0/vendor/plugins/.gitkeep
664
- - spec/support/hello_world_3.2.13/Gemfile
665
- - spec/support/hello_world_3.2.13/README.rdoc
666
- - spec/support/hello_world_3.2.13/Rakefile
667
- - spec/support/hello_world_3.2.13/app/assets/images/rails.png
668
- - spec/support/hello_world_3.2.13/app/assets/javascripts/application.js
669
- - spec/support/hello_world_3.2.13/app/assets/stylesheets/application.css
670
- - spec/support/hello_world_3.2.13/app/controllers/application_controller.rb
671
- - spec/support/hello_world_3.2.13/app/helpers/application_helper.rb
672
- - spec/support/hello_world_3.2.13/app/mailers/.gitkeep
673
- - spec/support/hello_world_3.2.13/app/models/.gitkeep
674
- - spec/support/hello_world_3.2.13/app/models/test.rb
675
- - spec/support/hello_world_3.2.13/app/views/layouts/application.html.erb
676
- - spec/support/hello_world_3.2.13/config.ru
677
- - spec/support/hello_world_3.2.13/config/application.rb
678
- - spec/support/hello_world_3.2.13/config/boot.rb
679
- - spec/support/hello_world_3.2.13/config/database.yml
680
- - spec/support/hello_world_3.2.13/config/environment.rb
681
- - spec/support/hello_world_3.2.13/config/environments/development.rb
682
- - spec/support/hello_world_3.2.13/config/environments/production.rb
683
- - spec/support/hello_world_3.2.13/config/environments/test.rb
684
- - spec/support/hello_world_3.2.13/config/initializers/backtrace_silencers.rb
685
- - spec/support/hello_world_3.2.13/config/initializers/inflections.rb
686
- - spec/support/hello_world_3.2.13/config/initializers/mime_types.rb
687
- - spec/support/hello_world_3.2.13/config/initializers/secret_token.rb
688
- - spec/support/hello_world_3.2.13/config/initializers/session_store.rb
689
- - spec/support/hello_world_3.2.13/config/initializers/wrap_parameters.rb
690
- - spec/support/hello_world_3.2.13/config/locales/en.yml
691
- - spec/support/hello_world_3.2.13/config/routes.rb
692
- - spec/support/hello_world_3.2.13/db/seeds.rb
693
- - spec/support/hello_world_3.2.13/lib/assets/.gitkeep
694
- - spec/support/hello_world_3.2.13/lib/tasks/.gitkeep
695
- - spec/support/hello_world_3.2.13/log/.gitkeep
696
- - spec/support/hello_world_3.2.13/public/404.html
697
- - spec/support/hello_world_3.2.13/public/422.html
698
- - spec/support/hello_world_3.2.13/public/500.html
699
- - spec/support/hello_world_3.2.13/public/favicon.ico
700
- - spec/support/hello_world_3.2.13/public/index.html
701
- - spec/support/hello_world_3.2.13/public/robots.txt
702
- - spec/support/hello_world_3.2.13/script/rails
703
- - spec/support/hello_world_3.2.13/test/fixtures/.gitkeep
704
- - spec/support/hello_world_3.2.13/test/functional/.gitkeep
705
- - spec/support/hello_world_3.2.13/test/integration/.gitkeep
706
- - spec/support/hello_world_3.2.13/test/performance/browsing_test.rb
707
- - spec/support/hello_world_3.2.13/test/test_helper.rb
708
- - spec/support/hello_world_3.2.13/test/unit/.gitkeep
709
- - spec/support/hello_world_3.2.13/vendor/assets/javascripts/.gitkeep
710
- - spec/support/hello_world_3.2.13/vendor/assets/stylesheets/.gitkeep
711
- - spec/support/hello_world_3.2.13/vendor/plugins/.gitkeep
712
- - spec/support/hello_world_padrino/.components
713
- - spec/support/hello_world_padrino/.gitignore
714
- - spec/support/hello_world_padrino/Gemfile
715
- - spec/support/hello_world_padrino/Rakefile
716
- - spec/support/hello_world_padrino/app/app.rb
717
- - spec/support/hello_world_padrino/config.ru
718
- - spec/support/hello_world_padrino/config/apps.rb
719
- - spec/support/hello_world_padrino/config/boot.rb
720
- - spec/support/hello_world_padrino/config/database.rb
721
- - spec/support/hello_world_padrino/cucumber.yml
722
- - spec/support/hello_world_padrino/db/migrate/001_create_users.rb
723
- - spec/support/hello_world_padrino/dispatcher/app.rb
724
- - spec/support/hello_world_padrino/features/add.feature
725
- - spec/support/hello_world_padrino/features/step_definitions/add_steps.rb
726
- - spec/support/hello_world_padrino/features/support/env.rb
727
- - spec/support/hello_world_padrino/features/support/url.rb
728
- - spec/support/hello_world_padrino/log/app.rb
729
- - spec/support/hello_world_padrino/models/user.rb
730
- - spec/support/hello_world_padrino/public/favicon.ico
731
- - spec/support/hello_world_padrino/public/javascripts/application.js
732
- - spec/support/hello_world_padrino/public/javascripts/jquery-ujs.js
733
- - spec/support/hello_world_padrino/public/javascripts/jquery.js
734
- - spec/support/lorem.txt
735
- - spec/support/sinatra-safe/.gems
736
- - spec/support/sinatra-safe/Gemfile
737
- - spec/support/sinatra-safe/MIT-LICENSE
738
- - spec/support/sinatra-safe/README.rdoc
739
- - spec/support/sinatra-safe/Rakefile
740
- - spec/support/sinatra-safe/application.rb
741
- - spec/support/sinatra-safe/config.ru
742
- - spec/support/sinatra-safe/environment.rb
743
- - spec/support/sinatra-safe/lib/profile.rb
744
- - spec/support/sinatra-safe/public/main.css
745
- - spec/support/sinatra-safe/script/console
746
- - spec/support/sinatra-safe/views/layout.haml
747
- - spec/support/sinatra-safe/views/root.haml
748
- - spec/support/sinatra-vulnerable/.gems
749
- - spec/support/sinatra-vulnerable/Gemfile
750
- - spec/support/sinatra-vulnerable/MIT-LICENSE
751
- - spec/support/sinatra-vulnerable/README.rdoc
752
- - spec/support/sinatra-vulnerable/Rakefile
753
- - spec/support/sinatra-vulnerable/application.rb
754
- - spec/support/sinatra-vulnerable/config.ru
755
- - spec/support/sinatra-vulnerable/disabled.png
756
- - spec/support/sinatra-vulnerable/environment.rb
757
- - spec/support/sinatra-vulnerable/lib/profile.rb
758
- - spec/support/sinatra-vulnerable/public/main.css
759
- - spec/support/sinatra-vulnerable/script/console
760
- - spec/support/sinatra-vulnerable/views/layout.haml
761
- - spec/support/sinatra-vulnerable/views/root.haml
762
- - spec/support/sinatra-vulnerable/views/xss.haml