/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/rex/post/ui.rb
52 строки
878 B
Jonathan
removed shebangs from files within rex
08 ноя 2013, 03:51
08 ноя 2013, 03:51
5750725
Код
Авторство
О чём код?
# -*- coding: binary -*- 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