Class: Rex::Proto::Http::Server

Inherits:
Object
  • Object
show all
Includes:
Rex::Proto
Defined in:
lib/rex/proto/http/server.rb

Overview

Acts as an HTTP server, processing requests and dispatching them to registered procs. Some of this server was modeled after webrick.

Defined Under Namespace

Classes: UnitTest

Constant Summary collapse

ExtensionMimeTypes =

A hash that associated a file extension with a mime type for use as the content type of responses.

{
	"rhtml" => "text/html",
	"html"  => "text/html",
	"htm"   => "text/htm",
	"jpg"   => "image/jpeg",
	"jpeg"  => "image/jpeg",
	"jpeg"  => "image/jpeg",
	"gif"   => "image/gif",
	"png"   => "image/png",
	"bmp"   => "image/bmp",
	"txt"   => "text/plain",
	"css"   => "text/css",
	"ico"   => "image/x-icon",
}
DefaultServer =

The default server name that will be returned in the Server attribute of a response.

"Rex"

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(port = 80, listen_host = '0.0.0.0', ssl = false, context = {}, comm = nil, ssl_cert = nil) ⇒ Server

Initializes an HTTP server as listening on the provided port and hostname.



103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/rex/proto/http/server.rb', line 103

def initialize(port = 80, listen_host = '0.0.0.0', ssl = false, context = {}, comm = nil, ssl_cert = nil)
	self.listen_host = listen_host
	self.listen_port = port
	self.ssl         = ssl
	self.context     = context
	self.comm        = comm
	self.ssl_cert    = ssl_cert

	self.listener    = nil
	self.resources   = {}
	self.server_name = DefaultServer
end

Instance Attribute Details

#commObject

Returns the value of attribute comm.



263
264
265
# File 'lib/rex/proto/http/server.rb', line 263

def comm
  @comm
end

#contextObject

Returns the value of attribute context.



263
264
265
# File 'lib/rex/proto/http/server.rb', line 263

def context
  @context
end

#listen_hostObject

Returns the value of attribute listen_host.



263
264
265
# File 'lib/rex/proto/http/server.rb', line 263

def listen_host
  @listen_host
end

#listen_portObject

Returns the value of attribute listen_port.



263
264
265
# File 'lib/rex/proto/http/server.rb', line 263

def listen_port
  @listen_port
end

#listenerObject

Returns the value of attribute listener.



264
265
266
# File 'lib/rex/proto/http/server.rb', line 264

def listener
  @listener
end

#resourcesObject

Returns the value of attribute resources.



264
265
266
# File 'lib/rex/proto/http/server.rb', line 264

def resources
  @resources
end

#server_nameObject

Returns the value of attribute server_name.



263
264
265
# File 'lib/rex/proto/http/server.rb', line 263

def server_name
  @server_name
end

#sslObject

Returns the value of attribute ssl.



263
264
265
# File 'lib/rex/proto/http/server.rb', line 263

def ssl
  @ssl
end

#ssl_certObject

Returns the value of attribute ssl_cert.



263
264
265
# File 'lib/rex/proto/http/server.rb', line 263

def ssl_cert
  @ssl_cert
end

Class Method Details

.hardcore_alias(*args) ⇒ Object

Returns the hardcore alias for the HTTP service



119
120
121
# File 'lib/rex/proto/http/server.rb', line 119

def self.hardcore_alias(*args)
	"#{(args[0] || '')}#{(args[1] || '')}"
end

Instance Method Details

#add_resource(name, opts) ⇒ Object

Adds a resource handler, such as one for /, which will be called whenever the resource is requested. The “opts” parameter can have any of the following:

Proc (proc) - The procedure to call when a request comes in for this resource. LongCall (bool) - Hints to the server that this resource may have long

request processing times.


201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/rex/proto/http/server.rb', line 201

def add_resource(name, opts)
	if (resources[name])
		raise RuntimeError,
			"The supplied resource '#{name}' is already added.", caller
	end

	# If a procedure was passed, mount the resource with it.
	if (opts['Proc'])
		mount(name, Handler::Proc, false, opts['Proc'], opts['VirtualDirectory'])
	else
		raise ArgumentError, "You must specify a procedure."
	end
end

#add_response_headers(resp) ⇒ Object

Adds Server headers and stuff.



225
226
227
# File 'lib/rex/proto/http/server.rb', line 225

def add_response_headers(resp)
	resp['Server'] = self.server_name if not resp['Server']
end

#aliasObject

HTTP server.



126
127
128
# File 'lib/rex/proto/http/server.rb', line 126

def alias
	super || "HTTP Server"
end

#close_client(cli) ⇒ Object

Closes the supplied client, if valid.



174
175
176
# File 'lib/rex/proto/http/server.rb', line 174

def close_client(cli)
	listener.close_client(cli)
end

#mime_type(file) ⇒ Object

Returns the mime type associated with the supplied file. Right now the set of mime types is fairly limited.



233
234
235
236
237
238
239
240
241
# File 'lib/rex/proto/http/server.rb', line 233

def mime_type(file)
	type = nil

	if (file =~ /\.(.+?)$/)
		type = ExtensionMimeTypes[$1.downcase]
	end

	type || "text/plain"
end

#mount(root, handler, long_call = false, *args) ⇒ Object

Mounts a directory or resource as being serviced by the supplied handler.



181
182
183
# File 'lib/rex/proto/http/server.rb', line 181

def mount(root, handler, long_call = false, *args)
	resources[root] = [ handler, long_call, args ]
end

#remove_resource(name) ⇒ Object

Removes the supplied resource handler.



218
219
220
# File 'lib/rex/proto/http/server.rb', line 218

def remove_resource(name)
	self.resources.delete(name)
end

#send_e404(cli, request) ⇒ Object

Sends a 404 error to the client for a given request.



246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'lib/rex/proto/http/server.rb', line 246

def send_e404(cli, request)
	resp = Response::E404.new

	resp['Content-Type'] = 'text/html'

	resp.body =
		"<html><head>" +
		"<title>404 Not Found</title>" +
		"</head><body>" +
		"<h1>Not found</h1>" +
		"The requested URL #{html_escape(request.resource)} was not found on this server.<p><hr>" +
		"</body></html>"

	# Send the response to the client like what
	cli.send_response(resp)
end

#startObject

Listens on the defined port and host and starts monitoring for clients.



133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# File 'lib/rex/proto/http/server.rb', line 133

def start

	self.listener = Rex::Socket::TcpServer.create(
		'LocalHost' => self.listen_host,
		'LocalPort' => self.listen_port,
		'Context'   => self.context,
		'SSL'		=> self.ssl,
		'SSLCert'	=> self.ssl_cert,
		'Comm'      => self.comm
	)

	# Register callbacks
	self.listener.on_client_connect_proc = Proc.new { |cli|
		on_client_connect(cli)
	}
	self.listener.on_client_data_proc = Proc.new { |cli|
		on_client_data(cli)
	}

	self.listener.start
end

#stopObject

Terminates the monitor thread and turns off the listener.



158
159
160
161
# File 'lib/rex/proto/http/server.rb', line 158

def stop
	self.listener.stop
	self.listener.close
end

#unmount(root) ⇒ Object

Remove the mount point.



188
189
190
# File 'lib/rex/proto/http/server.rb', line 188

def unmount(root)
	resources.delete(root)
end

#waitObject

Waits for the HTTP service to terminate



167
168
169
# File 'lib/rex/proto/http/server.rb', line 167

def wait
	self.listener.wait if self.listener
end