Skip to content

Commit 8f09790

Browse files
committed
Added Ronin::Code::SQLI.
1 parent e63126c commit 8f09790

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

lib/ronin/code/sqli.rb

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# frozen_string_literal: true
2+
#
3+
# ronin-code-sql - A Ruby DSL for crafting SQL Injections.
4+
#
5+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
6+
#
7+
# ronin-code-sql is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser General Public License as published
9+
# by the Free Software Foundation, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# ronin-code-sql is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with ronin-code-sql. If not, see <https://www.gnu.org/licenses/>.
19+
#
20+
21+
require 'ronin/code/sql/injection'
22+
23+
module Ronin
24+
module Code
25+
# Alias for {SQL::Injection}.
26+
#
27+
# @since 2.1.0
28+
SQLI = SQL::Injection
29+
end
30+
end

0 commit comments

Comments
 (0)