codesake-dawn 0.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (217) hide show
  1. data/.gitignore +18 -0
  2. data/.rvmrc +48 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +54 -0
  6. data/Rakefile +64 -0
  7. data/Roadmap.md +44 -0
  8. data/bin/dawn +106 -0
  9. data/codesake_dawn.gemspec +25 -0
  10. data/lib/codesake-dawn.rb +7 -0
  11. data/lib/codesake/dawn/engine.rb +144 -0
  12. data/lib/codesake/dawn/kb/basic_check.rb +93 -0
  13. data/lib/codesake/dawn/kb/cve_2011_2931.rb +32 -0
  14. data/lib/codesake/dawn/kb/cve_2012_2660.rb +30 -0
  15. data/lib/codesake/dawn/kb/cve_2012_2661.rb +29 -0
  16. data/lib/codesake/dawn/kb/cve_2012_2694.rb +31 -0
  17. data/lib/codesake/dawn/kb/cve_2012_2695.rb +29 -0
  18. data/lib/codesake/dawn/kb/cve_2012_3465.rb +28 -0
  19. data/lib/codesake/dawn/kb/cve_2012_6496.rb +30 -0
  20. data/lib/codesake/dawn/kb/cve_2012_6497.rb +30 -0
  21. data/lib/codesake/dawn/kb/cve_2013_0155.rb +30 -0
  22. data/lib/codesake/dawn/kb/cve_2013_0269.rb +29 -0
  23. data/lib/codesake/dawn/kb/cve_2013_0333.rb +33 -0
  24. data/lib/codesake/dawn/kb/cve_2013_1800.rb +28 -0
  25. data/lib/codesake/dawn/kb/cve_2013_1855.rb +20 -0
  26. data/lib/codesake/dawn/kb/cve_2013_1857.rb +22 -0
  27. data/lib/codesake/dawn/kb/dependency_check.rb +39 -0
  28. data/lib/codesake/dawn/kb/not_revised_code.rb +24 -0
  29. data/lib/codesake/dawn/kb/pattern_match_check.rb +60 -0
  30. data/lib/codesake/dawn/knowledge_base.rb +105 -0
  31. data/lib/codesake/dawn/rails.rb +17 -0
  32. data/lib/codesake/dawn/sinatra.rb +14 -0
  33. data/lib/codesake/dawn/version.rb +5 -0
  34. data/spec/lib/dawn/codesake_knowledgebase_spec.rb +100 -0
  35. data/spec/lib/dawn/codesake_sinatra_engine_spec.rb +80 -0
  36. data/spec/lib/kb/codesake_cve_2013_1800_spec.rb +66 -0
  37. data/spec/lib/kb/codesake_cve_2013_1855_spec.rb +16 -0
  38. data/spec/lib/kb/cve_2011_2931_spec.rb +7 -0
  39. data/spec/lib/kb/cve_2012_2660_spec.rb +9 -0
  40. data/spec/lib/kb/cve_2012_2661_spec.rb +7 -0
  41. data/spec/lib/kb/cve_2012_2694_spec.rb +7 -0
  42. data/spec/lib/kb/cve_2012_2695_spec.rb +7 -0
  43. data/spec/lib/kb/cve_2012_3465_spec.rb +7 -0
  44. data/spec/lib/kb/cve_2012_6496_spec.rb +7 -0
  45. data/spec/lib/kb/cve_2012_6497_spec.rb +7 -0
  46. data/spec/lib/kb/cve_2013_0155_spec.rb +7 -0
  47. data/spec/lib/kb/cve_2013_0269_spec.rb +7 -0
  48. data/spec/lib/kb/cve_2013_0333_spec.rb +7 -0
  49. data/spec/lib/kb/cve_2013_1857_spec.rb +13 -0
  50. data/spec/spec_helper.rb +1 -0
  51. data/spec/support/hello_world_3.0.19/.gitignore +4 -0
  52. data/spec/support/hello_world_3.0.19/Gemfile +31 -0
  53. data/spec/support/hello_world_3.0.19/README +256 -0
  54. data/spec/support/hello_world_3.0.19/Rakefile +7 -0
  55. data/spec/support/hello_world_3.0.19/app/controllers/application_controller.rb +3 -0
  56. data/spec/support/hello_world_3.0.19/app/helpers/application_helper.rb +2 -0
  57. data/spec/support/hello_world_3.0.19/app/views/layouts/application.html.erb +14 -0
  58. data/spec/support/hello_world_3.0.19/config.ru +4 -0
  59. data/spec/support/hello_world_3.0.19/config/application.rb +42 -0
  60. data/spec/support/hello_world_3.0.19/config/boot.rb +6 -0
  61. data/spec/support/hello_world_3.0.19/config/database.yml +22 -0
  62. data/spec/support/hello_world_3.0.19/config/environment.rb +5 -0
  63. data/spec/support/hello_world_3.0.19/config/environments/development.rb +26 -0
  64. data/spec/support/hello_world_3.0.19/config/environments/production.rb +49 -0
  65. data/spec/support/hello_world_3.0.19/config/environments/test.rb +35 -0
  66. data/spec/support/hello_world_3.0.19/config/initializers/backtrace_silencers.rb +7 -0
  67. data/spec/support/hello_world_3.0.19/config/initializers/inflections.rb +10 -0
  68. data/spec/support/hello_world_3.0.19/config/initializers/mime_types.rb +5 -0
  69. data/spec/support/hello_world_3.0.19/config/initializers/secret_token.rb +7 -0
  70. data/spec/support/hello_world_3.0.19/config/initializers/session_store.rb +8 -0
  71. data/spec/support/hello_world_3.0.19/config/locales/en.yml +5 -0
  72. data/spec/support/hello_world_3.0.19/config/routes.rb +58 -0
  73. data/spec/support/hello_world_3.0.19/db/seeds.rb +7 -0
  74. data/spec/support/hello_world_3.0.19/lib/tasks/.gitkeep +0 -0
  75. data/spec/support/hello_world_3.0.19/public/404.html +26 -0
  76. data/spec/support/hello_world_3.0.19/public/422.html +26 -0
  77. data/spec/support/hello_world_3.0.19/public/500.html +26 -0
  78. data/spec/support/hello_world_3.0.19/public/favicon.ico +0 -0
  79. data/spec/support/hello_world_3.0.19/public/images/rails.png +0 -0
  80. data/spec/support/hello_world_3.0.19/public/index.html +239 -0
  81. data/spec/support/hello_world_3.0.19/public/javascripts/application.js +2 -0
  82. data/spec/support/hello_world_3.0.19/public/javascripts/controls.js +965 -0
  83. data/spec/support/hello_world_3.0.19/public/javascripts/dragdrop.js +974 -0
  84. data/spec/support/hello_world_3.0.19/public/javascripts/effects.js +1123 -0
  85. data/spec/support/hello_world_3.0.19/public/javascripts/prototype.js +6001 -0
  86. data/spec/support/hello_world_3.0.19/public/javascripts/rails.js +202 -0
  87. data/spec/support/hello_world_3.0.19/public/robots.txt +5 -0
  88. data/spec/support/hello_world_3.0.19/public/stylesheets/.gitkeep +0 -0
  89. data/spec/support/hello_world_3.0.19/script/rails +6 -0
  90. data/spec/support/hello_world_3.0.19/test/performance/browsing_test.rb +9 -0
  91. data/spec/support/hello_world_3.0.19/test/test_helper.rb +13 -0
  92. data/spec/support/hello_world_3.0.19/vendor/plugins/.gitkeep +0 -0
  93. data/spec/support/hello_world_3.1.0/.gitignore +5 -0
  94. data/spec/support/hello_world_3.1.0/Gemfile +33 -0
  95. data/spec/support/hello_world_3.1.0/README +261 -0
  96. data/spec/support/hello_world_3.1.0/Rakefile +7 -0
  97. data/spec/support/hello_world_3.1.0/app/assets/images/rails.png +0 -0
  98. data/spec/support/hello_world_3.1.0/app/assets/javascripts/application.js +9 -0
  99. data/spec/support/hello_world_3.1.0/app/assets/stylesheets/application.css +7 -0
  100. data/spec/support/hello_world_3.1.0/app/controllers/application_controller.rb +3 -0
  101. data/spec/support/hello_world_3.1.0/app/helpers/application_helper.rb +2 -0
  102. data/spec/support/hello_world_3.1.0/app/mailers/.gitkeep +0 -0
  103. data/spec/support/hello_world_3.1.0/app/models/.gitkeep +0 -0
  104. data/spec/support/hello_world_3.1.0/app/views/layouts/application.html.erb +14 -0
  105. data/spec/support/hello_world_3.1.0/config.ru +4 -0
  106. data/spec/support/hello_world_3.1.0/config/application.rb +48 -0
  107. data/spec/support/hello_world_3.1.0/config/boot.rb +6 -0
  108. data/spec/support/hello_world_3.1.0/config/database.yml +25 -0
  109. data/spec/support/hello_world_3.1.0/config/environment.rb +5 -0
  110. data/spec/support/hello_world_3.1.0/config/environments/development.rb +30 -0
  111. data/spec/support/hello_world_3.1.0/config/environments/production.rb +60 -0
  112. data/spec/support/hello_world_3.1.0/config/environments/test.rb +42 -0
  113. data/spec/support/hello_world_3.1.0/config/initializers/backtrace_silencers.rb +7 -0
  114. data/spec/support/hello_world_3.1.0/config/initializers/inflections.rb +10 -0
  115. data/spec/support/hello_world_3.1.0/config/initializers/mime_types.rb +5 -0
  116. data/spec/support/hello_world_3.1.0/config/initializers/secret_token.rb +7 -0
  117. data/spec/support/hello_world_3.1.0/config/initializers/session_store.rb +8 -0
  118. data/spec/support/hello_world_3.1.0/config/initializers/wrap_parameters.rb +14 -0
  119. data/spec/support/hello_world_3.1.0/config/locales/en.yml +5 -0
  120. data/spec/support/hello_world_3.1.0/config/routes.rb +58 -0
  121. data/spec/support/hello_world_3.1.0/db/seeds.rb +7 -0
  122. data/spec/support/hello_world_3.1.0/lib/assets/.gitkeep +0 -0
  123. data/spec/support/hello_world_3.1.0/lib/tasks/.gitkeep +0 -0
  124. data/spec/support/hello_world_3.1.0/log/.gitkeep +0 -0
  125. data/spec/support/hello_world_3.1.0/public/404.html +26 -0
  126. data/spec/support/hello_world_3.1.0/public/422.html +26 -0
  127. data/spec/support/hello_world_3.1.0/public/500.html +26 -0
  128. data/spec/support/hello_world_3.1.0/public/favicon.ico +0 -0
  129. data/spec/support/hello_world_3.1.0/public/index.html +241 -0
  130. data/spec/support/hello_world_3.1.0/public/robots.txt +5 -0
  131. data/spec/support/hello_world_3.1.0/script/rails +6 -0
  132. data/spec/support/hello_world_3.1.0/test/fixtures/.gitkeep +0 -0
  133. data/spec/support/hello_world_3.1.0/test/functional/.gitkeep +0 -0
  134. data/spec/support/hello_world_3.1.0/test/integration/.gitkeep +0 -0
  135. data/spec/support/hello_world_3.1.0/test/performance/browsing_test.rb +12 -0
  136. data/spec/support/hello_world_3.1.0/test/test_helper.rb +13 -0
  137. data/spec/support/hello_world_3.1.0/test/unit/.gitkeep +0 -0
  138. data/spec/support/hello_world_3.1.0/vendor/assets/stylesheets/.gitkeep +0 -0
  139. data/spec/support/hello_world_3.1.0/vendor/plugins/.gitkeep +0 -0
  140. data/spec/support/hello_world_3.2.13/.gitignore +15 -0
  141. data/spec/support/hello_world_3.2.13/Gemfile +38 -0
  142. data/spec/support/hello_world_3.2.13/README.rdoc +261 -0
  143. data/spec/support/hello_world_3.2.13/Rakefile +7 -0
  144. data/spec/support/hello_world_3.2.13/app/assets/images/rails.png +0 -0
  145. data/spec/support/hello_world_3.2.13/app/assets/javascripts/application.js +15 -0
  146. data/spec/support/hello_world_3.2.13/app/assets/stylesheets/application.css +13 -0
  147. data/spec/support/hello_world_3.2.13/app/controllers/application_controller.rb +3 -0
  148. data/spec/support/hello_world_3.2.13/app/helpers/application_helper.rb +2 -0
  149. data/spec/support/hello_world_3.2.13/app/mailers/.gitkeep +0 -0
  150. data/spec/support/hello_world_3.2.13/app/models/.gitkeep +0 -0
  151. data/spec/support/hello_world_3.2.13/app/views/layouts/application.html.erb +14 -0
  152. data/spec/support/hello_world_3.2.13/config.ru +4 -0
  153. data/spec/support/hello_world_3.2.13/config/application.rb +62 -0
  154. data/spec/support/hello_world_3.2.13/config/boot.rb +6 -0
  155. data/spec/support/hello_world_3.2.13/config/database.yml +25 -0
  156. data/spec/support/hello_world_3.2.13/config/environment.rb +5 -0
  157. data/spec/support/hello_world_3.2.13/config/environments/development.rb +37 -0
  158. data/spec/support/hello_world_3.2.13/config/environments/production.rb +67 -0
  159. data/spec/support/hello_world_3.2.13/config/environments/test.rb +37 -0
  160. data/spec/support/hello_world_3.2.13/config/initializers/backtrace_silencers.rb +7 -0
  161. data/spec/support/hello_world_3.2.13/config/initializers/inflections.rb +15 -0
  162. data/spec/support/hello_world_3.2.13/config/initializers/mime_types.rb +5 -0
  163. data/spec/support/hello_world_3.2.13/config/initializers/secret_token.rb +7 -0
  164. data/spec/support/hello_world_3.2.13/config/initializers/session_store.rb +8 -0
  165. data/spec/support/hello_world_3.2.13/config/initializers/wrap_parameters.rb +14 -0
  166. data/spec/support/hello_world_3.2.13/config/locales/en.yml +5 -0
  167. data/spec/support/hello_world_3.2.13/config/routes.rb +58 -0
  168. data/spec/support/hello_world_3.2.13/db/seeds.rb +7 -0
  169. data/spec/support/hello_world_3.2.13/lib/assets/.gitkeep +0 -0
  170. data/spec/support/hello_world_3.2.13/lib/tasks/.gitkeep +0 -0
  171. data/spec/support/hello_world_3.2.13/log/.gitkeep +0 -0
  172. data/spec/support/hello_world_3.2.13/public/404.html +26 -0
  173. data/spec/support/hello_world_3.2.13/public/422.html +26 -0
  174. data/spec/support/hello_world_3.2.13/public/500.html +25 -0
  175. data/spec/support/hello_world_3.2.13/public/favicon.ico +0 -0
  176. data/spec/support/hello_world_3.2.13/public/index.html +241 -0
  177. data/spec/support/hello_world_3.2.13/public/robots.txt +5 -0
  178. data/spec/support/hello_world_3.2.13/script/rails +6 -0
  179. data/spec/support/hello_world_3.2.13/test/fixtures/.gitkeep +0 -0
  180. data/spec/support/hello_world_3.2.13/test/functional/.gitkeep +0 -0
  181. data/spec/support/hello_world_3.2.13/test/integration/.gitkeep +0 -0
  182. data/spec/support/hello_world_3.2.13/test/performance/browsing_test.rb +12 -0
  183. data/spec/support/hello_world_3.2.13/test/test_helper.rb +13 -0
  184. data/spec/support/hello_world_3.2.13/test/unit/.gitkeep +0 -0
  185. data/spec/support/hello_world_3.2.13/vendor/assets/javascripts/.gitkeep +0 -0
  186. data/spec/support/hello_world_3.2.13/vendor/assets/stylesheets/.gitkeep +0 -0
  187. data/spec/support/hello_world_3.2.13/vendor/plugins/.gitkeep +0 -0
  188. data/spec/support/lorem.txt +23 -0
  189. data/spec/support/sinatra-safe/.gems +4 -0
  190. data/spec/support/sinatra-safe/.gitignore +6 -0
  191. data/spec/support/sinatra-safe/Gemfile +18 -0
  192. data/spec/support/sinatra-safe/MIT-LICENSE +20 -0
  193. data/spec/support/sinatra-safe/README.rdoc +35 -0
  194. data/spec/support/sinatra-safe/Rakefile +32 -0
  195. data/spec/support/sinatra-safe/application.rb +23 -0
  196. data/spec/support/sinatra-safe/config.ru +11 -0
  197. data/spec/support/sinatra-safe/environment.rb +25 -0
  198. data/spec/support/sinatra-safe/lib/profile.rb +11 -0
  199. data/spec/support/sinatra-safe/public/main.css +52 -0
  200. data/spec/support/sinatra-safe/script/console +16 -0
  201. data/spec/support/sinatra-safe/views/layout.haml +14 -0
  202. data/spec/support/sinatra-safe/views/root.haml +4 -0
  203. data/spec/support/sinatra-vulnerable/.gems +4 -0
  204. data/spec/support/sinatra-vulnerable/.gitignore +6 -0
  205. data/spec/support/sinatra-vulnerable/Gemfile +17 -0
  206. data/spec/support/sinatra-vulnerable/MIT-LICENSE +20 -0
  207. data/spec/support/sinatra-vulnerable/README.rdoc +35 -0
  208. data/spec/support/sinatra-vulnerable/Rakefile +32 -0
  209. data/spec/support/sinatra-vulnerable/application.rb +28 -0
  210. data/spec/support/sinatra-vulnerable/config.ru +11 -0
  211. data/spec/support/sinatra-vulnerable/environment.rb +25 -0
  212. data/spec/support/sinatra-vulnerable/lib/profile.rb +11 -0
  213. data/spec/support/sinatra-vulnerable/public/main.css +52 -0
  214. data/spec/support/sinatra-vulnerable/script/console +16 -0
  215. data/spec/support/sinatra-vulnerable/views/layout.haml +14 -0
  216. data/spec/support/sinatra-vulnerable/views/root.haml +4 -0
  217. metadata +519 -0
