metasploit-framework/lib/msf/http/jboss.rb

17 lines
284 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
# This module provides a way of interacting with JBoss installations
module Msf
module HTTP
module JBoss
require 'msf/http/jboss/bsh'
include Msf::HTTP::JBoss::BSH
def initialize(info = {})
super
end
end
end
end