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

19 lines
357 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/base'
require 'msf/http/jboss/bsh'
include Msf::HTTP::JBoss::Base
include Msf::HTTP::JBoss::BSH
def initialize(info = {})
super
end
end
end
end