/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/msf/core/session/basic.rb
44 строки
650 B
h00die
spelling fixes for lib folder
06 янв 2024, 23:54
06 янв 2024, 23:54
6a85185
Код
Авторство
О чём код?
# -*- coding: binary -*- module Msf module Session ### # # This class implements an interactive session using raw input/output in # only the most basic fashion. # ### module Basic include Msf::Session include Msf::Session::Interactive # # Description of the session. # def desc "Basic I/O" end # # Basic session. # def type "basic" end protected # # Performs the actual raw interaction with the remote side. This can be # overridden by derived classes if they wish to do this another way. # def _interact framework.events.on_session_interact(self) interact_stream(rstream) end end end end