This repository was archived by the owner on Jan 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +13
-3
lines changed
tools/evasion/payloads/go/meterpreter Expand file tree Collapse file tree 5 files changed +13
-3
lines changed Original file line number Diff line number Diff line change
1
+ [2018-05-09]
2
+ Released.: 3.1.9
3
+ Modified.: Fixed bug in golang payloads when using MINPROCS check, thanks to issue #208
4
+
1
5
[2018-05-08]
2
6
Released.: 3.1.8
3
7
Modified.: Setup script to now support Ubuntu 17 - thanks to @leesoh for the PR
7
11
Modified.: Setup updated for Debian thanks to @g0tmi1k
8
12
9
13
[2018-04-23]
10
- Released.: 3.1.6
11
- Modified.: Updated setup (again) thanks to @g0tmi1k!!!
14
+ Released.: 3.1.6
15
+ Modified.: Updated setup (again) thanks to @g0tmi1k!!!
12
16
13
17
[2018-04-05]
14
18
Released.: 3.1.5
Original file line number Diff line number Diff line change 15
15
sys .exit ()
16
16
17
17
# Current version of Veil
18
- veil_version = "3.1.8 "
18
+ veil_version = "3.1.9 "
19
19
20
20
21
21
def title_screen ():
Original file line number Diff line number Diff line change @@ -99,6 +99,8 @@ def generate(self):
99
99
# Add in other imports based on checks being performed
100
100
if self .required_options ["USERNAME" ][0 ].lower () != "x" :
101
101
payload_code += "\" strings\" \n \" os/user\" \n "
102
+ if self .required_options ["MINPROCS" ][0 ].lower () != "x" :
103
+ payload_code += "\" os\" \n "
102
104
if self .required_options ["HOSTNAME" ][0 ].lower () != "x" or self .required_options ["PROCCHECK" ][0 ].lower () != 'false' :
103
105
if "strings" not in payload_code :
104
106
payload_code += "\" strings\" \n "
Original file line number Diff line number Diff line change @@ -104,6 +104,8 @@ def generate(self):
104
104
# Add in other imports based on checks being performed
105
105
if self .required_options ["USERNAME" ][0 ].lower () != "x" :
106
106
payload_code += "\" strings\" \n \" os/user\" \n "
107
+ if self .required_options ["MINPROCS" ][0 ].lower () != "x" :
108
+ payload_code += "\" os\" \n "
107
109
if self .required_options ["HOSTNAME" ][0 ].lower () != "x" or self .required_options ["PROCCHECK" ][0 ].lower () != 'false' :
108
110
if "strings" not in payload_code :
109
111
payload_code += "\" strings\" \n "
Original file line number Diff line number Diff line change @@ -94,6 +94,8 @@ def generate(self):
94
94
# Add in other imports based on checks being performed
95
95
if self .required_options ["USERNAME" ][0 ].lower () != "x" :
96
96
payload_code += "\" strings\" \n \" os/user\" \n "
97
+ if self .required_options ["MINPROCS" ][0 ].lower () != "x" :
98
+ payload_code += "\" os\" \n "
97
99
if self .required_options ["HOSTNAME" ][0 ].lower () != "x" or self .required_options ["PROCCHECK" ][0 ].lower () != 'false' :
98
100
if "strings" not in payload_code :
99
101
payload_code += "\" strings\" \n "
You can’t perform that action at this time.
0 commit comments