bundler-audit 0.6.1 → 0.9.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (436) hide show
  1. checksums.yaml +4 -4
  2. data/.github/FUNDING.yml +3 -0
  3. data/.github/ISSUE_TEMPLATE/bug-report.md +44 -0
  4. data/.github/workflows/ruby.yml +42 -0
  5. data/.gitignore +1 -1
  6. data/.rspec +1 -1
  7. data/.rubocop.yml +83 -0
  8. data/COPYING.txt +4 -4
  9. data/ChangeLog.md +111 -4
  10. data/Gemfile +7 -3
  11. data/README.md +85 -23
  12. data/Rakefile +17 -30
  13. data/bundler-audit.gemspec +3 -11
  14. data/gemspec.yml +2 -2
  15. data/lib/bundler/audit/advisory.rb +81 -9
  16. data/lib/bundler/audit/cli/formats/json.rb +65 -0
  17. data/lib/bundler/audit/cli/formats/junit.rb +127 -0
  18. data/lib/bundler/audit/cli/formats/text.rb +122 -0
  19. data/lib/bundler/audit/cli/formats.rb +148 -0
  20. data/lib/bundler/audit/cli/thor_ext/shell/basic/say_error.rb +33 -0
  21. data/lib/bundler/audit/cli.rb +114 -88
  22. data/lib/bundler/audit/configuration.rb +108 -0
  23. data/lib/bundler/audit/database.rb +161 -29
  24. data/lib/bundler/audit/report.rb +149 -0
  25. data/lib/bundler/audit/results/insecure_source.rb +78 -0
  26. data/lib/bundler/audit/results/result.rb +21 -0
  27. data/lib/bundler/audit/results/unpatched_gem.rb +98 -0
  28. data/lib/bundler/audit/results.rb +19 -0
  29. data/lib/bundler/audit/scanner.rb +105 -26
  30. data/lib/bundler/audit/task.rb +19 -6
  31. data/lib/bundler/audit/version.rb +3 -3
  32. data/lib/bundler/audit.rb +2 -2
  33. data/spec/advisory_spec.rb +153 -20
  34. data/spec/bundle/insecure_sources/Gemfile.lock +151 -0
  35. data/spec/bundle/secure/Gemfile +1 -0
  36. data/spec/bundle/secure/Gemfile.lock +123 -0
  37. data/spec/bundle/unpatched_gems/Gemfile +1 -1
  38. data/spec/bundle/unpatched_gems/Gemfile.lock +31 -0
  39. data/spec/bundle/unpatched_gems_with_dot_configuration/.bundler-audit.yml +3 -0
  40. data/spec/bundle/unpatched_gems_with_dot_configuration/Gemfile +3 -0
  41. data/spec/bundle/unpatched_gems_with_dot_configuration/Gemfile.lock +31 -0
  42. data/spec/cli/formats/json_spec.rb +114 -0
  43. data/spec/cli/formats/junit_spec.rb +284 -0
  44. data/spec/cli/formats/text_spec.rb +273 -0
  45. data/spec/cli/formats_spec.rb +86 -0
  46. data/spec/cli_spec.rb +100 -21
  47. data/spec/configuration_spec.rb +78 -0
  48. data/spec/database_spec.rb +286 -39
  49. data/spec/fixtures/advisory/CVE-2020-1234.yml +21 -0
  50. data/spec/fixtures/{not_a_hash.yml → advisory/not_a_hash.yml} +0 -0
  51. data/spec/fixtures/config/bad/empty.yml +0 -0
  52. data/spec/fixtures/config/bad/ignore_contains_a_non_string.yml +4 -0
  53. data/spec/fixtures/config/bad/ignore_is_not_an_array.yml +3 -0
  54. data/spec/fixtures/config/valid.yml +4 -0
  55. data/spec/fixtures/lib/bundler/audit/cli/formats/bad.rb +17 -0
  56. data/spec/fixtures/lib/bundler/audit/cli/formats/good.rb +17 -0
  57. data/spec/integration_spec.rb +17 -89
  58. data/spec/report_spec.rb +98 -0
  59. data/spec/results/insecure_source_spec.rb +47 -0
  60. data/spec/results/result_spec.rb +10 -0
  61. data/spec/results/unpatched_gem_spec.rb +123 -0
  62. data/spec/scanner_spec.rb +90 -34
  63. data/spec/spec_helper.rb +40 -35
  64. metadata +47 -383
  65. data/.gitmodules +0 -3
  66. data/.travis.yml +0 -13
  67. data/data/ruby-advisory-db/.gitignore +0 -1
  68. data/data/ruby-advisory-db/.rspec +0 -1
  69. data/data/ruby-advisory-db/.travis.yml +0 -12
  70. data/data/ruby-advisory-db/CONTRIBUTING.md +0 -69
  71. data/data/ruby-advisory-db/CONTRIBUTORS.md +0 -40
  72. data/data/ruby-advisory-db/Gemfile +0 -9
  73. data/data/ruby-advisory-db/Gemfile.lock +0 -40
  74. data/data/ruby-advisory-db/LICENSE.txt +0 -5
  75. data/data/ruby-advisory-db/README.md +0 -99
  76. data/data/ruby-advisory-db/Rakefile +0 -26
  77. data/data/ruby-advisory-db/gems/Arabic-Prawn/OSVDB-104365.yml +0 -12
  78. data/data/ruby-advisory-db/gems/RedCloth/CVE-2012-6684.yml +0 -21
  79. data/data/ruby-advisory-db/gems/VladTheEnterprising/CVE-2014-4995.yml +0 -13
  80. data/data/ruby-advisory-db/gems/VladTheEnterprising/CVE-2014-4996.yml +0 -13
  81. data/data/ruby-advisory-db/gems/actionmailer/OSVDB-98629.yml +0 -17
  82. data/data/ruby-advisory-db/gems/actionpack/CVE-2014-0130.yml +0 -23
  83. data/data/ruby-advisory-db/gems/actionpack/CVE-2014-7818.yml +0 -24
  84. data/data/ruby-advisory-db/gems/actionpack/CVE-2014-7829.yml +0 -26
  85. data/data/ruby-advisory-db/gems/actionpack/CVE-2015-7576.yml +0 -116
  86. data/data/ruby-advisory-db/gems/actionpack/CVE-2015-7581.yml +0 -55
  87. data/data/ruby-advisory-db/gems/actionpack/CVE-2016-0751.yml +0 -71
  88. data/data/ruby-advisory-db/gems/actionpack/CVE-2016-0752.yml +0 -96
  89. data/data/ruby-advisory-db/gems/actionpack/CVE-2016-2097.yml +0 -90
  90. data/data/ruby-advisory-db/gems/actionpack/CVE-2016-2098.yml +0 -89
  91. data/data/ruby-advisory-db/gems/actionpack/CVE-2016-6316.yml +0 -57
  92. data/data/ruby-advisory-db/gems/actionpack/OSVDB-100524.yml +0 -20
  93. data/data/ruby-advisory-db/gems/actionpack/OSVDB-100525.yml +0 -21
  94. data/data/ruby-advisory-db/gems/actionpack/OSVDB-100526.yml +0 -27
  95. data/data/ruby-advisory-db/gems/actionpack/OSVDB-100527.yml +0 -24
  96. data/data/ruby-advisory-db/gems/actionpack/OSVDB-100528.yml +0 -22
  97. data/data/ruby-advisory-db/gems/actionpack/OSVDB-103439.yml +0 -24
  98. data/data/ruby-advisory-db/gems/actionpack/OSVDB-103440.yml +0 -22
  99. data/data/ruby-advisory-db/gems/actionpack/OSVDB-74616.yml +0 -18
  100. data/data/ruby-advisory-db/gems/actionpack/OSVDB-77199.yml +0 -23
  101. data/data/ruby-advisory-db/gems/actionpack/OSVDB-79727.yml +0 -26
  102. data/data/ruby-advisory-db/gems/actionpack/OSVDB-84243.yml +0 -28
  103. data/data/ruby-advisory-db/gems/actionpack/OSVDB-84513.yml +0 -23
  104. data/data/ruby-advisory-db/gems/actionpack/OSVDB-84515.yml +0 -26
  105. data/data/ruby-advisory-db/gems/actionpack/OSVDB-89026.yml +0 -24
  106. data/data/ruby-advisory-db/gems/actionpack/OSVDB-91452.yml +0 -20
  107. data/data/ruby-advisory-db/gems/actionpack/OSVDB-91454.yml +0 -23
  108. data/data/ruby-advisory-db/gems/actionview/CVE-2016-0752.yml +0 -92
  109. data/data/ruby-advisory-db/gems/actionview/CVE-2016-2097.yml +0 -89
  110. data/data/ruby-advisory-db/gems/actionview/CVE-2016-6316.yml +0 -56
  111. data/data/ruby-advisory-db/gems/activemodel/CVE-2016-0753.yml +0 -92
  112. data/data/ruby-advisory-db/gems/activerecord/CVE-2014-3514.yml +0 -23
  113. data/data/ruby-advisory-db/gems/activerecord/CVE-2015-7577.yml +0 -107
  114. data/data/ruby-advisory-db/gems/activerecord/CVE-2016-6317.yml +0 -73
  115. data/data/ruby-advisory-db/gems/activerecord/OSVDB-103438.yml +0 -23
  116. data/data/ruby-advisory-db/gems/activerecord/OSVDB-108664.yml +0 -23
  117. data/data/ruby-advisory-db/gems/activerecord/OSVDB-108665.yml +0 -24
  118. data/data/ruby-advisory-db/gems/activerecord/OSVDB-82403.yml +0 -25
  119. data/data/ruby-advisory-db/gems/activerecord/OSVDB-82610.yml +0 -24
  120. data/data/ruby-advisory-db/gems/activerecord/OSVDB-88661.yml +0 -20
  121. data/data/ruby-advisory-db/gems/activerecord/OSVDB-89025.yml +0 -24
  122. data/data/ruby-advisory-db/gems/activerecord/OSVDB-90072.yml +0 -21
  123. data/data/ruby-advisory-db/gems/activerecord/OSVDB-90073.yml +0 -23
  124. data/data/ruby-advisory-db/gems/activerecord/OSVDB-91453.yml +0 -26
  125. data/data/ruby-advisory-db/gems/activerecord-jdbc-adapter/OSVDB-114854.yml +0 -20
  126. data/data/ruby-advisory-db/gems/activerecord-oracle_enhanced-adapter/OSVDB-95376.yml +0 -15
  127. data/data/ruby-advisory-db/gems/activeresource/OSVDB-95749.yml +0 -15
  128. data/data/ruby-advisory-db/gems/activesupport/CVE-2015-3226.yml +0 -54
  129. data/data/ruby-advisory-db/gems/activesupport/CVE-2015-3227.yml +0 -32
  130. data/data/ruby-advisory-db/gems/activesupport/OSVDB-79726.yml +0 -26
  131. data/data/ruby-advisory-db/gems/activesupport/OSVDB-84516.yml +0 -23
  132. data/data/ruby-advisory-db/gems/activesupport/OSVDB-89594.yml +0 -25
  133. data/data/ruby-advisory-db/gems/activesupport/OSVDB-91451.yml +0 -28
  134. data/data/ruby-advisory-db/gems/administrate/CVE-2016-3098.yml +0 -14
  135. data/data/ruby-advisory-db/gems/aescrypt/CVE-2013-7463.yml +0 -10
  136. data/data/ruby-advisory-db/gems/archive-tar-minitar/CVE-2016-10173.yml +0 -16
  137. data/data/ruby-advisory-db/gems/as/OSVDB-112683.yml +0 -10
  138. data/data/ruby-advisory-db/gems/authlogic/OSVDB-89064.yml +0 -15
  139. data/data/ruby-advisory-db/gems/auto_awesomplete/OSVDB-132800.yml +0 -11
  140. data/data/ruby-advisory-db/gems/auto_select2/OSVDB-132800.yml +0 -13
  141. data/data/ruby-advisory-db/gems/awesome_spawn/CVE-2014-0156.yml +0 -19
  142. data/data/ruby-advisory-db/gems/backup-agoddard/OSVDB-108578.yml +0 -8
  143. data/data/ruby-advisory-db/gems/backup_checksum/OSVDB-108569.yml +0 -12
  144. data/data/ruby-advisory-db/gems/backup_checksum/OSVDB-108570.yml +0 -10
  145. data/data/ruby-advisory-db/gems/bcrypt/OSVDB-62067.yml +0 -17
  146. data/data/ruby-advisory-db/gems/bcrypt-ruby/OSVDB-62067.yml +0 -19
  147. data/data/ruby-advisory-db/gems/bio-basespace-sdk/OSVDB-101031.yml +0 -8
  148. data/data/ruby-advisory-db/gems/brbackup/OSVDB-108899.yml +0 -12
  149. data/data/ruby-advisory-db/gems/brbackup/OSVDB-108900.yml +0 -11
  150. data/data/ruby-advisory-db/gems/brbackup/OSVDB-108901.yml +0 -11
  151. data/data/ruby-advisory-db/gems/bson/CVE-2015-4412.yml +0 -16
  152. data/data/ruby-advisory-db/gems/builder/OSVDB-95668.yml +0 -13
  153. data/data/ruby-advisory-db/gems/bundler/OSVDB-110004.yml +0 -15
  154. data/data/ruby-advisory-db/gems/bundler/OSVDB-115090.yml +0 -13
  155. data/data/ruby-advisory-db/gems/bundler/OSVDB-115091.yml +0 -12
  156. data/data/ruby-advisory-db/gems/bundler/OSVDB-115917.yml +0 -12
  157. data/data/ruby-advisory-db/gems/cap-strap/OSVDB-108574.yml +0 -8
  158. data/data/ruby-advisory-db/gems/cap-strap/OSVDB-108575.yml +0 -7
  159. data/data/ruby-advisory-db/gems/ciborg/OSVDB-108586.yml +0 -8
  160. data/data/ruby-advisory-db/gems/cocaine/OSVDB-98835.yml +0 -15
  161. data/data/ruby-advisory-db/gems/codders-dataset/OSVDB-108582.yml +0 -8
  162. data/data/ruby-advisory-db/gems/codders-dataset/OSVDB-108583.yml +0 -8
  163. data/data/ruby-advisory-db/gems/colorscore/CVE-2015-7541.yml +0 -21
  164. data/data/ruby-advisory-db/gems/command_wrap/OSVDB-91450.yml +0 -9
  165. data/data/ruby-advisory-db/gems/crack/OSVDB-90742.yml +0 -17
  166. data/data/ruby-advisory-db/gems/cremefraiche/OSVDB-93395.yml +0 -11
  167. data/data/ruby-advisory-db/gems/curb/OSVDB-114600.yml +0 -12
  168. data/data/ruby-advisory-db/gems/curl/OSVDB-91230.yml +0 -13
  169. data/data/ruby-advisory-db/gems/devise/CVE-2015-8314.yml +0 -14
  170. data/data/ruby-advisory-db/gems/devise/OSVDB-114435.yml +0 -17
  171. data/data/ruby-advisory-db/gems/devise/OSVDB-89642.yml +0 -20
  172. data/data/ruby-advisory-db/gems/devise-two-factor/CVE-2015-7225.yml +0 -22
  173. data/data/ruby-advisory-db/gems/doorkeeper/CVE-2014-8144.yml +0 -26
  174. data/data/ruby-advisory-db/gems/doorkeeper/CVE-2016-6582.yml +0 -43
  175. data/data/ruby-advisory-db/gems/doorkeeper/OSVDB-118830.yml +0 -17
  176. data/data/ruby-advisory-db/gems/dragonfly/OSVDB-110439.yml +0 -13
  177. data/data/ruby-advisory-db/gems/dragonfly/OSVDB-90647.yml +0 -16
  178. data/data/ruby-advisory-db/gems/dragonfly/OSVDB-96798.yml +0 -14
  179. data/data/ruby-advisory-db/gems/dragonfly/OSVDB-97854.yml +0 -12
  180. data/data/ruby-advisory-db/gems/echor/OSVDB-102129.yml +0 -12
  181. data/data/ruby-advisory-db/gems/echor/OSVDB-102130.yml +0 -11
  182. data/data/ruby-advisory-db/gems/ember-source/CVE-2013-4170.yml +0 -25
  183. data/data/ruby-advisory-db/gems/ember-source/CVE-2014-0013.yml +0 -33
  184. data/data/ruby-advisory-db/gems/ember-source/CVE-2014-0014.yml +0 -30
  185. data/data/ruby-advisory-db/gems/ember-source/CVE-2014-0046.yml +0 -26
  186. data/data/ruby-advisory-db/gems/ember-source/CVE-2015-1866.yml +0 -26
  187. data/data/ruby-advisory-db/gems/ember-source/CVE-2015-7565.yml +0 -30
  188. data/data/ruby-advisory-db/gems/enum_column3/OSVDB-94679.yml +0 -9
  189. data/data/ruby-advisory-db/gems/espeak-ruby/CVE-2016-10193.yml +0 -15
  190. data/data/ruby-advisory-db/gems/extlib/OSVDB-90740.yml +0 -18
  191. data/data/ruby-advisory-db/gems/fastreader/OSVDB-91232.yml +0 -13
  192. data/data/ruby-advisory-db/gems/fat_free_crm/OSVDB-101445.yml +0 -17
  193. data/data/ruby-advisory-db/gems/fat_free_crm/OSVDB-101446.yml +0 -19
  194. data/data/ruby-advisory-db/gems/fat_free_crm/OSVDB-101447.yml +0 -17
  195. data/data/ruby-advisory-db/gems/fat_free_crm/OSVDB-101448.yml +0 -19
  196. data/data/ruby-advisory-db/gems/fat_free_crm/OSVDB-101700.yml +0 -16
  197. data/data/ruby-advisory-db/gems/fat_free_crm/OSVDB-110420.yml +0 -19
  198. data/data/ruby-advisory-db/gems/fat_free_crm/OSVDB-118465.yml +0 -17
  199. data/data/ruby-advisory-db/gems/features/OSVDB-96975.yml +0 -8
  200. data/data/ruby-advisory-db/gems/festivaltts4r/CVE-2016-10194.yml +0 -12
  201. data/data/ruby-advisory-db/gems/fileutils/OSVDB-90715.yml +0 -7
  202. data/data/ruby-advisory-db/gems/fileutils/OSVDB-90716.yml +0 -7
  203. data/data/ruby-advisory-db/gems/fileutils/OSVDB-90717.yml +0 -8
  204. data/data/ruby-advisory-db/gems/fileutils/OSVDB-90718.yml +0 -7
  205. data/data/ruby-advisory-db/gems/flash_tool/OSVDB-90829.yml +0 -8
  206. data/data/ruby-advisory-db/gems/flavour_saver/OSVDB-110796.yml +0 -14
  207. data/data/ruby-advisory-db/gems/flukso4r/OSVDB-101577.yml +0 -7
  208. data/data/ruby-advisory-db/gems/fog-dragonfly/OSVDB-110439.yml +0 -15
  209. data/data/ruby-advisory-db/gems/fog-dragonfly/OSVDB-90647.yml +0 -16
  210. data/data/ruby-advisory-db/gems/fog-dragonfly/OSVDB-96798.yml +0 -16
  211. data/data/ruby-advisory-db/gems/fog-dragonfly/OSVDB-97854.yml +0 -12
  212. data/data/ruby-advisory-db/gems/ftpd/OSVDB-90784.yml +0 -18
  213. data/data/ruby-advisory-db/gems/git-fastclone/CVE-2015-8968.yml +0 -21
  214. data/data/ruby-advisory-db/gems/git-fastclone/CVE-2015-8969.yml +0 -13
  215. data/data/ruby-advisory-db/gems/gitlab-grit/OSVDB-99370.yml +0 -14
  216. data/data/ruby-advisory-db/gems/gnms/OSVDB-108594.yml +0 -7
  217. data/data/ruby-advisory-db/gems/gollum/CVE-2015-7314.yml +0 -13
  218. data/data/ruby-advisory-db/gems/gollum-grit_adapter/CVE-2014-9489.yml +0 -23
  219. data/data/ruby-advisory-db/gems/gtk2/OSVDB-40774.yml +0 -20
  220. data/data/ruby-advisory-db/gems/gyazo/OSVDB-108563.yml +0 -10
  221. data/data/ruby-advisory-db/gems/handlebars-source/OSVDB-131671.yml +0 -17
  222. data/data/ruby-advisory-db/gems/http/CVE-2015-1828.yml +0 -14
  223. data/data/ruby-advisory-db/gems/httparty/OSVDB-90741.yml +0 -14
  224. data/data/ruby-advisory-db/gems/i18n/OSVDB-100528.yml +0 -17
  225. data/data/ruby-advisory-db/gems/jquery-rails/CVE-2015-1840.yml +0 -36
  226. data/data/ruby-advisory-db/gems/jquery-ujs/CVE-2015-1840.yml +0 -35
  227. data/data/ruby-advisory-db/gems/jruby-openssl/CVE-2009-4123.yml +0 -16
  228. data/data/ruby-advisory-db/gems/jruby-sandbox/OSVDB-106279.yml +0 -12
  229. data/data/ruby-advisory-db/gems/json/OSVDB-101137.yml +0 -17
  230. data/data/ruby-advisory-db/gems/json/OSVDB-101157.yml +0 -14
  231. data/data/ruby-advisory-db/gems/json/OSVDB-90074.yml +0 -23
  232. data/data/ruby-advisory-db/gems/kafo/OSVDB-106826.yml +0 -15
  233. data/data/ruby-advisory-db/gems/kajam/OSVDB-108529.yml +0 -12
  234. data/data/ruby-advisory-db/gems/kajam/OSVDB-108530.yml +0 -11
  235. data/data/ruby-advisory-db/gems/karo/OSVDB-108573.yml +0 -10
  236. data/data/ruby-advisory-db/gems/karteek-docsplit/OSVDB-92117.yml +0 -9
  237. data/data/ruby-advisory-db/gems/kcapifony/OSVDB-108571.yml +0 -8
  238. data/data/ruby-advisory-db/gems/kcapifony/OSVDB-108572.yml +0 -7
  239. data/data/ruby-advisory-db/gems/kelredd-pruview/OSVDB-92228.yml +0 -9
  240. data/data/ruby-advisory-db/gems/kompanee-recipes/OSVDB-108593.yml +0 -12
  241. data/data/ruby-advisory-db/gems/lawn-login/OSVDB-108576.yml +0 -8
  242. data/data/ruby-advisory-db/gems/ldap_fluff/OSVDB-90579.yml +0 -15
  243. data/data/ruby-advisory-db/gems/ldoce/OSVDB-91870.yml +0 -9
  244. data/data/ruby-advisory-db/gems/lean-ruport/OSVDB-108581.yml +0 -8
  245. data/data/ruby-advisory-db/gems/lingq/OSVDB-108585.yml +0 -7
  246. data/data/ruby-advisory-db/gems/loofah/OSVDB-90945.yml +0 -21
  247. data/data/ruby-advisory-db/gems/lynx/OSVDB-108579.yml +0 -7
  248. data/data/ruby-advisory-db/gems/lynx/OSVDB-108580.yml +0 -8
  249. data/data/ruby-advisory-db/gems/mail/OSVDB-131677.yml +0 -26
  250. data/data/ruby-advisory-db/gems/mail/OSVDB-70667.yml +0 -21
  251. data/data/ruby-advisory-db/gems/mail/OSVDB-81631.yml +0 -14
  252. data/data/ruby-advisory-db/gems/mail/OSVDB-81632.yml +0 -16
  253. data/data/ruby-advisory-db/gems/mapbox-rails/OSVDB-129854.yml +0 -21
  254. data/data/ruby-advisory-db/gems/mapbox-rails/OSVDB-132871.yml +0 -22
  255. data/data/ruby-advisory-db/gems/md2pdf/OSVDB-92290.yml +0 -9
  256. data/data/ruby-advisory-db/gems/mini_magick/OSVDB-91231.yml +0 -15
  257. data/data/ruby-advisory-db/gems/minitar/CVE-2016-10173.yml +0 -16
  258. data/data/ruby-advisory-db/gems/moped/CVE-2015-4410.yml +0 -17
  259. data/data/ruby-advisory-db/gems/multi_xml/OSVDB-89148.yml +0 -16
  260. data/data/ruby-advisory-db/gems/mustache-js-rails/OSVDB-131671.yml +0 -17
  261. data/data/ruby-advisory-db/gems/net-ldap/OSVDB-106108.yml +0 -14
  262. data/data/ruby-advisory-db/gems/newrelic_rpm/OSVDB-90189.yml +0 -17
  263. data/data/ruby-advisory-db/gems/nokogiri/CVE-2015-1819.yml +0 -52
  264. data/data/ruby-advisory-db/gems/nokogiri/CVE-2015-5312.yml +0 -92
  265. data/data/ruby-advisory-db/gems/nokogiri/CVE-2015-7499.yml +0 -37
  266. data/data/ruby-advisory-db/gems/nokogiri/CVE-2015-8806.yml +0 -42
  267. data/data/ruby-advisory-db/gems/nokogiri/CVE-2016-4658.yml +0 -32
  268. data/data/ruby-advisory-db/gems/nokogiri/CVE-2017-5029.yml +0 -44
  269. data/data/ruby-advisory-db/gems/nokogiri/OSVDB-101179.yml +0 -18
  270. data/data/ruby-advisory-db/gems/nokogiri/OSVDB-101458.yml +0 -15
  271. data/data/ruby-advisory-db/gems/nokogiri/OSVDB-118481.yml +0 -15
  272. data/data/ruby-advisory-db/gems/nokogiri/OSVDB-90946.yml +0 -15
  273. data/data/ruby-advisory-db/gems/nori/OSVDB-90196.yml +0 -19
  274. data/data/ruby-advisory-db/gems/omniauth-facebook/OSVDB-99693.yml +0 -22
  275. data/data/ruby-advisory-db/gems/omniauth-facebook/OSVDB-99888.yml +0 -17
  276. data/data/ruby-advisory-db/gems/omniauth-oauth2/OSVDB-90264.yml +0 -16
  277. data/data/ruby-advisory-db/gems/open-uri-cached/OSVDB-121701.yml +0 -13
  278. data/data/ruby-advisory-db/gems/paperclip/CVE-2015-2963.yml +0 -16
  279. data/data/ruby-advisory-db/gems/paperclip/OSVDB-103151.yml +0 -13
  280. data/data/ruby-advisory-db/gems/paratrooper-newrelic/OSVDB-101839.yml +0 -13
  281. data/data/ruby-advisory-db/gems/paratrooper-pingdom/OSVDB-101847.yml +0 -13
  282. data/data/ruby-advisory-db/gems/passenger/CVE-2014-1831.yml +0 -13
  283. data/data/ruby-advisory-db/gems/passenger/CVE-2014-1832.yml +0 -13
  284. data/data/ruby-advisory-db/gems/passenger/CVE-2015-7519.yml +0 -17
  285. data/data/ruby-advisory-db/gems/passenger/CVE-2016-10345.yml +0 -16
  286. data/data/ruby-advisory-db/gems/passenger/OSVDB-90738.yml +0 -16
  287. data/data/ruby-advisory-db/gems/passenger/OSVDB-93752.yml +0 -15
  288. data/data/ruby-advisory-db/gems/passenger/OSVDB-94074.yml +0 -14
  289. data/data/ruby-advisory-db/gems/pdfkit/OSVDB-90867.yml +0 -11
  290. data/data/ruby-advisory-db/gems/point-cli/OSVDB-108577.yml +0 -8
  291. data/data/ruby-advisory-db/gems/quick_magick/OSVDB-106954.yml +0 -7
  292. data/data/ruby-advisory-db/gems/rack/CVE-2015-3225.yml +0 -18
  293. data/data/ruby-advisory-db/gems/rack/OSVDB-78121.yml +0 -21
  294. data/data/ruby-advisory-db/gems/rack/OSVDB-89317.yml +0 -21
  295. data/data/ruby-advisory-db/gems/rack/OSVDB-89320.yml +0 -19
  296. data/data/ruby-advisory-db/gems/rack/OSVDB-89327.yml +0 -20
  297. data/data/ruby-advisory-db/gems/rack/OSVDB-89938.yml +0 -18
  298. data/data/ruby-advisory-db/gems/rack/OSVDB-89939.yml +0 -23
  299. data/data/ruby-advisory-db/gems/rack-attack/OSVDB-132234.yml +0 -26
  300. data/data/ruby-advisory-db/gems/rack-cache/OSVDB-83077.yml +0 -18
  301. data/data/ruby-advisory-db/gems/rack-mini-profiler/CVE-2016-4442.yml +0 -17
  302. data/data/ruby-advisory-db/gems/rack-ssl/OSVDB-104734.yml +0 -11
  303. data/data/ruby-advisory-db/gems/rails-html-sanitizer/CVE-2015-7578.yml +0 -47
  304. data/data/ruby-advisory-db/gems/rails-html-sanitizer/CVE-2015-7579.yml +0 -75
  305. data/data/ruby-advisory-db/gems/rails-html-sanitizer/CVE-2015-7580.yml +0 -70
  306. data/data/ruby-advisory-db/gems/rbovirt/OSVDB-104080.yml +0 -20
  307. data/data/ruby-advisory-db/gems/rdoc/OSVDB-90004.yml +0 -27
  308. data/data/ruby-advisory-db/gems/redcarpet/CVE-2015-5147.yml +0 -17
  309. data/data/ruby-advisory-db/gems/redcarpet/OSVDB-120415.yml +0 -16
  310. data/data/ruby-advisory-db/gems/redis-namespace/OSVDB-96425.yml +0 -15
  311. data/data/ruby-advisory-db/gems/refile/OSVDB-120857.yml +0 -16
  312. data/data/ruby-advisory-db/gems/rest-client/CVE-2015-1820.yml +0 -23
  313. data/data/ruby-advisory-db/gems/rest-client/OSVDB-117461.yml +0 -13
  314. data/data/ruby-advisory-db/gems/rgpg/OSVDB-95948.yml +0 -15
  315. data/data/ruby-advisory-db/gems/ruby-saml/CVE-2016-5697.yml +0 -17
  316. data/data/ruby-advisory-db/gems/ruby-saml/OSVDB-117903.yml +0 -13
  317. data/data/ruby-advisory-db/gems/ruby-saml/OSVDB-124383.yml +0 -11
  318. data/data/ruby-advisory-db/gems/ruby-saml/OSVDB-124991.yml +0 -13
  319. data/data/ruby-advisory-db/gems/ruby_parser/OSVDB-90561.yml +0 -11
  320. data/data/ruby-advisory-db/gems/rubyzip/CVE-2017-5946.yml +0 -14
  321. data/data/ruby-advisory-db/gems/safemode/CVE-2016-3693.yml +0 -13
  322. data/data/ruby-advisory-db/gems/screen_capture/OSVDB-107783.yml +0 -7
  323. data/data/ruby-advisory-db/gems/sentry-raven/OSVDB-115654.yml +0 -14
  324. data/data/ruby-advisory-db/gems/sfpagent/OSVDB-105971.yml +0 -15
  325. data/data/ruby-advisory-db/gems/show_in_browser/OSVDB-93490.yml +0 -8
  326. data/data/ruby-advisory-db/gems/sidekiq/OSVDB-125675.yml +0 -9
  327. data/data/ruby-advisory-db/gems/sidekiq/OSVDB-125676.yml +0 -14
  328. data/data/ruby-advisory-db/gems/sidekiq/OSVDB-125678.yml +0 -9
  329. data/data/ruby-advisory-db/gems/sidekiq-pro/OSVDB-126329.yml +0 -12
  330. data/data/ruby-advisory-db/gems/sidekiq-pro/OSVDB-126330.yml +0 -10
  331. data/data/ruby-advisory-db/gems/sidekiq-pro/OSVDB-126331.yml +0 -14
  332. data/data/ruby-advisory-db/gems/sounder/OSVDB-96278.yml +0 -14
  333. data/data/ruby-advisory-db/gems/spina/CVE-2015-4619.yml +0 -16
  334. data/data/ruby-advisory-db/gems/spree/OSVDB-119205.yml +0 -18
  335. data/data/ruby-advisory-db/gems/spree/OSVDB-125699.yml +0 -18
  336. data/data/ruby-advisory-db/gems/spree/OSVDB-125701.yml +0 -17
  337. data/data/ruby-advisory-db/gems/spree/OSVDB-125712.yml +0 -16
  338. data/data/ruby-advisory-db/gems/spree/OSVDB-125713.yml +0 -15
  339. data/data/ruby-advisory-db/gems/spree/OSVDB-69098.yml +0 -19
  340. data/data/ruby-advisory-db/gems/spree/OSVDB-73751.yml +0 -11
  341. data/data/ruby-advisory-db/gems/spree/OSVDB-76011.yml +0 -15
  342. data/data/ruby-advisory-db/gems/spree/OSVDB-81505.yml +0 -14
  343. data/data/ruby-advisory-db/gems/spree/OSVDB-81506.yml +0 -16
  344. data/data/ruby-advisory-db/gems/spree/OSVDB-90865.yml +0 -20
  345. data/data/ruby-advisory-db/gems/spree/OSVDB-91216.yml +0 -17
  346. data/data/ruby-advisory-db/gems/spree/OSVDB-91217.yml +0 -17
  347. data/data/ruby-advisory-db/gems/spree/OSVDB-91218.yml +0 -17
  348. data/data/ruby-advisory-db/gems/spree/OSVDB-91219.yml +0 -17
  349. data/data/ruby-advisory-db/gems/spree_auth/OSVDB-90865.yml +0 -16
  350. data/data/ruby-advisory-db/gems/spree_auth_devise/OSVDB-90865.yml +0 -20
  351. data/data/ruby-advisory-db/gems/sprockets/CVE-2014-7819.yml +0 -27
  352. data/data/ruby-advisory-db/gems/sprout/OSVDB-100598.yml +0 -16
  353. data/data/ruby-advisory-db/gems/sup/CVE-2013-4478.yml +0 -14
  354. data/data/ruby-advisory-db/gems/sup/CVE-2013-4479.yml +0 -14
  355. data/data/ruby-advisory-db/gems/thumbshooter/OSVDB-91839.yml +0 -9
  356. data/data/ruby-advisory-db/gems/twitter-bootstrap-rails/OSVDB-109206.yml +0 -22
  357. data/data/ruby-advisory-db/gems/uglifier/OSVDB-126747.yml +0 -19
  358. data/data/ruby-advisory-db/gems/web-console/CVE-2015-3224.yml +0 -22
  359. data/data/ruby-advisory-db/gems/web-console/OSVDB-112346.yml +0 -12
  360. data/data/ruby-advisory-db/gems/webbynode/OSVDB-100920.yml +0 -12
  361. data/data/ruby-advisory-db/gems/wicked/OSVDB-98270.yml +0 -14
  362. data/data/ruby-advisory-db/gems/will_paginate/OSVDB-101138.yml +0 -15
  363. data/data/ruby-advisory-db/gems/xaviershay-dm-rails/OSVDB-118579.yml +0 -13
  364. data/data/ruby-advisory-db/lib/cf_scrape.py +0 -5
  365. data/data/ruby-advisory-db/lib/osvdb_scrape.rb +0 -92
  366. data/data/ruby-advisory-db/libraries/rubygems/CVE-2013-4287.yml +0 -19
  367. data/data/ruby-advisory-db/libraries/rubygems/CVE-2013-4363.yml +0 -20
  368. data/data/ruby-advisory-db/libraries/rubygems/CVE-2015-3900.yml +0 -19
  369. data/data/ruby-advisory-db/libraries/rubygems/CVE-2015-4020.yml +0 -19
  370. data/data/ruby-advisory-db/libraries/rubygems/OSVDB-33561.yml +0 -17
  371. data/data/ruby-advisory-db/libraries/rubygems/OSVDB-81444.yml +0 -14
  372. data/data/ruby-advisory-db/libraries/rubygems/OSVDB-85809.yml +0 -16
  373. data/data/ruby-advisory-db/rubies/jruby/CVE-2010-1330.yml +0 -17
  374. data/data/ruby-advisory-db/rubies/jruby/CVE-2011-4838.yml +0 -15
  375. data/data/ruby-advisory-db/rubies/jruby/CVE-2012-5370.yml +0 -17
  376. data/data/ruby-advisory-db/rubies/jruby/OSVDB-94644.yml +0 -12
  377. data/data/ruby-advisory-db/rubies/rbx/OSVDB-78119.yml +0 -13
  378. data/data/ruby-advisory-db/rubies/rbx/OSVDB-87861.yml +0 -17
  379. data/data/ruby-advisory-db/rubies/ruby/CVE-2007-5162.yml +0 -16
  380. data/data/ruby-advisory-db/rubies/ruby/CVE-2007-5770.yml +0 -17
  381. data/data/ruby-advisory-db/rubies/ruby/CVE-2008-1447.yml +0 -15
  382. data/data/ruby-advisory-db/rubies/ruby/CVE-2008-1891.yml +0 -21
  383. data/data/ruby-advisory-db/rubies/ruby/CVE-2008-2376.yml +0 -18
  384. data/data/ruby-advisory-db/rubies/ruby/CVE-2008-3443.yml +0 -17
  385. data/data/ruby-advisory-db/rubies/ruby/CVE-2008-3655.yml +0 -18
  386. data/data/ruby-advisory-db/rubies/ruby/CVE-2008-3656.yml +0 -19
  387. data/data/ruby-advisory-db/rubies/ruby/CVE-2008-3657.yml +0 -16
  388. data/data/ruby-advisory-db/rubies/ruby/CVE-2008-3905.yml +0 -17
  389. data/data/ruby-advisory-db/rubies/ruby/CVE-2009-0642.yml +0 -17
  390. data/data/ruby-advisory-db/rubies/ruby/CVE-2009-5147.yml +0 -13
  391. data/data/ruby-advisory-db/rubies/ruby/CVE-2011-0188.yml +0 -17
  392. data/data/ruby-advisory-db/rubies/ruby/CVE-2011-2686.yml +0 -17
  393. data/data/ruby-advisory-db/rubies/ruby/CVE-2011-2705.yml +0 -16
  394. data/data/ruby-advisory-db/rubies/ruby/CVE-2011-3009.yml +0 -17
  395. data/data/ruby-advisory-db/rubies/ruby/CVE-2012-4464.yml +0 -17
  396. data/data/ruby-advisory-db/rubies/ruby/CVE-2012-4466.yml +0 -16
  397. data/data/ruby-advisory-db/rubies/ruby/CVE-2012-4481.yml +0 -15
  398. data/data/ruby-advisory-db/rubies/ruby/CVE-2015-1855.yml +0 -17
  399. data/data/ruby-advisory-db/rubies/ruby/CVE-2015-7551.yml +0 -19
  400. data/data/ruby-advisory-db/rubies/ruby/CVE-2015-9096.yml +0 -19
  401. data/data/ruby-advisory-db/rubies/ruby/OSVDB-100113.yml +0 -17
  402. data/data/ruby-advisory-db/rubies/ruby/OSVDB-105027.yml +0 -20
  403. data/data/ruby-advisory-db/rubies/ruby/OSVDB-107478.yml +0 -16
  404. data/data/ruby-advisory-db/rubies/ruby/OSVDB-108971.yml +0 -17
  405. data/data/ruby-advisory-db/rubies/ruby/OSVDB-113747.yml +0 -19
  406. data/data/ruby-advisory-db/rubies/ruby/OSVDB-114641.yml +0 -22
  407. data/data/ruby-advisory-db/rubies/ruby/OSVDB-120541.yml +0 -22
  408. data/data/ruby-advisory-db/rubies/ruby/OSVDB-46550.yml +0 -22
  409. data/data/ruby-advisory-db/rubies/ruby/OSVDB-46551.yml +0 -21
  410. data/data/ruby-advisory-db/rubies/ruby/OSVDB-46552.yml +0 -21
  411. data/data/ruby-advisory-db/rubies/ruby/OSVDB-46553.yml +0 -22
  412. data/data/ruby-advisory-db/rubies/ruby/OSVDB-46554.yml +0 -18
  413. data/data/ruby-advisory-db/rubies/ruby/OSVDB-47753.yml +0 -16
  414. data/data/ruby-advisory-db/rubies/ruby/OSVDB-55031.yml +0 -17
  415. data/data/ruby-advisory-db/rubies/ruby/OSVDB-60880.yml +0 -17
  416. data/data/ruby-advisory-db/rubies/ruby/OSVDB-61774.yml +0 -20
  417. data/data/ruby-advisory-db/rubies/ruby/OSVDB-65556.yml +0 -17
  418. data/data/ruby-advisory-db/rubies/ruby/OSVDB-66040.yml +0 -17
  419. data/data/ruby-advisory-db/rubies/ruby/OSVDB-70957.yml +0 -15
  420. data/data/ruby-advisory-db/rubies/ruby/OSVDB-70958.yml +0 -20
  421. data/data/ruby-advisory-db/rubies/ruby/OSVDB-74829.yml +0 -18
  422. data/data/ruby-advisory-db/rubies/ruby/OSVDB-78118.yml +0 -14
  423. data/data/ruby-advisory-db/rubies/ruby/OSVDB-87280.yml +0 -17
  424. data/data/ruby-advisory-db/rubies/ruby/OSVDB-87863.yml +0 -18
  425. data/data/ruby-advisory-db/rubies/ruby/OSVDB-87917.yml +0 -16
  426. data/data/ruby-advisory-db/rubies/ruby/OSVDB-90587.yml +0 -16
  427. data/data/ruby-advisory-db/rubies/ruby/OSVDB-93414.yml +0 -19
  428. data/data/ruby-advisory-db/rubies/ruby/OSVDB-94628.yml +0 -21
  429. data/data/ruby-advisory-db/scripts/post-advisories.sh +0 -18
  430. data/data/ruby-advisory-db/spec/advisory_example.rb +0 -202
  431. data/data/ruby-advisory-db/spec/gem_example.rb +0 -22
  432. data/data/ruby-advisory-db/spec/gems_spec.rb +0 -23
  433. data/data/ruby-advisory-db/spec/library_example.rb +0 -21
  434. data/data/ruby-advisory-db/spec/ruby_example.rb +0 -23
  435. data/data/ruby-advisory-db/spec/spec_helper.rb +0 -1
  436. data/data/ruby-advisory-db.ts +0 -1
