Sha256: 9de5bf686936aeb12160aa40a842c4bf6ee8a05bf523591cd0ca0f9d86a2aec4

Contents?: true

Size: 836 Bytes

Versions: 43

Compression:

Stored size: 836 Bytes

Contents

#!/usr/bin/env ruby

module Rex
module Post

###
#
# This class provides generalized user interface manipulation routines that
# might be supported by post-exploitation clients.
#
###
class UI

	#
	# This method disables the keyboard on the remote machine.
	#
	def disable_keyboard
		raise NotImplementedError
	end

	#
	# This method enables the keyboard on the remote machine.
	#
	def enable_keyboard
		raise NotImplementedError
	end

	#
	# This method disables the mouse on the remote machine.
	#
	def disable_mouse
		raise NotImplementedError
	end

	#
	# This method enables the mouse on the remote machine.
	#
	def enable_mouse
		raise NotImplementedError
	end

	#
	# This method gets the number of seconds the user has been idle from input
	# on the remote machine.
	#
	def idle_time
		raise NotImplementedError
	end

end

end; end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
librex-0.0.65 lib/rex/post/ui.rb
librex-0.0.63 lib/rex/post/ui.rb
librex-0.0.54 lib/rex/post/ui.rb
librex-0.0.53 lib/rex/post/ui.rb
librex-0.0.52 lib/rex/post/ui.rb
librex-0.0.51 lib/rex/post/ui.rb
librex-0.0.50 lib/rex/post/ui.rb
librex-0.0.49 lib/rex/post/ui.rb
librex-0.0.48 lib/rex/post/ui.rb
librex-0.0.47 lib/rex/post/ui.rb
librex-0.0.46 lib/rex/post/ui.rb
librex-0.0.44 lib/rex/post/ui.rb
librex-0.0.43 lib/rex/post/ui.rb
librex-0.0.42 lib/rex/post/ui.rb
librex-0.0.41 lib/rex/post/ui.rb
librex-0.0.40 lib/rex/post/ui.rb
librex-0.0.39 lib/rex/post/ui.rb
librex-0.0.38 lib/rex/post/ui.rb
librex-0.0.37 lib/rex/post/ui.rb
librex-0.0.36 lib/rex/post/ui.rb