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