@@ -0,0 +1,149 @@
1
+ require 'bundler/audit/results'
2
+ require 'bundler/audit/version'
3
+
4
+ require 'time'
5
+
6
+ module Bundler
7
+ module Audit
8
+ #
9
+ # Represents the result of a scan.
10
+ #
11
+ class Report
12
+
13
+ include Enumerable
14
+
15
+ # The version of `bundler-audit` which created the report object.
16
+ #
17
+ # @return [String]
18
+ attr_reader :version
19
+
20
+ # The time when the report was generated.
21
+ #
22
+ # @return [Time]
23
+ attr_reader :created_at
24
+
25
+ # The list of all results.
26
+ #
27
+ # @return [Array<Results::Result>]
28
+ attr_reader :results
29
+
30
+ # The insecure sources results.
31
+ #
32
+ # @return [Array<Results::InsecureSources>]
33
+ attr_reader :insecure_sources
34
+
35
+ # The unpatched gems results.
36
+ #
37
+ # @return [Array<Results::UnpatchedGems>]
38
+ attr_reader :unpatched_gems
39
+
40
+ #
41
+ # Initializes the report.
42
+ #
43
+ # @param [#each] results
44
+ #
45
+ def initialize(results=[])
46
+ @version = VERSION
47
+ @created_at = Time.now
48
+
49
+ @results = []
50
+ @insecure_sources = []
51
+ @unpatched_gems = []
52
+
53
+ results.each { |result| self << result }
54
+ end
55
+
56
+ #
57
+ # Enumerates over the results.
58
+ #
59
+ # @yield [result]
60
+ #
61
+ # @yieldparam [Results::InsecureSource, Results::UnpatchedGem] result
62
+ #
63
+ # @return [Enumerator]
64
+ #
65
+ def each(&block)
66
+ @results.each(&block)
67
+ end
68
+
69
+ #
70
+ # Appends a result to the report.
71
+ #
72
+ # @param [InsecureSource, UnpatchedGem] result
73
+ #
74
+ def <<(result)
75
+ @results << result
76
+
77
+ case result
78
+ when Results::InsecureSource
79
+ @insecure_sources << result
80
+ when Results::UnpatchedGem
81
+ @unpatched_gems << result
82
+ end
83
+
84
+ return self
85
+ end
86
+
87
+ #
88
+ # Determines if there were vulnerabilities found.
89
+ #
90
+ # @return [Boolean]
91
+ #
92
+ def vulnerable?
93
+ !@results.empty?
94
+ end
95
+
96
+ #
97
+ # @yield [advisory]
98
+ #
99
+ # @yieldparam [Advisory] advisory
100
+ #
101
+ # @return [Enumerator]
102
+ #
103
+ def each_advisory
104
+ return enum_for(__method__) unless block_given?
105
+
106
+ @unpatched_gems.each { |result| yield result.advisory }
107
+ end
108
+
109
+ #
110
+ # @return [Array<Advisory>]
111
+ #
112
+ def advisories
113
+ @unpatched_gems.map(&:advisory)
114
+ end
115
+
116
+ #
117
+ # @yield [gem]
118
+ #
119
+ # @yieldparam [Gem::Specification]
120
+ #
121
+ # @return [Enumerator]
122
+ #
123
+ def each_vulnerable_gem
124
+ return enum_for(__method__) unless block_given?
125
+
126
+ @unpatched_gems.each { |result| yield result.gem }
127
+ end
128
+
129
+ #
130
+ # @return [Array<Gem::Specification>]
131
+ #
132
+ def vulnerable_gems
133
+ @unpatched_gems.map(&:gem)
134
+ end
135
+
136
+ #
137
+ # @return [Hash{Symbol => Object}]
138
+ #
139
+ def to_h
140
+ {
141
+ version: @version,
142
+ created_at: @created_at,
143
+ results: @results.map(&:to_h)
144
+ }
145
+ end
146
+
147
+ end
148
+ end
149
+ end
@@ -0,0 +1,78 @@
1
+ #
2
+ # Copyright (c) 2013-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
+ #
4
+ # bundler-audit is free software: you can redistribute it and/or modify
5
+ # it under the terms of the GNU General Public License as published by
6
+ # the Free Software Foundation, either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # bundler-audit is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with bundler-audit. If not, see <https://www.gnu.org/licenses/>.
16
+ #
17
+
18
+ require 'bundler/audit/results/result'
19
+
20
+ module Bundler
21
+ module Audit
22
+ module Results
23
+ #
24
+ # Represents an insecure gem source (ex: `git://...` or `http://...`).
25
+ #
26
+ class InsecureSource < Result
27
+
28
+ # The insecure `git://` or `http://` URI.
29
+ #
30
+ # @return [URI::Generic, URI::HTTP]
31
+ attr_reader :source
32
+
33
+ #
34
+ # Initializes the insecure source result.
35
+ #
36
+ # @param [URI::Generic, URI::HTTP] source
37
+ # The insecure `git://` or `http://` URI.
38
+ #
39
+ def initialize(source)
40
+ @source = source
41
+ end
42
+
43
+ #
44
+ # Compares the insecure source with another result.
45
+ #
46
+ # @param [Result] other
47
+ #
48
+ # @return [Boolean]
49
+ #
50
+ def ==(other)
51
+ self.class == other.class && @source == other.source
52
+ end
53
+
54
+ #
55
+ # Converts the insecure source result to a String.
56
+ #
57
+ # @return [String]
58
+ #
59
+ def to_s
60
+ @source.to_s
61
+ end
62
+
63
+ #
64
+ # Converts the insecure source into a Hash.
65
+ #
66
+ # @return [Hash{Symbol => Object}]
67
+ #
68
+ def to_h
69
+ {
70
+ type: :insecure_source,
71
+ source: @source
72
+ }
73
+ end
74
+
75
+ end
76
+ end
77
+ end
78
+ end
@@ -0,0 +1,21 @@
1
+ module Bundler
2
+ module Audit
3
+ module Results
4
+ #
5
+ # @abstract
6
+ #
7
+ class Result
8
+
9
+ #
10
+ # @return [Hash{Symbol => Object}]
11
+ #
12
+ # @abstract
13
+ #
14
+ def to_h
15
+ raise(NotImplementedError,"#{self.class}#to_h not implemented!")
16
+ end
17
+
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,98 @@
1
+ #
2
+ # Copyright (c) 2013-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
+ #
4
+ # bundler-audit is free software: you can redistribute it and/or modify
5
+ # it under the terms of the GNU General Public License as published by
6
+ # the Free Software Foundation, either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # bundler-audit is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with bundler-audit. If not, see <https://www.gnu.org/licenses/>.
16
+ #
17
+
18
+ require 'bundler/audit/results/result'
19
+
20
+ require 'uri'
21
+
22
+ module Bundler
23
+ module Audit
24
+ module Results
25
+ #
26
+ # Represents a gem version that has known vulnerabilities and needs to be
27
+ # upgraded.
28
+ #
29
+ class UnpatchedGem < Result
30
+
31
+ # The specification of the vulnerable gem.
32
+ #
33
+ # @return [Gem::Specification]
34
+ attr_reader :gem
35
+
36
+ # The advisory documenting the vulnerability.
37
+ #
38
+ # @return [Advisory]
39
+ attr_reader :advisory
40
+
41
+ #
42
+ # Initializes the unpatched gem result.
43
+ #
44
+ # @param [Gem::Specification] gem
45
+ # The specification of the vulnerable gem.
46
+ #
47
+ # @param [Advisory] advisory
48
+ # The advisory documenting the vulnerability.
49
+ #
50
+ def initialize(gem,advisory)
51
+ @gem = gem
52
+ @advisory = advisory
53
+ end
54
+
55
+ #
56
+ # Compares the unpatched gem to another result.
57
+ #
58
+ # @param [Result] other
59
+ #
60
+ # @return [Boolean]
61
+ #
62
+ def ==(other)
63
+ self.class == other.class && (
64
+ @gem.name == other.gem.name &&
65
+ @gem.version == other.gem.version &&
66
+ @advisory == other.advisory
67
+ )
68
+ end
69
+
70
+ #
71
+ # Converts the unpatched gem result into a String.
72
+ #
73
+ # @return [String]
74
+ #
75
+ def to_s
76
+ @advisory.id
77
+ end
78
+
79
+ #
80
+ # Converts the unpatched gem to a Hash.
81
+ #
82
+ # @return [Hash{Symbol => Object}]
83
+ #
84
+ def to_h
85
+ {
86
+ type: :unpatched_gem,
87
+ gem: {
88
+ name: @gem.name,
89
+ version: @gem.version
90
+ },
91
+ advisory: @advisory.to_h
92
+ }
93
+ end
94
+
95
+ end
96
+ end
97
+ end
98
+ end
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright (c) 2013-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
+ #
4
+ # bundler-audit is free software: you can redistribute it and/or modify
5
+ # it under the terms of the GNU General Public License as published by
6
+ # the Free Software Foundation, either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # bundler-audit is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with bundler-audit. If not, see <https://www.gnu.org/licenses/>.
16
+ #
17
+
18
+ require 'bundler/audit/results/insecure_source'
19
+ require 'bundler/audit/results/unpatched_gem'
@@ -1,22 +1,41 @@
1
+ #
2
+ # Copyright (c) 2013-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
+ #
4
+ # bundler-audit is free software: you can redistribute it and/or modify
5
+ # it under the terms of the GNU General Public License as published by
6
+ # the Free Software Foundation, either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # bundler-audit is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with bundler-audit. If not, see <https://www.gnu.org/licenses/>.
16
+ #
17
+
1
18
  require 'bundler'
