forked from cobbr/SharpSploit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharpSploit.xml
More file actions
2603 lines (2598 loc) · 160 KB
/
Copy pathSharpSploit.xml
File metadata and controls
2603 lines (2598 loc) · 160 KB
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>SharpSploit</name>
</assembly>
<members>
<member name="T:SharpSploit.Credentials.Mimikatz">
<summary>
(SharpSploit.Credentials.)Mimikatz is a library for executing Mimikatz functions. SharpSploit's implementation
uses a PE Loader to execute Mimikatz functions. This is a wrapper class that loads the PE and executes user-
specified Mimikatz functions
</summary>
<remarks>
Mimikatz is a tool for playing with credentials in Windows, written by Benjamin Delpy (@gentilkiwi). (Found
at https://github.com/gentilkiwi/mimikatz).
This wrapper class is adapted from Chris Ross (@xorrior)'s implementation, converted by (@TheRealWover) to use the Manual Mapping API.
</remarks>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.Command(System.String)">
<summary>
Loads the Mimikatz PE and executes a chosen Mimikatz command.
</summary>
<param name="Command">Mimikatz command to be executed.</param>
<returns>Mimikatz output.</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.Coffee">
<summary>
Loads the Mimikatz PE and executes the Mimikatz command to get some coffee.
Equates to `Command("coffee")`.
</summary>
<returns>Mimikatz output.</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.LogonPasswords">
<summary>
Loads the Mimikatz PE and executes the Mimikatz command to retrieve plaintext
passwords from LSASS. Equates to `Command("privilege::debug sekurlsa::logonPasswords")`. (Requires Admin)
</summary>
<returns>Mimikatz output.</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.SamDump">
<summary>
Loads the Mimikatz PE and executes the Mimikatz command to retrieve password hashes
from the SAM database. Equates to `Command("privilege::debug lsadump::sam")`. (Requires Admin)
</summary>
<returns>Mimikatz output.</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.LsaSecrets">
<summary>
Loads the Mimikatz PE and executes the Mimikatz command to retrieve LSA secrets
stored in registry. Equates to `Command("privilege::debug lsadump::secrets")`. (Requires Admin)
</summary>
<returns>Mimikatz output.</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.LsaCache">
<summary>
Loads the Mimikatz PE and executes the Mimikatz command to retrieve Domain
Cached Credentials hashes from registry. Equates to `Command("privilege::debug lsadump::cache")`.
(Requires Admin)
</summary>
<returns>Mimikatz output.</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.Wdigest">
<summary>
Loads the Mimikatz PE and executes the Mimikatz command to retrieve Wdigest
credentials from registry. Equates to `Command("sekurlsa::wdigest")`.
</summary>
<returns>Mimikatz output.</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.All">
<summary>
Loads the Mimikatz PE and executes each of the builtin local commands (not DCSync). (Requires Admin)
</summary>
<returns>Mimikatz output.</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.DCSync(System.String,System.String,System.String)">
<summary>
Loads the Mimikatz PE and executes the "dcsync" module to retrieve the NTLM hash of a specified (or all) Domain user. (Requires Domain Admin)
</summary>
<param name="user">Username to retrieve NTLM hash for. "All" for all domain users.</param>
<param name="FQDN">Optionally specify an alternative fully qualified domain name. Default is current domain.</param>
<param name="DC">Optionally specify a specific Domain Controller to target for the dcsync.</param>
<returns>The NTLM hash of the target user(s).</returns>
</member>
<member name="M:SharpSploit.Credentials.Mimikatz.PassTheHash(System.String,System.String,System.String,System.String)">
<summary>
Loads the Mimikatz PE and executes the "pth" module to start a new process
as a user using an NTLM password hash for authentication.
</summary>
<param name="user">Username to authenticate as.</param>
<param name="NTLM">NTLM hash to authenticate the user.</param>
<param name="FQDN">Optionally specify an alternative fully qualified domain name. Default is current domain.</param>
<param name="run">The command to execute as the specified user.</param>
<returns></returns>
</member>
<member name="T:SharpSploit.Credentials.Tokens">
<summary>
Tokens is a library for token manipulation that can be used to impersonate other users, run commands as other user,
and/or to bypass UAC using token duplication.
</summary>
<remarks>
Tokens is adapted from and borrows heavily from Alexander Leary's (@0xbadjuju) Tokenvator (Found
at https://github.com/0xbadjuju/Tokenvator).
</remarks>
</member>
<member name="M:SharpSploit.Credentials.Tokens.#ctor(System.Boolean)">
<summary>
Creates the Tokens class, attempts to obtain the current process' token, and obtain the SeDebugPrivilege.
</summary>
</member>
<member name="M:SharpSploit.Credentials.Tokens.Dispose">
<summary>
Attempts to close all open handles.
</summary>
</member>
<member name="M:SharpSploit.Credentials.Tokens.WhoAmI">
<summary>
Gets the username of the currently used/impersonated token.
</summary>
<returns>Current username.</returns>
</member>
<member name="M:SharpSploit.Credentials.Tokens.ImpersonateUser(System.String)">
<summary>
Find a process owned by the specificied user and impersonate the token. Used to execute subsequent commands
as the specified user. (Requires Admin)
</summary>
<param name="Username">User to impersonate. "DOMAIN\Username" format expected.</param>
<returns>True if impersonation succeeds, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Credentials.Tokens.ImpersonateProcess(System.UInt32)">
<summary>
Impersonate the token of the specified process. Used to execute subsequent commands as the user associated
with the token of the specified process. (Requires Admin)
</summary>
<param name="ProcessID">Process ID of the process to impersonate.</param>
<returns>True if impersonation succeeds, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Credentials.Tokens.GetSystem">
<summary>
Impersonate the SYSTEM user. Equates to `ImpersonateUser("NT AUTHORITY\SYSTEM")`. (Requires Admin)
</summary>
<returns>True if impersonation succeeds, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Credentials.Tokens.BypassUAC(System.String,System.String,System.String,System.Int32)">
<summary>
Bypasses UAC through token duplication and spawns a specified process. (Requires Admin)
</summary>
<param name="Binary">The binary to execute with high integrity.</param>
<param name="Arguments">Arguments to pass to the binary.</param>
<param name="Path">Path that the binary resides in.</param>
<param name="ProcessId">Specify the process for which to perform token duplication. By deafult (0), all
appropriate processes will be tried.</param>
<returns>True if UAC bypass succeeeds, false otherwise.</returns>
<remarks>
Credit for the UAC bypass token duplication technique goes to James Forshaw (@tiraniddo).
Credit for the PowerShell implementation of this bypass goes to Matt Nelson (@enigma0x3).
</remarks>
</member>
<member name="M:SharpSploit.Credentials.Tokens.RunAs``1(System.String,System.String,System.String,System.Func{``0},SharpSploit.Execution.Win32.Advapi32.LOGON_TYPE)">
<summary>
Makes a new token to run a specified function as a specified user with a specified password. Automatically calls
`RevertToSelf()` after executing the function.
</summary>
<typeparam name="T">Type of object to be return by the Action function.</typeparam>
<param name="Username">Username to execute Action as.</param>
<param name="Domain">Domain to authenticate the user to.</param>
<param name="Password">Password to authenticate the user.</param>
<param name="Action">Action to perform as the user</param>
<param name="LogonType">LogonType to use. Defaults to LOGON32_LOGON_INTERACTIVE, which is suitable for local
actions. LOGON32_LOGON_NEW_CREDENTIALS is suitable to perform actions which require remote authentication.</param>
<returns>Object returned by the Action function.</returns>
<remarks>
Credit to https://github.com/mj1856/SimpleImpersonation for the awesome Func(T) idea.
</remarks>
</member>
<member name="M:SharpSploit.Credentials.Tokens.MakeToken(System.String,System.String,System.String,SharpSploit.Execution.Win32.Advapi32.LOGON_TYPE)">
<summary>
Makes a new token with a specified username and password, and impersonates it to conduct future actions as
the specified user.
</summary>
<param name="Username">Username to authenticate as.</param>
<param name="Domain">Domain to authenticate the user to.</param>
<param name="Password">Password to authenticate the user.</param>
<param name="LogonType">LogonType to use. Defaults to LOGON32_LOGON_NEW_CREDENTIALS, which is suitable to
perform actions which require remote authentication. LOGON32_LOGON_INTERACTIVE is suitable for local actions</param>
<returns>True if impersonation succeeds, false otherwise.</returns>
<remarks>
Credit to @rsmudge for the technique detailed here: https://blog.cobaltstrike.com/2015/12/16/windows-access-tokens-and-alternate-credentials
</remarks>
</member>
<member name="M:SharpSploit.Credentials.Tokens.RevertToSelf">
<summary>
Ends the impersonation of any token, reverting back to the initial token associated with the current process.
Useful in conjuction with functions that impersonate a token and do not automatically RevertToSelf, such
as: `ImpersonateUser()`, `ImpersonateProcess()`, `GetSystem()`, and `MakeToken()`.
</summary>
<returns>True if RevertToSelf succeeds, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Credentials.Tokens.EnableTokenPrivilege(System.IntPtr@,System.String)">
<summary>
Enables a specified security privilege for a specified token.
</summary>
<param name="hToken">Token to enable a security privilege for.</param>
<param name="Privilege">Privilege to enable.</param>
<returns>True if enabling Token succeeds, false otherwise.</returns>
</member>
<member name="T:SharpSploit.Enumeration.Clipboard">
<summary>
Clipboard allows for the monitoring of Clipboard text content.
</summary>
</member>
<member name="M:SharpSploit.Enumeration.Clipboard.StartClipboardMonitor(System.Int32)">
<summary>
Starts a clipboard monitor
</summary>
<author>Nick Muir (@_shellfarmer)</author>
<returns>String containing the captured clipboard contents, along with identification of what window they were copied from.</returns>
<param name="Seconds">The amount of time in seconds the clipboard monitor should run for before returning data.</param>
</member>
<member name="M:SharpSploit.Enumeration.Clipboard.GetActiveWindowTitle">
<summary>
Gets the active window title of the window keystrokes are being entered in.
</summary>
<author>Scottie Austin (@checkymander)</author>
<returns>Title of the active window.</returns>
</member>
<member name="T:SharpSploit.Enumeration.Domain">
<summary>
Domain is a library for domain enumeration that can be used to search for and query for information from
DomainObjects such as users, groups, and computers.
</summary>
<remarks>
Domain is adapted from Will Schroeder's (@harmj0y) PowerView (Found
at https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1)
</remarks>
</member>
<member name="T:SharpSploit.Enumeration.Domain.DomainSearcher">
<summary>
DomainSearcher is a LDAP searcher class for domain enumeration.
</summary>
<remarks>
DomainSearcher is adapted from Will Schroeder's (@harmj0y) PowerView. (Found
at https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1)
</remarks>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.#ctor(SharpSploit.Enumeration.Domain.Credential,System.String,System.String,System.String,System.String,System.DirectoryServices.SearchScope,System.Int32,System.TimeSpan,System.Boolean,System.DirectoryServices.SecurityMasks)">
<summary>
Constructor for the DomainSearcher class.
</summary>
<param name="Credentials">Optional alternative Credentials to authenticate to the Domain.</param>
<param name="Domain">Optional alternative Domain to authenticate to and search.</param>
<param name="Server">Optional alternative Server within the Domain to authenticate to and search.</param>
<param name="SearchBase">Optional SearchBase to prepend to all LDAP searches.</param>
<param name="SearchString">Optional SearchString to append to SearchBase for all LDAP searches.</param>
<param name="SearchScope">Optional SearchScope for the underlying DirectorySearcher object.</param>
<param name="ResultPageSize">Optional ResultPageSize for the underlying DirectorySearcher object.</param>
<param name="ServerTimeLimit">Optional max time limit for the server per search.</param>
<param name="TombStone">Optionally retrieve deleted/tombstoned DomainObjects</param>
<param name="SecurityMasks">Optional SecurityMasks for the underlying DirectorySearcher object.</param>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.GetDomainUser(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.UACEnum},System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Gets a specified user `DomainObject` in the current Domain.
</summary>
<param name="Identity">Username to search for.</param>
<param name="LDAPFilter">Optional LDAP filter to apply to the search.</param>
<param name="Properties">Optional list of properties to retrieve from the DomainObject.
If not specified, all properties are included.</param>
<param name="UACFilter">Optional filter to parse the userAccountControl DomainObject property.</param>
<param name="SPN">Optionally filter for only a DomainObject with an SPN set.</param>
<param name="AllowDelegation">Optionally filter for only a DomainObject that allows for delegation.</param>
<param name="DisallowDelegation">Optionally filter for only a DomainObject that does not allow for delegation.</param>
<param name="AdminCount">Optionally filter for only a DomainObject with the AdminCount property set.</param>
<param name="TrustedToAuth">Optionally filter for only a DomainObject that is trusted to authenticate for other DomainObjects</param>
<param name="PreauthNotRequired">Optionally filter for only a DomainObject does not require Kerberos preauthentication.</param>
<returns>Matching user DomainObject</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.GetDomainUsers(System.Collections.Generic.IEnumerable{System.String},System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.UACEnum},System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Gets a list of specified (or all) user `DomainObject`s in the current Domain.
</summary>
<param name="Identities">Optional list of usernames to search for.</param>
<param name="LDAPFilter">Optional LDAP filter to apply to the search.</param>
<param name="Properties">Optional list of properties to retrieve from the DomainObject.
If not specified, all properties are included.</param>
<param name="UACFilter">Optional filter to parse the userAccountControl DomainObject property.</param>
<param name="SPN">Optionally filter for only a DomainObject with an SPN set.</param>
<param name="AllowDelegation">Optionally filter for only a DomainObject that allows for delegation.</param>
<param name="DisallowDelegation">Optionally filter for only a DomainObject that does not allow for delegation.</param>
<param name="AdminCount">Optionally filter for only a DomainObject with the AdminCount property set.</param>
<param name="TrustedToAuth">Optionally filter for only a DomainObject that is trusted to authenticate for other DomainObjects</param>
<param name="PreauthNotRequired">Optionally filter for only a DomainObject does not require Kerberos preauthentication.</param>
<param name="FindOne">Optionally find only the first matching DomainObject.</param>
<returns>List of matching user DomainObjects</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.GetDomainGroup(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,System.String,System.String)">
<summary>
Gets a specified group `DomainObject` in the current Domain.
</summary>
<param name="Identity">Group name to search for.</param>
<param name="LDAPFilter">Optional LDAP filter to apply to the search.</param>
<param name="Properties">Optional list of properties to retrieve from the DomainObject.
If not specified, all properties are included.</param>
<param name="AdminCount">Optionally filter for only a DomainObject with the AdminCount property set.</param>
<param name="GroupScope">Optionally filter for a GroupScope (DomainLocal, Global, Universal, etc).</param>
<param name="GroupProperty">Optionally filter for a GroupProperty (Security, Distribution, CreatedBySystem,
NotCreatedBySystem,etc)</param>
<returns>Matching group DomainObject</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.GetDomainGroups(System.Collections.Generic.IEnumerable{System.String},System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,System.String,System.String,System.Boolean)">
<summary>
Gets a list of specified (or all) group `DomainObject`s in the current Domain.
</summary>
<param name="Identities">Optional list of group names to search for.</param>
<param name="LDAPFilter">Optional LDAP filter to apply to the search.</param>
<param name="Properties">Optional list of properties to retrieve from the DomainObject.
If not specified, all properties are included.</param>
<param name="AdminCount">Optionally filter for only a DomainObject with the AdminCount property set.</param>
<param name="GroupScope">Optionally filter for a GroupScope (DomainLocal, Global, Universal, etc).</param>
<param name="GroupProperty">Optionally filter for a GroupProperty (Security, Distribution, CreatedBySystem,
NotCreatedBySystem,etc).</param>
<param name="FindOne">Optionally find only the first matching DomainObject.</param>
<returns>List of matching group DomainObjects</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.GetDomainComputer(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.UACEnum},System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String,System.Boolean)">
<summary>
Gets a specified computer `DomainObject` in the current Domain.
</summary>
<param name="Identity">ComputerName to search for</param>
<param name="LDAPFilter">Optional LDAP filter to apply to the search.</param>
<param name="Properties">Optional list of properties to retrieve from the DomainObject.
If not specified, all properties are included.</param>
<param name="UACFilter">Optional filter to parse the userAccountControl DomainObject property.</param>
<param name="Unconstrained">Optionally filter for only a DomainObject that has unconstrained delegation.</param>
<param name="TrustedToAuth">Optionally filter for only a DomainObject that is trusted to authenticate for other DomainObjects</param>
<param name="Printers">Optionally return only a DomainObject that is a printer.</param>
<param name="SPN">Optionally filter for only a DomainObject with an SPN set.</param>
<param name="OperatingSystem">Optionally filter for only a DomainObject with a specific Operating System, wildcards accepted.</param>
<param name="ServicePack">Optionally filter for only a DomainObject with a specific service pack, wildcards accepted.</param>
<param name="SiteName">Optionally filter for only a DomainObject in a specific Domain SiteName, wildcards accepted.</param>
<param name="Ping">Optional switch, ping the computer to ensure it's up before enumerating.</param>
<returns>Matching computer DomainObject</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.GetDomainComputers(System.Collections.Generic.IEnumerable{System.String},System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.UACEnum},System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean)">
<summary>
Gets a list of specified (or all) computer `DomainObject`s in the current Domain.
</summary>
<param name="Identities">Optional list of ComputerNames to search for.</param>
<param name="LDAPFilter">Optional LDAP filter to apply to the search.</param>
<param name="Properties">Optional list of properties to retrieve from the DomainObject.
If not specified, all properties are included.</param>
<param name="UACFilter">Optional filter to parse the userAccountControl DomainObject property.</param>
<param name="Unconstrained">Optionally filter for only a DomainObject that has unconstrained delegation.</param>
<param name="TrustedToAuth">Optionally filter for only a DomainObject that is trusted to authenticate for other DomainObjects</param>
<param name="Printers">Optionally return only a DomainObject that is a printer.</param>
<param name="SPN">Optionally filter for only a DomainObject with an SPN set.</param>
<param name="OperatingSystem">Optionally filter for only a DomainObject with a specific Operating System, wildcards accepted.</param>
<param name="ServicePack">Optionally filter for only a DomainObject with a specific service pack, wildcards accepted.</param>
<param name="SiteName">Optionally filter for only a DomainObject in a specific Domain SiteName, wildcards accepted.</param>
<param name="Ping">Optional switch, ping the computer to ensure it's up before enumerating.</param>
<param name="FindOne">Optionally find only the first matching DomainObject.</param>
<returns>List of matching computer DomainObjects</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.GetDomainSPNTickets(System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.DomainObject})">
<summary>
Gets `SPNTicket`s for specified `DomainObject`s.
</summary>
<param name="DomainObjects">List of DomainObjects with an SPN set.</param>
<returns>List of SPNTickets for the specified DomainObjects</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.GetDomainSPNTicket(SharpSploit.Enumeration.Domain.DomainObject)">
<summary>
Get `SPNTicket` for specified `DomainObject`.
</summary>
<param name="DomainObject">DomainObject with an SPN set.</param>
<returns>SPNTicker for the specified DomainObject</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.Kerberoast(System.Collections.Generic.IEnumerable{System.String},System.String,System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.UACEnum},System.Boolean)">
<summary>
Gets a list of `SPNTicket`s for specified (or all) users with a SPN set in the current Domain.
</summary>
<param name="Identities">Username to Kerberoast of a user with an SPN set.</param>
<param name="LDAPFilter">Optional LDAP filter when searching for users with an SPN set.</param>
<param name="UACFilter">Optional filter to parse the userAccountControl DomainObject property.</param>
<param name="FindOne">If true, will only find a single SPNTicket for the first user found with an SPN set.</param>
<returns>List of SPNTickets</returns>
</member>
<member name="M:SharpSploit.Enumeration.Domain.DomainSearcher.Kerberoast(System.String,System.String,System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.UACEnum})">
<summary>
Gets a list of `SPNTicket`s for specified (or all) users with a SPN set in the current Domain.
</summary>
<param name="Identity">Optional list of users to Kerberoast. If null, all users with an SPN set will be used.</param>
<param name="LDAPFilter">Optional LDAP filter when searching for users with an SPN set.</param>
<param name="UACFilter">Optional filter to parse the userAccountControl DomainObject property.</param>
<returns>List of SPNTickets</returns>
</member>
<member name="T:SharpSploit.Enumeration.Domain.Credential">
<summary>
Credential to authenticate to the Domain with a DomainSearcher object.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Domain.DomainObject">
<summary>
Generic DomainObject class for LDAP entries in Active Directory.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Domain.SPNTicket">
<summary>
SPNTicket for a DomainObject with a SPN set. Useful for obtaining krb5tgs hashes.
</summary>
</member>
<member name="M:SharpSploit.Enumeration.Domain.SPNTicket.#ctor(System.String,System.String,System.String,System.String)">
<summary>
Constructor for SPNTicket.
</summary>
<param name="servicePrincipalName">Service Principal Name (SPN) for which the ticket applies.</param>
<param name="samAccountName">SamAccountName for the user that has a SPN set.</param>
<param name="userDomain">Domain name for the user that has a SPN set.</param>
<param name="ticketHexStream">TicketHexStream of the SPNTicket.</param>
</member>
<member name="M:SharpSploit.Enumeration.Domain.SPNTicket.GetFormattedHash(SharpSploit.Enumeration.Domain.SPNTicket.HashFormat)">
<summary>
Gets a krb5tgs hash formatted for a cracker.
</summary>
<param name="format">Format for the hash.</param>
<returns>Formatted krb5tgs hash.</returns>
</member>
<member name="T:SharpSploit.Enumeration.Net">
<summary>
Net is a library for localgroup/domain enumeration that can be used to search for users, groups, loggedonusers,
and sessions on remote systems using Win32 API functions.
</summary>
<remarks>
Net is adapted from Will Schroeder's (@harmj0y) PowerView. (Found
at https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1)
</remarks>
</member>
<member name="T:SharpSploit.Enumeration.Net.LocalGroup">
<summary>
LocalGroup represents a local group object on a remote system.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Net.LocalGroupMember">
<summary>
LocalGroupMember represents a user's membership to a local group on a remote system.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Net.LoggedOnUser">
<summary>
LoggedOnUser represents a user logged on to a remote system.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Net.SessionInfo">
<summary>
SessionInfo represents a user with a session on a remote system.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Net.ShareInfo">
<summary>
ShareInfo represents a share on a remote system.
</summary>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLocalGroups(SharpSploit.Enumeration.Domain.DomainObject,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LocalGroup`s from a specified DomainCompter.
</summary>
<param name="DomainComputer">DomainComputer to query for LocalGroups.</param>
<param name="Credential">Credential to use for authentication to the DomainComputer.</param>
<returns>List of LocalGroups.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLocalGroups(System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.DomainObject},SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LocalGroup`s from specified DomainComputers.
</summary>
<param name="DomainComputers">List of DomainComputers to query for LocalGroups.</param>
<param name="Credential">Credential to use for authentication to the DomainComputer.</param>
<returns>List of LocalGroups.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLocalGroups(System.String,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LocalGroup`s from specified remote computer(s).
</summary>
<param name="ComputerName">ComputerName to query for LocalGroups.</param>
<param name="Credential">Credential to use for authentication to the ComputerName.</param>
<returns>List of LocalGroups.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLocalGroups(System.Collections.Generic.IEnumerable{System.String},SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LocalGroup`s from specified remote computer(s).
</summary>
<param name="ComputerNames">List of ComputerNames to query for LocalGroups.</param>
<param name="Credential">Credential to use for authentication to the ComputerNames.</param>
<returns>List of LocalGroups.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLocalGroupMembers(SharpSploit.Enumeration.Domain.DomainObject,System.String,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LocalGroupMember`s from a specified DomainComputer for a specified group.
</summary>
<param name="DomainComputer">DomainComputer to query for LocalGroupMembers.</param>
<param name="GroupName">Group to search for LocalGroupMembers. Administrators, by default.</param>
<param name="Credential">Credential to authenticate to the DomainComputer.</param>
<returns>List of LocalGroupMembers</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLocalGroupMembers(System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.DomainObject},System.String,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LocalGroupMember`s from specified DomainComputers for a specified group.
</summary>
<param name="DomainComputers">DomainComputers to query for LocalGroupMembers.</param>
<param name="GroupName">Group to search for LocalGroupMembers. Administrators, by default.</param>
<param name="Credential">Credential to authenticate to the DomainComputer.</param>
<returns>List of LocalGroupMembers.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLocalGroupMembers(System.String,System.String,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LocalGroupMember`s from a specified ComputerName for a specified group.
</summary>
<param name="ComputerName">ComputerName to query for LocalGroupMembers.</param>
<param name="GroupName">Group to search for LocalGroupMembers. Administrators, by default.</param>
<param name="Credential">Credential to authenticate to the ComputerName.</param>
<returns>List of LocalGroupMembers.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLocalGroupMembers(System.Collections.Generic.IEnumerable{System.String},System.String,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LocalGroupMember`s from specified ComputerNames for a specified group.
</summary>
<param name="ComputerNames">List of ComputerNames to query for LocalGroupMembers.</param>
<param name="GroupName">Group to search for LocalGroupMembers. Administrators, by default.</param>
<param name="Credential">Credential to authenticate to the ComputerNames.</param>
<returns>List of LocalGroupMembers</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLoggedOnUsers(SharpSploit.Enumeration.Domain.DomainObject,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LoggedOnUser`s from a DomainComputer.
</summary>
<param name="DomainComputer">DomainComputer to query for LoggedOnUsers</param>
<param name="Credential">Credentials to authenticate to the DomainComputer.</param>
<returns>List of LoggedOnUsers.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLoggedOnUsers(System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.DomainObject},SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LoggedOnUser`s from a list of DomainComputers.
</summary>
<param name="DomainComputers">DomainComputers to query for LoggedOnUsers.</param>
<param name="Credential">Credentials to authenticate to the DomainComputers.</param>
<returns>List of LoggedOnUsers.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLoggedOnUsers(System.String,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LoggedOnUser`s from a ComputerName.
</summary>
<param name="ComputerName">ComputerName to query for LoggedOnUsers.</param>
<param name="Credential">Credentials to authenticate to the ComputerName.</param>
<returns>List of LoggedOnUsers.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetLoggedOnUsers(System.Collections.Generic.IEnumerable{System.String},SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `LoggedOnUser`s from a list of ComputerNames.
</summary>
<param name="ComputerNames">ComputerNames to query for LoggedOnUsers.</param>
<param name="Credential">Credentials to authenticate to the ComputerNames.</param>
<returns>List of LoggedOnUsers.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetSessions(SharpSploit.Enumeration.Domain.DomainObject,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `SessionInfo`s from a DomainComputer.
</summary>
<param name="DomainComputer">DomainComputer to query for SessionInfos.</param>
<param name="Credential">Credentials to authenticate to the DomainComputer.</param>
<returns>List of SessionInfos.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetSessions(System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.DomainObject},SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `SessionInfo`s from a list of DomainComputers.
</summary>
<param name="DomainComputers">DomainComputers to query for SessionInfos.</param>
<param name="Credential">Credentials to authenticate to the DomainComputers.</param>
<returns>List of SessionInfos.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetSessions(System.String,SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `SessionInfo`s from a ComputerName.
</summary>
<param name="ComputerName">ComputerName to query for SessionInfos.</param>
<param name="Credential">Credentials to authenticate to the ComputerName.</param>
<returns>List of SessionInfos.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetSessions(System.Collections.Generic.IEnumerable{System.String},SharpSploit.Enumeration.Domain.Credential)">
<summary>
Gets a list of `SessionInfo`s from a list of ComputerNames.
</summary>
<param name="ComputerNames">ComputerNames to query for SessionInfos.</param>
<param name="Credential">Credentials to authenticate to the ComputerNames.</param>
<returns>List of SessionInfos.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetShares(SharpSploit.Enumeration.Domain.DomainObject)">
<summary>
Gets a list of Shares from a DomainComputer.
</summary>
<param name="DomainComputer">DomainComputer to query for ShareInfo.</param>
<returns>List of ShareInfo objects containing the list of shares.</returns>
<author>Scottie Austin (@checkymander)</author>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetShares(System.Collections.Generic.IEnumerable{SharpSploit.Enumeration.Domain.DomainObject})">
<summary>
Gets a list of Shares from a list of DomainComputers.
</summary>
<param name="DomainComputers">DomainComputers to query for ShareInfo.</param>
<returns>List of ShareInfo objects containing the list of shares.</returns>
<author>Scottie Austin (@checkymander)</author>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetShares(System.String)">
<summary>
Enumerates shared folders on a host using the Windows NetShareEnum API Call
</summary>
<param name="ComputerName">The target computer.</param>
<returns>List of ShareInfo objects containing the list of shares.</returns>
<author>Scottie Austin (@checkymander)</author>
</member>
<member name="M:SharpSploit.Enumeration.Net.GetNetShares(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Enumerates shared folders on a group of hosts using the Windows NetShareEnum API Call
</summary>
<param name="ComputerNames">The target computer.</param>
<returns>List of ShareInfo objects containing the list of shares.</returns>
<author>Scottie Austin (@checkymander)</author>
</member>
<member name="T:SharpSploit.Enumeration.GPO">
<summary>
GPO is a library for GPO enumeration.
</summary>
</member>
<member name="M:SharpSploit.Enumeration.GPO.GetEnableLua(System.String)">
<summary>
Gets the value of EnableLUA from a GptTmpl.inf file.
</summary>
<author>Dennis Panagiotopoulos (@den_n1s)</author>
<param name="GptTmplPath">Path to the GptTmpl.inf file.</param>
<returns>True if EnableLUA is enabled, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Enumeration.GPO.GetFilterAdministratorToken(System.String)">
<summary>
Gets the value of FilterAdministratorToken from a GptTmpl.inf file.
</summary>
<author>Dennis Panagiotopoulos (@den_n1s)</author>
<param name="GptTmplPath">Path to the GptTmpl.inf file.</param>
<returns>True if FilterAdministratorToken is enabled, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Enumeration.GPO.GetLocalAccountTokenFilterPolicy(System.String)">
<summary>
Gets the value of LocalAccountTokenFilterPolicy from a Registry.xml file.
</summary>
<author>Dennis Panagiotopoulos (@den_n1s)</author>
<param name="RegistryXMLPath">Path to the Registry.xml file.</param>
<returns>True if LocalAccountTokenFilterPolicy is enabled, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Enumeration.GPO.GetSeDenyNetworkLogonRight(System.String)">
<summary>
Gets the value of SeDenyNetworkLogonRight from a GptTmpl.inf file,
which determines if Administrators are allowed to perform network authentication.
</summary>
<author>Dennis Panagiotopoulos (@den_n1s)</author>
<param name="GptTmplPath">Path to the GptTmpl.inf file.</param>
<returns>True if SeDenyNetworkLogonRight is enabled, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Enumeration.GPO.GetSeDenyRemoteInteractiveLogonRight(System.String)">
<summary>
Gets the value of SeDenyRemoteInteractiveLogonRight from a GptTmpl.inf file,
which determines if Administrators are allowed to perform remote interactive authentication.
</summary>
<author>Dennis Panagiotopoulos (@den_n1s)</author>
<param name="GptTmplPath">Path to the GptTmpl.inf file.</param>
<returns>True if SeDenyRemoteInteractiveLogonRight is enabled, false otherwise.</returns>
</member>
<member name="M:SharpSploit.Enumeration.GPO.GetRemoteAccessPolicies(System.String,System.String,System.String,System.String)">
<summary>
Gets domain computer objects for which remote access policies are applied via GPO.
</summary>
<author>Dennis Panagiotopoulos (@den_n1s)</author>
<param name="Domain">pecifies the domain to use for the query, defaults to the current domain.</param>
<param name="DomainController">Specifies an Active Directory server (domain controller) to bind to.</param>
<param name="SearchScope">Specifies the scope to search under, Base/OneLevel/Subtree (default of Subtree).</param>
<param name="SearchBase">The LDAP source to search through, e.g. /OU=Workstations,DC=domain,DC=local. Useful for OU queries.</param>
<returns>True if execution succeeds, false otherwise.</returns>
<remarks>
Credits to Jon Cave (@joncave) and William Knowles (@william_knows) for their PowerShell implementation.
https://labs.mwrinfosecurity.com/blog/enumerating-remote-access-policies-through-gpo/
</remarks>
</member>
<member name="T:SharpSploit.Enumeration.Host">
<summary>
Host is a library for local host enumeration.
</summary>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetProcessList">
<summary>
Gets a list of running processes on the system.
</summary>
<returns>List of ProcessResults.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetArchitecture">
<summary>
Gets the architecture of the OS.
</summary>
<author>Daniel Duggan (@_RastaMouse)</author>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetParentProcess(System.Diagnostics.Process)">
<summary>
Gets the parent process id of a Process
</summary>
<author>Daniel Duggan (@_RastaMouse)</author>
<param name="Process"></param>
<returns>Parent Process Id. Returns 0 if unsuccessful</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetParentProcess(System.IntPtr)">
<summary>
Gets the parent process id of a process handle
</summary>
<author>Daniel Duggan (@_RastaMouse)</author>
<param name="Handle">Handle to the process to get the parent process id of</param>
<returns>Parent Process Id</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetProcessOwner(System.Diagnostics.Process)">
<summary>
Gets the username of the owner of a process
</summary>
<author>Daniel Duggan (@_RastaMouse)</author>
<param name="Process">Process to get owner of</param>
<returns>Username of process owner. Returns empty string if unsuccessful.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.IsWow64(System.Diagnostics.Process)">
<summary>
Checks if a process is a Wow64 process
</summary>
<author>Daniel Duggan (@_RastaMouse)</author>
<param name="Process">Process to check Wow64</param>
<returns>True if process is Wow64, false otherwise. Returns false if unsuccessful.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.CreateProcessDump(System.Int32,System.String,System.String)">
<summary>
Generates a minidump that represents the memory of a running process. Useful for offline Mimikatz
if dumping the LSASS process. (Requires Admin)
</summary>
<param name="processId">Process ID of the process to generate a minidump for.</param>
<param name="outputPath">Path to write output file in. Defaults to the current directory.</param>
<param name="outputFileName">Filename to output the minidump to.</param>
<returns>True if minidump succeeds, false otherwise.</returns>
<remarks>
Authored by Justin Bui (@youslydawg).
</remarks>
</member>
<member name="M:SharpSploit.Enumeration.Host.CreateProcessDump(System.String,System.String,System.String)">
<summary>
Generates a minidump that represents the memory of a running process. Useful for offline Mimikatz
if dumping the LSASS process. (Requires Admin)
</summary>
<param name="processName">Name of the process to generate a minidump for.</param>
<param name="outputPath">Path to write output file in. Defaults to the current directory.</param>
<param name="outputFileName">Filename to ouput the minidump to.</param>
<returns>True if minidump succeeds, false otherwise.</returns>
<remarks>
Authored by Justin Bui (@youslydawg).
</remarks>
</member>
<member name="M:SharpSploit.Enumeration.Host.CreateProcessDump(System.Diagnostics.Process,System.String,System.String)">
<summary>
Generates a minidump that represents the memory of a running process. Useful for offline Mimikatz
if dumping the LSASS process. (Requires Admin)
</summary>
<param name="process">Process to generate a minidump for.</param>
<param name="outputPath">Path to write output file in. Defaults to the current directory.</param>
<param name="outputFileName">Filename to ouput the minidump to.</param>
<returns>True if minidump succeeds, false otherwise.</returns>
<remarks>
Authored by Justin Bui (@youslydawg).
</remarks>
</member>
<member name="M:SharpSploit.Enumeration.Host.MiniDumpWriteDumpCallback(System.IntPtr,SharpSploit.Execution.Win32.Dbghelp.MINIDUMP_CALLBACK_INPUT@,SharpSploit.Execution.Win32.Dbghelp.MINIDUMP_CALLBACK_OUTPUT@)">
<summary>
Auxiliary function for MiniDrumpWriteDump callbacks.
</summary>
<param name="CallbackParam"></param>
<param name="CallbackInput"></param>
<param name="CallbackOutput"></param>
<returns>True if minidump succeeds, false otherwise.</returns>
<remarks>
Authored by Simone Salucci (@saim1z) and Daniel López (@attl4s).
Code adapted from https://github.com/b4rtik/SharpMiniDump
and https://github.com/mjsabby/CopyOnWriteDump
</remarks>
</member>
<member name="M:SharpSploit.Enumeration.Host.CreateProcessSnapshotDump(System.Int32,System.String,System.String)">
<summary>
Creates a snapshot (PssCaptureSnapshot) of a process and dumps it (MiniDumpWriteDump).
Minimum supported Windows: Windows 8.1+ and Windows Server 2012+
</summary>
<param name="processId">Process ID of the process to generate a minidump for.</param>
<param name="outputPath">Path to write output file in. Defaults to the current directory.</param>
<param name="outputFileName">Filename to ouput the minidump to.</param>
<returns>True if snapshut dump succeeds, false otherwise.</returns>
<remarks>
Authored by Simone Salucci (@saim1z) and Daniel López (@attl4s).
Code adapted from https://github.com/b4rtik/SharpMiniDump
and https://github.com/mjsabby/CopyOnWriteDump
</remarks>
</member>
<member name="M:SharpSploit.Enumeration.Host.CreateProcessSnapshotDump(System.String,System.String,System.String)">
<summary>
Creates a snapshot (PssCaptureSnapshot) of a process and dumps it (MiniDumpWriteDump).
Minimum supported Windows: Windows 8.1+ and Windows Server 2012+
</summary>
<param name="processName">Name of the process to generate a minidump for.</param>
<param name="outputPath">Path to write output file in. Defaults to the current directory.</param>
<param name="outputFileName">Filename to ouput the minidump to.</param>
<returns>True if snapshut dump succeeds, false otherwise.</returns>
<remarks>
Authored by Simone Salucci (@saim1z) and Daniel López (@attl4s).
Code adapted from https://github.com/b4rtik/SharpMiniDump
and https://github.com/mjsabby/CopyOnWriteDump
</remarks>
</member>
<member name="M:SharpSploit.Enumeration.Host.CreateProcessSnapshotDump(System.Diagnostics.Process,System.String,System.String)">
<summary>
Creates a snapshot (PssCaptureSnapshot) of a process and dumps it (MiniDumpWriteDump).
Minimum supported Windows versions: Windows 8.1+ and Windows Server 2012+
</summary>
<param name="process">Process to generate a minidump for.</param>
<param name="outputPath">Path to write output file in. Defaults to the current directory.</param>
<param name="outputFileName">Filename to ouput the minidump to.</param>
<returns>True if snapshut dump succeeds, false otherwise.</returns>
<remarks>
Authored by Simone Salucci (@saim1z) and Daniel López (@attl4s).
Code adapted from https://github.com/b4rtik/SharpMiniDump
and https://github.com/mjsabby/CopyOnWriteDump
</remarks>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetHostname">
<summary>
Gets the hostname of the system.
</summary>
<returns>Hostname of the system.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetUsername">
<summary>
Gets the Domain name and username of the current logged on user.
</summary>
<returns>Current username.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetCurrentDirectory">
<summary>
Gets the full path of the current working directory.
</summary>
<returns>Current working directory.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetDirectoryListing">
<summary>
Gets a directory listing of the current working directory.
</summary>
<returns>List of FileSystemEntryResults.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetDirectoryListing(System.String)">
<summary>
Gets a directory listing of a directory.
</summary>
<param name="Path">The path of the directory to get a listing of.</param>
<returns>SharpSploitResultList of FileSystemEntryResults.</returns>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetDacl(System.String)">
<summary>
Gets a DACL of a file or directory.
</summary>
<param name="Path">The path of the file or directory to get a DACL for.</param>
<returns>List of DaclResults. NULL if not found.</returns>
<author>Daniel Duggan (@_RastaMouse)</author>
</member>
<member name="M:SharpSploit.Enumeration.Host.ChangeCurrentDirectory(System.String)">
<summary>
Changes the current working directory.
</summary>
<param name="DirectoryName">Relative or absolute path to new working directory.</param>
</member>
<member name="M:SharpSploit.Enumeration.Host.GetDrives">
<summary>
Gets information about current drives.
</summary>
<returns>SharpSploitResultList of DriveInfoResults</returns>
</member>
<member name="T:SharpSploit.Enumeration.Host.ProcessResult">
<summary>
ProcessResult represents a running process, used with the GetProcessList() function.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Host.FileSystemEntryResult">
<summary>
FileSystemEntryResult represents a file on disk, used with the GetDirectoryListing() function.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Host.DaclResult">
<summary>
DaclResult represents a DACL of a file or directory on disk, used with the GetDacl() function.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Host.DriveInfoResult">
<summary>
DriveInfoResult represents information about a drive.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Keylogger">
<summary>
Keylogger allows for the monitoring of user keystrokes.
</summary>
</member>
<member name="M:SharpSploit.Enumeration.Keylogger.StartKeylogger(System.Int32)">
<summary>
Starts the Keylogger
</summary>
<author>Scottie Austin (@checkymander)</author>
<returns>String containing the captured keystrokes, along with identification of what window they were entered in.</returns>
<param name="Seconds">The amount of time in seconds the keylogger should run for before returning keystrokes.</param>
</member>
<member name="M:SharpSploit.Enumeration.Keylogger.GetActiveWindowTitle">
<summary>
Gets the active window title of the window keystrokes are being entered in.
</summary>
<author>Scottie Austin (@checkymander)</author>
<returns>Title of the active window.</returns>
</member>
<member name="T:SharpSploit.Enumeration.Network">
<summary>
Network is a library for network enumeration such as identifying live systems and open ports.
</summary>
</member>
<member name="M:SharpSploit.Enumeration.Network.PortScan(System.String,System.Int32,System.Boolean,System.Int32)">
<summary>
Conducts a port scan of a specified ComputerName and port and reports if the port is open.
</summary>
<param name="ComputerName">ComputerName to port scan.</param>
<param name="Port">Port to scan.</param>
<param name="Ping">Optional switch. If true, pings the ComputerName to ensure it's up before port scanning.</param>
<param name="Timeout">Timeout (in milliseconds) before the port is considered down.</param>
<returns>List of PortScanResults</returns>
</member>
<member name="M:SharpSploit.Enumeration.Network.PortScan(System.Collections.Generic.IList{System.String},System.Int32,System.Boolean,System.Int32,System.Int32)">
<summary>
Conducts a port scan of specified ComputerNames on a specified port and reports if the port is open.
</summary>
<param name="ComputerNames">ComputerNames to port scan.</param>
<param name="Port">Port to scan.</param>
<param name="Ping">Optional switch. If true, pings the ComputerNames to ensure each is up before port scanning.</param>
<param name="Timeout">Timeout (in milliseconds) before a port is considered down.</param>
<param name="Threads">Number of threads with which to portscan simultaneously</param>
<returns>List of PortScanResults</returns>
</member>
<member name="M:SharpSploit.Enumeration.Network.PortScan(System.String,System.Collections.Generic.IList{System.Int32},System.Boolean,System.Int32,System.Int32)">
<summary>
Conducts a port scan of a specified ComputerName on specified ports and reports open ports.
</summary>
<param name="ComputerName">ComputerName to port scan.</param>
<param name="Ports">Ports to scan.</param>
<param name="Ping">Optional switch. If true, pings the ComputerName to ensure it's up before port scanning.</param>
<param name="Timeout">Timeout (in milliseconds) before a port is considered down.</param>
<param name="Threads">Number of threads with which to portscan simultaneously</param>
<returns>List of PortScanResults</returns>
</member>
<member name="M:SharpSploit.Enumeration.Network.PortScan(System.Collections.Generic.IList{System.String},System.Collections.Generic.IList{System.Int32},System.Boolean,System.Int32,System.Int32)">
<summary>
Conducts a port scan of specified ComputerNames on specified ports and reports open ports.
</summary>
<param name="ComputerNames">ComputerNames to port scan.</param>
<param name="Ports">Ports to scan.</param>
<param name="Ping">Optional switch. If true, pings the ComputerNames to ensure each is up before port scanning.</param>
<param name="Timeout">Timeout (in milliseconds) before a port is considered down.</param>
<param name="Threads">Number of threads with which to portscan simultaneously</param>
<returns>List of PortScanResults</returns>
</member>
<member name="M:SharpSploit.Enumeration.Network.Ping(System.String,System.Int32)">
<summary>
Pings a specified ComputerName to identify if it is live.
</summary>
<param name="ComputerName">ComputerName to ping.</param>
<param name="Timeout">Timeout (in milliseconds) before a ComputerName is considered down.</param>
<returns></returns>
</member>
<member name="M:SharpSploit.Enumeration.Network.Ping(System.Collections.Generic.IList{System.String},System.Int32,System.Int32)">
<summary>
Pings specified ComputerNames to identify live systems.
</summary>
<param name="ComputerNames">ComputerNames to ping.</param>
<param name="Timeout">Timeout (in milliseconds) before a ComputerName is considered down.</param>
<param name="Threads">Number of threads with which to ping simultaneously</param>
<returns></returns>
</member>
<member name="T:SharpSploit.Enumeration.Network.PingResult">
<summary>
PingResult represent the result of a ping, used with the Ping() functions.
</summary>
</member>
<member name="T:SharpSploit.Enumeration.Network.PortScanResult">
<summary>
PortScanResult represent the result of a port scan, used with the PortScan() functions.
</summary>
</member>