Sha256: b821a045f829f4562abb7d3d4e7be0cf8f7eb0ae331d38488be1ae3022186056
Contents?: true
Size: 1.5 KB
Versions: 7
Compression:
Stored size: 1.5 KB
Contents
# frozen_string_literal: true # # ronin-payloads - A Ruby micro-framework for writing and running exploit # payloads. # # Copyright (c) 2007-2023 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 'ronin/payloads/version' require 'command_kit/commands' require 'command_kit/commands/auto_load' require 'command_kit/options/version' module Ronin module Payloads # # The `ronin-payloads` command-line interface (CLI). # # @api private # class CLI include CommandKit::Commands include CommandKit::Commands::AutoLoad.new( dir: "#{__dir__}/cli/commands", namespace: "#{self}::Commands" ) include CommandKit::Options::Version command_name 'ronin-payloads' version Ronin::Payloads::VERSION command_aliases['ls'] = 'list' command_aliases['info'] = 'show' end end end
Version data entries
7 entries across 7 versions & 1 rubygems