19
+ require 'bundler/audit/configuration'
2
20
  require 'bundler/audit/database'
21
+ require 'bundler/audit/report'
22
+ require 'bundler/audit/results/insecure_source'
23
+ require 'bundler/audit/results/unpatched_gem'
3
24
  require 'bundler/lockfile_parser'
4
25
 
5
26
  require 'ipaddr'
6
27
  require 'resolv'
7
28
  require 'set'
8
29
  require 'uri'
30
+ require 'yaml'
9
31
 
10
32
  module Bundler
11
33
  module Audit
34
+ #
35
+ # Scans a `Gemfile.lock` for security issues.
36
+ #
12
37
  class Scanner
13
38
 
14
- # Represents a plain-text source
15
- InsecureSource = Struct.new(:source)
16
-
17
- # Represents a gem that is covered by an Advisory
18
- UnpatchedGem = Struct.new(:gem, :advisory)
19
-
20
39
  # The advisory database
21
40
  #
22
41
  # @return [Database]
@@ -30,6 +49,11 @@ module Bundler
30
49
  # @return [Bundler::LockfileParser]
31
50
  attr_reader :lockfile
32
51
 
52
+ # The configuration loaded from the `.bundler-audit.yml` file from the project
53
+ #
54
+ # @return [Hash]
55
+ attr_reader :config
56
+
33
57
  #
