-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpayloads.txt
1397 lines (1392 loc) · 220 KB
/
payloads.txt
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
Metasploit tip: You can pivot connections over sessions
started with the ssh_login modules
Metasploit Documentation: https://docs.metasploit.com/
Payloads
========
# Name Disclosure Date Rank Check Description
- ---- --------------- ---- ----- -----------
0 aix/ppc/shell_bind_tcp normal No AIX Command Shell, Bind TCP Inline
1 aix/ppc/shell_find_port normal No AIX Command Shell, Find Port Inline
2 aix/ppc/shell_interact normal No AIX execve Shell for inetd
3 aix/ppc/shell_reverse_tcp normal No AIX Command Shell, Reverse TCP Inline
4 android/meterpreter/reverse_http normal No Android Meterpreter, Android Reverse HTTP Stager
5 android/meterpreter/reverse_https normal No Android Meterpreter, Android Reverse HTTPS Stager
6 android/meterpreter/reverse_tcp normal No Android Meterpreter, Android Reverse TCP Stager
7 android/meterpreter_reverse_http normal No Android Meterpreter Shell, Reverse HTTP Inline
8 android/meterpreter_reverse_https normal No Android Meterpreter Shell, Reverse HTTPS Inline
9 android/meterpreter_reverse_tcp normal No Android Meterpreter Shell, Reverse TCP Inline
10 android/shell/reverse_http normal No Command Shell, Android Reverse HTTP Stager
11 android/shell/reverse_https normal No Command Shell, Android Reverse HTTPS Stager
12 android/shell/reverse_tcp normal No Command Shell, Android Reverse TCP Stager
13 apple_ios/aarch64/meterpreter_reverse_http normal No Apple_iOS Meterpreter, Reverse HTTP Inline
14 apple_ios/aarch64/meterpreter_reverse_https normal No Apple_iOS Meterpreter, Reverse HTTPS Inline
15 apple_ios/aarch64/meterpreter_reverse_tcp normal No Apple_iOS Meterpreter, Reverse TCP Inline
16 apple_ios/aarch64/shell_reverse_tcp normal No Apple iOS aarch64 Command Shell, Reverse TCP Inline
17 apple_ios/armle/meterpreter_reverse_http normal No Apple_iOS Meterpreter, Reverse HTTP Inline
18 apple_ios/armle/meterpreter_reverse_https normal No Apple_iOS Meterpreter, Reverse HTTPS Inline
19 apple_ios/armle/meterpreter_reverse_tcp normal No Apple_iOS Meterpreter, Reverse TCP Inline
20 bsd/sparc/shell_bind_tcp normal No BSD Command Shell, Bind TCP Inline
21 bsd/sparc/shell_reverse_tcp normal No BSD Command Shell, Reverse TCP Inline
22 bsd/vax/shell_reverse_tcp normal No BSD Command Shell, Reverse TCP Inline
23 bsd/x64/exec normal No BSD x64 Execute Command
24 bsd/x64/shell_bind_ipv6_tcp normal No BSD x64 Command Shell, Bind TCP Inline (IPv6)
25 bsd/x64/shell_bind_tcp normal No BSD x64 Shell Bind TCP
26 bsd/x64/shell_bind_tcp_small normal No BSD x64 Command Shell, Bind TCP Inline
27 bsd/x64/shell_reverse_ipv6_tcp normal No BSD x64 Command Shell, Reverse TCP Inline (IPv6)
28 bsd/x64/shell_reverse_tcp normal No BSD x64 Shell Reverse TCP
29 bsd/x64/shell_reverse_tcp_small normal No BSD x64 Command Shell, Reverse TCP Inline
30 bsd/x86/exec normal No BSD Execute Command
31 bsd/x86/metsvc_bind_tcp normal No FreeBSD Meterpreter Service, Bind TCP
32 bsd/x86/metsvc_reverse_tcp normal No FreeBSD Meterpreter Service, Reverse TCP Inline
33 bsd/x86/shell/bind_ipv6_tcp normal No BSD Command Shell, Bind TCP Stager (IPv6)
34 bsd/x86/shell/bind_tcp normal No BSD Command Shell, Bind TCP Stager
35 bsd/x86/shell/find_tag normal No BSD Command Shell, Find Tag Stager
36 bsd/x86/shell/reverse_ipv6_tcp normal No BSD Command Shell, Reverse TCP Stager (IPv6)
37 bsd/x86/shell/reverse_tcp normal No BSD Command Shell, Reverse TCP Stager
38 bsd/x86/shell_bind_tcp normal No BSD Command Shell, Bind TCP Inline
39 bsd/x86/shell_bind_tcp_ipv6 normal No BSD Command Shell, Bind TCP Inline (IPv6)
40 bsd/x86/shell_find_port normal No BSD Command Shell, Find Port Inline
41 bsd/x86/shell_find_tag normal No BSD Command Shell, Find Tag Inline
42 bsd/x86/shell_reverse_tcp normal No BSD Command Shell, Reverse TCP Inline
43 bsd/x86/shell_reverse_tcp_ipv6 normal No BSD Command Shell, Reverse TCP Inline (IPv6)
44 bsdi/x86/shell/bind_tcp normal No BSDi Command Shell, Bind TCP Stager
45 bsdi/x86/shell/reverse_tcp normal No BSDi Command Shell, Reverse TCP Stager
46 bsdi/x86/shell_bind_tcp normal No BSDi Command Shell, Bind TCP Inline
47 bsdi/x86/shell_find_port normal No BSDi Command Shell, Find Port Inline
48 bsdi/x86/shell_reverse_tcp normal No BSDi Command Shell, Reverse TCP Inline
49 cmd/linux/http/mips64/meterpreter_reverse_http normal No HTTP Fetch
50 cmd/linux/http/mips64/meterpreter_reverse_https normal No HTTP Fetch
51 cmd/linux/http/mips64/meterpreter_reverse_tcp normal No HTTP Fetch
52 cmd/linux/http/x64/exec normal No HTTP Fetch, Linux Execute Command
53 cmd/linux/http/x64/meterpreter/bind_tcp normal No HTTP Fetch, Bind TCP Stager
54 cmd/linux/http/x64/meterpreter/reverse_sctp normal No HTTP Fetch, Reverse SCTP Stager
55 cmd/linux/http/x64/meterpreter/reverse_tcp normal No HTTP Fetch, Reverse TCP Stager
56 cmd/linux/http/x64/meterpreter_reverse_http normal No HTTP Fetch
57 cmd/linux/http/x64/meterpreter_reverse_https normal No HTTP Fetch
58 cmd/linux/http/x64/meterpreter_reverse_tcp normal No HTTP Fetch
59 cmd/linux/http/x64/pingback_bind_tcp normal No HTTP Fetch, Linux x64 Pingback, Bind TCP Inline
60 cmd/linux/http/x64/pingback_reverse_tcp normal No HTTP Fetch, Linux x64 Pingback, Reverse TCP Inline
61 cmd/linux/http/x64/shell/bind_tcp normal No HTTP Fetch, Linux Command Shell, Bind TCP Stager
62 cmd/linux/http/x64/shell/reverse_sctp normal No HTTP Fetch, Linux Command Shell, Reverse SCTP Stager
63 cmd/linux/http/x64/shell/reverse_tcp normal No HTTP Fetch, Linux Command Shell, Reverse TCP Stager
64 cmd/linux/http/x64/shell_bind_ipv6_tcp normal No HTTP Fetch, Linux x64 Command Shell, Bind TCP Inline (IPv6)
65 cmd/linux/http/x64/shell_bind_tcp normal No HTTP Fetch, Linux Command Shell, Bind TCP Inline
66 cmd/linux/http/x64/shell_bind_tcp_random_port normal No HTTP Fetch, Linux Command Shell, Bind TCP Random Port Inline
67 cmd/linux/http/x64/shell_find_port normal No HTTP Fetch, Linux Command Shell, Find Port Inline
68 cmd/linux/http/x64/shell_reverse_ipv6_tcp normal No HTTP Fetch, Linux x64 Command Shell, Reverse TCP Inline (IPv6)
69 cmd/linux/http/x64/shell_reverse_tcp normal No HTTP Fetch, Linux Command Shell, Reverse TCP Inline
70 cmd/linux/http/x86/adduser normal No HTTP Fetch, Linux Add User
71 cmd/linux/http/x86/chmod normal No HTTP Fetch, Linux Chmod
72 cmd/linux/http/x86/exec normal No HTTP Fetch, Linux Execute Command
73 cmd/linux/http/x86/generic/debug_trap normal No HTTP Fetch, Generic x86 Debug Trap
74 cmd/linux/http/x86/generic/tight_loop normal No HTTP Fetch, Generic x86 Tight Loop
75 cmd/linux/http/x86/meterpreter/bind_ipv6_tcp normal No HTTP Fetch, Bind IPv6 TCP Stager (Linux x86)
76 cmd/linux/http/x86/meterpreter/bind_ipv6_tcp_uuid normal No HTTP Fetch, Bind IPv6 TCP Stager with UUID Support (Linux x86)
77 cmd/linux/http/x86/meterpreter/bind_nonx_tcp normal No HTTP Fetch, Bind TCP Stager
78 cmd/linux/http/x86/meterpreter/bind_tcp normal No HTTP Fetch, Bind TCP Stager (Linux x86)
79 cmd/linux/http/x86/meterpreter/bind_tcp_uuid normal No HTTP Fetch, Bind TCP Stager with UUID Support (Linux x86)
80 cmd/linux/http/x86/meterpreter/find_tag normal No HTTP Fetch, Find Tag Stager
81 cmd/linux/http/x86/meterpreter/reverse_ipv6_tcp normal No HTTP Fetch, Reverse TCP Stager (IPv6)
82 cmd/linux/http/x86/meterpreter/reverse_nonx_tcp normal No HTTP Fetch, Reverse TCP Stager
83 cmd/linux/http/x86/meterpreter/reverse_tcp normal No HTTP Fetch, Reverse TCP Stager
84 cmd/linux/http/x86/meterpreter/reverse_tcp_uuid normal No HTTP Fetch, Reverse TCP Stager
85 cmd/linux/http/x86/meterpreter_reverse_http normal No HTTP Fetch
86 cmd/linux/http/x86/meterpreter_reverse_https normal No HTTP Fetch
87 cmd/linux/http/x86/meterpreter_reverse_tcp normal No HTTP Fetch
88 cmd/linux/http/x86/metsvc_bind_tcp normal No HTTP Fetch, Linux Meterpreter Service, Bind TCP
89 cmd/linux/http/x86/metsvc_reverse_tcp normal No HTTP Fetch, Linux Meterpreter Service, Reverse TCP Inline
90 cmd/linux/http/x86/read_file normal No HTTP Fetch, Linux Read File
91 cmd/linux/http/x86/shell/bind_ipv6_tcp normal No HTTP Fetch, Linux Command Shell, Bind IPv6 TCP Stager (Linux x86)
92 cmd/linux/http/x86/shell/bind_ipv6_tcp_uuid normal No HTTP Fetch, Linux Command Shell, Bind IPv6 TCP Stager with UUID Support (Linux x86)
93 cmd/linux/http/x86/shell/bind_nonx_tcp normal No HTTP Fetch, Linux Command Shell, Bind TCP Stager
94 cmd/linux/http/x86/shell/bind_tcp normal No HTTP Fetch, Linux Command Shell, Bind TCP Stager (Linux x86)
95 cmd/linux/http/x86/shell/bind_tcp_uuid normal No HTTP Fetch, Linux Command Shell, Bind TCP Stager with UUID Support (Linux x86)
96 cmd/linux/http/x86/shell/find_tag normal No HTTP Fetch, Linux Command Shell, Find Tag Stager
97 cmd/linux/http/x86/shell/reverse_ipv6_tcp normal No HTTP Fetch, Linux Command Shell, Reverse TCP Stager (IPv6)
98 cmd/linux/http/x86/shell/reverse_nonx_tcp normal No HTTP Fetch, Linux Command Shell, Reverse TCP Stager
99 cmd/linux/http/x86/shell/reverse_tcp normal No HTTP Fetch, Linux Command Shell, Reverse TCP Stager
100 cmd/linux/http/x86/shell/reverse_tcp_uuid normal No HTTP Fetch, Linux Command Shell, Reverse TCP Stager
101 cmd/linux/http/x86/shell_bind_ipv6_tcp normal No HTTP Fetch, Linux Command Shell, Bind TCP Inline (IPv6)
102 cmd/linux/http/x86/shell_bind_tcp normal No HTTP Fetch, Linux Command Shell, Bind TCP Inline
103 cmd/linux/http/x86/shell_bind_tcp_random_port normal No HTTP Fetch, Linux Command Shell, Bind TCP Random Port Inline
104 cmd/linux/http/x86/shell_find_port normal No HTTP Fetch, Linux Command Shell, Find Port Inline
105 cmd/linux/http/x86/shell_find_tag normal No HTTP Fetch, Linux Command Shell, Find Tag Inline
106 cmd/linux/http/x86/shell_reverse_tcp normal No HTTP Fetch, Linux Command Shell, Reverse TCP Inline
107 cmd/linux/http/x86/shell_reverse_tcp_ipv6 normal No HTTP Fetch, Linux Command Shell, Reverse TCP Inline (IPv6)
108 cmd/linux/https/mips64/meterpreter_reverse_http normal No HTTPS Fetch
109 cmd/linux/https/mips64/meterpreter_reverse_https normal No HTTPS Fetch
110 cmd/linux/https/mips64/meterpreter_reverse_tcp normal No HTTPS Fetch
111 cmd/linux/https/x64/exec normal No HTTPS Fetch, Linux Execute Command
112 cmd/linux/https/x64/meterpreter/bind_tcp normal No HTTPS Fetch, Bind TCP Stager
113 cmd/linux/https/x64/meterpreter/reverse_sctp normal No HTTPS Fetch, Reverse SCTP Stager
114 cmd/linux/https/x64/meterpreter/reverse_tcp normal No HTTPS Fetch, Reverse TCP Stager
115 cmd/linux/https/x64/meterpreter_reverse_http normal No HTTPS Fetch
116 cmd/linux/https/x64/meterpreter_reverse_https normal No HTTPS Fetch
117 cmd/linux/https/x64/meterpreter_reverse_tcp normal No HTTPS Fetch
118 cmd/linux/https/x64/pingback_bind_tcp normal No HTTPS Fetch, Linux x64 Pingback, Bind TCP Inline
119 cmd/linux/https/x64/pingback_reverse_tcp normal No HTTPS Fetch, Linux x64 Pingback, Reverse TCP Inline
120 cmd/linux/https/x64/shell/bind_tcp normal No HTTPS Fetch, Linux Command Shell, Bind TCP Stager
121 cmd/linux/https/x64/shell/reverse_sctp normal No HTTPS Fetch, Linux Command Shell, Reverse SCTP Stager
122 cmd/linux/https/x64/shell/reverse_tcp normal No HTTPS Fetch, Linux Command Shell, Reverse TCP Stager
123 cmd/linux/https/x64/shell_bind_ipv6_tcp normal No HTTPS Fetch, Linux x64 Command Shell, Bind TCP Inline (IPv6)
124 cmd/linux/https/x64/shell_bind_tcp normal No HTTPS Fetch, Linux Command Shell, Bind TCP Inline
125 cmd/linux/https/x64/shell_bind_tcp_random_port normal No HTTPS Fetch, Linux Command Shell, Bind TCP Random Port Inline
126 cmd/linux/https/x64/shell_find_port normal No HTTPS Fetch, Linux Command Shell, Find Port Inline
127 cmd/linux/https/x64/shell_reverse_ipv6_tcp normal No HTTPS Fetch, Linux x64 Command Shell, Reverse TCP Inline (IPv6)
128 cmd/linux/https/x64/shell_reverse_tcp normal No HTTPS Fetch, Linux Command Shell, Reverse TCP Inline
129 cmd/linux/https/x86/adduser normal No HTTPS Fetch, Linux Add User
130 cmd/linux/https/x86/chmod normal No HTTPS Fetch, Linux Chmod
131 cmd/linux/https/x86/exec normal No HTTPS Fetch, Linux Execute Command
132 cmd/linux/https/x86/generic/debug_trap normal No HTTPS Fetch, Generic x86 Debug Trap
133 cmd/linux/https/x86/generic/tight_loop normal No HTTPS Fetch, Generic x86 Tight Loop
134 cmd/linux/https/x86/meterpreter/bind_ipv6_tcp normal No HTTPS Fetch, Bind IPv6 TCP Stager (Linux x86)
135 cmd/linux/https/x86/meterpreter/bind_ipv6_tcp_uuid normal No HTTPS Fetch, Bind IPv6 TCP Stager with UUID Support (Linux x86)
136 cmd/linux/https/x86/meterpreter/bind_nonx_tcp normal No HTTPS Fetch, Bind TCP Stager
137 cmd/linux/https/x86/meterpreter/bind_tcp normal No HTTPS Fetch, Bind TCP Stager (Linux x86)
138 cmd/linux/https/x86/meterpreter/bind_tcp_uuid normal No HTTPS Fetch, Bind TCP Stager with UUID Support (Linux x86)
139 cmd/linux/https/x86/meterpreter/find_tag normal No HTTPS Fetch, Find Tag Stager
140 cmd/linux/https/x86/meterpreter/reverse_ipv6_tcp normal No HTTPS Fetch, Reverse TCP Stager (IPv6)
141 cmd/linux/https/x86/meterpreter/reverse_nonx_tcp normal No HTTPS Fetch, Reverse TCP Stager
142 cmd/linux/https/x86/meterpreter/reverse_tcp normal No HTTPS Fetch, Reverse TCP Stager
143 cmd/linux/https/x86/meterpreter/reverse_tcp_uuid normal No HTTPS Fetch, Reverse TCP Stager
144 cmd/linux/https/x86/meterpreter_reverse_http normal No HTTPS Fetch
145 cmd/linux/https/x86/meterpreter_reverse_https normal No HTTPS Fetch
146 cmd/linux/https/x86/meterpreter_reverse_tcp normal No HTTPS Fetch
147 cmd/linux/https/x86/metsvc_bind_tcp normal No HTTPS Fetch, Linux Meterpreter Service, Bind TCP
148 cmd/linux/https/x86/metsvc_reverse_tcp normal No HTTPS Fetch, Linux Meterpreter Service, Reverse TCP Inline
149 cmd/linux/https/x86/read_file normal No HTTPS Fetch, Linux Read File
150 cmd/linux/https/x86/shell/bind_ipv6_tcp normal No HTTPS Fetch, Linux Command Shell, Bind IPv6 TCP Stager (Linux x86)
151 cmd/linux/https/x86/shell/bind_ipv6_tcp_uuid normal No HTTPS Fetch, Linux Command Shell, Bind IPv6 TCP Stager with UUID Support (Linux x86)
152 cmd/linux/https/x86/shell/bind_nonx_tcp normal No HTTPS Fetch, Linux Command Shell, Bind TCP Stager
153 cmd/linux/https/x86/shell/bind_tcp normal No HTTPS Fetch, Linux Command Shell, Bind TCP Stager (Linux x86)
154 cmd/linux/https/x86/shell/bind_tcp_uuid normal No HTTPS Fetch, Linux Command Shell, Bind TCP Stager with UUID Support (Linux x86)
155 cmd/linux/https/x86/shell/find_tag normal No HTTPS Fetch, Linux Command Shell, Find Tag Stager
156 cmd/linux/https/x86/shell/reverse_ipv6_tcp normal No HTTPS Fetch, Linux Command Shell, Reverse TCP Stager (IPv6)
157 cmd/linux/https/x86/shell/reverse_nonx_tcp normal No HTTPS Fetch, Linux Command Shell, Reverse TCP Stager
158 cmd/linux/https/x86/shell/reverse_tcp normal No HTTPS Fetch, Linux Command Shell, Reverse TCP Stager
159 cmd/linux/https/x86/shell/reverse_tcp_uuid normal No HTTPS Fetch, Linux Command Shell, Reverse TCP Stager
160 cmd/linux/https/x86/shell_bind_ipv6_tcp normal No HTTPS Fetch, Linux Command Shell, Bind TCP Inline (IPv6)
161 cmd/linux/https/x86/shell_bind_tcp normal No HTTPS Fetch, Linux Command Shell, Bind TCP Inline
162 cmd/linux/https/x86/shell_bind_tcp_random_port normal No HTTPS Fetch, Linux Command Shell, Bind TCP Random Port Inline
163 cmd/linux/https/x86/shell_find_port normal No HTTPS Fetch, Linux Command Shell, Find Port Inline
164 cmd/linux/https/x86/shell_find_tag normal No HTTPS Fetch, Linux Command Shell, Find Tag Inline
165 cmd/linux/https/x86/shell_reverse_tcp normal No HTTPS Fetch, Linux Command Shell, Reverse TCP Inline
166 cmd/linux/https/x86/shell_reverse_tcp_ipv6 normal No HTTPS Fetch, Linux Command Shell, Reverse TCP Inline (IPv6)
167 cmd/linux/tftp/mips64/meterpreter_reverse_http normal No TFTP Fetch
168 cmd/linux/tftp/mips64/meterpreter_reverse_https normal No TFTP Fetch
169 cmd/linux/tftp/mips64/meterpreter_reverse_tcp normal No TFTP Fetch
170 cmd/linux/tftp/x64/exec normal No TFTP Fetch, Linux Execute Command
171 cmd/linux/tftp/x64/meterpreter/bind_tcp normal No TFTP Fetch, Bind TCP Stager
172 cmd/linux/tftp/x64/meterpreter/reverse_sctp normal No TFTP Fetch, Reverse SCTP Stager
173 cmd/linux/tftp/x64/meterpreter/reverse_tcp normal No TFTP Fetch, Reverse TCP Stager
174 cmd/linux/tftp/x64/meterpreter_reverse_http normal No TFTP Fetch
175 cmd/linux/tftp/x64/meterpreter_reverse_https normal No TFTP Fetch
176 cmd/linux/tftp/x64/meterpreter_reverse_tcp normal No TFTP Fetch
177 cmd/linux/tftp/x64/pingback_bind_tcp normal No TFTP Fetch, Linux x64 Pingback, Bind TCP Inline
178 cmd/linux/tftp/x64/pingback_reverse_tcp normal No TFTP Fetch, Linux x64 Pingback, Reverse TCP Inline
179 cmd/linux/tftp/x64/shell/bind_tcp normal No TFTP Fetch, Linux Command Shell, Bind TCP Stager
180 cmd/linux/tftp/x64/shell/reverse_sctp normal No TFTP Fetch, Linux Command Shell, Reverse SCTP Stager
181 cmd/linux/tftp/x64/shell/reverse_tcp normal No TFTP Fetch, Linux Command Shell, Reverse TCP Stager
182 cmd/linux/tftp/x64/shell_bind_ipv6_tcp normal No TFTP Fetch, Linux x64 Command Shell, Bind TCP Inline (IPv6)
183 cmd/linux/tftp/x64/shell_bind_tcp normal No TFTP Fetch, Linux Command Shell, Bind TCP Inline
184 cmd/linux/tftp/x64/shell_bind_tcp_random_port normal No TFTP Fetch, Linux Command Shell, Bind TCP Random Port Inline
185 cmd/linux/tftp/x64/shell_find_port normal No TFTP Fetch, Linux Command Shell, Find Port Inline
186 cmd/linux/tftp/x64/shell_reverse_ipv6_tcp normal No TFTP Fetch, Linux x64 Command Shell, Reverse TCP Inline (IPv6)
187 cmd/linux/tftp/x64/shell_reverse_tcp normal No TFTP Fetch, Linux Command Shell, Reverse TCP Inline
188 cmd/linux/tftp/x86/adduser normal No TFTP Fetch, Linux Add User
189 cmd/linux/tftp/x86/chmod normal No TFTP Fetch, Linux Chmod
190 cmd/linux/tftp/x86/exec normal No TFTP Fetch, Linux Execute Command
191 cmd/linux/tftp/x86/generic/debug_trap normal No TFTP Fetch, Generic x86 Debug Trap
192 cmd/linux/tftp/x86/generic/tight_loop normal No TFTP Fetch, Generic x86 Tight Loop
193 cmd/linux/tftp/x86/meterpreter/bind_ipv6_tcp normal No TFTP Fetch, Bind IPv6 TCP Stager (Linux x86)
194 cmd/linux/tftp/x86/meterpreter/bind_ipv6_tcp_uuid normal No TFTP Fetch, Bind IPv6 TCP Stager with UUID Support (Linux x86)
195 cmd/linux/tftp/x86/meterpreter/bind_nonx_tcp normal No TFTP Fetch, Bind TCP Stager
196 cmd/linux/tftp/x86/meterpreter/bind_tcp normal No TFTP Fetch, Bind TCP Stager (Linux x86)
197 cmd/linux/tftp/x86/meterpreter/bind_tcp_uuid normal No TFTP Fetch, Bind TCP Stager with UUID Support (Linux x86)
198 cmd/linux/tftp/x86/meterpreter/find_tag normal No TFTP Fetch, Find Tag Stager
199 cmd/linux/tftp/x86/meterpreter/reverse_ipv6_tcp normal No TFTP Fetch, Reverse TCP Stager (IPv6)
200 cmd/linux/tftp/x86/meterpreter/reverse_nonx_tcp normal No TFTP Fetch, Reverse TCP Stager
201 cmd/linux/tftp/x86/meterpreter/reverse_tcp normal No TFTP Fetch, Reverse TCP Stager
202 cmd/linux/tftp/x86/meterpreter/reverse_tcp_uuid normal No TFTP Fetch, Reverse TCP Stager
203 cmd/linux/tftp/x86/meterpreter_reverse_http normal No TFTP Fetch
204 cmd/linux/tftp/x86/meterpreter_reverse_https normal No TFTP Fetch
205 cmd/linux/tftp/x86/meterpreter_reverse_tcp normal No TFTP Fetch
206 cmd/linux/tftp/x86/metsvc_bind_tcp normal No TFTP Fetch, Linux Meterpreter Service, Bind TCP
207 cmd/linux/tftp/x86/metsvc_reverse_tcp normal No TFTP Fetch, Linux Meterpreter Service, Reverse TCP Inline
208 cmd/linux/tftp/x86/read_file normal No TFTP Fetch, Linux Read File
209 cmd/linux/tftp/x86/shell/bind_ipv6_tcp normal No TFTP Fetch, Linux Command Shell, Bind IPv6 TCP Stager (Linux x86)
210 cmd/linux/tftp/x86/shell/bind_ipv6_tcp_uuid normal No TFTP Fetch, Linux Command Shell, Bind IPv6 TCP Stager with UUID Support (Linux x86)
211 cmd/linux/tftp/x86/shell/bind_nonx_tcp normal No TFTP Fetch, Linux Command Shell, Bind TCP Stager
212 cmd/linux/tftp/x86/shell/bind_tcp normal No TFTP Fetch, Linux Command Shell, Bind TCP Stager (Linux x86)
213 cmd/linux/tftp/x86/shell/bind_tcp_uuid normal No TFTP Fetch, Linux Command Shell, Bind TCP Stager with UUID Support (Linux x86)
214 cmd/linux/tftp/x86/shell/find_tag normal No TFTP Fetch, Linux Command Shell, Find Tag Stager
215 cmd/linux/tftp/x86/shell/reverse_ipv6_tcp normal No TFTP Fetch, Linux Command Shell, Reverse TCP Stager (IPv6)
216 cmd/linux/tftp/x86/shell/reverse_nonx_tcp normal No TFTP Fetch, Linux Command Shell, Reverse TCP Stager
217 cmd/linux/tftp/x86/shell/reverse_tcp normal No TFTP Fetch, Linux Command Shell, Reverse TCP Stager
218 cmd/linux/tftp/x86/shell/reverse_tcp_uuid normal No TFTP Fetch, Linux Command Shell, Reverse TCP Stager
219 cmd/linux/tftp/x86/shell_bind_ipv6_tcp normal No TFTP Fetch, Linux Command Shell, Bind TCP Inline (IPv6)
220 cmd/linux/tftp/x86/shell_bind_tcp normal No TFTP Fetch, Linux Command Shell, Bind TCP Inline
221 cmd/linux/tftp/x86/shell_bind_tcp_random_port normal No TFTP Fetch, Linux Command Shell, Bind TCP Random Port Inline
222 cmd/linux/tftp/x86/shell_find_port normal No TFTP Fetch, Linux Command Shell, Find Port Inline
223 cmd/linux/tftp/x86/shell_find_tag normal No TFTP Fetch, Linux Command Shell, Find Tag Inline
224 cmd/linux/tftp/x86/shell_reverse_tcp normal No TFTP Fetch, Linux Command Shell, Reverse TCP Inline
225 cmd/linux/tftp/x86/shell_reverse_tcp_ipv6 normal No TFTP Fetch, Linux Command Shell, Reverse TCP Inline (IPv6)
226 cmd/mainframe/apf_privesc_jcl normal No JCL to Escalate Privileges
227 cmd/mainframe/bind_shell_jcl normal No Z/OS (MVS) Command Shell, Bind TCP
228 cmd/mainframe/generic_jcl normal No Generic JCL Test for Mainframe Exploits
229 cmd/mainframe/reverse_shell_jcl normal No Z/OS (MVS) Command Shell, Reverse TCP
230 cmd/unix/adduser normal No Add user with useradd
231 cmd/unix/bind_awk normal No Unix Command Shell, Bind TCP (via AWK)
232 cmd/unix/bind_busybox_telnetd normal No Unix Command Shell, Bind TCP (via BusyBox telnetd)
233 cmd/unix/bind_inetd normal No Unix Command Shell, Bind TCP (inetd)
234 cmd/unix/bind_jjs normal No Unix Command Shell, Bind TCP (via jjs)
235 cmd/unix/bind_lua normal No Unix Command Shell, Bind TCP (via Lua)
236 cmd/unix/bind_netcat normal No Unix Command Shell, Bind TCP (via netcat)
237 cmd/unix/bind_netcat_gaping normal No Unix Command Shell, Bind TCP (via netcat -e)
238 cmd/unix/bind_netcat_gaping_ipv6 normal No Unix Command Shell, Bind TCP (via netcat -e) IPv6
239 cmd/unix/bind_nodejs normal No Unix Command Shell, Bind TCP (via nodejs)
240 cmd/unix/bind_perl normal No Unix Command Shell, Bind TCP (via Perl)
241 cmd/unix/bind_perl_ipv6 normal No Unix Command Shell, Bind TCP (via perl) IPv6
242 cmd/unix/bind_r normal No Unix Command Shell, Bind TCP (via R)
243 cmd/unix/bind_ruby normal No Unix Command Shell, Bind TCP (via Ruby)
244 cmd/unix/bind_ruby_ipv6 normal No Unix Command Shell, Bind TCP (via Ruby) IPv6
245 cmd/unix/bind_socat_sctp normal No Unix Command Shell, Bind SCTP (via socat)
246 cmd/unix/bind_socat_udp normal No Unix Command Shell, Bind UDP (via socat)
247 cmd/unix/bind_stub normal No Unix Command Shell, Bind TCP (stub)
248 cmd/unix/bind_zsh normal No Unix Command Shell, Bind TCP (via Zsh)
249 cmd/unix/generic normal No Unix Command, Generic Command Execution
250 cmd/unix/interact normal No Unix Command, Interact with Established Connection
251 cmd/unix/pingback_bind normal No Unix Command Shell, Pingback Bind TCP (via netcat)
252 cmd/unix/pingback_reverse normal No Unix Command Shell, Pingback Reverse TCP (via netcat)
253 cmd/unix/python/meterpreter/bind_tcp normal No Python Exec, Python Meterpreter, Python Bind TCP Stager
254 cmd/unix/python/meterpreter/bind_tcp_uuid normal No Python Exec, Python Meterpreter, Python Bind TCP Stager with UUID Support
255 cmd/unix/python/meterpreter/reverse_http normal No Python Exec, Python Meterpreter, Python Reverse HTTP Stager
256 cmd/unix/python/meterpreter/reverse_https normal No Python Exec, Python Meterpreter, Python Reverse HTTPS Stager
257 cmd/unix/python/meterpreter/reverse_tcp normal No Python Exec, Python Meterpreter, Python Reverse TCP Stager
258 cmd/unix/python/meterpreter/reverse_tcp_ssl normal No Python Exec, Python Meterpreter, Python Reverse TCP SSL Stager
259 cmd/unix/python/meterpreter/reverse_tcp_uuid normal No Python Exec, Python Meterpreter, Python Reverse TCP Stager with UUID Support
260 cmd/unix/python/meterpreter_bind_tcp normal No Python Exec, Python Meterpreter Shell, Bind TCP Inline
261 cmd/unix/python/meterpreter_reverse_http normal No Python Exec, Python Meterpreter Shell, Reverse HTTP Inline
262 cmd/unix/python/meterpreter_reverse_https normal No Python Exec, Python Meterpreter Shell, Reverse HTTPS Inline
263 cmd/unix/python/meterpreter_reverse_tcp normal No Python Exec, Python Meterpreter Shell, Reverse TCP Inline
264 cmd/unix/python/pingback_bind_tcp normal No Python Exec, Python Pingback, Bind TCP (via python)
265 cmd/unix/python/pingback_reverse_tcp normal No Python Exec, Python Pingback, Reverse TCP (via python)
266 cmd/unix/python/shell_bind_tcp normal No Python Exec, Command Shell, Bind TCP (via python)
267 cmd/unix/python/shell_reverse_sctp normal No Python Exec, Command Shell, Reverse SCTP (via python)
268 cmd/unix/python/shell_reverse_tcp normal No Python Exec, Command Shell, Reverse TCP (via python)
269 cmd/unix/python/shell_reverse_tcp_ssl normal No Python Exec, Command Shell, Reverse TCP SSL (via python)
270 cmd/unix/python/shell_reverse_udp normal No Python Exec, Command Shell, Reverse UDP (via python)
271 cmd/unix/reverse normal No Unix Command Shell, Double Reverse TCP (telnet)
272 cmd/unix/reverse_awk normal No Unix Command Shell, Reverse TCP (via AWK)
273 cmd/unix/reverse_bash normal No Unix Command Shell, Reverse TCP (/dev/tcp)
274 cmd/unix/reverse_bash_telnet_ssl normal No Unix Command Shell, Reverse TCP SSL (telnet)
275 cmd/unix/reverse_bash_udp normal No Unix Command Shell, Reverse UDP (/dev/udp)
276 cmd/unix/reverse_jjs normal No Unix Command Shell, Reverse TCP (via jjs)
277 cmd/unix/reverse_ksh normal No Unix Command Shell, Reverse TCP (via Ksh)
278 cmd/unix/reverse_lua normal No Unix Command Shell, Reverse TCP (via Lua)
279 cmd/unix/reverse_ncat_ssl normal No Unix Command Shell, Reverse TCP (via ncat)
280 cmd/unix/reverse_netcat normal No Unix Command Shell, Reverse TCP (via netcat)
281 cmd/unix/reverse_netcat_gaping normal No Unix Command Shell, Reverse TCP (via netcat -e)
282 cmd/unix/reverse_nodejs normal No Unix Command Shell, Reverse TCP (via nodejs)
283 cmd/unix/reverse_openssl normal No Unix Command Shell, Double Reverse TCP SSL (openssl)
284 cmd/unix/reverse_perl normal No Unix Command Shell, Reverse TCP (via Perl)
285 cmd/unix/reverse_perl_ssl normal No Unix Command Shell, Reverse TCP SSL (via perl)
286 cmd/unix/reverse_php_ssl normal No Unix Command Shell, Reverse TCP SSL (via php)
287 cmd/unix/reverse_python normal No Unix Command Shell, Reverse TCP (via Python)
288 cmd/unix/reverse_python_ssl normal No Unix Command Shell, Reverse TCP SSL (via python)
289 cmd/unix/reverse_r normal No Unix Command Shell, Reverse TCP (via R)
290 cmd/unix/reverse_ruby normal No Unix Command Shell, Reverse TCP (via Ruby)
291 cmd/unix/reverse_ruby_ssl normal No Unix Command Shell, Reverse TCP SSL (via Ruby)
292 cmd/unix/reverse_socat_sctp normal No Unix Command Shell, Reverse SCTP (via socat)
293 cmd/unix/reverse_socat_udp normal No Unix Command Shell, Reverse UDP (via socat)
294 cmd/unix/reverse_ssh normal No Unix Command Shell, Reverse TCP SSH
295 cmd/unix/reverse_ssl_double_telnet normal No Unix Command Shell, Double Reverse TCP SSL (telnet)
296 cmd/unix/reverse_stub normal No Unix Command Shell, Reverse TCP (stub)
297 cmd/unix/reverse_tclsh normal No Unix Command Shell, Reverse TCP (via Tclsh)
298 cmd/unix/reverse_zsh normal No Unix Command Shell, Reverse TCP (via Zsh)
299 cmd/windows/adduser normal No Windows Execute net user /ADD CMD
300 cmd/windows/bind_lua normal No Windows Command Shell, Bind TCP (via Lua)
301 cmd/windows/bind_perl normal No Windows Command Shell, Bind TCP (via Perl)
302 cmd/windows/bind_perl_ipv6 normal No Windows Command Shell, Bind TCP (via perl) IPv6
303 cmd/windows/bind_ruby normal No Windows Command Shell, Bind TCP (via Ruby)
304 cmd/windows/download_eval_vbs normal No Windows Executable Download and Evaluate VBS
305 cmd/windows/download_exec_vbs normal No Windows Executable Download and Execute (via .vbs)
306 cmd/windows/generic normal No Windows Command, Generic Command Execution
307 cmd/windows/http/x64/custom/bind_ipv6_tcp normal No HTTP Fetch, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager
308 cmd/windows/http/x64/custom/bind_ipv6_tcp_uuid normal No HTTP Fetch, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager with UUID Support
309 cmd/windows/http/x64/custom/bind_named_pipe normal No HTTP Fetch, Windows shellcode stage, Windows x64 Bind Named Pipe Stager
310 cmd/windows/http/x64/custom/bind_tcp normal No HTTP Fetch, Windows shellcode stage, Windows x64 Bind TCP Stager
311 cmd/windows/http/x64/custom/bind_tcp_rc4 normal No HTTP Fetch, Windows shellcode stage, Bind TCP Stager (RC4 Stage Encryption, Metasm)
312 cmd/windows/http/x64/custom/bind_tcp_uuid normal No HTTP Fetch, Windows shellcode stage, Bind TCP Stager with UUID Support (Windows x64)
313 cmd/windows/http/x64/custom/reverse_http normal No HTTP Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
314 cmd/windows/http/x64/custom/reverse_https normal No HTTP Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
315 cmd/windows/http/x64/custom/reverse_named_pipe normal No HTTP Fetch, Windows shellcode stage, Windows x64 Reverse Named Pipe (SMB) Stager
316 cmd/windows/http/x64/custom/reverse_tcp normal No HTTP Fetch, Windows shellcode stage, Windows x64 Reverse TCP Stager
317 cmd/windows/http/x64/custom/reverse_tcp_rc4 normal No HTTP Fetch, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
318 cmd/windows/http/x64/custom/reverse_tcp_uuid normal No HTTP Fetch, Windows shellcode stage, Reverse TCP Stager with UUID Support (Windows x64)
319 cmd/windows/http/x64/custom/reverse_winhttp normal No HTTP Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (winhttp)
320 cmd/windows/http/x64/custom/reverse_winhttps normal No HTTP Fetch, Windows shellcode stage, Windows x64 Reverse HTTPS Stager (winhttp)
321 cmd/windows/http/x64/encrypted_shell/reverse_tcp normal No HTTP Fetch, Windows Command Shell, Encrypted Reverse TCP Stager
322 cmd/windows/http/x64/encrypted_shell_reverse_tcp normal No HTTP Fetch, Windows Encrypted Reverse Shell
323 cmd/windows/http/x64/exec normal No HTTP Fetch, Windows x64 Execute Command
324 cmd/windows/http/x64/loadlibrary normal No HTTP Fetch, Windows x64 LoadLibrary Path
325 cmd/windows/http/x64/messagebox normal No HTTP Fetch, Windows MessageBox x64
326 cmd/windows/http/x64/meterpreter/bind_ipv6_tcp normal No HTTP Fetch, Windows x64 IPv6 Bind TCP Stager
327 cmd/windows/http/x64/meterpreter/bind_ipv6_tcp_uuid normal No HTTP Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
328 cmd/windows/http/x64/meterpreter/bind_named_pipe normal No HTTP Fetch, Windows x64 Bind Named Pipe Stager
329 cmd/windows/http/x64/meterpreter/bind_tcp normal No HTTP Fetch, Windows x64 Bind TCP Stager
330 cmd/windows/http/x64/meterpreter/bind_tcp_rc4 normal No HTTP Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
331 cmd/windows/http/x64/meterpreter/bind_tcp_uuid normal No HTTP Fetch, Bind TCP Stager with UUID Support (Windows x64)
332 cmd/windows/http/x64/meterpreter/reverse_http normal No HTTP Fetch, Windows x64 Reverse HTTP Stager (wininet)
333 cmd/windows/http/x64/meterpreter/reverse_https normal No HTTP Fetch, Windows x64 Reverse HTTP Stager (wininet)
334 cmd/windows/http/x64/meterpreter/reverse_named_pipe normal No HTTP Fetch, Windows x64 Reverse Named Pipe (SMB) Stager
335 cmd/windows/http/x64/meterpreter/reverse_tcp normal No HTTP Fetch, Windows x64 Reverse TCP Stager
336 cmd/windows/http/x64/meterpreter/reverse_tcp_rc4 normal No HTTP Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
337 cmd/windows/http/x64/meterpreter/reverse_tcp_uuid normal No HTTP Fetch, Reverse TCP Stager with UUID Support (Windows x64)
338 cmd/windows/http/x64/meterpreter/reverse_winhttp normal No HTTP Fetch, Windows x64 Reverse HTTP Stager (winhttp)
339 cmd/windows/http/x64/meterpreter/reverse_winhttps normal No HTTP Fetch, Windows x64 Reverse HTTPS Stager (winhttp)
340 cmd/windows/http/x64/meterpreter_bind_named_pipe normal No HTTP Fetch, Windows Meterpreter Shell, Bind Named Pipe Inline (x64)
341 cmd/windows/http/x64/meterpreter_bind_tcp normal No HTTP Fetch, Windows Meterpreter Shell, Bind TCP Inline (x64)
342 cmd/windows/http/x64/meterpreter_reverse_http normal No HTTP Fetch, Windows Meterpreter Shell, Reverse HTTP Inline (x64)
343 cmd/windows/http/x64/meterpreter_reverse_https normal No HTTP Fetch, Windows Meterpreter Shell, Reverse HTTPS Inline (x64)
344 cmd/windows/http/x64/meterpreter_reverse_ipv6_tcp normal No HTTP Fetch, Windows Meterpreter Shell, Reverse TCP Inline (IPv6) (x64)
345 cmd/windows/http/x64/meterpreter_reverse_tcp normal No HTTP Fetch, Windows Meterpreter Shell, Reverse TCP Inline x64
346 cmd/windows/http/x64/peinject/bind_ipv6_tcp normal No HTTP Fetch, Windows x64 IPv6 Bind TCP Stager
347 cmd/windows/http/x64/peinject/bind_ipv6_tcp_uuid normal No HTTP Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
348 cmd/windows/http/x64/peinject/bind_named_pipe normal No HTTP Fetch, Windows x64 Bind Named Pipe Stager
349 cmd/windows/http/x64/peinject/bind_tcp normal No HTTP Fetch, Windows x64 Bind TCP Stager
350 cmd/windows/http/x64/peinject/bind_tcp_rc4 normal No HTTP Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
351 cmd/windows/http/x64/peinject/bind_tcp_uuid normal No HTTP Fetch, Bind TCP Stager with UUID Support (Windows x64)
352 cmd/windows/http/x64/peinject/reverse_named_pipe normal No HTTP Fetch, Windows x64 Reverse Named Pipe (SMB) Stager
353 cmd/windows/http/x64/peinject/reverse_tcp normal No HTTP Fetch, Windows x64 Reverse TCP Stager
354 cmd/windows/http/x64/peinject/reverse_tcp_rc4 normal No HTTP Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
355 cmd/windows/http/x64/peinject/reverse_tcp_uuid normal No HTTP Fetch, Reverse TCP Stager with UUID Support (Windows x64)
356 cmd/windows/http/x64/pingback_reverse_tcp normal No HTTP Fetch, Windows x64 Pingback, Reverse TCP Inline
357 cmd/windows/http/x64/powershell_bind_tcp normal No HTTP Fetch
358 cmd/windows/http/x64/powershell_reverse_tcp normal No HTTP Fetch
359 cmd/windows/http/x64/powershell_reverse_tcp_ssl normal No HTTP Fetch
360 cmd/windows/http/x64/shell/bind_ipv6_tcp normal No HTTP Fetch, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager
361 cmd/windows/http/x64/shell/bind_ipv6_tcp_uuid normal No HTTP Fetch, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager with UUID Support
362 cmd/windows/http/x64/shell/bind_named_pipe normal No HTTP Fetch, Windows x64 Command Shell, Windows x64 Bind Named Pipe Stager
363 cmd/windows/http/x64/shell/bind_tcp normal No HTTP Fetch, Windows x64 Command Shell, Windows x64 Bind TCP Stager
364 cmd/windows/http/x64/shell/bind_tcp_rc4 normal No HTTP Fetch, Windows x64 Command Shell, Bind TCP Stager (RC4 Stage Encryption, Metasm)
365 cmd/windows/http/x64/shell/bind_tcp_uuid normal No HTTP Fetch, Windows x64 Command Shell, Bind TCP Stager with UUID Support (Windows x64)
366 cmd/windows/http/x64/shell/reverse_tcp normal No HTTP Fetch, Windows x64 Command Shell, Windows x64 Reverse TCP Stager
367 cmd/windows/http/x64/shell/reverse_tcp_rc4 normal No HTTP Fetch, Windows x64 Command Shell, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
368 cmd/windows/http/x64/shell/reverse_tcp_uuid normal No HTTP Fetch, Windows x64 Command Shell, Reverse TCP Stager with UUID Support (Windows x64)
369 cmd/windows/http/x64/shell_bind_tcp normal No HTTP Fetch, Windows x64 Command Shell, Bind TCP Inline
370 cmd/windows/http/x64/shell_reverse_tcp normal No HTTP Fetch, Windows x64 Command Shell, Reverse TCP Inline
371 cmd/windows/http/x64/vncinject/bind_ipv6_tcp normal No HTTP Fetch, Windows x64 IPv6 Bind TCP Stager
372 cmd/windows/http/x64/vncinject/bind_ipv6_tcp_uuid normal No HTTP Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
373 cmd/windows/http/x64/vncinject/bind_named_pipe normal No HTTP Fetch, Windows x64 Bind Named Pipe Stager
374 cmd/windows/http/x64/vncinject/bind_tcp normal No HTTP Fetch, Windows x64 Bind TCP Stager
375 cmd/windows/http/x64/vncinject/bind_tcp_rc4 normal No HTTP Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
376 cmd/windows/http/x64/vncinject/bind_tcp_uuid normal No HTTP Fetch, Bind TCP Stager with UUID Support (Windows x64)
377 cmd/windows/http/x64/vncinject/reverse_http normal No HTTP Fetch, Windows x64 Reverse HTTP Stager (wininet)
378 cmd/windows/http/x64/vncinject/reverse_https normal No HTTP Fetch, Windows x64 Reverse HTTP Stager (wininet)
379 cmd/windows/http/x64/vncinject/reverse_tcp normal No HTTP Fetch, Windows x64 Reverse TCP Stager
380 cmd/windows/http/x64/vncinject/reverse_tcp_rc4 normal No HTTP Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
381 cmd/windows/http/x64/vncinject/reverse_tcp_uuid normal No HTTP Fetch, Reverse TCP Stager with UUID Support (Windows x64)
382 cmd/windows/http/x64/vncinject/reverse_winhttp normal No HTTP Fetch, Windows x64 Reverse HTTP Stager (winhttp)
383 cmd/windows/http/x64/vncinject/reverse_winhttps normal No HTTP Fetch, Windows x64 Reverse HTTPS Stager (winhttp)
384 cmd/windows/https/x64/custom/bind_ipv6_tcp normal No HTTPS Fetch, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager
385 cmd/windows/https/x64/custom/bind_ipv6_tcp_uuid normal No HTTPS Fetch, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager with UUID Support
386 cmd/windows/https/x64/custom/bind_named_pipe normal No HTTPS Fetch, Windows shellcode stage, Windows x64 Bind Named Pipe Stager
387 cmd/windows/https/x64/custom/bind_tcp normal No HTTPS Fetch, Windows shellcode stage, Windows x64 Bind TCP Stager
388 cmd/windows/https/x64/custom/bind_tcp_rc4 normal No HTTPS Fetch, Windows shellcode stage, Bind TCP Stager (RC4 Stage Encryption, Metasm)
389 cmd/windows/https/x64/custom/bind_tcp_uuid normal No HTTPS Fetch, Windows shellcode stage, Bind TCP Stager with UUID Support (Windows x64)
390 cmd/windows/https/x64/custom/reverse_http normal No HTTPS Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
391 cmd/windows/https/x64/custom/reverse_https normal No HTTPS Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
392 cmd/windows/https/x64/custom/reverse_named_pipe normal No HTTPS Fetch, Windows shellcode stage, Windows x64 Reverse Named Pipe (SMB) Stager
393 cmd/windows/https/x64/custom/reverse_tcp normal No HTTPS Fetch, Windows shellcode stage, Windows x64 Reverse TCP Stager
394 cmd/windows/https/x64/custom/reverse_tcp_rc4 normal No HTTPS Fetch, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
395 cmd/windows/https/x64/custom/reverse_tcp_uuid normal No HTTPS Fetch, Windows shellcode stage, Reverse TCP Stager with UUID Support (Windows x64)
396 cmd/windows/https/x64/custom/reverse_winhttp normal No HTTPS Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (winhttp)
397 cmd/windows/https/x64/custom/reverse_winhttps normal No HTTPS Fetch, Windows shellcode stage, Windows x64 Reverse HTTPS Stager (winhttp)
398 cmd/windows/https/x64/encrypted_shell/reverse_tcp normal No HTTPS Fetch, Windows Command Shell, Encrypted Reverse TCP Stager
399 cmd/windows/https/x64/encrypted_shell_reverse_tcp normal No HTTPS Fetch, Windows Encrypted Reverse Shell
400 cmd/windows/https/x64/exec normal No HTTPS Fetch, Windows x64 Execute Command
401 cmd/windows/https/x64/loadlibrary normal No HTTPS Fetch, Windows x64 LoadLibrary Path
402 cmd/windows/https/x64/messagebox normal No HTTPS Fetch, Windows MessageBox x64
403 cmd/windows/https/x64/meterpreter/bind_ipv6_tcp normal No HTTPS Fetch, Windows x64 IPv6 Bind TCP Stager
404 cmd/windows/https/x64/meterpreter/bind_ipv6_tcp_uuid normal No HTTPS Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
405 cmd/windows/https/x64/meterpreter/bind_named_pipe normal No HTTPS Fetch, Windows x64 Bind Named Pipe Stager
406 cmd/windows/https/x64/meterpreter/bind_tcp normal No HTTPS Fetch, Windows x64 Bind TCP Stager
407 cmd/windows/https/x64/meterpreter/bind_tcp_rc4 normal No HTTPS Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
408 cmd/windows/https/x64/meterpreter/bind_tcp_uuid normal No HTTPS Fetch, Bind TCP Stager with UUID Support (Windows x64)
409 cmd/windows/https/x64/meterpreter/reverse_http normal No HTTPS Fetch, Windows x64 Reverse HTTP Stager (wininet)
410 cmd/windows/https/x64/meterpreter/reverse_https normal No HTTPS Fetch, Windows x64 Reverse HTTP Stager (wininet)
411 cmd/windows/https/x64/meterpreter/reverse_named_pipe normal No HTTPS Fetch, Windows x64 Reverse Named Pipe (SMB) Stager
412 cmd/windows/https/x64/meterpreter/reverse_tcp normal No HTTPS Fetch, Windows x64 Reverse TCP Stager
413 cmd/windows/https/x64/meterpreter/reverse_tcp_rc4 normal No HTTPS Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
414 cmd/windows/https/x64/meterpreter/reverse_tcp_uuid normal No HTTPS Fetch, Reverse TCP Stager with UUID Support (Windows x64)
415 cmd/windows/https/x64/meterpreter/reverse_winhttp normal No HTTPS Fetch, Windows x64 Reverse HTTP Stager (winhttp)
416 cmd/windows/https/x64/meterpreter/reverse_winhttps normal No HTTPS Fetch, Windows x64 Reverse HTTPS Stager (winhttp)
417 cmd/windows/https/x64/meterpreter_bind_named_pipe normal No HTTPS Fetch, Windows Meterpreter Shell, Bind Named Pipe Inline (x64)
418 cmd/windows/https/x64/meterpreter_bind_tcp normal No HTTPS Fetch, Windows Meterpreter Shell, Bind TCP Inline (x64)
419 cmd/windows/https/x64/meterpreter_reverse_http normal No HTTPS Fetch, Windows Meterpreter Shell, Reverse HTTP Inline (x64)
420 cmd/windows/https/x64/meterpreter_reverse_https normal No HTTPS Fetch, Windows Meterpreter Shell, Reverse HTTPS Inline (x64)
421 cmd/windows/https/x64/meterpreter_reverse_ipv6_tcp normal No HTTPS Fetch, Windows Meterpreter Shell, Reverse TCP Inline (IPv6) (x64)
422 cmd/windows/https/x64/meterpreter_reverse_tcp normal No HTTPS Fetch, Windows Meterpreter Shell, Reverse TCP Inline x64
423 cmd/windows/https/x64/peinject/bind_ipv6_tcp normal No HTTPS Fetch, Windows x64 IPv6 Bind TCP Stager
424 cmd/windows/https/x64/peinject/bind_ipv6_tcp_uuid normal No HTTPS Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
425 cmd/windows/https/x64/peinject/bind_named_pipe normal No HTTPS Fetch, Windows x64 Bind Named Pipe Stager
426 cmd/windows/https/x64/peinject/bind_tcp normal No HTTPS Fetch, Windows x64 Bind TCP Stager
427 cmd/windows/https/x64/peinject/bind_tcp_rc4 normal No HTTPS Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
428 cmd/windows/https/x64/peinject/bind_tcp_uuid normal No HTTPS Fetch, Bind TCP Stager with UUID Support (Windows x64)
429 cmd/windows/https/x64/peinject/reverse_named_pipe normal No HTTPS Fetch, Windows x64 Reverse Named Pipe (SMB) Stager
430 cmd/windows/https/x64/peinject/reverse_tcp normal No HTTPS Fetch, Windows x64 Reverse TCP Stager
431 cmd/windows/https/x64/peinject/reverse_tcp_rc4 normal No HTTPS Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
432 cmd/windows/https/x64/peinject/reverse_tcp_uuid normal No HTTPS Fetch, Reverse TCP Stager with UUID Support (Windows x64)
433 cmd/windows/https/x64/pingback_reverse_tcp normal No HTTPS Fetch, Windows x64 Pingback, Reverse TCP Inline
434 cmd/windows/https/x64/powershell_bind_tcp normal No HTTPS Fetch
435 cmd/windows/https/x64/powershell_reverse_tcp normal No HTTPS Fetch
436 cmd/windows/https/x64/powershell_reverse_tcp_ssl normal No HTTPS Fetch
437 cmd/windows/https/x64/shell/bind_ipv6_tcp normal No HTTPS Fetch, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager
438 cmd/windows/https/x64/shell/bind_ipv6_tcp_uuid normal No HTTPS Fetch, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager with UUID Support
439 cmd/windows/https/x64/shell/bind_named_pipe normal No HTTPS Fetch, Windows x64 Command Shell, Windows x64 Bind Named Pipe Stager
440 cmd/windows/https/x64/shell/bind_tcp normal No HTTPS Fetch, Windows x64 Command Shell, Windows x64 Bind TCP Stager
441 cmd/windows/https/x64/shell/bind_tcp_rc4 normal No HTTPS Fetch, Windows x64 Command Shell, Bind TCP Stager (RC4 Stage Encryption, Metasm)
442 cmd/windows/https/x64/shell/bind_tcp_uuid normal No HTTPS Fetch, Windows x64 Command Shell, Bind TCP Stager with UUID Support (Windows x64)
443 cmd/windows/https/x64/shell/reverse_tcp normal No HTTPS Fetch, Windows x64 Command Shell, Windows x64 Reverse TCP Stager
444 cmd/windows/https/x64/shell/reverse_tcp_rc4 normal No HTTPS Fetch, Windows x64 Command Shell, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
445 cmd/windows/https/x64/shell/reverse_tcp_uuid normal No HTTPS Fetch, Windows x64 Command Shell, Reverse TCP Stager with UUID Support (Windows x64)
446 cmd/windows/https/x64/shell_bind_tcp normal No HTTPS Fetch, Windows x64 Command Shell, Bind TCP Inline
447 cmd/windows/https/x64/shell_reverse_tcp normal No HTTPS Fetch, Windows x64 Command Shell, Reverse TCP Inline
448 cmd/windows/https/x64/vncinject/bind_ipv6_tcp normal No HTTPS Fetch, Windows x64 IPv6 Bind TCP Stager
449 cmd/windows/https/x64/vncinject/bind_ipv6_tcp_uuid normal No HTTPS Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
450 cmd/windows/https/x64/vncinject/bind_named_pipe normal No HTTPS Fetch, Windows x64 Bind Named Pipe Stager
451 cmd/windows/https/x64/vncinject/bind_tcp normal No HTTPS Fetch, Windows x64 Bind TCP Stager
452 cmd/windows/https/x64/vncinject/bind_tcp_rc4 normal No HTTPS Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
453 cmd/windows/https/x64/vncinject/bind_tcp_uuid normal No HTTPS Fetch, Bind TCP Stager with UUID Support (Windows x64)
454 cmd/windows/https/x64/vncinject/reverse_http normal No HTTPS Fetch, Windows x64 Reverse HTTP Stager (wininet)
455 cmd/windows/https/x64/vncinject/reverse_https normal No HTTPS Fetch, Windows x64 Reverse HTTP Stager (wininet)
456 cmd/windows/https/x64/vncinject/reverse_tcp normal No HTTPS Fetch, Windows x64 Reverse TCP Stager
457 cmd/windows/https/x64/vncinject/reverse_tcp_rc4 normal No HTTPS Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
458 cmd/windows/https/x64/vncinject/reverse_tcp_uuid normal No HTTPS Fetch, Reverse TCP Stager with UUID Support (Windows x64)
459 cmd/windows/https/x64/vncinject/reverse_winhttp normal No HTTPS Fetch, Windows x64 Reverse HTTP Stager (winhttp)
460 cmd/windows/https/x64/vncinject/reverse_winhttps normal No HTTPS Fetch, Windows x64 Reverse HTTPS Stager (winhttp)
461 cmd/windows/jjs_reverse_tcp normal No Windows Shell, Reverse TCP (via jjs)
462 cmd/windows/powershell/adduser normal No Powershell Exec
463 cmd/windows/powershell/custom/bind_hidden_ipknock_tcp normal No Powershell Exec, Windows shellcode stage, Hidden Bind Ipknock TCP Stager
464 cmd/windows/powershell/custom/bind_hidden_tcp normal No Powershell Exec, Windows shellcode stage, Hidden Bind TCP Stager
465 cmd/windows/powershell/custom/bind_ipv6_tcp normal No Powershell Exec, Windows shellcode stage, Bind IPv6 TCP Stager (Windows x86)
466 cmd/windows/powershell/custom/bind_ipv6_tcp_uuid normal No Powershell Exec, Windows shellcode stage, Bind IPv6 TCP Stager with UUID Support (Windows x86)
467 cmd/windows/powershell/custom/bind_named_pipe normal No Powershell Exec, Windows shellcode stage, Windows x86 Bind Named Pipe Stager
468 cmd/windows/powershell/custom/bind_nonx_tcp normal No Powershell Exec, Windows shellcode stage, Bind TCP Stager (No NX or Win7)
469 cmd/windows/powershell/custom/bind_tcp normal No Powershell Exec, Windows shellcode stage, Bind TCP Stager (Windows x86)
470 cmd/windows/powershell/custom/bind_tcp_rc4 normal No Powershell Exec, Windows shellcode stage, Bind TCP Stager (RC4 Stage Encryption, Metasm)
471 cmd/windows/powershell/custom/bind_tcp_uuid normal No Powershell Exec, Windows shellcode stage, Bind TCP Stager with UUID Support (Windows x86)
472 cmd/windows/powershell/custom/find_tag normal No Powershell Exec, Windows shellcode stage, Find Tag Ordinal Stager
473 cmd/windows/powershell/custom/reverse_hop_http normal No Powershell Exec, Windows shellcode stage, Reverse Hop HTTP/HTTPS Stager
474 cmd/windows/powershell/custom/reverse_http normal No Powershell Exec, Windows shellcode stage, Windows Reverse HTTP Stager (wininet)
475 cmd/windows/powershell/custom/reverse_http_proxy_pstore normal No Powershell Exec, Windows shellcode stage, Reverse HTTP Stager Proxy
476 cmd/windows/powershell/custom/reverse_https normal No Powershell Exec, Windows shellcode stage, Windows Reverse HTTPS Stager (wininet)
477 cmd/windows/powershell/custom/reverse_https_proxy normal No Powershell Exec, Windows shellcode stage, Reverse HTTPS Stager with Support for Custom Proxy
478 cmd/windows/powershell/custom/reverse_ipv6_tcp normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager (IPv6)
479 cmd/windows/powershell/custom/reverse_named_pipe normal No Powershell Exec, Windows shellcode stage, Windows x86 Reverse Named Pipe (SMB) Stager
480 cmd/windows/powershell/custom/reverse_nonx_tcp normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager (No NX or Win7)
481 cmd/windows/powershell/custom/reverse_ord_tcp normal No Powershell Exec, Windows shellcode stage, Reverse Ordinal TCP Stager (No NX or Win7)
482 cmd/windows/powershell/custom/reverse_tcp normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager
483 cmd/windows/powershell/custom/reverse_tcp_allports normal No Powershell Exec, Windows shellcode stage, Reverse All-Port TCP Stager
484 cmd/windows/powershell/custom/reverse_tcp_dns normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager (DNS)
485 cmd/windows/powershell/custom/reverse_tcp_rc4 normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
486 cmd/windows/powershell/custom/reverse_tcp_rc4_dns normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
487 cmd/windows/powershell/custom/reverse_tcp_uuid normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager with UUID Support
488 cmd/windows/powershell/custom/reverse_udp normal No Powershell Exec, Windows shellcode stage, Reverse UDP Stager with UUID Support
489 cmd/windows/powershell/custom/reverse_winhttp normal No Powershell Exec, Windows shellcode stage, Windows Reverse HTTP Stager (winhttp)
490 cmd/windows/powershell/custom/reverse_winhttps normal No Powershell Exec, Windows shellcode stage, Windows Reverse HTTPS Stager (winhttp)
491 cmd/windows/powershell/dllinject/bind_hidden_ipknock_tcp normal No Powershell Exec, Hidden Bind Ipknock TCP Stager
492 cmd/windows/powershell/dllinject/bind_hidden_tcp normal No Powershell Exec, Hidden Bind TCP Stager
493 cmd/windows/powershell/dllinject/bind_ipv6_tcp normal No Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
494 cmd/windows/powershell/dllinject/bind_ipv6_tcp_uuid normal No Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
495 cmd/windows/powershell/dllinject/bind_named_pipe normal No Powershell Exec, Windows x86 Bind Named Pipe Stager
496 cmd/windows/powershell/dllinject/bind_nonx_tcp normal No Powershell Exec, Bind TCP Stager (No NX or Win7)
497 cmd/windows/powershell/dllinject/bind_tcp normal No Powershell Exec, Bind TCP Stager (Windows x86)
498 cmd/windows/powershell/dllinject/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
499 cmd/windows/powershell/dllinject/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
500 cmd/windows/powershell/dllinject/find_tag normal No Powershell Exec, Find Tag Ordinal Stager
501 cmd/windows/powershell/dllinject/reverse_hop_http normal No Powershell Exec, Reverse Hop HTTP/HTTPS Stager
502 cmd/windows/powershell/dllinject/reverse_http normal No Powershell Exec, Windows Reverse HTTP Stager (wininet)
503 cmd/windows/powershell/dllinject/reverse_http_proxy_pstore normal No Powershell Exec, Reverse HTTP Stager Proxy
504 cmd/windows/powershell/dllinject/reverse_ipv6_tcp normal No Powershell Exec, Reverse TCP Stager (IPv6)
505 cmd/windows/powershell/dllinject/reverse_nonx_tcp normal No Powershell Exec, Reverse TCP Stager (No NX or Win7)
506 cmd/windows/powershell/dllinject/reverse_ord_tcp normal No Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
507 cmd/windows/powershell/dllinject/reverse_tcp normal No Powershell Exec, Reverse TCP Stager
508 cmd/windows/powershell/dllinject/reverse_tcp_allports normal No Powershell Exec, Reverse All-Port TCP Stager
509 cmd/windows/powershell/dllinject/reverse_tcp_dns normal No Powershell Exec, Reverse TCP Stager (DNS)
510 cmd/windows/powershell/dllinject/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
511 cmd/windows/powershell/dllinject/reverse_tcp_rc4_dns normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
512 cmd/windows/powershell/dllinject/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support
513 cmd/windows/powershell/dllinject/reverse_winhttp normal No Powershell Exec, Windows Reverse HTTP Stager (winhttp)
514 cmd/windows/powershell/dns_txt_query_exec normal No Powershell Exec, DNS TXT Record Payload Download and Execution
515 cmd/windows/powershell/download_exec normal No Powershell Exec, Windows Executable Download (http,https,ftp) and Execute
516 cmd/windows/powershell/encrypted_shell/reverse_tcp normal No Powershell Exec, Windows Command Shell, Encrypted Reverse TCP Stager
517 cmd/windows/powershell/exec normal No Powershell Exec
518 cmd/windows/powershell/format_all_drives manual No Powershell Exec
519 cmd/windows/powershell/generic/debug_trap normal No Powershell Exec, Generic x86 Debug Trap
520 cmd/windows/powershell/generic/tight_loop normal No Powershell Exec, Generic x86 Tight Loop
521 cmd/windows/powershell/loadlibrary normal No Powershell Exec
522 cmd/windows/powershell/messagebox normal No Powershell Exec, Windows MessageBox
523 cmd/windows/powershell/meterpreter/bind_hidden_ipknock_tcp normal No Powershell Exec, Hidden Bind Ipknock TCP Stager
524 cmd/windows/powershell/meterpreter/bind_hidden_tcp normal No Powershell Exec, Hidden Bind TCP Stager
525 cmd/windows/powershell/meterpreter/bind_ipv6_tcp normal No Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
526 cmd/windows/powershell/meterpreter/bind_ipv6_tcp_uuid normal No Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
527 cmd/windows/powershell/meterpreter/bind_named_pipe normal No Powershell Exec, Windows x86 Bind Named Pipe Stager
528 cmd/windows/powershell/meterpreter/bind_nonx_tcp normal No Powershell Exec, Bind TCP Stager (No NX or Win7)
529 cmd/windows/powershell/meterpreter/bind_tcp normal No Powershell Exec, Bind TCP Stager (Windows x86)
530 cmd/windows/powershell/meterpreter/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
531 cmd/windows/powershell/meterpreter/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
532 cmd/windows/powershell/meterpreter/find_tag normal No Powershell Exec, Find Tag Ordinal Stager
533 cmd/windows/powershell/meterpreter/reverse_hop_http normal No Powershell Exec, Reverse Hop HTTP/HTTPS Stager
534 cmd/windows/powershell/meterpreter/reverse_http normal No Powershell Exec, Windows Reverse HTTP Stager (wininet)
535 cmd/windows/powershell/meterpreter/reverse_http_proxy_pstore normal No Powershell Exec, Reverse HTTP Stager Proxy
536 cmd/windows/powershell/meterpreter/reverse_https normal No Powershell Exec, Windows Reverse HTTPS Stager (wininet)
537 cmd/windows/powershell/meterpreter/reverse_https_proxy normal No Powershell Exec, Reverse HTTPS Stager with Support for Custom Proxy
538 cmd/windows/powershell/meterpreter/reverse_ipv6_tcp normal No Powershell Exec, Reverse TCP Stager (IPv6)
539 cmd/windows/powershell/meterpreter/reverse_named_pipe normal No Powershell Exec, Windows x86 Reverse Named Pipe (SMB) Stager
540 cmd/windows/powershell/meterpreter/reverse_nonx_tcp normal No Powershell Exec, Reverse TCP Stager (No NX or Win7)
541 cmd/windows/powershell/meterpreter/reverse_ord_tcp normal No Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
542 cmd/windows/powershell/meterpreter/reverse_tcp normal No Powershell Exec, Reverse TCP Stager
543 cmd/windows/powershell/meterpreter/reverse_tcp_allports normal No Powershell Exec, Reverse All-Port TCP Stager
544 cmd/windows/powershell/meterpreter/reverse_tcp_dns normal No Powershell Exec, Reverse TCP Stager (DNS)
545 cmd/windows/powershell/meterpreter/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
546 cmd/windows/powershell/meterpreter/reverse_tcp_rc4_dns normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
547 cmd/windows/powershell/meterpreter/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support
548 cmd/windows/powershell/meterpreter/reverse_winhttp normal No Powershell Exec, Windows Reverse HTTP Stager (winhttp)
549 cmd/windows/powershell/meterpreter/reverse_winhttps normal No Powershell Exec, Windows Reverse HTTPS Stager (winhttp)
550 cmd/windows/powershell/metsvc_bind_tcp normal No Powershell Exec, Windows Meterpreter Service, Bind TCP
551 cmd/windows/powershell/metsvc_reverse_tcp normal No Powershell Exec, Windows Meterpreter Service, Reverse TCP Inline
552 cmd/windows/powershell/patchupdllinject/bind_hidden_ipknock_tcp normal No Powershell Exec, Hidden Bind Ipknock TCP Stager
553 cmd/windows/powershell/patchupdllinject/bind_hidden_tcp normal No Powershell Exec, Hidden Bind TCP Stager
554 cmd/windows/powershell/patchupdllinject/bind_ipv6_tcp normal No Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
555 cmd/windows/powershell/patchupdllinject/bind_ipv6_tcp_uuid normal No Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
556 cmd/windows/powershell/patchupdllinject/bind_named_pipe normal No Powershell Exec, Windows x86 Bind Named Pipe Stager
557 cmd/windows/powershell/patchupdllinject/bind_nonx_tcp normal No Powershell Exec, Bind TCP Stager (No NX or Win7)
558 cmd/windows/powershell/patchupdllinject/bind_tcp normal No Powershell Exec, Bind TCP Stager (Windows x86)
559 cmd/windows/powershell/patchupdllinject/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
560 cmd/windows/powershell/patchupdllinject/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
561 cmd/windows/powershell/patchupdllinject/find_tag normal No Powershell Exec, Find Tag Ordinal Stager
562 cmd/windows/powershell/patchupdllinject/reverse_ipv6_tcp normal No Powershell Exec, Reverse TCP Stager (IPv6)
563 cmd/windows/powershell/patchupdllinject/reverse_nonx_tcp normal No Powershell Exec, Reverse TCP Stager (No NX or Win7)
564 cmd/windows/powershell/patchupdllinject/reverse_ord_tcp normal No Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
565 cmd/windows/powershell/patchupdllinject/reverse_tcp normal No Powershell Exec, Reverse TCP Stager
566 cmd/windows/powershell/patchupdllinject/reverse_tcp_allports normal No Powershell Exec, Reverse All-Port TCP Stager
567 cmd/windows/powershell/patchupdllinject/reverse_tcp_dns normal No Powershell Exec, Reverse TCP Stager (DNS)
568 cmd/windows/powershell/patchupdllinject/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
569 cmd/windows/powershell/patchupdllinject/reverse_tcp_rc4_dns normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
570 cmd/windows/powershell/patchupdllinject/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support
571 cmd/windows/powershell/patchupmeterpreter/bind_hidden_ipknock_tcp normal No Powershell Exec, Hidden Bind Ipknock TCP Stager
572 cmd/windows/powershell/patchupmeterpreter/bind_hidden_tcp normal No Powershell Exec, Hidden Bind TCP Stager
573 cmd/windows/powershell/patchupmeterpreter/bind_ipv6_tcp normal No Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
574 cmd/windows/powershell/patchupmeterpreter/bind_ipv6_tcp_uuid normal No Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
575 cmd/windows/powershell/patchupmeterpreter/bind_named_pipe normal No Powershell Exec, Windows x86 Bind Named Pipe Stager
576 cmd/windows/powershell/patchupmeterpreter/bind_nonx_tcp normal No Powershell Exec, Bind TCP Stager (No NX or Win7)
577 cmd/windows/powershell/patchupmeterpreter/bind_tcp normal No Powershell Exec, Bind TCP Stager (Windows x86)
578 cmd/windows/powershell/patchupmeterpreter/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
579 cmd/windows/powershell/patchupmeterpreter/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
580 cmd/windows/powershell/patchupmeterpreter/find_tag normal No Powershell Exec, Find Tag Ordinal Stager
581 cmd/windows/powershell/patchupmeterpreter/reverse_ipv6_tcp normal No Powershell Exec, Reverse TCP Stager (IPv6)
582 cmd/windows/powershell/patchupmeterpreter/reverse_nonx_tcp normal No Powershell Exec, Reverse TCP Stager (No NX or Win7)
583 cmd/windows/powershell/patchupmeterpreter/reverse_ord_tcp normal No Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
584 cmd/windows/powershell/patchupmeterpreter/reverse_tcp normal No Powershell Exec, Reverse TCP Stager
585 cmd/windows/powershell/patchupmeterpreter/reverse_tcp_allports normal No Powershell Exec, Reverse All-Port TCP Stager
586 cmd/windows/powershell/patchupmeterpreter/reverse_tcp_dns normal No Powershell Exec, Reverse TCP Stager (DNS)
587 cmd/windows/powershell/patchupmeterpreter/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
588 cmd/windows/powershell/patchupmeterpreter/reverse_tcp_rc4_dns normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
589 cmd/windows/powershell/patchupmeterpreter/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support
590 cmd/windows/powershell/peinject/bind_hidden_ipknock_tcp normal No Powershell Exec, Hidden Bind Ipknock TCP Stager
591 cmd/windows/powershell/peinject/bind_hidden_tcp normal No Powershell Exec, Hidden Bind TCP Stager
592 cmd/windows/powershell/peinject/bind_ipv6_tcp normal No Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
593 cmd/windows/powershell/peinject/bind_ipv6_tcp_uuid normal No Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
594 cmd/windows/powershell/peinject/bind_named_pipe normal No Powershell Exec, Windows x86 Bind Named Pipe Stager
595 cmd/windows/powershell/peinject/bind_nonx_tcp normal No Powershell Exec, Bind TCP Stager (No NX or Win7)
596 cmd/windows/powershell/peinject/bind_tcp normal No Powershell Exec, Bind TCP Stager (Windows x86)
597 cmd/windows/powershell/peinject/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
598 cmd/windows/powershell/peinject/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
599 cmd/windows/powershell/peinject/find_tag normal No Powershell Exec, Find Tag Ordinal Stager
600 cmd/windows/powershell/peinject/reverse_ipv6_tcp normal No Powershell Exec, Reverse TCP Stager (IPv6)
601 cmd/windows/powershell/peinject/reverse_named_pipe normal No Powershell Exec, Windows x86 Reverse Named Pipe (SMB) Stager
602 cmd/windows/powershell/peinject/reverse_nonx_tcp normal No Powershell Exec, Reverse TCP Stager (No NX or Win7)
603 cmd/windows/powershell/peinject/reverse_ord_tcp normal No Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
604 cmd/windows/powershell/peinject/reverse_tcp normal No Powershell Exec, Reverse TCP Stager
605 cmd/windows/powershell/peinject/reverse_tcp_allports normal No Powershell Exec, Reverse All-Port TCP Stager
606 cmd/windows/powershell/peinject/reverse_tcp_dns normal No Powershell Exec, Reverse TCP Stager (DNS)
607 cmd/windows/powershell/peinject/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
608 cmd/windows/powershell/peinject/reverse_tcp_rc4_dns normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
609 cmd/windows/powershell/peinject/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support
610 cmd/windows/powershell/pingback_bind_tcp normal No Powershell Exec, Windows x86 Pingback, Bind TCP Inline
611 cmd/windows/powershell/pingback_reverse_tcp normal No Powershell Exec, Windows x86 Pingback, Reverse TCP Inline
612 cmd/windows/powershell/powershell_bind_tcp normal No Powershell Exec
613 cmd/windows/powershell/powershell_reverse_tcp normal No Powershell Exec
614 cmd/windows/powershell/powershell_reverse_tcp_ssl normal No Powershell Exec
615 cmd/windows/powershell/shell/bind_hidden_ipknock_tcp normal No Powershell Exec, Windows Command Shell, Hidden Bind Ipknock TCP Stager
616 cmd/windows/powershell/shell/bind_hidden_tcp normal No Powershell Exec, Windows Command Shell, Hidden Bind TCP Stager
617 cmd/windows/powershell/shell/bind_ipv6_tcp normal No Powershell Exec, Windows Command Shell, Bind IPv6 TCP Stager (Windows x86)
618 cmd/windows/powershell/shell/bind_ipv6_tcp_uuid normal No Powershell Exec, Windows Command Shell, Bind IPv6 TCP Stager with UUID Support (Windows x86)
619 cmd/windows/powershell/shell/bind_named_pipe normal No Powershell Exec, Windows Command Shell, Windows x86 Bind Named Pipe Stager
620 cmd/windows/powershell/shell/bind_nonx_tcp normal No Powershell Exec, Windows Command Shell, Bind TCP Stager (No NX or Win7)
621 cmd/windows/powershell/shell/bind_tcp normal No Powershell Exec, Windows Command Shell, Bind TCP Stager (Windows x86)
622 cmd/windows/powershell/shell/bind_tcp_rc4 normal No Powershell Exec, Windows Command Shell, Bind TCP Stager (RC4 Stage Encryption, Metasm)
623 cmd/windows/powershell/shell/bind_tcp_uuid normal No Powershell Exec, Windows Command Shell, Bind TCP Stager with UUID Support (Windows x86)
624 cmd/windows/powershell/shell/find_tag normal No Powershell Exec, Windows Command Shell, Find Tag Ordinal Stager
625 cmd/windows/powershell/shell/reverse_ipv6_tcp normal No Powershell Exec, Windows Command Shell, Reverse TCP Stager (IPv6)
626 cmd/windows/powershell/shell/reverse_nonx_tcp normal No Powershell Exec, Windows Command Shell, Reverse TCP Stager (No NX or Win7)
627 cmd/windows/powershell/shell/reverse_ord_tcp normal No Powershell Exec, Windows Command Shell, Reverse Ordinal TCP Stager (No NX or Win7)
628 cmd/windows/powershell/shell/reverse_tcp normal No Powershell Exec, Windows Command Shell, Reverse TCP Stager
629 cmd/windows/powershell/shell/reverse_tcp_allports normal No Powershell Exec, Windows Command Shell, Reverse All-Port TCP Stager
630 cmd/windows/powershell/shell/reverse_tcp_dns normal No Powershell Exec, Windows Command Shell, Reverse TCP Stager (DNS)
631 cmd/windows/powershell/shell/reverse_tcp_rc4 normal No Powershell Exec, Windows Command Shell, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
632 cmd/windows/powershell/shell/reverse_tcp_rc4_dns normal No Powershell Exec, Windows Command Shell, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
633 cmd/windows/powershell/shell/reverse_tcp_uuid normal No Powershell Exec, Windows Command Shell, Reverse TCP Stager with UUID Support
634 cmd/windows/powershell/shell/reverse_udp normal No Powershell Exec, Windows Command Shell, Reverse UDP Stager with UUID Support
635 cmd/windows/powershell/shell_bind_tcp normal No Powershell Exec, Windows Command Shell, Bind TCP Inline
636 cmd/windows/powershell/shell_bind_tcp_xpfw normal No Powershell Exec, Windows Disable Windows ICF, Command Shell, Bind TCP Inline
637 cmd/windows/powershell/shell_hidden_bind_tcp normal No Powershell Exec, Windows Command Shell, Hidden Bind TCP Inline
638 cmd/windows/powershell/shell_reverse_tcp normal No Powershell Exec, Windows Command Shell, Reverse TCP Inline
639 cmd/windows/powershell/speak_pwned normal No Powershell Exec
640 cmd/windows/powershell/upexec/bind_hidden_ipknock_tcp normal No Powershell Exec, Windows Upload/Execute, Hidden Bind Ipknock TCP Stager
641 cmd/windows/powershell/upexec/bind_hidden_tcp normal No Powershell Exec, Windows Upload/Execute, Hidden Bind TCP Stager
642 cmd/windows/powershell/upexec/bind_ipv6_tcp normal No Powershell Exec, Windows Upload/Execute, Bind IPv6 TCP Stager (Windows x86)
643 cmd/windows/powershell/upexec/bind_ipv6_tcp_uuid normal No Powershell Exec, Windows Upload/Execute, Bind IPv6 TCP Stager with UUID Support (Windows x86)
644 cmd/windows/powershell/upexec/bind_named_pipe normal No Powershell Exec, Windows Upload/Execute, Windows x86 Bind Named Pipe Stager
645 cmd/windows/powershell/upexec/bind_nonx_tcp normal No Powershell Exec, Windows Upload/Execute, Bind TCP Stager (No NX or Win7)
646 cmd/windows/powershell/upexec/bind_tcp normal No Powershell Exec, Windows Upload/Execute, Bind TCP Stager (Windows x86)
647 cmd/windows/powershell/upexec/bind_tcp_rc4 normal No Powershell Exec, Windows Upload/Execute, Bind TCP Stager (RC4 Stage Encryption, Metasm)
648 cmd/windows/powershell/upexec/bind_tcp_uuid normal No Powershell Exec, Windows Upload/Execute, Bind TCP Stager with UUID Support (Windows x86)
649 cmd/windows/powershell/upexec/find_tag normal No Powershell Exec, Windows Upload/Execute, Find Tag Ordinal Stager
650 cmd/windows/powershell/upexec/reverse_ipv6_tcp normal No Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (IPv6)
651 cmd/windows/powershell/upexec/reverse_nonx_tcp normal No Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (No NX or Win7)
652 cmd/windows/powershell/upexec/reverse_ord_tcp normal No Powershell Exec, Windows Upload/Execute, Reverse Ordinal TCP Stager (No NX or Win7)
653 cmd/windows/powershell/upexec/reverse_tcp normal No Powershell Exec, Windows Upload/Execute, Reverse TCP Stager
654 cmd/windows/powershell/upexec/reverse_tcp_allports normal No Powershell Exec, Windows Upload/Execute, Reverse All-Port TCP Stager
655 cmd/windows/powershell/upexec/reverse_tcp_dns normal No Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (DNS)
656 cmd/windows/powershell/upexec/reverse_tcp_rc4 normal No Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
657 cmd/windows/powershell/upexec/reverse_tcp_rc4_dns normal No Powershell Exec, Windows Upload/Execute, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
658 cmd/windows/powershell/upexec/reverse_tcp_uuid normal No Powershell Exec, Windows Upload/Execute, Reverse TCP Stager with UUID Support
659 cmd/windows/powershell/upexec/reverse_udp normal No Powershell Exec, Windows Upload/Execute, Reverse UDP Stager with UUID Support
660 cmd/windows/powershell/vncinject/bind_hidden_ipknock_tcp normal No Powershell Exec, Hidden Bind Ipknock TCP Stager
661 cmd/windows/powershell/vncinject/bind_hidden_tcp normal No Powershell Exec, Hidden Bind TCP Stager
662 cmd/windows/powershell/vncinject/bind_ipv6_tcp normal No Powershell Exec, Bind IPv6 TCP Stager (Windows x86)
663 cmd/windows/powershell/vncinject/bind_ipv6_tcp_uuid normal No Powershell Exec, Bind IPv6 TCP Stager with UUID Support (Windows x86)
664 cmd/windows/powershell/vncinject/bind_named_pipe normal No Powershell Exec, Windows x86 Bind Named Pipe Stager
665 cmd/windows/powershell/vncinject/bind_nonx_tcp normal No Powershell Exec, Bind TCP Stager (No NX or Win7)
666 cmd/windows/powershell/vncinject/bind_tcp normal No Powershell Exec, Bind TCP Stager (Windows x86)
667 cmd/windows/powershell/vncinject/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
668 cmd/windows/powershell/vncinject/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x86)
669 cmd/windows/powershell/vncinject/find_tag normal No Powershell Exec, Find Tag Ordinal Stager
670 cmd/windows/powershell/vncinject/reverse_hop_http normal No Powershell Exec, Reverse Hop HTTP/HTTPS Stager
671 cmd/windows/powershell/vncinject/reverse_http normal No Powershell Exec, Windows Reverse HTTP Stager (wininet)
672 cmd/windows/powershell/vncinject/reverse_http_proxy_pstore normal No Powershell Exec, Reverse HTTP Stager Proxy
673 cmd/windows/powershell/vncinject/reverse_ipv6_tcp normal No Powershell Exec, Reverse TCP Stager (IPv6)
674 cmd/windows/powershell/vncinject/reverse_nonx_tcp normal No Powershell Exec, Reverse TCP Stager (No NX or Win7)
675 cmd/windows/powershell/vncinject/reverse_ord_tcp normal No Powershell Exec, Reverse Ordinal TCP Stager (No NX or Win7)
676 cmd/windows/powershell/vncinject/reverse_tcp normal No Powershell Exec, Reverse TCP Stager
677 cmd/windows/powershell/vncinject/reverse_tcp_allports normal No Powershell Exec, Reverse All-Port TCP Stager
678 cmd/windows/powershell/vncinject/reverse_tcp_dns normal No Powershell Exec, Reverse TCP Stager (DNS)
679 cmd/windows/powershell/vncinject/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
680 cmd/windows/powershell/vncinject/reverse_tcp_rc4_dns normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption DNS, Metasm)
681 cmd/windows/powershell/vncinject/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support
682 cmd/windows/powershell/vncinject/reverse_winhttp normal No Powershell Exec, Windows Reverse HTTP Stager (winhttp)
683 cmd/windows/powershell/x64/custom/bind_ipv6_tcp normal No Powershell Exec, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager
684 cmd/windows/powershell/x64/custom/bind_ipv6_tcp_uuid normal No Powershell Exec, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager with UUID Support
685 cmd/windows/powershell/x64/custom/bind_named_pipe normal No Powershell Exec, Windows shellcode stage, Windows x64 Bind Named Pipe Stager
686 cmd/windows/powershell/x64/custom/bind_tcp normal No Powershell Exec, Windows shellcode stage, Windows x64 Bind TCP Stager
687 cmd/windows/powershell/x64/custom/bind_tcp_rc4 normal No Powershell Exec, Windows shellcode stage, Bind TCP Stager (RC4 Stage Encryption, Metasm)
688 cmd/windows/powershell/x64/custom/bind_tcp_uuid normal No Powershell Exec, Windows shellcode stage, Bind TCP Stager with UUID Support (Windows x64)
689 cmd/windows/powershell/x64/custom/reverse_http normal No Powershell Exec, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
690 cmd/windows/powershell/x64/custom/reverse_https normal No Powershell Exec, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
691 cmd/windows/powershell/x64/custom/reverse_named_pipe normal No Powershell Exec, Windows shellcode stage, Windows x64 Reverse Named Pipe (SMB) Stager
692 cmd/windows/powershell/x64/custom/reverse_tcp normal No Powershell Exec, Windows shellcode stage, Windows x64 Reverse TCP Stager
693 cmd/windows/powershell/x64/custom/reverse_tcp_rc4 normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
694 cmd/windows/powershell/x64/custom/reverse_tcp_uuid normal No Powershell Exec, Windows shellcode stage, Reverse TCP Stager with UUID Support (Windows x64)
695 cmd/windows/powershell/x64/custom/reverse_winhttp normal No Powershell Exec, Windows shellcode stage, Windows x64 Reverse HTTP Stager (winhttp)
696 cmd/windows/powershell/x64/custom/reverse_winhttps normal No Powershell Exec, Windows shellcode stage, Windows x64 Reverse HTTPS Stager (winhttp)
697 cmd/windows/powershell/x64/encrypted_shell/reverse_tcp normal No Powershell Exec, Windows Command Shell, Encrypted Reverse TCP Stager
698 cmd/windows/powershell/x64/exec normal No Powershell Exec, Windows x64 Execute Command
699 cmd/windows/powershell/x64/loadlibrary normal No Powershell Exec, Windows x64 LoadLibrary Path
700 cmd/windows/powershell/x64/messagebox normal No Powershell Exec, Windows MessageBox x64
701 cmd/windows/powershell/x64/meterpreter/bind_ipv6_tcp normal No Powershell Exec, Windows x64 IPv6 Bind TCP Stager
702 cmd/windows/powershell/x64/meterpreter/bind_ipv6_tcp_uuid normal No Powershell Exec, Windows x64 IPv6 Bind TCP Stager with UUID Support
703 cmd/windows/powershell/x64/meterpreter/bind_named_pipe normal No Powershell Exec, Windows x64 Bind Named Pipe Stager
704 cmd/windows/powershell/x64/meterpreter/bind_tcp normal No Powershell Exec, Windows x64 Bind TCP Stager
705 cmd/windows/powershell/x64/meterpreter/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
706 cmd/windows/powershell/x64/meterpreter/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x64)
707 cmd/windows/powershell/x64/meterpreter/reverse_http normal No Powershell Exec, Windows x64 Reverse HTTP Stager (wininet)
708 cmd/windows/powershell/x64/meterpreter/reverse_https normal No Powershell Exec, Windows x64 Reverse HTTP Stager (wininet)
709 cmd/windows/powershell/x64/meterpreter/reverse_named_pipe normal No Powershell Exec, Windows x64 Reverse Named Pipe (SMB) Stager
710 cmd/windows/powershell/x64/meterpreter/reverse_tcp normal No Powershell Exec, Windows x64 Reverse TCP Stager
711 cmd/windows/powershell/x64/meterpreter/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
712 cmd/windows/powershell/x64/meterpreter/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support (Windows x64)
713 cmd/windows/powershell/x64/meterpreter/reverse_winhttp normal No Powershell Exec, Windows x64 Reverse HTTP Stager (winhttp)
714 cmd/windows/powershell/x64/meterpreter/reverse_winhttps normal No Powershell Exec, Windows x64 Reverse HTTPS Stager (winhttp)
715 cmd/windows/powershell/x64/peinject/bind_ipv6_tcp normal No Powershell Exec, Windows x64 IPv6 Bind TCP Stager
716 cmd/windows/powershell/x64/peinject/bind_ipv6_tcp_uuid normal No Powershell Exec, Windows x64 IPv6 Bind TCP Stager with UUID Support
717 cmd/windows/powershell/x64/peinject/bind_named_pipe normal No Powershell Exec, Windows x64 Bind Named Pipe Stager
718 cmd/windows/powershell/x64/peinject/bind_tcp normal No Powershell Exec, Windows x64 Bind TCP Stager
719 cmd/windows/powershell/x64/peinject/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
720 cmd/windows/powershell/x64/peinject/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x64)
721 cmd/windows/powershell/x64/peinject/reverse_named_pipe normal No Powershell Exec, Windows x64 Reverse Named Pipe (SMB) Stager
722 cmd/windows/powershell/x64/peinject/reverse_tcp normal No Powershell Exec, Windows x64 Reverse TCP Stager
723 cmd/windows/powershell/x64/peinject/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
724 cmd/windows/powershell/x64/peinject/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support (Windows x64)
725 cmd/windows/powershell/x64/pingback_reverse_tcp normal No Powershell Exec, Windows x64 Pingback, Reverse TCP Inline
726 cmd/windows/powershell/x64/powershell_bind_tcp normal No Powershell Exec
727 cmd/windows/powershell/x64/powershell_reverse_tcp normal No Powershell Exec
728 cmd/windows/powershell/x64/powershell_reverse_tcp_ssl normal No Powershell Exec
729 cmd/windows/powershell/x64/shell/bind_ipv6_tcp normal No Powershell Exec, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager
730 cmd/windows/powershell/x64/shell/bind_ipv6_tcp_uuid normal No Powershell Exec, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager with UUID Support
731 cmd/windows/powershell/x64/shell/bind_named_pipe normal No Powershell Exec, Windows x64 Command Shell, Windows x64 Bind Named Pipe Stager
732 cmd/windows/powershell/x64/shell/bind_tcp normal No Powershell Exec, Windows x64 Command Shell, Windows x64 Bind TCP Stager
733 cmd/windows/powershell/x64/shell/bind_tcp_rc4 normal No Powershell Exec, Windows x64 Command Shell, Bind TCP Stager (RC4 Stage Encryption, Metasm)
734 cmd/windows/powershell/x64/shell/bind_tcp_uuid normal No Powershell Exec, Windows x64 Command Shell, Bind TCP Stager with UUID Support (Windows x64)
735 cmd/windows/powershell/x64/shell/reverse_tcp normal No Powershell Exec, Windows x64 Command Shell, Windows x64 Reverse TCP Stager
736 cmd/windows/powershell/x64/shell/reverse_tcp_rc4 normal No Powershell Exec, Windows x64 Command Shell, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
737 cmd/windows/powershell/x64/shell/reverse_tcp_uuid normal No Powershell Exec, Windows x64 Command Shell, Reverse TCP Stager with UUID Support (Windows x64)
738 cmd/windows/powershell/x64/shell_bind_tcp normal No Powershell Exec, Windows x64 Command Shell, Bind TCP Inline
739 cmd/windows/powershell/x64/shell_reverse_tcp normal No Powershell Exec, Windows x64 Command Shell, Reverse TCP Inline
740 cmd/windows/powershell/x64/vncinject/bind_ipv6_tcp normal No Powershell Exec, Windows x64 IPv6 Bind TCP Stager
741 cmd/windows/powershell/x64/vncinject/bind_ipv6_tcp_uuid normal No Powershell Exec, Windows x64 IPv6 Bind TCP Stager with UUID Support
742 cmd/windows/powershell/x64/vncinject/bind_named_pipe normal No Powershell Exec, Windows x64 Bind Named Pipe Stager
743 cmd/windows/powershell/x64/vncinject/bind_tcp normal No Powershell Exec, Windows x64 Bind TCP Stager
744 cmd/windows/powershell/x64/vncinject/bind_tcp_rc4 normal No Powershell Exec, Bind TCP Stager (RC4 Stage Encryption, Metasm)
745 cmd/windows/powershell/x64/vncinject/bind_tcp_uuid normal No Powershell Exec, Bind TCP Stager with UUID Support (Windows x64)
746 cmd/windows/powershell/x64/vncinject/reverse_http normal No Powershell Exec, Windows x64 Reverse HTTP Stager (wininet)
747 cmd/windows/powershell/x64/vncinject/reverse_https normal No Powershell Exec, Windows x64 Reverse HTTP Stager (wininet)
748 cmd/windows/powershell/x64/vncinject/reverse_tcp normal No Powershell Exec, Windows x64 Reverse TCP Stager
749 cmd/windows/powershell/x64/vncinject/reverse_tcp_rc4 normal No Powershell Exec, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
750 cmd/windows/powershell/x64/vncinject/reverse_tcp_uuid normal No Powershell Exec, Reverse TCP Stager with UUID Support (Windows x64)
751 cmd/windows/powershell/x64/vncinject/reverse_winhttp normal No Powershell Exec, Windows x64 Reverse HTTP Stager (winhttp)
752 cmd/windows/powershell/x64/vncinject/reverse_winhttps normal No Powershell Exec, Windows x64 Reverse HTTPS Stager (winhttp)
753 cmd/windows/powershell_bind_tcp normal No Windows Interactive Powershell Session, Bind TCP
754 cmd/windows/powershell_reverse_tcp normal No Windows Interactive Powershell Session, Reverse TCP
755 cmd/windows/powershell_reverse_tcp_ssl normal No Windows Interactive Powershell Session, Reverse TCP SSL
756 cmd/windows/python/meterpreter/bind_tcp normal No Python Exec, Python Meterpreter, Python Bind TCP Stager
757 cmd/windows/python/meterpreter/bind_tcp_uuid normal No Python Exec, Python Meterpreter, Python Bind TCP Stager with UUID Support
758 cmd/windows/python/meterpreter/reverse_http normal No Python Exec, Python Meterpreter, Python Reverse HTTP Stager
759 cmd/windows/python/meterpreter/reverse_https normal No Python Exec, Python Meterpreter, Python Reverse HTTPS Stager
760 cmd/windows/python/meterpreter/reverse_tcp normal No Python Exec, Python Meterpreter, Python Reverse TCP Stager
761 cmd/windows/python/meterpreter/reverse_tcp_ssl normal No Python Exec, Python Meterpreter, Python Reverse TCP SSL Stager
762 cmd/windows/python/meterpreter/reverse_tcp_uuid normal No Python Exec, Python Meterpreter, Python Reverse TCP Stager with UUID Support
763 cmd/windows/python/meterpreter_bind_tcp normal No Python Exec, Python Meterpreter Shell, Bind TCP Inline
764 cmd/windows/python/meterpreter_reverse_http normal No Python Exec, Python Meterpreter Shell, Reverse HTTP Inline
765 cmd/windows/python/meterpreter_reverse_https normal No Python Exec, Python Meterpreter Shell, Reverse HTTPS Inline
766 cmd/windows/python/meterpreter_reverse_tcp normal No Python Exec, Python Meterpreter Shell, Reverse TCP Inline
767 cmd/windows/python/pingback_bind_tcp normal No Python Exec, Python Pingback, Bind TCP (via python)
768 cmd/windows/python/pingback_reverse_tcp normal No Python Exec, Python Pingback, Reverse TCP (via python)
769 cmd/windows/python/shell_bind_tcp normal No Python Exec, Command Shell, Bind TCP (via python)
770 cmd/windows/python/shell_reverse_sctp normal No Python Exec, Command Shell, Reverse SCTP (via python)
771 cmd/windows/python/shell_reverse_tcp normal No Python Exec, Command Shell, Reverse TCP (via python)
772 cmd/windows/python/shell_reverse_tcp_ssl normal No Python Exec, Command Shell, Reverse TCP SSL (via python)
773 cmd/windows/python/shell_reverse_udp normal No Python Exec, Command Shell, Reverse UDP (via python)
774 cmd/windows/reverse_lua normal No Windows Command Shell, Reverse TCP (via Lua)
775 cmd/windows/reverse_perl normal No Windows Command, Double Reverse TCP Connection (via Perl)
776 cmd/windows/reverse_powershell normal No Windows Command Shell, Reverse TCP (via Powershell)
777 cmd/windows/reverse_ruby normal No Windows Command Shell, Reverse TCP (via Ruby)
778 cmd/windows/tftp/x64/custom/bind_ipv6_tcp normal No TFTP Fetch, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager
779 cmd/windows/tftp/x64/custom/bind_ipv6_tcp_uuid normal No TFTP Fetch, Windows shellcode stage, Windows x64 IPv6 Bind TCP Stager with UUID Support
780 cmd/windows/tftp/x64/custom/bind_named_pipe normal No TFTP Fetch, Windows shellcode stage, Windows x64 Bind Named Pipe Stager
781 cmd/windows/tftp/x64/custom/bind_tcp normal No TFTP Fetch, Windows shellcode stage, Windows x64 Bind TCP Stager
782 cmd/windows/tftp/x64/custom/bind_tcp_rc4 normal No TFTP Fetch, Windows shellcode stage, Bind TCP Stager (RC4 Stage Encryption, Metasm)
783 cmd/windows/tftp/x64/custom/bind_tcp_uuid normal No TFTP Fetch, Windows shellcode stage, Bind TCP Stager with UUID Support (Windows x64)
784 cmd/windows/tftp/x64/custom/reverse_http normal No TFTP Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
785 cmd/windows/tftp/x64/custom/reverse_https normal No TFTP Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (wininet)
786 cmd/windows/tftp/x64/custom/reverse_named_pipe normal No TFTP Fetch, Windows shellcode stage, Windows x64 Reverse Named Pipe (SMB) Stager
787 cmd/windows/tftp/x64/custom/reverse_tcp normal No TFTP Fetch, Windows shellcode stage, Windows x64 Reverse TCP Stager
788 cmd/windows/tftp/x64/custom/reverse_tcp_rc4 normal No TFTP Fetch, Windows shellcode stage, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
789 cmd/windows/tftp/x64/custom/reverse_tcp_uuid normal No TFTP Fetch, Windows shellcode stage, Reverse TCP Stager with UUID Support (Windows x64)
790 cmd/windows/tftp/x64/custom/reverse_winhttp normal No TFTP Fetch, Windows shellcode stage, Windows x64 Reverse HTTP Stager (winhttp)
791 cmd/windows/tftp/x64/custom/reverse_winhttps normal No TFTP Fetch, Windows shellcode stage, Windows x64 Reverse HTTPS Stager (winhttp)
792 cmd/windows/tftp/x64/encrypted_shell/reverse_tcp normal No TFTP Fetch, Windows Command Shell, Encrypted Reverse TCP Stager
793 cmd/windows/tftp/x64/encrypted_shell_reverse_tcp normal No TFTP Fetch, Windows Encrypted Reverse Shell
794 cmd/windows/tftp/x64/exec normal No TFTP Fetch, Windows x64 Execute Command
795 cmd/windows/tftp/x64/loadlibrary normal No TFTP Fetch, Windows x64 LoadLibrary Path
796 cmd/windows/tftp/x64/messagebox normal No TFTP Fetch, Windows MessageBox x64
797 cmd/windows/tftp/x64/meterpreter/bind_ipv6_tcp normal No TFTP Fetch, Windows x64 IPv6 Bind TCP Stager
798 cmd/windows/tftp/x64/meterpreter/bind_ipv6_tcp_uuid normal No TFTP Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
799 cmd/windows/tftp/x64/meterpreter/bind_named_pipe normal No TFTP Fetch, Windows x64 Bind Named Pipe Stager
800 cmd/windows/tftp/x64/meterpreter/bind_tcp normal No TFTP Fetch, Windows x64 Bind TCP Stager
801 cmd/windows/tftp/x64/meterpreter/bind_tcp_rc4 normal No TFTP Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
802 cmd/windows/tftp/x64/meterpreter/bind_tcp_uuid normal No TFTP Fetch, Bind TCP Stager with UUID Support (Windows x64)
803 cmd/windows/tftp/x64/meterpreter/reverse_http normal No TFTP Fetch, Windows x64 Reverse HTTP Stager (wininet)
804 cmd/windows/tftp/x64/meterpreter/reverse_https normal No TFTP Fetch, Windows x64 Reverse HTTP Stager (wininet)
805 cmd/windows/tftp/x64/meterpreter/reverse_named_pipe normal No TFTP Fetch, Windows x64 Reverse Named Pipe (SMB) Stager
806 cmd/windows/tftp/x64/meterpreter/reverse_tcp normal No TFTP Fetch, Windows x64 Reverse TCP Stager
807 cmd/windows/tftp/x64/meterpreter/reverse_tcp_rc4 normal No TFTP Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
808 cmd/windows/tftp/x64/meterpreter/reverse_tcp_uuid normal No TFTP Fetch, Reverse TCP Stager with UUID Support (Windows x64)
809 cmd/windows/tftp/x64/meterpreter/reverse_winhttp normal No TFTP Fetch, Windows x64 Reverse HTTP Stager (winhttp)
810 cmd/windows/tftp/x64/meterpreter/reverse_winhttps normal No TFTP Fetch, Windows x64 Reverse HTTPS Stager (winhttp)
811 cmd/windows/tftp/x64/meterpreter_bind_named_pipe normal No TFTP Fetch, Windows Meterpreter Shell, Bind Named Pipe Inline (x64)
812 cmd/windows/tftp/x64/meterpreter_bind_tcp normal No TFTP Fetch, Windows Meterpreter Shell, Bind TCP Inline (x64)
813 cmd/windows/tftp/x64/meterpreter_reverse_http normal No TFTP Fetch, Windows Meterpreter Shell, Reverse HTTP Inline (x64)
814 cmd/windows/tftp/x64/meterpreter_reverse_https normal No TFTP Fetch, Windows Meterpreter Shell, Reverse HTTPS Inline (x64)
815 cmd/windows/tftp/x64/meterpreter_reverse_ipv6_tcp normal No TFTP Fetch, Windows Meterpreter Shell, Reverse TCP Inline (IPv6) (x64)
816 cmd/windows/tftp/x64/meterpreter_reverse_tcp normal No TFTP Fetch, Windows Meterpreter Shell, Reverse TCP Inline x64
817 cmd/windows/tftp/x64/peinject/bind_ipv6_tcp normal No TFTP Fetch, Windows x64 IPv6 Bind TCP Stager
818 cmd/windows/tftp/x64/peinject/bind_ipv6_tcp_uuid normal No TFTP Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
819 cmd/windows/tftp/x64/peinject/bind_named_pipe normal No TFTP Fetch, Windows x64 Bind Named Pipe Stager
820 cmd/windows/tftp/x64/peinject/bind_tcp normal No TFTP Fetch, Windows x64 Bind TCP Stager
821 cmd/windows/tftp/x64/peinject/bind_tcp_rc4 normal No TFTP Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
822 cmd/windows/tftp/x64/peinject/bind_tcp_uuid normal No TFTP Fetch, Bind TCP Stager with UUID Support (Windows x64)
823 cmd/windows/tftp/x64/peinject/reverse_named_pipe normal No TFTP Fetch, Windows x64 Reverse Named Pipe (SMB) Stager
824 cmd/windows/tftp/x64/peinject/reverse_tcp normal No TFTP Fetch, Windows x64 Reverse TCP Stager
825 cmd/windows/tftp/x64/peinject/reverse_tcp_rc4 normal No TFTP Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
826 cmd/windows/tftp/x64/peinject/reverse_tcp_uuid normal No TFTP Fetch, Reverse TCP Stager with UUID Support (Windows x64)
827 cmd/windows/tftp/x64/pingback_reverse_tcp normal No TFTP Fetch, Windows x64 Pingback, Reverse TCP Inline
828 cmd/windows/tftp/x64/powershell_bind_tcp normal No TFTP Fetch
829 cmd/windows/tftp/x64/powershell_reverse_tcp normal No TFTP Fetch
830 cmd/windows/tftp/x64/powershell_reverse_tcp_ssl normal No TFTP Fetch
831 cmd/windows/tftp/x64/shell/bind_ipv6_tcp normal No TFTP Fetch, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager
832 cmd/windows/tftp/x64/shell/bind_ipv6_tcp_uuid normal No TFTP Fetch, Windows x64 Command Shell, Windows x64 IPv6 Bind TCP Stager with UUID Support
833 cmd/windows/tftp/x64/shell/bind_named_pipe normal No TFTP Fetch, Windows x64 Command Shell, Windows x64 Bind Named Pipe Stager
834 cmd/windows/tftp/x64/shell/bind_tcp normal No TFTP Fetch, Windows x64 Command Shell, Windows x64 Bind TCP Stager
835 cmd/windows/tftp/x64/shell/bind_tcp_rc4 normal No TFTP Fetch, Windows x64 Command Shell, Bind TCP Stager (RC4 Stage Encryption, Metasm)
836 cmd/windows/tftp/x64/shell/bind_tcp_uuid normal No TFTP Fetch, Windows x64 Command Shell, Bind TCP Stager with UUID Support (Windows x64)
837 cmd/windows/tftp/x64/shell/reverse_tcp normal No TFTP Fetch, Windows x64 Command Shell, Windows x64 Reverse TCP Stager
838 cmd/windows/tftp/x64/shell/reverse_tcp_rc4 normal No TFTP Fetch, Windows x64 Command Shell, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
839 cmd/windows/tftp/x64/shell/reverse_tcp_uuid normal No TFTP Fetch, Windows x64 Command Shell, Reverse TCP Stager with UUID Support (Windows x64)
840 cmd/windows/tftp/x64/shell_bind_tcp normal No TFTP Fetch, Windows x64 Command Shell, Bind TCP Inline
841 cmd/windows/tftp/x64/shell_reverse_tcp normal No TFTP Fetch, Windows x64 Command Shell, Reverse TCP Inline
842 cmd/windows/tftp/x64/vncinject/bind_ipv6_tcp normal No TFTP Fetch, Windows x64 IPv6 Bind TCP Stager
843 cmd/windows/tftp/x64/vncinject/bind_ipv6_tcp_uuid normal No TFTP Fetch, Windows x64 IPv6 Bind TCP Stager with UUID Support
844 cmd/windows/tftp/x64/vncinject/bind_named_pipe normal No TFTP Fetch, Windows x64 Bind Named Pipe Stager
845 cmd/windows/tftp/x64/vncinject/bind_tcp normal No TFTP Fetch, Windows x64 Bind TCP Stager
846 cmd/windows/tftp/x64/vncinject/bind_tcp_rc4 normal No TFTP Fetch, Bind TCP Stager (RC4 Stage Encryption, Metasm)
847 cmd/windows/tftp/x64/vncinject/bind_tcp_uuid normal No TFTP Fetch, Bind TCP Stager with UUID Support (Windows x64)
848 cmd/windows/tftp/x64/vncinject/reverse_http normal No TFTP Fetch, Windows x64 Reverse HTTP Stager (wininet)
849 cmd/windows/tftp/x64/vncinject/reverse_https normal No TFTP Fetch, Windows x64 Reverse HTTP Stager (wininet)
850 cmd/windows/tftp/x64/vncinject/reverse_tcp normal No TFTP Fetch, Windows x64 Reverse TCP Stager
851 cmd/windows/tftp/x64/vncinject/reverse_tcp_rc4 normal No TFTP Fetch, Reverse TCP Stager (RC4 Stage Encryption, Metasm)
852 cmd/windows/tftp/x64/vncinject/reverse_tcp_uuid normal No TFTP Fetch, Reverse TCP Stager with UUID Support (Windows x64)
853 cmd/windows/tftp/x64/vncinject/reverse_winhttp normal No TFTP Fetch, Windows x64 Reverse HTTP Stager (winhttp)
854 cmd/windows/tftp/x64/vncinject/reverse_winhttps normal No TFTP Fetch, Windows x64 Reverse HTTPS Stager (winhttp)
855 firefox/exec normal No Firefox XPCOM Execute Command
856 firefox/shell_bind_tcp normal No Command Shell, Bind TCP (via Firefox XPCOM script)
857 firefox/shell_reverse_tcp normal No Command Shell, Reverse TCP (via Firefox XPCOM script)
858 generic/custom normal No Custom Payload
859 generic/debug_trap normal No Generic x86 Debug Trap
860 generic/shell_bind_aws_ssm normal No Command Shell, Bind SSM (via AWS API)
861 generic/shell_bind_tcp normal No Generic Command Shell, Bind TCP Inline
862 generic/shell_reverse_tcp normal No Generic Command Shell, Reverse TCP Inline
863 generic/ssh/interact normal No Interact with Established SSH Connection
864 generic/tight_loop normal No Generic x86 Tight Loop
865 java/jsp_shell_bind_tcp normal No Java JSP Command Shell, Bind TCP Inline
866 java/jsp_shell_reverse_tcp normal No Java JSP Command Shell, Reverse TCP Inline
867 java/meterpreter/bind_tcp normal No Java Meterpreter, Java Bind TCP Stager
868 java/meterpreter/reverse_http normal No Java Meterpreter, Java Reverse HTTP Stager
869 java/meterpreter/reverse_https normal No Java Meterpreter, Java Reverse HTTPS Stager
870 java/meterpreter/reverse_tcp normal No Java Meterpreter, Java Reverse TCP Stager
871 java/shell/bind_tcp normal No Command Shell, Java Bind TCP Stager
872 java/shell/reverse_tcp normal No Command Shell, Java Reverse TCP Stager
873 java/shell_reverse_tcp normal No Java Command Shell, Reverse TCP Inline
874 linux/aarch64/meterpreter/reverse_tcp normal No Linux Meterpreter, Reverse TCP Stager
875 linux/aarch64/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
876 linux/aarch64/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
877 linux/aarch64/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
878 linux/aarch64/shell/reverse_tcp normal No Linux dup2 Command Shell, Reverse TCP Stager
879 linux/aarch64/shell_reverse_tcp normal No Linux Command Shell, Reverse TCP Inline
880 linux/armbe/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
881 linux/armbe/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
882 linux/armbe/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
883 linux/armbe/shell_bind_tcp normal No Linux ARM Big Endian Command Shell, Bind TCP Inline
884 linux/armle/adduser normal No Linux Add User
885 linux/armle/exec normal No Linux Execute Command
886 linux/armle/meterpreter/bind_tcp normal No Linux Meterpreter, Bind TCP Stager
887 linux/armle/meterpreter/reverse_tcp normal No Linux Meterpreter, Reverse TCP Stager
888 linux/armle/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
889 linux/armle/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
890 linux/armle/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
891 linux/armle/shell/bind_tcp normal No Linux dup2 Command Shell, Bind TCP Stager
892 linux/armle/shell/reverse_tcp normal No Linux dup2 Command Shell, Reverse TCP Stager
893 linux/armle/shell_bind_tcp normal No Linux Command Shell, Reverse TCP Inline
894 linux/armle/shell_reverse_tcp normal No Linux Command Shell, Reverse TCP Inline
895 linux/mips64/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
896 linux/mips64/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
897 linux/mips64/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
898 linux/mipsbe/exec normal No Linux Execute Command
899 linux/mipsbe/meterpreter/reverse_tcp normal No Linux Meterpreter, Reverse TCP Stager
900 linux/mipsbe/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
901 linux/mipsbe/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
902 linux/mipsbe/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
903 linux/mipsbe/reboot normal No Linux Reboot
904 linux/mipsbe/shell/reverse_tcp normal No Linux Command Shell, Reverse TCP Stager
905 linux/mipsbe/shell_bind_tcp normal No Linux Command Shell, Bind TCP Inline
906 linux/mipsbe/shell_reverse_tcp normal No Linux Command Shell, Reverse TCP Inline
907 linux/mipsle/exec normal No Linux Execute Command
908 linux/mipsle/meterpreter/reverse_tcp normal No Linux Meterpreter, Reverse TCP Stager
909 linux/mipsle/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
910 linux/mipsle/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
911 linux/mipsle/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
912 linux/mipsle/reboot normal No Linux Reboot
913 linux/mipsle/shell/reverse_tcp normal No Linux Command Shell, Reverse TCP Stager
914 linux/mipsle/shell_bind_tcp normal No Linux Command Shell, Bind TCP Inline
915 linux/mipsle/shell_reverse_tcp normal No Linux Command Shell, Reverse TCP Inline
916 linux/ppc/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
917 linux/ppc/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
918 linux/ppc/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
919 linux/ppc/shell_bind_tcp normal No Linux Command Shell, Bind TCP Inline
920 linux/ppc/shell_find_port normal No Linux Command Shell, Find Port Inline
921 linux/ppc/shell_reverse_tcp normal No Linux Command Shell, Reverse TCP Inline
922 linux/ppc64/shell_bind_tcp normal No Linux Command Shell, Bind TCP Inline
923 linux/ppc64/shell_find_port normal No Linux Command Shell, Find Port Inline
924 linux/ppc64/shell_reverse_tcp normal No Linux Command Shell, Reverse TCP Inline
925 linux/ppc64le/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
926 linux/ppc64le/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
927 linux/ppc64le/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
928 linux/ppce500v2/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
929 linux/ppce500v2/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
930 linux/ppce500v2/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
931 linux/x64/exec normal No Linux Execute Command
932 linux/x64/meterpreter/bind_tcp normal No Linux Mettle x64, Bind TCP Stager
933 linux/x64/meterpreter/reverse_sctp normal No Linux Mettle x64, Reverse SCTP Stager
934 linux/x64/meterpreter/reverse_tcp normal No Linux Mettle x64, Reverse TCP Stager
935 linux/x64/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
936 linux/x64/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
937 linux/x64/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
938 linux/x64/pingback_bind_tcp normal No Linux x64 Pingback, Bind TCP Inline
939 linux/x64/pingback_reverse_tcp normal No Linux x64 Pingback, Reverse TCP Inline
940 linux/x64/shell/bind_tcp normal No Linux Command Shell, Bind TCP Stager
941 linux/x64/shell/reverse_sctp normal No Linux Command Shell, Reverse SCTP Stager
942 linux/x64/shell/reverse_tcp normal No Linux Command Shell, Reverse TCP Stager
943 linux/x64/shell_bind_ipv6_tcp normal No Linux x64 Command Shell, Bind TCP Inline (IPv6)
944 linux/x64/shell_bind_tcp normal No Linux Command Shell, Bind TCP Inline
945 linux/x64/shell_bind_tcp_random_port normal No Linux Command Shell, Bind TCP Random Port Inline
946 linux/x64/shell_find_port normal No Linux Command Shell, Find Port Inline
947 linux/x64/shell_reverse_ipv6_tcp normal No Linux x64 Command Shell, Reverse TCP Inline (IPv6)
948 linux/x64/shell_reverse_tcp normal No Linux Command Shell, Reverse TCP Inline
949 linux/x86/adduser normal No Linux Add User
950 linux/x86/chmod normal No Linux Chmod
951 linux/x86/exec normal No Linux Execute Command
952 linux/x86/meterpreter/bind_ipv6_tcp normal No Linux Mettle x86, Bind IPv6 TCP Stager (Linux x86)
953 linux/x86/meterpreter/bind_ipv6_tcp_uuid normal No Linux Mettle x86, Bind IPv6 TCP Stager with UUID Support (Linux x86)
954 linux/x86/meterpreter/bind_nonx_tcp normal No Linux Mettle x86, Bind TCP Stager
955 linux/x86/meterpreter/bind_tcp normal No Linux Mettle x86, Bind TCP Stager (Linux x86)
956 linux/x86/meterpreter/bind_tcp_uuid normal No Linux Mettle x86, Bind TCP Stager with UUID Support (Linux x86)
957 linux/x86/meterpreter/find_tag normal No Linux Mettle x86, Find Tag Stager
958 linux/x86/meterpreter/reverse_ipv6_tcp normal No Linux Mettle x86, Reverse TCP Stager (IPv6)
959 linux/x86/meterpreter/reverse_nonx_tcp normal No Linux Mettle x86, Reverse TCP Stager
960 linux/x86/meterpreter/reverse_tcp normal No Linux Mettle x86, Reverse TCP Stager
961 linux/x86/meterpreter/reverse_tcp_uuid normal No Linux Mettle x86, Reverse TCP Stager
962 linux/x86/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
963 linux/x86/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
964 linux/x86/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
965 linux/x86/metsvc_bind_tcp normal No Linux Meterpreter Service, Bind TCP
966 linux/x86/metsvc_reverse_tcp normal No Linux Meterpreter Service, Reverse TCP Inline
967 linux/x86/read_file normal No Linux Read File
968 linux/x86/shell/bind_ipv6_tcp normal No Linux Command Shell, Bind IPv6 TCP Stager (Linux x86)
969 linux/x86/shell/bind_ipv6_tcp_uuid normal No Linux Command Shell, Bind IPv6 TCP Stager with UUID Support (Linux x86)
970 linux/x86/shell/bind_nonx_tcp normal No Linux Command Shell, Bind TCP Stager
971 linux/x86/shell/bind_tcp normal No Linux Command Shell, Bind TCP Stager (Linux x86)
972 linux/x86/shell/bind_tcp_uuid normal No Linux Command Shell, Bind TCP Stager with UUID Support (Linux x86)
973 linux/x86/shell/find_tag normal No Linux Command Shell, Find Tag Stager
974 linux/x86/shell/reverse_ipv6_tcp normal No Linux Command Shell, Reverse TCP Stager (IPv6)
975 linux/x86/shell/reverse_nonx_tcp normal No Linux Command Shell, Reverse TCP Stager
976 linux/x86/shell/reverse_tcp normal No Linux Command Shell, Reverse TCP Stager
977 linux/x86/shell/reverse_tcp_uuid normal No Linux Command Shell, Reverse TCP Stager
978 linux/x86/shell_bind_ipv6_tcp normal No Linux Command Shell, Bind TCP Inline (IPv6)
979 linux/x86/shell_bind_tcp normal No Linux Command Shell, Bind TCP Inline
980 linux/x86/shell_bind_tcp_random_port normal No Linux Command Shell, Bind TCP Random Port Inline
981 linux/x86/shell_find_port normal No Linux Command Shell, Find Port Inline
982 linux/x86/shell_find_tag normal No Linux Command Shell, Find Tag Inline
983 linux/x86/shell_reverse_tcp normal No Linux Command Shell, Reverse TCP Inline
984 linux/x86/shell_reverse_tcp_ipv6 normal No Linux Command Shell, Reverse TCP Inline (IPv6)
985 linux/zarch/meterpreter_reverse_http normal No Linux Meterpreter, Reverse HTTP Inline
986 linux/zarch/meterpreter_reverse_https normal No Linux Meterpreter, Reverse HTTPS Inline
987 linux/zarch/meterpreter_reverse_tcp normal No Linux Meterpreter, Reverse TCP Inline
988 mainframe/shell_reverse_tcp normal No Z/OS (MVS) Command Shell, Reverse TCP Inline