@@ -0,0 +1,11 @@
1
+ # example model file
2
+ class Profile
3
+ include DataMapper::Resource
4
+
5
+ property :id, Serial
6
+ property :name, String
7
+ property :created_at, DateTime
8
+ property :updated_at, DateTime
9
+
10
+ validates_presence_of :name
11
+ end
@@ -0,0 +1,52 @@
1
+ body {
2
+ background: #FFF;
3
+ color: #1B1B1B;
4
+ font-family: Verdana, Arial, Helvetica, sans-serif;
5
+ }
6
+ #container {
7
+ margin: 0 auto;
8
+ width: 800px;
9
+ }
10
+ #header {
11
+ padding: 0.5em 0 0 0;
12
+ margin: 0;
13
+ text-align: center;
14
+ border-bottom: 3px solid #000;
15
+ }
16
+ #content {
17
+ padding: 0;
18
+ margin: 0;
19
+ }
20
+ #footer {
21
+ padding: 0;
22
+ margin: 0;
23
+ font-size: 0.7em;
24
+ text-align: center;
25
+ border-top: 3px solid #000;
26
+ }
27
+ h1, h2, h3, h4, h5, h6 {
28
+ margin-top: 0em;
29
+ margin-bottom: .25em;
30
+ font-weight: bold;
31
+ }
32
+ h1 { font-size: 2.2em; }
33
+ h2 { font-size: 1.6em; }
34
+ h3 { font-size: 1.4em; }
35
+ h4 { font-size: 1.3em; }
36
+ h5 { font-size: 1.2em; }
37
+ h6 { font-size: 1.1em; }
38
+ p {
39
+ margin-bottom: 1em;
40
+ line-height: 1.3;
41
+ }
42
+ a {
43
+ color: #095EAE;
44
+ font-weight: bold;
45
+ text-decoration: none;
46
+ }
47
+ a:hover {
48
+ text-decoration: underline;
49
+ }
50
+ #logo a:hover {
51
+ text-decoration: none;
52
+ }
@@ -0,0 +1,16 @@
1
+ #! /usr/bin/env ruby
2
+ # This console script adapted from:rake
3
+ # http://barkingiguana.com/blog/2009/01/25/scriptconsole-for-your-application/
4
+
5
+ libs = []
6
+ libs << "irb/completion"
7
+ libs << File.dirname(__FILE__) + '/../environment.rb'
8
+
9
+ command_line = []
10
+ command_line << "irb"
11
+ command_line << libs.inject("") { |acc, lib| acc + %( -r "#{lib}") }
12
+ command_line << "--simple-prompt"
13
+ command = command_line.join(" ")
14
+
15
+ puts "Welcome to the sinatra console interface."
16
+ exec command
@@ -0,0 +1,14 @@
1
+ !!!
2
+ %html
3
+ %head
4
+ %title= @title || SiteConfig.title
5
+ %link{:href => '/main.css', :rel => 'stylesheet', :type => 'text/css'}
6
+ %body
7
+ #container
8
+ #header
9
+ #logo
10
+ %h1
11
+ %a{:href => '/'}= SiteConfig.title
12
+ #content= yield
13
+ #footer
14
+ %p#legal= "&mdash; &copy; #{Time.now.strftime('%Y')} #{SiteConfig.author} &mdash;"
@@ -0,0 +1,4 @@
1
+ %h2 Main Page
2
+ %p Here is some text.
3
+ %p Here is a <a href='/'>link</a>.
4
+ %p ttys!
metadata ADDED
@@ -0,0 +1,519 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: codesake-dawn
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.50'
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Paolo Perego
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-05-13 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: codesake_commons
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>'
20
+ - !ruby/object:Gem::Version
21
+ version: 0.50.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>'
28
+ - !ruby/object:Gem::Version
29
+ version: 0.50.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: cvss
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rake
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rspec
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ description: dawn is a security static source code analyzer for web applications written
79
+ in ruby. It supports major MVC frameworks like sinatra, padrino and ruby on rails.
80
+ dawn output is a list of security vulnerabilities affecting your code with a suggestion
81
+ on how to mitigate all of them.
82
+ email:
83
+ - thesp0nge@gmail.com
84
+ executables:
85
+ - dawn
86
+ extensions: []
87
+ extra_rdoc_files: []
88
+ files:
89
+ - .gitignore
90
+ - .rvmrc
91
+ - Gemfile
92
+ - LICENSE.txt
93
+ - README.md
94
+ - Rakefile
95
+ - Roadmap.md
96
+ - bin/dawn
97
+ - codesake_dawn.gemspec
98
+ - lib/codesake-dawn.rb
99
+ - lib/codesake/dawn/engine.rb
100
+ - lib/codesake/dawn/kb/basic_check.rb
101
+ - lib/codesake/dawn/kb/cve_2011_2931.rb
102
+ - lib/codesake/dawn/kb/cve_2012_2660.rb
103
+ - lib/codesake/dawn/kb/cve_2012_2661.rb
104
+ - lib/codesake/dawn/kb/cve_2012_2694.rb
105
+ - lib/codesake/dawn/kb/cve_2012_2695.rb
106
+ - lib/codesake/dawn/kb/cve_2012_3465.rb
107
+ - lib/codesake/dawn/kb/cve_2012_6496.rb
108
+ - lib/codesake/dawn/kb/cve_2012_6497.rb
109
+ - lib/codesake/dawn/kb/cve_2013_0155.rb
110
+ - lib/codesake/dawn/kb/cve_2013_0269.rb
111
+ - lib/codesake/dawn/kb/cve_2013_0333.rb
112
+ - lib/codesake/dawn/kb/cve_2013_1800.rb
113
+ - lib/codesake/dawn/kb/cve_2013_1855.rb
114
+ - lib/codesake/dawn/kb/cve_2013_1857.rb
115
+ - lib/codesake/dawn/kb/dependency_check.rb
116
+ - lib/codesake/dawn/kb/not_revised_code.rb
117
+ - lib/codesake/dawn/kb/pattern_match_check.rb
118
+ - lib/codesake/dawn/knowledge_base.rb
119
+ - lib/codesake/dawn/rails.rb
120
+ - lib/codesake/dawn/sinatra.rb
121
+ - lib/codesake/dawn/version.rb
122
+ - spec/lib/dawn/codesake_knowledgebase_spec.rb
123
+ - spec/lib/dawn/codesake_sinatra_engine_spec.rb
124
+ - spec/lib/kb/codesake_cve_2013_1800_spec.rb
125
+ - spec/lib/kb/codesake_cve_2013_1855_spec.rb
126
+ - spec/lib/kb/cve_2011_2931_spec.rb
127
+ - spec/lib/kb/cve_2012_2660_spec.rb
128
+ - spec/lib/kb/cve_2012_2661_spec.rb
129
+ - spec/lib/kb/cve_2012_2694_spec.rb
130
+ - spec/lib/kb/cve_2012_2695_spec.rb
131
+ - spec/lib/kb/cve_2012_3465_spec.rb
132
+ - spec/lib/kb/cve_2012_6496_spec.rb
133
+ - spec/lib/kb/cve_2012_6497_spec.rb
134
+ - spec/lib/kb/cve_2013_0155_spec.rb
135
+ - spec/lib/kb/cve_2013_0269_spec.rb
136
+ - spec/lib/kb/cve_2013_0333_spec.rb
137
+ - spec/lib/kb/cve_2013_1857_spec.rb
138
+ - spec/spec_helper.rb
139
+ - spec/support/hello_world_3.0.19/.gitignore
140
+ - spec/support/hello_world_3.0.19/Gemfile
141
+ - spec/support/hello_world_3.0.19/README
142
+ - spec/support/hello_world_3.0.19/Rakefile
143
+ - spec/support/hello_world_3.0.19/app/controllers/application_controller.rb
144
+ - spec/support/hello_world_3.0.19/app/helpers/application_helper.rb
145
+ - spec/support/hello_world_3.0.19/app/views/layouts/application.html.erb
146
+ - spec/support/hello_world_3.0.19/config.ru
147
+ - spec/support/hello_world_3.0.19/config/application.rb
148
+ - spec/support/hello_world_3.0.19/config/boot.rb
149
+ - spec/support/hello_world_3.0.19/config/database.yml
150
+ - spec/support/hello_world_3.0.19/config/environment.rb
151
+ - spec/support/hello_world_3.0.19/config/environments/development.rb
152
+ - spec/support/hello_world_3.0.19/config/environments/production.rb
153
+ - spec/support/hello_world_3.0.19/config/environments/test.rb
154
+ - spec/support/hello_world_3.0.19/config/initializers/backtrace_silencers.rb
155
+ - spec/support/hello_world_3.0.19/config/initializers/inflections.rb
156
+ - spec/support/hello_world_3.0.19/config/initializers/mime_types.rb
157
+ - spec/support/hello_world_3.0.19/config/initializers/secret_token.rb
158
+ - spec/support/hello_world_3.0.19/config/initializers/session_store.rb
159
+ - spec/support/hello_world_3.0.19/config/locales/en.yml
160
+ - spec/support/hello_world_3.0.19/config/routes.rb
161
+ - spec/support/hello_world_3.0.19/db/seeds.rb
162
+ - spec/support/hello_world_3.0.19/lib/tasks/.gitkeep
163
+ - spec/support/hello_world_3.0.19/public/404.html
164
+ - spec/support/hello_world_3.0.19/public/422.html
165
+ - spec/support/hello_world_3.0.19/public/500.html
166
+ - spec/support/hello_world_3.0.19/public/favicon.ico
167
+ - spec/support/hello_world_3.0.19/public/images/rails.png
168
+ - spec/support/hello_world_3.0.19/public/index.html
169
+ - spec/support/hello_world_3.0.19/public/javascripts/application.js
170
+ - spec/support/hello_world_3.0.19/public/javascripts/controls.js
171
+ - spec/support/hello_world_3.0.19/public/javascripts/dragdrop.js
172
+ - spec/support/hello_world_3.0.19/public/javascripts/effects.js
173
+ - spec/support/hello_world_3.0.19/public/javascripts/prototype.js
174
+ - spec/support/hello_world_3.0.19/public/javascripts/rails.js
175
+ - spec/support/hello_world_3.0.19/public/robots.txt
176
+ - spec/support/hello_world_3.0.19/public/stylesheets/.gitkeep
177
+ - spec/support/hello_world_3.0.19/script/rails
178
+ - spec/support/hello_world_3.0.19/test/performance/browsing_test.rb
179
+ - spec/support/hello_world_3.0.19/test/test_helper.rb
180
+ - spec/support/hello_world_3.0.19/vendor/plugins/.gitkeep
181
+ - spec/support/hello_world_3.1.0/.gitignore
182
+ - spec/support/hello_world_3.1.0/Gemfile
183
+ - spec/support/hello_world_3.1.0/README
184
+ - spec/support/hello_world_3.1.0/Rakefile
185
+ - spec/support/hello_world_3.1.0/app/assets/images/rails.png
186
+ - spec/support/hello_world_3.1.0/app/assets/javascripts/application.js
187
+ - spec/support/hello_world_3.1.0/app/assets/stylesheets/application.css
188
+ - spec/support/hello_world_3.1.0/app/controllers/application_controller.rb
189
+ - spec/support/hello_world_3.1.0/app/helpers/application_helper.rb
190
+ - spec/support/hello_world_3.1.0/app/mailers/.gitkeep
191
+ - spec/support/hello_world_3.1.0/app/models/.gitkeep
192
+ - spec/support/hello_world_3.1.0/app/views/layouts/application.html.erb
193
+ - spec/support/hello_world_3.1.0/config.ru
194
+ - spec/support/hello_world_3.1.0/config/application.rb
195
+ - spec/support/hello_world_3.1.0/config/boot.rb
196
+ - spec/support/hello_world_3.1.0/config/database.yml
197
+ - spec/support/hello_world_3.1.0/config/environment.rb
198
+ - spec/support/hello_world_3.1.0/config/environments/development.rb
199
+ - spec/support/hello_world_3.1.0/config/environments/production.rb
200
+ - spec/support/hello_world_3.1.0/config/environments/test.rb
201
+ - spec/support/hello_world_3.1.0/config/initializers/backtrace_silencers.rb
202
+ - spec/support/hello_world_3.1.0/config/initializers/inflections.rb
203
+ - spec/support/hello_world_3.1.0/config/initializers/mime_types.rb
204
+ - spec/support/hello_world_3.1.0/config/initializers/secret_token.rb
205
+ - spec/support/hello_world_3.1.0/config/initializers/session_store.rb
206
+ - spec/support/hello_world_3.1.0/config/initializers/wrap_parameters.rb
207
+ - spec/support/hello_world_3.1.0/config/locales/en.yml
208
+ - spec/support/hello_world_3.1.0/config/routes.rb
209
+ - spec/support/hello_world_3.1.0/db/seeds.rb
210
+ - spec/support/hello_world_3.1.0/lib/assets/.gitkeep
211
+ - spec/support/hello_world_3.1.0/lib/tasks/.gitkeep
212
+ - spec/support/hello_world_3.1.0/log/.gitkeep
213
+ - spec/support/hello_world_3.1.0/public/404.html
214
+ - spec/support/hello_world_3.1.0/public/422.html
215
+ - spec/support/hello_world_3.1.0/public/500.html
216
+ - spec/support/hello_world_3.1.0/public/favicon.ico
217
+ - spec/support/hello_world_3.1.0/public/index.html
218
+ - spec/support/hello_world_3.1.0/public/robots.txt
219
+ - spec/support/hello_world_3.1.0/script/rails
220
+ - spec/support/hello_world_3.1.0/test/fixtures/.gitkeep
221
+ - spec/support/hello_world_3.1.0/test/functional/.gitkeep
222
+ - spec/support/hello_world_3.1.0/test/integration/.gitkeep
223
+ - spec/support/hello_world_3.1.0/test/performance/browsing_test.rb
224
+ - spec/support/hello_world_3.1.0/test/test_helper.rb
225
+ - spec/support/hello_world_3.1.0/test/unit/.gitkeep
226
+ - spec/support/hello_world_3.1.0/vendor/assets/stylesheets/.gitkeep
227
+ - spec/support/hello_world_3.1.0/vendor/plugins/.gitkeep
228
+ - spec/support/hello_world_3.2.13/.gitignore
229
+ - spec/support/hello_world_3.2.13/Gemfile
230
+ - spec/support/hello_world_3.2.13/README.rdoc
231
+ - spec/support/hello_world_3.2.13/Rakefile
232
+ - spec/support/hello_world_3.2.13/app/assets/images/rails.png
233
+ - spec/support/hello_world_3.2.13/app/assets/javascripts/application.js
234
+ - spec/support/hello_world_3.2.13/app/assets/stylesheets/application.css
235
+ - spec/support/hello_world_3.2.13/app/controllers/application_controller.rb
236
+ - spec/support/hello_world_3.2.13/app/helpers/application_helper.rb
237
+ - spec/support/hello_world_3.2.13/app/mailers/.gitkeep
238
+ - spec/support/hello_world_3.2.13/app/models/.gitkeep
239
+ - spec/support/hello_world_3.2.13/app/views/layouts/application.html.erb
240
+ - spec/support/hello_world_3.2.13/config.ru
241
+ - spec/support/hello_world_3.2.13/config/application.rb
242
+ - spec/support/hello_world_3.2.13/config/boot.rb
243
+ - spec/support/hello_world_3.2.13/config/database.yml
244
+ - spec/support/hello_world_3.2.13/config/environment.rb
245
+ - spec/support/hello_world_3.2.13/config/environments/development.rb
246
+ - spec/support/hello_world_3.2.13/config/environments/production.rb
247
+ - spec/support/hello_world_3.2.13/config/environments/test.rb
248
+ - spec/support/hello_world_3.2.13/config/initializers/backtrace_silencers.rb
249
+ - spec/support/hello_world_3.2.13/config/initializers/inflections.rb
250
+ - spec/support/hello_world_3.2.13/config/initializers/mime_types.rb
251
+ - spec/support/hello_world_3.2.13/config/initializers/secret_token.rb
252
+ - spec/support/hello_world_3.2.13/config/initializers/session_store.rb
253
+ - spec/support/hello_world_3.2.13/config/initializers/wrap_parameters.rb
254
+ - spec/support/hello_world_3.2.13/config/locales/en.yml
255
+ - spec/support/hello_world_3.2.13/config/routes.rb
256
+ - spec/support/hello_world_3.2.13/db/seeds.rb
257
+ - spec/support/hello_world_3.2.13/lib/assets/.gitkeep
258
+ - spec/support/hello_world_3.2.13/lib/tasks/.gitkeep
259
+ - spec/support/hello_world_3.2.13/log/.gitkeep
260
+ - spec/support/hello_world_3.2.13/public/404.html
261
+ - spec/support/hello_world_3.2.13/public/422.html
262
+ - spec/support/hello_world_3.2.13/public/500.html
263
+ - spec/support/hello_world_3.2.13/public/favicon.ico
264
+ - spec/support/hello_world_3.2.13/public/index.html
265
+ - spec/support/hello_world_3.2.13/public/robots.txt
266
+ - spec/support/hello_world_3.2.13/script/rails
267
+ - spec/support/hello_world_3.2.13/test/fixtures/.gitkeep
268
+ - spec/support/hello_world_3.2.13/test/functional/.gitkeep
269
+ - spec/support/hello_world_3.2.13/test/integration/.gitkeep
270
+ - spec/support/hello_world_3.2.13/test/performance/browsing_test.rb
271
+ - spec/support/hello_world_3.2.13/test/test_helper.rb
272
+ - spec/support/hello_world_3.2.13/test/unit/.gitkeep
273
+ - spec/support/hello_world_3.2.13/vendor/assets/javascripts/.gitkeep
274
+ - spec/support/hello_world_3.2.13/vendor/assets/stylesheets/.gitkeep
275
+ - spec/support/hello_world_3.2.13/vendor/plugins/.gitkeep
276
+ - spec/support/lorem.txt
277
+ - spec/support/sinatra-safe/.gems
278
+ - spec/support/sinatra-safe/.gitignore
279
+ - spec/support/sinatra-safe/Gemfile
280
+ - spec/support/sinatra-safe/MIT-LICENSE
281
+ - spec/support/sinatra-safe/README.rdoc
282
+ - spec/support/sinatra-safe/Rakefile
283
+ - spec/support/sinatra-safe/application.rb
284
+ - spec/support/sinatra-safe/config.ru
285
+ - spec/support/sinatra-safe/environment.rb
286
+ - spec/support/sinatra-safe/lib/profile.rb
287
+ - spec/support/sinatra-safe/public/main.css
288
+ - spec/support/sinatra-safe/script/console
289
+ - spec/support/sinatra-safe/views/layout.haml
290
+ - spec/support/sinatra-safe/views/root.haml
291
+ - spec/support/sinatra-vulnerable/.gems
292
+ - spec/support/sinatra-vulnerable/.gitignore
293
+ - spec/support/sinatra-vulnerable/Gemfile
294
+ - spec/support/sinatra-vulnerable/MIT-LICENSE
295
+ - spec/support/sinatra-vulnerable/README.rdoc
296
+ - spec/support/sinatra-vulnerable/Rakefile
297
+ - spec/support/sinatra-vulnerable/application.rb
298
+ - spec/support/sinatra-vulnerable/config.ru
299
+ - spec/support/sinatra-vulnerable/environment.rb
300
+ - spec/support/sinatra-vulnerable/lib/profile.rb
301
+ - spec/support/sinatra-vulnerable/public/main.css
302
+ - spec/support/sinatra-vulnerable/script/console
303
+ - spec/support/sinatra-vulnerable/views/layout.haml
304
+ - spec/support/sinatra-vulnerable/views/root.haml
305
+ homepage: http://codesake.com
306
+ licenses: []
307
+ post_install_message:
308
+ rdoc_options: []
309
+ require_paths:
310
+ - lib
311
+ required_ruby_version: !ruby/object:Gem::Requirement
312
+ none: false
313
+ requirements:
314
+ - - ! '>='
315
+ - !ruby/object:Gem::Version
316
+ version: '0'
317
+ segments:
318
+ - 0
319
+ hash: 3223005256600909470
320
+ required_rubygems_version: !ruby/object:Gem::Requirement
321
+ none: false
322
+ requirements:
323
+ - - ! '>='
324
+ - !ruby/object:Gem::Version
325
+ version: '0'
326
+ segments:
327
+ - 0
328
+ hash: 3223005256600909470
329
+ requirements: []
330
+ rubyforge_project:
331
+ rubygems_version: 1.8.24
332
+ signing_key:
333
+ specification_version: 3
334
+ summary: dawn is a security static source code analyzer for sinatra, padrino and ruby
335
+ on rails web applicartions.
336
+ test_files:
337
+ - spec/lib/dawn/codesake_knowledgebase_spec.rb
338
+ - spec/lib/dawn/codesake_sinatra_engine_spec.rb
339
+ - spec/lib/kb/codesake_cve_2013_1800_spec.rb
340
+ - spec/lib/kb/codesake_cve_2013_1855_spec.rb
341
+ - spec/lib/kb/cve_2011_2931_spec.rb
342
+ - spec/lib/kb/cve_2012_2660_spec.rb
343
+ - spec/lib/kb/cve_2012_2661_spec.rb
344
+ - spec/lib/kb/cve_2012_2694_spec.rb
345
+ - spec/lib/kb/cve_2012_2695_spec.rb
346
+ - spec/lib/kb/cve_2012_3465_spec.rb
347
+ - spec/lib/kb/cve_2012_6496_spec.rb
348
+ - spec/lib/kb/cve_2012_6497_spec.rb
349
+ - spec/lib/kb/cve_2013_0155_spec.rb
350
+ - spec/lib/kb/cve_2013_0269_spec.rb
351
+ - spec/lib/kb/cve_2013_0333_spec.rb
352
+ - spec/lib/kb/cve_2013_1857_spec.rb
353
+ - spec/spec_helper.rb
354
+ - spec/support/hello_world_3.0.19/.gitignore
355
+ - spec/support/hello_world_3.0.19/Gemfile
356
+ - spec/support/hello_world_3.0.19/README
357
+ - spec/support/hello_world_3.0.19/Rakefile
358
+ - spec/support/hello_world_3.0.19/app/controllers/application_controller.rb
359
+ - spec/support/hello_world_3.0.19/app/helpers/application_helper.rb
360
+ - spec/support/hello_world_3.0.19/app/views/layouts/application.html.erb
361
+ - spec/support/hello_world_3.0.19/config.ru
362
+ - spec/support/hello_world_3.0.19/config/application.rb
363
+ - spec/support/hello_world_3.0.19/config/boot.rb
364
+ - spec/support/hello_world_3.0.19/config/database.yml
365
+ - spec/support/hello_world_3.0.19/config/environment.rb
366
+ - spec/support/hello_world_3.0.19/config/environments/development.rb
367
+ - spec/support/hello_world_3.0.19/config/environments/production.rb
368
+ - spec/support/hello_world_3.0.19/config/environments/test.rb
369
+ - spec/support/hello_world_3.0.19/config/initializers/backtrace_silencers.rb
370
+ - spec/support/hello_world_3.0.19/config/initializers/inflections.rb
371
+ - spec/support/hello_world_3.0.19/config/initializers/mime_types.rb
372
+ - spec/support/hello_world_3.0.19/config/initializers/secret_token.rb
373
+ - spec/support/hello_world_3.0.19/config/initializers/session_store.rb
374
+ - spec/support/hello_world_3.0.19/config/locales/en.yml
375
+ - spec/support/hello_world_3.0.19/config/routes.rb
376
+ - spec/support/hello_world_3.0.19/db/seeds.rb
377
+ - spec/support/hello_world_3.0.19/lib/tasks/.gitkeep
378
+ - spec/support/hello_world_3.0.19/public/404.html
379
+ - spec/support/hello_world_3.0.19/public/422.html
380
+ - spec/support/hello_world_3.0.19/public/500.html
381
+ - spec/support/hello_world_3.0.19/public/favicon.ico
382
+ - spec/support/hello_world_3.0.19/public/images/rails.png
383
+ - spec/support/hello_world_3.0.19/public/index.html
384
+ - spec/support/hello_world_3.0.19/public/javascripts/application.js
385
+ - spec/support/hello_world_3.0.19/public/javascripts/controls.js
386
+ - spec/support/hello_world_3.0.19/public/javascripts/dragdrop.js
387
+ - spec/support/hello_world_3.0.19/public/javascripts/effects.js
388
+ - spec/support/hello_world_3.0.19/public/javascripts/prototype.js
389
+ - spec/support/hello_world_3.0.19/public/javascripts/rails.js
390
+ - spec/support/hello_world_3.0.19/public/robots.txt
391
+ - spec/support/hello_world_3.0.19/public/stylesheets/.gitkeep
392
+ - spec/support/hello_world_3.0.19/script/rails
393
+ - spec/support/hello_world_3.0.19/test/performance/browsing_test.rb
394
+ - spec/support/hello_world_3.0.19/test/test_helper.rb
395
+ - spec/support/hello_world_3.0.19/vendor/plugins/.gitkeep
396
+ - spec/support/hello_world_3.1.0/.gitignore
397
+ - spec/support/hello_world_3.1.0/Gemfile
398
+ - spec/support/hello_world_3.1.0/README
399
+ - spec/support/hello_world_3.1.0/Rakefile
400
+ - spec/support/hello_world_3.1.0/app/assets/images/rails.png
401
+ - spec/support/hello_world_3.1.0/app/assets/javascripts/application.js
402
+ - spec/support/hello_world_3.1.0/app/assets/stylesheets/application.css
403
+ - spec/support/hello_world_3.1.0/app/controllers/application_controller.rb
404
+ - spec/support/hello_world_3.1.0/app/helpers/application_helper.rb
405
+ - spec/support/hello_world_3.1.0/app/mailers/.gitkeep
406
+ - spec/support/hello_world_3.1.0/app/models/.gitkeep
407
+ - spec/support/hello_world_3.1.0/app/views/layouts/application.html.erb
408
+ - spec/support/hello_world_3.1.0/config.ru
409
+ - spec/support/hello_world_3.1.0/config/application.rb
410
+ - spec/support/hello_world_3.1.0/config/boot.rb
411
+ - spec/support/hello_world_3.1.0/config/database.yml
412
+ - spec/support/hello_world_3.1.0/config/environment.rb
413
+ - spec/support/hello_world_3.1.0/config/environments/development.rb
414
+ - spec/support/hello_world_3.1.0/config/environments/production.rb
415
+ - spec/support/hello_world_3.1.0/config/environments/test.rb
416
+ - spec/support/hello_world_3.1.0/config/initializers/backtrace_silencers.rb
417
+ - spec/support/hello_world_3.1.0/config/initializers/inflections.rb
418
+ - spec/support/hello_world_3.1.0/config/initializers/mime_types.rb
419
+ - spec/support/hello_world_3.1.0/config/initializers/secret_token.rb
420
+ - spec/support/hello_world_3.1.0/config/initializers/session_store.rb
421
+ - spec/support/hello_world_3.1.0/config/initializers/wrap_parameters.rb
422
+ - spec/support/hello_world_3.1.0/config/locales/en.yml
423
+ - spec/support/hello_world_3.1.0/config/routes.rb
424
+ - spec/support/hello_world_3.1.0/db/seeds.rb
425
+ - spec/support/hello_world_3.1.0/lib/assets/.gitkeep
426
+ - spec/support/hello_world_3.1.0/lib/tasks/.gitkeep
427
+ - spec/support/hello_world_3.1.0/log/.gitkeep
428
+ - spec/support/hello_world_3.1.0/public/404.html
429
+ - spec/support/hello_world_3.1.0/public/422.html
430
+ - spec/support/hello_world_3.1.0/public/500.html
431
+ - spec/support/hello_world_3.1.0/public/favicon.ico
432
+ - spec/support/hello_world_3.1.0/public/index.html
433
+ - spec/support/hello_world_3.1.0/public/robots.txt
434
+ - spec/support/hello_world_3.1.0/script/rails
435
+ - spec/support/hello_world_3.1.0/test/fixtures/.gitkeep
436
+ - spec/support/hello_world_3.1.0/test/functional/.gitkeep
437
+ - spec/support/hello_world_3.1.0/test/integration/.gitkeep
438
+ - spec/support/hello_world_3.1.0/test/performance/browsing_test.rb
439
+ - spec/support/hello_world_3.1.0/test/test_helper.rb
440
+ - spec/support/hello_world_3.1.0/test/unit/.gitkeep
441
+ - spec/support/hello_world_3.1.0/vendor/assets/stylesheets/.gitkeep
442
+ - spec/support/hello_world_3.1.0/vendor/plugins/.gitkeep
443
+ - spec/support/hello_world_3.2.13/.gitignore
444
+ - spec/support/hello_world_3.2.13/Gemfile
445
+ - spec/support/hello_world_3.2.13/README.rdoc
446
+ - spec/support/hello_world_3.2.13/Rakefile
447
+ - spec/support/hello_world_3.2.13/app/assets/images/rails.png
448
+ - spec/support/hello_world_3.2.13/app/assets/javascripts/application.js
449
+ - spec/support/hello_world_3.2.13/app/assets/stylesheets/application.css
450
+ - spec/support/hello_world_3.2.13/app/controllers/application_controller.rb
451
+ - spec/support/hello_world_3.2.13/app/helpers/application_helper.rb
452
+ - spec/support/hello_world_3.2.13/app/mailers/.gitkeep
453
+ - spec/support/hello_world_3.2.13/app/models/.gitkeep
454
+ - spec/support/hello_world_3.2.13/app/views/layouts/application.html.erb
455
+ - spec/support/hello_world_3.2.13/config.ru
456
+ - spec/support/hello_world_3.2.13/config/application.rb
457
+ - spec/support/hello_world_3.2.13/config/boot.rb
458
+ - spec/support/hello_world_3.2.13/config/database.yml
459
+ - spec/support/hello_world_3.2.13/config/environment.rb
460
+ - spec/support/hello_world_3.2.13/config/environments/development.rb
461
+ - spec/support/hello_world_3.2.13/config/environments/production.rb
462
+ - spec/support/hello_world_3.2.13/config/environments/test.rb
463
+ - spec/support/hello_world_3.2.13/config/initializers/backtrace_silencers.rb
464
+ - spec/support/hello_world_3.2.13/config/initializers/inflections.rb
465
+ - spec/support/hello_world_3.2.13/config/initializers/mime_types.rb
466
+ - spec/support/hello_world_3.2.13/config/initializers/secret_token.rb
467
+ - spec/support/hello_world_3.2.13/config/initializers/session_store.rb
468
+ - spec/support/hello_world_3.2.13/config/initializers/wrap_parameters.rb
469
+ - spec/support/hello_world_3.2.13/config/locales/en.yml
470
+ - spec/support/hello_world_3.2.13/config/routes.rb
471
+ - spec/support/hello_world_3.2.13/db/seeds.rb
472
+ - spec/support/hello_world_3.2.13/lib/assets/.gitkeep
473
+ - spec/support/hello_world_3.2.13/lib/tasks/.gitkeep
474
+ - spec/support/hello_world_3.2.13/log/.gitkeep
475
+ - spec/support/hello_world_3.2.13/public/404.html
476
+ - spec/support/hello_world_3.2.13/public/422.html
477
+ - spec/support/hello_world_3.2.13/public/500.html
478
+ - spec/support/hello_world_3.2.13/public/favicon.ico
479
+ - spec/support/hello_world_3.2.13/public/index.html
480
+ - spec/support/hello_world_3.2.13/public/robots.txt
481
+ - spec/support/hello_world_3.2.13/script/rails
482
+ - spec/support/hello_world_3.2.13/test/fixtures/.gitkeep
483
+ - spec/support/hello_world_3.2.13/test/functional/.gitkeep
484
+ - spec/support/hello_world_3.2.13/test/integration/.gitkeep
485
+ - spec/support/hello_world_3.2.13/test/performance/browsing_test.rb
486
+ - spec/support/hello_world_3.2.13/test/test_helper.rb
487
+ - spec/support/hello_world_3.2.13/test/unit/.gitkeep
488
+ - spec/support/hello_world_3.2.13/vendor/assets/javascripts/.gitkeep
489
+ - spec/support/hello_world_3.2.13/vendor/assets/stylesheets/.gitkeep
490
+ - spec/support/hello_world_3.2.13/vendor/plugins/.gitkeep
491
+ - spec/support/lorem.txt
492
+ - spec/support/sinatra-safe/.gems
493
+ - spec/support/sinatra-safe/.gitignore
494
+ - spec/support/sinatra-safe/Gemfile
495
+ - spec/support/sinatra-safe/MIT-LICENSE
496
+ - spec/support/sinatra-safe/README.rdoc
497
+ - spec/support/sinatra-safe/Rakefile
498
+ - spec/support/sinatra-safe/application.rb
499
+ - spec/support/sinatra-safe/config.ru
500
+ - spec/support/sinatra-safe/environment.rb
501
+ - spec/support/sinatra-safe/lib/profile.rb
502
+ - spec/support/sinatra-safe/public/main.css
503
+ - spec/support/sinatra-safe/script/console
504
+ - spec/support/sinatra-safe/views/layout.haml
505
+ - spec/support/sinatra-safe/views/root.haml
506
+ - spec/support/sinatra-vulnerable/.gems
507
+ - spec/support/sinatra-vulnerable/.gitignore
508
+ - spec/support/sinatra-vulnerable/Gemfile
509
+ - spec/support/sinatra-vulnerable/MIT-LICENSE
510
+ - spec/support/sinatra-vulnerable/README.rdoc
511
+ - spec/support/sinatra-vulnerable/Rakefile
512
+ - spec/support/sinatra-vulnerable/application.rb
513
+ - spec/support/sinatra-vulnerable/config.ru
514
+ - spec/support/sinatra-vulnerable/environment.rb
515
+ - spec/support/sinatra-vulnerable/lib/profile.rb
516
+ - spec/support/sinatra-vulnerable/public/main.css
517
+ - spec/support/sinatra-vulnerable/script/console
518
+ - spec/support/sinatra-vulnerable/views/layout.haml
519
+ - spec/support/sinatra-vulnerable/views/root.haml