lib/ronin/vulns/cli/commands/lfi.rb in ronin-vulns-0.1.0.beta1 vs lib/ronin/vulns/cli/commands/lfi.rb in ronin-vulns-0.1.0
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
#
# ronin-vulns - A Ruby library for blind vulnerability testing.
#
-# Copyright (c) 2007-2022 Hal Brodigan (postmodern.mod3 at gmail.com)
+# Copyright (c) 2022-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# ronin-vulns is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
@@ -108,11 +108,11 @@
return kwargs
end
#
- # Scans a URL for LFI vulnerabiltiies.
+ # Scans a URL for LFI vulnerabilities.
#
# @param [String] url
# The URL to scan.
#
# @yield [vuln]
@@ -124,10 +124,10 @@
def scan_url(url,&block)
Vulns::LFI.scan(url,**scan_kwargs,&block)
end
#
- # Tests a URL for LFI vulnerabiltiies.
+ # Tests a URL for LFI vulnerabilities.
#
# @param [String] url
# The URL to test.
#
# @return [Vulns::LFI, nil]