ronin-vulns 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc8b11abf863d2340c92c0b15fea6261a433541d67b8e9f31c644a013c3b7736
4
- data.tar.gz: d801f3f82d4cfdc55666353d0cdbf0e95e3dd205e93bc182be0922cccefcd0a4
3
+ metadata.gz: 4b883fd15ba88606984046997827e571053dc77cc7309cb228746435706789fe
4
+ data.tar.gz: 1090624e7a3dbb9d1b212052a1f300f454620cdb5508f4605e3124b8432698b1
5
5
  SHA512:
6
- metadata.gz: 2bfbc57fee417d64e50330e218c103bde61e7a7d33c71e18bfbc60b021ad02f6976a3ea3d7151db9d7e0f777c0ae5cd38728789a99e5a349d9ad8f215c02c4db
7
- data.tar.gz: f1effc752165f25c7d605d605f942f3f6f27e16f1587da22805d3d8e3e8bb9c60a6e9fc5445cfefc67419ae2d217d1bd52ffc198debb1ff2fe868245ff9978fb
6
+ metadata.gz: ba3fecaec4b2dcba4043c8cd95d67b0443011c04f0f83296d86f2cbef4b364d30359093ebee289076a1cbf8e55b77e3a03ca9bcd8b6aea6a972390571ff14910
7
+ data.tar.gz: ffb84a729dbab47c6df0bde5f4a7df8f9c0e345de58bb9ddc36d6c6420c87b77f615b0b1d1d7caa5f8edfc456bcca909b3dbf28d32dab2ddde83bd3ec066adec
data/ChangeLog.md CHANGED
@@ -1,4 +1,9 @@
1
- ### 0.1.0 / 2023-XX-XX
1
+ ### 0.1.1 / 2023-02-02
2
+
3
+ * Fixed typo in {Ronin::Vulns::CLI::WebVulnCommand#process_url} which effected
4
+ the `ronin-vulns lfi` command and others.
5
+
6
+ ### 0.1.0 / 2023-02-01
2
7
 
3
8
  * Initial release:
4
9
  * Require `ruby` >= 3.0.0.
data/Gemfile CHANGED
@@ -29,6 +29,6 @@ group :development do
29
29
  gem 'yard-spellcheck', require: false
30
30
 
31
31
  gem 'dead_end', require: false
32
- gem 'sord', require: false
33
- gem 'stackprof', require: false
32
+ gem 'sord', require: false, platform: :mri
33
+ gem 'stackprof', require: false, platform: :mri
34
34
  end
data/README.md CHANGED
@@ -307,7 +307,7 @@ gem.add_dependency 'ronin-vulns', '~> 0.1'
307
307
 
308
308
  ## License
309
309
 
310
- Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
310
+ Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
311
311
 
312
312
  ronin-vulns is free software: you can redistribute it and/or modify
313
313
  it under the terms of the GNU Lesser General Public License as published
@@ -260,11 +260,11 @@ module Ronin
260
260
  def process_url(url)
261
261
  if @scan_mode == :first
262
262
  if (first_vuln = test_url(url))
263
- print_vuln(first_vuln)
263
+ log_vuln(first_vuln)
264
264
  end
265
265
  else
266
266
  scan_url(url) do |vuln|
267
- print_vuln(vuln)
267
+ log_vuln(vuln)
268
268
  end
269
269
  end
270
270
  end
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library to blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library for blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library for blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # ronin-vulns - A Ruby library for blind vulnerability testing.
5
5
  #
6
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
6
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
7
7
  #
8
8
  # ronin-vulns is free software: you can redistribute it and/or modify
9
9
  # it under the terms of the GNU Lesser General Public License as published
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # ronin-vulns - A Ruby library for blind vulnerability testing.
5
5
  #
6
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
6
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
7
7
  #
8
8
  # ronin-vulns is free software: you can redistribute it and/or modify
9
9
  # it under the terms of the GNU Lesser General Public License as published
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # ronin-vulns - A Ruby library for blind vulnerability testing.
5
5
  #
6
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
6
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
7
7
  #
8
8
  # ronin-vulns is free software: you can redistribute it and/or modify
9
9
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library for blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library for blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # ronin-vulns - A Ruby library for blind vulnerability testing.
5
5
  #
6
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
6
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
7
7
  #
8
8
  # ronin-vulns is free software: you can redistribute it and/or modify
9
9
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library for blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library for blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -21,6 +21,6 @@
21
21
  module Ronin
22
22
  module Vulns
23
23
  # The ronin-vulns version
24
- VERSION = '0.1.0'
24
+ VERSION = '0.1.1'
25
25
  end
26
26
  end
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library for blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # ronin-vulns - A Ruby library for blind vulnerability testing.
5
5
  #
6
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
6
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
7
7
  #
8
8
  # ronin-vulns is free software: you can redistribute it and/or modify
9
9
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-vulns - A Ruby library for blind vulnerability testing.
4
4
  #
5
- # Copyright (c) 2022 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-vulns is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ronin-vulns
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Postmodern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-01 00:00:00.000000000 Z
11
+ date: 2023-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ronin-support