/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/msf/ui/driver.rb
40 строк
535 B
WangYihang
[+] Fixed meterpreter resource bug
09 июл 2018, 06:27
09 июл 2018, 06:27
85bfca9
Код
Авторство
О чём код?
# -*- coding: binary -*- module Msf module Ui ### # # The driver class is an abstract base class that is meant to provide # a very general set of methods for 'driving' a user interface. # ### class Driver def initialize end # # Executes the user interface, optionally in an asynchronous fashion. # def run raise NotImplementedError end # # Stops executing the user interface. # def stop end # # Cleans up any resources associated with the UI driver. # def cleanup end protected end end end