34
58
  # Initializes a scanner.
35
59
  #
@@ -39,12 +63,65 @@ module Bundler
39
63
  # @param [String] gemfile_lock
40
64
  # Alternative name for the `Gemfile.lock` file.
41
65
  #
42
- def initialize(root=Dir.pwd,gemfile_lock='Gemfile.lock')
66
+ # @param [Database] database
67
+ # The database to scan against.
68
+ #
69
+ # @param [String] config_dot_file
70
+ # The file name of the bundler-audit config file.
71
+ #
72
+ # @raise [Bundler::GemfileLockNotFound]
73
+ # The `gemfile_lock` file could not be found within the `root`
74
+ # directory.
75
+ #
76
+ def initialize(root=Dir.pwd,gemfile_lock='Gemfile.lock',database=Database.new,config_dot_file='.bundler-audit.yml')
43
77
  @root = File.expand_path(root)
44
- @database = Database.new
45
- @lockfile = LockfileParser.new(
46
- File.read(File.join(@root,gemfile_lock))
47
- )
78
+ @database = database
79
+
80
+ gemfile_lock_path = File.join(@root,gemfile_lock)
81
+
82
+ unless File.file?(gemfile_lock_path)
83
+ raise(Bundler::GemfileLockNotFound,"Could not find #{gemfile_lock.inspect} in #{@root.inspect}")
84
+ end
85
+
86
+ @lockfile = LockfileParser.new(File.read(gemfile_lock_path))
87
+
88
+ config_dot_file_full_path = File.absolute_path(config_dot_file, @root)
89
+
90
+ @config = if File.exist?(config_dot_file_full_path)
91
+ Configuration.load(config_dot_file_full_path)
92
+ else
93
+ Configuration.new
94
+ end
95
+ end
96
+
97
+ #
98
+ # Preforms a {#scan} and collects the results into a {Report report}.
99
+ #
100
+ # @param [Hash] options
101
+ # Additional options.
102
+ #
103
+ # @option options [Array<String>] :ignore
104
+ # The advisories to ignore.
105
+ #
106
+ # @yield [result]
107
+ # The given block will be passed the results of the scan.
108
+ #
109
+ # @yieldparam [Results::InsecureSource, Results::UnpatchedGem] result
110
+ # A result from the scan.
111
+ #
112
+ # @return [Report]
113
+ #
114
+ # @since 0.8.0
115
+ #
116
+ def report(options={})
117
+ report = Report.new()
118
+
119
+ scan(options) do |result|
120
+ report << result
121
+ yield result if block_given?
122
+ end
123
+
124
+ return report
48
125
  end
49
126
 
50
127
  #
@@ -59,7 +136,7 @@ module Bundler
59
136
  # @yield [result]
60
137
  # The given block will be passed the results of the scan.
61
138
  #
62
- # @yieldparam [InsecureSource, UnpatchedGem] result
139
+ # @yieldparam [Results::InsecureSource, Results::UnpatchedGem] result
63
140
  # A result from the scan.
64
141
  #
65
142
  # @return [Enumerator]
@@ -68,9 +145,6 @@ module Bundler
68
145
  def scan(options={},&block)
69
146
  return enum_for(__method__,options) unless block
70
147
 
71
- ignore = Set[]
72
- ignore += options[:ignore] if options[:ignore]
73
-
74
148
  scan_sources(options,&block)
75
149
  scan_specs(options,&block)
76
150
 
@@ -86,7 +160,7 @@ module Bundler
86
160
  # @yield [result]
87
161
  # The given block will be passed the results of the scan.
88
162
  #
89
- # @yieldparam [InsecureSource] result
163
+ # @yieldparam [Results::InsecureSource] result
90
164
  # A result from the scan.
91
165
  #
92
166
  # @return [Enumerator]
@@ -105,13 +179,13 @@ module Bundler
105
179
  case source.uri
106
180
  when /^git:/, /^http:/
