Skip to content

Commit

Permalink
Added the missing ronin/payloads/shellcode file.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Aug 9, 2024
1 parent 21ca34b commit 3a7b142
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
4 changes: 1 addition & 3 deletions lib/ronin/payloads.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@
require_relative 'payloads/ruby_payload'
require_relative 'payloads/rust_payload'
require_relative 'payloads/shellcode_payload'
require_relative 'payloads/shellcode/bind_shell_payload'
require_relative 'payloads/shellcode/exec_shell_payload'
require_relative 'payloads/shellcode/reverse_shell_payload'
require_relative 'payloads/shellcode'
require_relative 'payloads/shell_payload'
require_relative 'payloads/sql_payload'
require_relative 'payloads/url_payload'
Expand Down
24 changes: 24 additions & 0 deletions lib/ronin/payloads/shellcode.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# frozen_string_literal: true
#
# ronin-payloads - A Ruby micro-framework for writing and running exploit
# payloads.
#
# Copyright (c) 2007-2024 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# ronin-payloads 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-payloads 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-payloads. If not, see <https://www.gnu.org/licenses/>.
#

require_relative 'shellcode/bind_shell_payload'
require_relative 'shellcode/exec_shell_payload'
require_relative 'shellcode/reverse_shell_payload'

0 comments on commit 3a7b142

Please sign in to comment.