2014-07-17 22:56:32 +00:00
|
|
|
# -*- coding: binary -*-
|
|
|
|
|
|
|
|
# This module provides a way of interacting with JBoss installations
|
|
|
|
module Msf
|
|
|
|
module HTTP
|
|
|
|
module JBoss
|
2014-07-18 09:51:46 +00:00
|
|
|
require 'msf/http/jboss/base'
|
2014-07-17 22:56:32 +00:00
|
|
|
require 'msf/http/jboss/bsh'
|
|
|
|
|
2014-07-18 09:51:46 +00:00
|
|
|
include Msf::HTTP::JBoss::Base
|
2014-07-17 22:56:32 +00:00
|
|
|
include Msf::HTTP::JBoss::BSH
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|