107
181
  unless internal_source?(source.uri)
108
- yield InsecureSource.new(source.uri)
182
+ yield Results::InsecureSource.new(source.uri)
109
183
  end
110
184
  end
111
185
  when Source::Rubygems
112
186
  source.remotes.each do |uri|
113
187
  if (uri.scheme == 'http' && !internal_source?(uri))
114
- yield InsecureSource.new(uri.to_s)
188
+ yield Results::InsecureSource.new(uri.to_s)
115
189
  end
116
190
  end
117
191
  end
@@ -130,7 +204,7 @@ module Bundler
130
204
  # @yield [result]
131
205
  # The given block will be passed the results of the scan.
132
206
  #
133
- # @yieldparam [UnpatchedGem] result
207
+ # @yieldparam [Results::UnpatchedGem] result
134
208
  # A result from the scan.
135
209
  #
136
210
  # @return [Enumerator]
@@ -143,15 +217,16 @@ module Bundler
143
217
  def scan_specs(options={})
144
218
  return enum_for(__method__,options) unless block_given?
145
219
 
146
- ignore = Set[]
147
- ignore += options[:ignore] if options[:ignore]
220
+ ignore = if options[:ignore] then Set.new(options[:ignore])
221
+ else config.ignore
222
+ end
148
223
 
