Skip to content

Commit 95376bf

Browse files
committed
Pymeterpreter update stager and stage descriptions
1 parent 76c3aaf commit 95376bf

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

modules/payloads/stagers/python/bind_tcp.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module Metasploit3
1515
def initialize(info = {})
1616
super(merge_info(info,
1717
'Name' => 'Python Bind TCP Stager',
18-
'Description' => 'Python connect stager',
18+
'Description' => 'Listen for a connection',
1919
'Author' => 'Spencer McIntyre',
2020
'License' => MSF_LICENSE,
2121
'Platform' => 'python',

modules/payloads/stagers/python/reverse_tcp.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module Metasploit3
1515
def initialize(info = {})
1616
super(merge_info(info,
1717
'Name' => 'Python Reverse TCP Stager',
18-
'Description' => 'Reverse Python connect back stager',
18+
'Description' => 'Connect back to the attacker',
1919
'Author' => 'Spencer McIntyre',
2020
'License' => MSF_LICENSE,
2121
'Platform' => 'python',

modules/payloads/stages/python/meterpreter.rb

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ module Metasploit3
1414
def initialize(info = {})
1515
super(update_info(info,
1616
'Name' => 'Python Meterpreter',
17-
'Description' => 'Run a meterpreter server in Python',
18-
'Author' => ['Spencer McIntyre'],
17+
'Description' => %q{
18+
Run a meterpreter server in Python. Supported Python versions
19+
are 2.5 - 2.7 and 3.1 - 3.4.
20+
},
21+
'Author' => 'Spencer McIntyre',
1922
'Platform' => 'python',
2023
'Arch' => ARCH_PYTHON,
2124
'License' => MSF_LICENSE,

0 commit comments

Comments
 (0)