-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing
ronin/vulns
file for ronin-vulns irb
.
- Loading branch information
1 parent
2c26b77
commit 3737209
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# frozen_string_literal: true | ||
# | ||
# ronin-vulns - A Ruby library for blind vulnerability testing. | ||
# | ||
# Copyright (c) 2022-2024 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. | ||
# | ||
# ronin-vulns is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with ronin-vulns. If not, see <https://www.gnu.org/licenses/>. | ||
# | ||
|
||
require_relative 'vulns/vuln' | ||
require_relative 'vulns/web_vuln' | ||
require_relative 'vulns/lfi' | ||
require_relative 'vulns/rfi' | ||
require_relative 'vulns/sqli' | ||
require_relative 'vulns/ssti' | ||
require_relative 'vulns/command_injection' | ||
require_relative 'vulns/open_redirect' | ||
require_relative 'vulns/reflected_xss' | ||
require_relative 'vulns/url_scanner' | ||
require_relative 'vulns/importer' | ||
require_relative 'vulns/version' |