149
224
  @lockfile.specs.each do |gem|
150
225
  @database.check_gem(gem) do |advisory|
151
- unless (ignore.include?(advisory.cve_id) ||
152
- ignore.include?(advisory.osvdb_id))
153
- yield UnpatchedGem.new(gem,advisory)
154
- end
226
+ is_ignored = ignore.intersect?(advisory.identifiers.to_set)
227
+ next if is_ignored
228
+
229
+ yield Results::UnpatchedGem.new(gem,advisory)
155
230
  end
156
231
  end
157
232
  end
@@ -167,7 +242,7 @@ module Bundler
167
242
  # @return [Boolean]
168
243
  #
169
244
  def internal_source?(uri)
170
- uri = URI(uri)
245
+ uri = URI.parse(uri.to_s)
171
246
 
172
247
  internal_host?(uri.host) if uri.host
173
248
  end
@@ -190,11 +265,15 @@ module Bundler
190
265
  #
191
266
  # @see https://tools.ietf.org/html/rfc1918#section-3
192
267
  # @see https://tools.ietf.org/html/rfc4193#section-8
268
+ # @see https://tools.ietf.org/html/rfc6890#section-2.2.2
269
+ # @see https://tools.ietf.org/html/rfc6890#section-2.2.3
193
270
  INTERNAL_SUBNETS = %w[
194
271
  10.0.0.0/8
195
272
  172.16.0.0/12
196
273
  192.168.0.0/16
197
274
  fc00::/7
275
+ 127.0.0.0/8
276
+ ::1/128
198
277
  ].map(&IPAddr.method(:new))
