File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments