lib/ronin/vulns/cli/commands/reflected_xss.rb in ronin-vulns-0.1.0.beta1 vs lib/ronin/vulns/cli/commands/reflected_xss.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. @@ -61,11 +61,11 @@ description 'Scans URL(s) for Reflected Cross Site Scripting (XSS) vulnerabilities' man_page 'ronin-vulns-reflected-xss.1' # - # Scans a URL for Reflected XSS vulnerabiltiies. + # Scans a URL for Reflected XSS vulnerabilities. # # @param [String] url # The URL to scan. # # @yield [vuln] @@ -78,10 +78,10 @@ def scan_url(url,&block) Vulns::ReflectedXSS.scan(url,**scan_kwargs,&block) end # - # Tests a URL for Reflected XSS vulnerabiltiies. + # Tests a URL for Reflected XSS vulnerabilities. # # @param [String] url # The URL to test. # # @return [Vulns::ReflectedXSS, nil]