199
278
 
200
279
  #
@@ -2,6 +2,9 @@ require 'rake/tasklib'
2
2
 
3
3
  module Bundler
4
4
  module Audit
5
+ #
6
+ # Defines the `bundle:audit` rake tasks.
7
+ #
5
8
  class Task < Rake::TaskLib
6
9
  #
7
10
  # Initializes the task.
@@ -13,18 +16,28 @@ module Bundler
13
16
  protected
14
17
 
15
18
  #
16
- # Defines the `bundle:audit` task.
19
+ # Defines the `bundle:audit` and `bundle:audit:update` task.
17
20
  #
18
21
  def define
19
22
  namespace :bundle do
20
- desc 'Updates the ruby-advisory-db then runs bundle-audit'
21
- task :audit do
22
- require 'bundler/audit/cli'
23
- %w(update check).each do |command|
24
- Bundler::Audit::CLI.start [command]
23
+ namespace :audit do
24
+ desc 'Checks the Gemfile.lock for insecure dependencies'
25
+ task :check do
26
+ system 'bundler-audit', 'check'
27
+ end
28
+
29
+ desc 'Updates the bundler-audit vulnerability database'
30
+ task :update do
31
+ system 'bundler-audit', 'update'
25
32
  end
26
33
  end
34
+
35
+ task :audit => 'audit:check'
27
36
  end
37
+
38
+ task 'bundler:audit' => 'bundle:audit'
39
+ task 'bundler:audit:check' => 'bundle:audit:check'
40
+ task 'bundler:audit:update' => 'bundle:audit:update'
28
41
  end
29
42
  end
30
43
  end
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2013-2019 Hal Brodigan (postmodern.mod3 at gmail.com)
2
+ # Copyright (c) 2013-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
4
  # bundler-audit is free software: you can redistribute it and/or modify
5
5
  # it under the terms of the GNU General Public License as published by
@@ -12,12 +12,12 @@
12
12
  # GNU General Public License for more details.
13
13
  #
14
14
  # You should have received a copy of the GNU General Public License
15
- # along with bundler-audit. If not, see <http://www.gnu.org/licenses/>.
15
+ # along with bundler-audit. If not, see <https://www.gnu.org/licenses/>.
16
16
  #
17
17
 
18
18
  module Bundler
19
19
  module Audit
20
20
  # bundler-audit version
21
- VERSION = '0.6.1'
21
+ VERSION = '0.9.0.1'
22
22
  end
23
23
  end
data/lib/bundler/audit.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2013-2019 Hal Brodigan (postmodern.mod3 at gmail.com)
2
+ # Copyright (c) 2013-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
4
  # bundler-audit is free software: you can redistribute it and/or modify
5
5
  # it under the terms of the GNU General Public License as published by
@@ -12,7 +12,7 @@
12
12
  # GNU General Public License for more details.
13
13
  #
14
14
  # You should have received a copy of the GNU General Public License
15
- # along with bundler-audit. If not, see <http://www.gnu.org/licenses/>.
15
+ # along with bundler-audit. If not, see <https://www.gnu.org/licenses/>.
16
16
  #
17
17
 
18
18
  require 'bundler/audit/database'