-
Notifications
You must be signed in to change notification settings - Fork 57
/
summary.yml
8488 lines (8128 loc) · 378 KB
/
summary.yml
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
summary:
counts:
htbnix: 221
htboscplike: 94
htbwindows: 82
oscplikenix: 177
oscplikewindows: 39
ownedhtb: 25
ownedhtbnix: 13
ownedhtboscplike: 25
ownedhtbwindows: 12
ownednix: 37
ownedoscplike: 46
ownedoscplikenix: 34
ownedoscplikewindows: 12
ownedthm: 1
ownedthmnix: 0
ownedthmoscplike: 0
ownedthmwindows: 0
ownedtotal: 50
ownedvh: 24
ownedvhnix: 24
ownedvhoscplike: 21
ownedvhwindows: 0
ownedwindows: 12
percent: '14.96'
percenthtb: '14.89'
percentnix: '3.28'
percentthm: '2.63'
percentvh: '19.67'
percentwindows: '9.52'
perhtb: 8.25082508250825
perhtbnix: 5.88235294117647
perhtboscplike: 26.595744680851062
perhtbwindows: 14.634146341463413
pernix: 3.919491525423729
peroscplike: 18.11023622047244
peroscplikenix: 19.2090395480226
peroscplikewindows: 30.76923076923077
perthm: 0.1692047377326565
perthmnix: 0
perthmoscplike: 0.0
perthmwindows: 0
pertotal: 3.0883261272390365
pervh: 3.310344827586207
pervhnix: 3.319502074688797
pervhoscplike: 17.21311475409836
pervhwindows: 0.0
perwindows: 14.285714285714285
thmnix: 0
thmoscplike: 38
thmwindows: 0
total: 0
totalhtb: 303
totalnix: 944
totaloscplike: 254
totalthm: 591
totaltotal: 1619
totalvh: 725
totalwindows: 84
vhnix: 723
vhoscplike: 122
vhwindows: 2
writeups: 38
writeupshtb: 14
writeupsnix: 31
writeupsthm: 1
writeupsvh: 24
writeupswindows: 8
loot:
credentials:
- credtype: ssh
password: MEGACORP_4dm1n!!
username: administrator
- credtype: sql
password: M3g4c0rp123
username: sql_svc
- credtype: ftp
password: 8YsqfCTnvxAUeduzjNSXe22
username: notch
- credtype: ssh
password: 8YsqfCTnvxAUeduzjNSXe22
username: notch
- credtype: mysql
password: kEjdbRigfBHUREiNSDs
username: admin
- credtype: ssh
password: raspberry
username: pi
- credtype: ssh
password: '1234567'
username: fox
- credtype: webapp
password: love
username: rascal
- credtype: ftp
password: babygirl_veronica07@yahoo.com
username: veronica
- credtype: ftp
password: ericdoesntdrinkhisownpee
username: eric
- credtype: ssh
password: triscuit*
username: eric
- credtype: truecrypt
password: execrable
username: null
- credtype: mysql
password: thiscannotbeit
username: john
- credtype: ssh
password: princess
username: anne
- credtype: wordpress
password: enigma
username: john
- credtype: mysql
password: meErKatZ
username: wpdbuser
- credtype: ssh
password: GSo7isUM1D4
username: graham
- credtype: wordpress
password: helpdesk01
username: mark
- credtype: ssh
password: '12345'
username: root
- credtype: mysql
password: mysql@12345
username: mysql
- credtype: ssh
password: thisisalsopw123
username: admin
- credtype: ssh
password: LetThereBeFristi!
username: fristigod
- credtype: http
password: keKkeKKeKKeKkEkkEk
username: eezeepz
- credtype: webapp
password: hello
username: user1
- credtype: webapp
password: commando
username: user2
- credtype: webapp
password: p@ssw0rd
username: user3
- credtype: webapp
password: testtest
username: test
- credtype: webapp
password: Uncrackable
username: superadmin
- credtype: webapp
password: testtest
username: test1
- credtype: mysql
password: 3298fj8323j80df!49
username: admin
- credtype: mysql
password: Oscp12345!
username: wordpress
- credtype: wordpress
password: admin:$P$Bx9ohXoCVR5lkKtuQbuWuh2P36Pr1D0
username: null
- credtype: mysql
password: hiroshima
username: john
- credtype: webapp
password: 5afac8d85f
username: admin
- credtype: webapp
password: 66lajGGbla
username: john
- credtype: lotuscms
password: Mast3r
username: dreg
- credtype: lotuscms
password: starwars
username: loneferret
- credtype: mysql
password: fuckeyou
username: root
- credtype: ssh
password: Mast3r
username: dreg
- credtype: ssh
password: starwars
username: loneferret
- credtype: liggoat
password: MyNameIsJohn
username: john
- credtype: liggoat
password: ADGAdsafdfwt4gadfga==
username: robert
- credtype: ssh
password: MyNameIsJohn
username: john
- credtype: ssh
password: ADGAdsafdfwt4gadfga==
username: robert
- credtype: ssh
password: '12345'
username: togie
- credtype: mysql
password: TogieMYSQL12345^^
username: Admin
- credtype: wordpress
password: TogieMYSQL12345^^
username: admin
- credtype: ssh
password: secret
username: bob
- credtype: ssh
password: MySuperS3cretValue!
username: susan
- credtype: ssh
password: P@ssw0rd
username: insecurity
- credtype: webapp
password: iwilltakethering
username: frodo
- credtype: webapp
password: MyPreciousR00t
username: smeagol
- credtype: webapp
password: AndMySword
username: aragorn
- credtype: webapp
password: AndMyBow
username: legolas
- credtype: webapp
password: AndMyAxe
username: gimli
- credtype: mysql
password: darkshadow
username: root
- credtype: ssh
password: MyPreciousR00t
username: smeagol
- credtype: ftp
password: Mellon
username: Balrog
- credtype: ssh
password: spanky
username: Ori
- credtype: ssh
password: abcdefghijklmnopqrstuvwxyz
username: robot
- credtype: wordpress
password: ER28-0652
username: elliot
- credtype: ssh
password: 5AYRft73VtFpc84k
username: mark
- credtype: webapp
password: manchester
username: myP14ceAdm1nAcc0uNT
- credtype: webapp
password: spongebob
username: tom
- credtype: webapp
password: snowflake
username: mark
- credtype: ssh
password: wpadmin
username: wpadmin
- credtype: ssh
password: rootpassword!
username: root
- credtype: wordpress
password: admin
username: admin
- credtype: tomcat
password: submitthisforpoints
username: tomcat
- credtype: ssh
password: letmein
username: user
hashes:
- 'abatchy:$6$xEq/159Q$ScuKnynbwTBdFA4B9w6OqKxQpWPGpofi59McVuP6T1SADKhNy4n33Ovkk0hwZQkx72XriPSIrc2ubr16OEBBn0:17238:0:99999:7:::'
- 'admin:$6$NPXhvENr$yG4a5RpaLpL5UDRRZ3Ts0eZadZfFFbYpI1kyNJp9rND0AySx2FhYSmAvY.91UzETJVvZcDjWb2pp85uLAli2J/:16757:0:99999:7:::'
- 'Administrator:500:0a70918d669baeb307012642393148ab:34dec8a1db14cdde2a21967c3c997548:::'
- 'Administrator:500:c74761604a24f0dfd0a9ba2c30e462cf:d6908f022af0373e9e21b8a241c86dca:::'
- 'anansi:$6$hblZftkV$vmZoctRs1nmcdQCk5gjlmcLUb18xvJa3efaU6cpw9hoOXC/kHupYqQ2qz5O.ekVE.SwMfvRnf.QcB1lyDGIPE1:15768:0:99999:7:::'
- 'anne:$6$ChsjoKyY$1uHlk7QUSOmdpvSP7Q4PYmE3evwQbUPFp27I4ZdRx/pZp8C8gJAQGu2vy8kwLakYA7cWuZ40aOl2u.8J94U7V.:17595:0:99999:7:::'
- 'arrexel:$1$mDpVXKQV$o6HkBjhl/e.S.bV96tMm6.:17504:0:99999:7:::'
- 'ASPNET:1007:3f71d62ec68a06a39721cb3f54f04a3b:edc0d5506804653f58964a2376bbd769:::'
- 'Balrog:$6$J6kuCfxq$L5ALsHRYfOu0bVV9MbW3.VZOUVEaKSWhfPIq5wXUFV407tpvH8Zx7WdbJeXgdWoPo9LU8eIznf0d44qoFAMn3.:17284:0:99999:7:::'
- 'billy:$6$eqJNxIDh$oO.ynkHZmLxfr0k8YXHHdbyB4boe2two4HnEiJzzuVEUh0w0paEtVCmHXziHhZIet71QcLqhqnV/iknE/pXdS1:17035:0:99999:7:::'
- 'bitnamiftp:$6$saPiFTAH$7K09sg5oIfkIs5kuMx1R/Um4HNd8O6vF2n8oICEom8VVer0BYATY5wtzdPdP3JeuKbZ4RYBml0THNQv8TSc0s/:16751:0:99999:7:::'
- 'bob:$6$Kk0DA.6Xha4nL2p5$jq7qoit2l4ckULg1ZxcbL5wUz2Ld2ZUa.RYaIMs.Lma0EFGheX9yCXfKy37K0GsHz50FYIqIESo4QXWL.DYTI0:17721:0:99999:7:::'
- 'brexit:$6$51s7qYVw$XbTfXEV2acHRp9vmA7VTxO35OLK9EGZJzDGF9nYaukD3eppHsn2P1ESMr.9rRn/YYO70uiUskfkWP0LyRtTiT1:18048:0:99999:7:::'
- 'crackmeforpoints:$6$p22wX4fD$RRAamkeGIA56pj4MpM7CbrKPhShVkZnNH2NjZ8JMUP6Y/1upG.54kSph/HSP1LFcn4.2C11cF0R7QmojBqNy5/:17104:0:99999:7:::'
- 'doomguy:$6$DWqgg./v$NxqnujIjE8RI.y1u/xiFBPC0K/essEGOfxSF7ovfHG46K6pnetHZNON3sp19rGuoqo26wQkA4B2znRvhqCGQ11:17594:0:99999:7:::'
- 'dreg:$1$qAc2saWZ$Y567sEs.ql3GMttI6pvoe0:15080:0:99999:7:::'
- 'eezeepz:$6$djF4bN.s$JWhT7wJo37fgtuJ.be2Q62PnM/AogXuqGa.PgRzrMGv9/Th0aixBXl8Usy9.RkO1ZRAQ/UM3xP7oGWu9zgEIl.:16756:0:99999:7:::'
- 'eric:$6$b15/PaMU$VKQussKbrXty79HD4A989SVCn.7.u6bJLMvsFgDSgiM01GlyM/lhb1xF0RcX906O6aIMbP7XoVI2F5UzII72i.:17033:0:99999:7:::'
- 'fristigod:$6$0WqnZlI/$gIzMByP7rH21W3neA.uHYZZg5aM7gI1xtOj8WwgoK1QgQh2LWL0nQBJau/mGcOSxLbaGJhJjM.6HNJTWsaetf0:16758:0:99999:7:::'
- 'graham:$6$WF7GkVxM$MOL.cXLpG6UTO0M4exCUFwOEiUhW6bwQa.Frg9CerQbTp.EW4QTzEAuio26Aylv.YP0JPAan10tsUFv6kyvRN0:18010:0:99999:7:::'
- 'Guest:501:aad3b435b51404eeaad3b435b51404ee:31d6cfe0d16ae931b73c59d7e0c089c0:::'
- 'hackme:$6$.L285vCy$Hma4mKjGV.sE7ZCFVj2iOkRokX1u3F5DMiTPQFoZPJnQ1kUXLje/bY2BIUQFbYu.8M6BvLML5fAftZOCEVnqa1:17981:0:99999:7:::'
- 'harold:$1$7d.sVxgm$3MYWsHDv0F/LP.mjL9lp/1:14529:0:99999:7:::'
- 'harold:$1$Xx6dZdOd$IMOGACl3r757dv17LZ9010:14513:0:99999:7:::'
- 'Harry:1008:93c50499355883d1441208923e8628e6:031f5563e0ac4ba538e8ea325479740d:::'
- 'IUSR_GRANPA:1003:a274b4532c9ca5cdf684351fab962e86:6a981cb5e038b2d8b713743a50d89c88:::'
- 'IWAM_GRANPA:1004:95d112c4da2348b599183ac6b1d67840:a97f39734c21b3f6155ded7821d04d16:::'
- 'jens:$6$JWiFWXb8$cGQi07IUqln/uLLVmmrU9VLg7apOH9IlxoyndELCGjLenxfAaVec5Gjaw2DA0QHRwS9hTB5cI2sg/Wk1OFoAh/:18011:0:99999:7:::'
- 'john:$1$H.GRhlY6$sKlytDrwFEhu5dULXItWw/:15374:0:99999:7:::'
- 'john:$1$wk7kHI5I$2kNTw6ncQQCecJ.5b8xTL1:14525:0:99999:7:::'
- 'john:$1$zL4.MR4t$26N4YpTGceBO0gTX6TAky1:14513:0:99999:7:::'
- 'john:$6$aoN7zaDl$e6RsRZndFekSS4bgqz0y5dgzO1dTQsMAWck6dFGogkxrrZf1ZyGbjy/oCpqJniIkasXP05iFZHs.XZVIQqZ2w1:17594:0:99999:7:::'
- 'klog:$1$f2ZVMS4K$R9XkI.CmLdHhdUE3X9jqP0:14742:0:99999:7:::'
- 'Lakis:1009:f927b0679b3cc0e192410d9b0b40873c:3064b6fc432033870c6730228af7867c:::'
- 'loneferret:$1$/x6RLO82$43aCgYCrK7p2KFwgYw9iU1:15375:0:99999:7:::'
- 'loneferret:$1$qbkHf53U$r.kK/JgDLDcXGRC6xUfB11:15079:0:99999:7:::'
- 'mai:$6$Mp.mBBi7$BCAKb75xSAy8PM6IhjdSOIlcmHvA9V4KnEDSTZAN2QdMUwCwGiwZtwGPXalF15xT097Q6zaXrY6nD/7RsdSiE0:17594:0:99999:7:::'
- 'makis:$1$Yp7BAV10$7yHWur1KMMwK5b8KRZ2yK.:17239:0:99999:7:::'
- 'mark:$6$//1vISW6$9pl2v8Jg0mNE7E2mgTQlTwZ1zcaepnDyYE4lIPJDdX7ipnxm/muPD7DraEm3z0jqDe5iH/Em2i6YXJpQD.5pl0:18010:0:99999:7:::'
- 'mark:$6$J3gYK/cQ$au1WmOCtq.X1DTKt1CEmKA9qr4PfwZuAGUdCfAV.SSU5VxAtjW/Xk1/oWJtQVaoXMEVXmeBIB6bq24JpcSRjF0:17408:0:99999:7:::'
- 'mysql:$6$O2ymBAYF$NZDtY392guzYrveKnoISea6oQpv87OpEjEef5KkEUqvtOAjZ2i1UPbkrfmrHG/IonKdnYEec0S0ZBcQFZ.sno/:18053:0:99999:7:::'
- 'notch:$6$RdxVAN/.$DFugS5p/G9hTNY9htDWVGKte9n9r/nYYL.wVdAHfiHpnyN9dNftf5Nt.DkjrUs0PlYNcYZWhh0Vhl/5tl8WBG1:17349:0:99999:7:::'
- 'noulis:$6$ApsLg5.I$Zd9blHPGRHAQOab94HKuQFtJ8m7ob8MFnX6WIIr0Aah6pW/aZ.yA3T1iU13lCSixrh6NG1.GHPl.QbjHSZmg7/:17247:0:99999:7:::'
- 'Ori:$6$1zYgjEIM$VQ0gvU7JjenS9WuiVjSeva8pbWnEXjqTmEdFnQRXKmTmXPXmt55/oyup40NiXD8J9GxmXF7DYiaHZDRshrs3f1:17237:0:99999:7:::'
- 'oscp:$6$k8OEgwaFdUqpVETQ$sKlBojI3IYunw8wEDAyoFdHgVtOPzkDPqksql7IWzpfZXpd3UqP569BokTZ52mDroq/rmJY9zgfeQVmBFu/Sf.:18452:0:99999:7:::'
- 'peter:$6$QpjS4vUG$Zi1KcJ7cRB8TJG9A/x7GhQQvJ0RoYwG4Jxj/6R58SJddU2X/QTQKNJWzwiByeTELKeyp0vS83kPsYITbTTmlb0:17721:0:99999:7:::'
- 'pi:$6$SQPHFoql$gSE5qWbZRGHDin4LnFY56sMnQsmvH/o2oIlXv.3KcqVsJCYgJ09R9/Pws88e8yjKgJnaxN3zdq8f5ots1bJcY/:17148:0:99999:7:::'
- 'postgres:$1$dwLrUikz$LRJRShCPfPyYb3r6pinyM.:17239:0:99999:7:::'
- 'puck:$6$A/mZxJX0$Zmgb3T6SAq.FxO1gEmbIcBF9Oi7q2eAi0TMMqOhg0pjdgDjBr0p2NBpIRqs4OIEZB4op6ueK888lhO7gc.27g1:15768:0:99999:7:::'
- 'reynard:$6$h54J.qxd$yL5md3J4dONwNl.36iA.mkcabQqRMmeZ0VFKxIVpXeNpfK.mvmYpYsx8W0Xq02zH8bqo2K.mkQzz55U2H5kUh1:15768:0:99999:7:::'
- 'robert:$1$rQRWeUha$ftBrgVvcHYfFFFk6Ut6cM1:15374:0:99999:7:::'
- 'robot:$6$HmQCDKcM$mcINMrQFa0Qm7XaUaS5xLEBSeP3bUkr18iwgwTAL8AIfUDYBWG5L8J9.Ukb3gVWUQoYam4G0m.I5qaHBnTddK/:16752:0:99999:7:::'
- 'root:$1$5GMEyqwV$x0b1nMsYFXvczN0yI0kBB.:15375:0:99999:7:::'
- root:$1$DdHlo6rh$usiPcDoTR37eL7DAyLjhk1:0:0::0:0:Charlie &:/root:/bin/csh
- 'root:$1$FTpMLT88$VdzDQTTcksukSKMLRSVlc.:14529:0:99999:7:::'
- 'root:$1$p/d3CvVJ$4HDjev4SJFo7VMwL2Zg6P0:17239:0:99999:7:::'
- 'root:$1$QAKvVJey$6rRkAMGKq1u62yfDaenUr1:15082:0:99999:7:::'
- 'root:$1$XROmcfDX$tF93GqnLHOJeGRHpaNyIs0:14513:0:99999:7:::'
- 'root:$6$.wvqHr9ixq/hDW8t$a/dHKimULfr5rJTDlS7uoUanuJB2YUUkh.LWSKF7kTNp4aL8UTlOk2wT8IkAgJ.vDF/ThSIOegsuclEgm9QfT1:18452:0:99999:7:::'
- 'root:$6$9xQC1KOf$5cmONytt0VF/wi3Np3jZGRSVzpGj6sXxVHkyJLjV4edlBxTVmW91pcGwAViViSWcAS/.OF0iuvylU5IznY2Re.:16753:0:99999:7:::'
- 'root:$6$aorWKpxj$yOgku4F1ZRbqvSxxUtAYY2/6K/UU5wLobTSz/Pw5/ILvXgq9NibQ0/NQbOr1Wzp2bTbpNQr1jNNlaGjXDu5Yj1:17721:0:99999:7:::'
- 'root:$6$BVgS5ne0$Q6rV3guK7QQUy7uRMwbQ3vv2Y5I9yQUhIzvrIhuiDso/o5UfDxZw7MMq8atR3UdJjhpkFVxVD0cVtjXQdPUAH.:17431:0:99999:7:::'
- 'root:$6$CM3c1cdI$HbQWZlQdGEWV8yo3j7M84i1/RFK4G7fafTUIUYLWk52zm9O8KRLhqZenF8KbqsUjHlZQk4VmNEeEbBCRjOWbH0:17111:0:99999:7:::'
- 'root:$6$cQPCchYp$rWjOEHF47iuaGk/DQdkG6Dhhfm3.hTaNZPO4MoyBz2.bn44fERcQ23XCsp43LOt5NReEUjwDF8WDa5i1ML2jH.:16695:0:99999:7:::'
- 'root:$6$GpmQGQUN$8kLewzMF4ItmxezcryWqSPrXNRTH5TOQFKKkHjK2NSmrTg95xiYi.l8L.RYUL.8pAsj8s4EGvDy4dvENQIqNf.:15585:0:99999:7:::'
- 'root:$6$kdMFceEg$pk9h93tdD7IomhE7L0Y396HO6fxSM.XDh9dgeBhKpdZlM/WYxCZe7yPRNHfZ5FvNRuILVp2NOsqNmgjoSx/IN0:18012:0:99999:7:::'
- 'root:$6$L2m6DJwN$p/xas4tCNp19sda4q2ZzGC82Ix7GiEb7xvCbzWCsFHs/eR82G4/YOnni/.L69tpCkOGo5lm0AU7zh9lP5fL6A0:17247:0:99999:7:::'
- 'root:$6$m20VT7lw$172.XYFP3mb9Fbp/IgxPQJJKDgdOhg34jZD5sxVMIx3dKq.DBwv.mw3HgCmRd0QcN4TCzaUtmx4C5DvZaDioh0:15768:0:99999:7:::'
- 'root:$6$mqjgcFoM$X/qNpZR6gXPAxdgDjFpaD1yPIqUF5l5ZDANRTKyvcHQwSqSxX5lA7n22kjEkQhSP6Uq7cPaYfzPSmgATM9cwD1:18050:0:99999:7:::'
- 'root:$6$n.BA4A59$WeIF0ZbaB3VGgAxUZqGHnw01.GhL9oVYYFioh07RpPtBl49YdMahhtbYhxUjanXf/NJXiCHBvrNhdC53P1UX2.:17412:0:99999:7:::'
- 'root:$6$O4bZf1Ju$0xcLPNyQkVcKT0CajZYBOTz4thlujMRjQ7XuFstUDWwYHKmVmJsDmzGXUwYbU1uqr6jxEvX4XJjSUgiwjPmEp0:17399:0:99999:7:::'
- 'root:$6$P7ElNgGp$fNzyy4OgqSR1ANJXTgbpzp4U42JXG1qJ55iNV10NVJoX5UWjtckWD0oHmcTOj0lqObyWhFu2y3udHVpHaqYxf.:17238:0:99999:7:::'
- 'root:$6$PnbVvEMS$OcseJT8lZRrgrW1JBpHJ252SPRxS6Rkh3oVBkrbRBZgHBD1wArL6FcyO5daqaon7waFKwSqbg5fIjFgzUVFMS1:18048:0:99999:7:::'
- 'root:$6$qAoeosiW$fsOy8H/VKux.9K0T3Ww2D3FPNlO5LAaFytx/6t69Q7LPDSS/nNiP4xzq0Qab.Iz3uy5fYdH3Aw/K5v3ZMhRRH0:16756:0:99999:7:::'
- 'root:$6$sZyJlUny$OcHP9bd8dO9rAKAlryxUjnUbH0dxgZc2uCePZMUUKSeIdALUulXLQ1iDjoEQpvZI.HTHOHUkCR.m39Xrt3mm91:17097:0:99999:7:::'
- 'sarah:$6$DoSO7Ycr$2GtM5.8Lfx9Sw8X1fDMF.7zWDoVoy1892nyp0iFsqh5CfmtEROtxmejvQxu0N/8D7X8PQAGKYGl.gUb6/cG210:18010:0:99999:7:::'
- 'scriptmanager:$6$WahhM57B$rOHkWDRQpds96uWXkRCzA6b5L3wOorpe4uwn5U32yKRsMWDwKAm.RF6T81Ki/MOyo.dJ0B8Xm5/wOrLk35Nqd0:17504:0:99999:7:::'
- 'service:$1$cwdqim5m$bw71JTFHNWLjDTmYTNN9j/:17239:0:99999:7:::'
- 'setup:$6$PR5zOqWk$3MKXMgf6.4bLlznh0R87RB4qaOAcGhbE0Cs8xtUqVPHP8x0553/6aMZnfsZOWKXL0DOqUcVRkfCQN8DvjdZNc1:17086:0:99999:7:::'
- 'shelly:$6$aYLAoDIC$CJ8f8WSCT6GYmbx7x8z5RfrbTG5mpDkkJkLW097hoiEw3tqei2cE7EcUTYdJTVMSa3PALZeBHjhiFR8Ba5jzf0:17431:0:99999:7:::'
- 'smeagol:$6$vu8Pfezj$6ldY35ytL8yRd.Gp947FnW3t/WrMZXIL7sqTQS4wuSKeAiYeoYCy7yfS2rBpAPvFCPuo73phXmpOoLsg5REXz.:16695:0:99999:7:::'
- 'SUPPORT_388945a0:1001:aad3b435b51404eeaad3b435b51404ee:8ed3993efb4e6476e4f75caebeca93e6:::'
- 'susan:$6$5oSmml7K$0joeavcuzw4qxDJ2LsD1ablUIrFhycVoIXL3rxN/3q2lVpQOKLufta5tqMRIh30Gb32IBp5yZ7XvBR6uX9/SR/:17721:0:99999:7:::'
- 'sys:$1$NsRwcGHl$euHtoVjd59CxMcIasiTw/.:17239:0:99999:7:::'
- 'togie:$6$dvOTOc6x$jpt1MVPeBsVlfkhVXl3sv21x2Ls2qle8ouv/JMdR6yNpt2nHHahrh0cyT.8PfVcNqlrAHYFkK2WYdSbxQ4Ivu1:17392:0:99999:7:::'
- 'tom:$6$ptD/.gN.$n.B/5dODEQFteBwg75Ip9leeaaXSMesGbfZzoVHpZihMHfbWu45UpVZTc6razK1JLZ6817ckZhAJF776Dg/ZJ0:17407:0:99999:7:::'
- 'user1:$6$9iyn/lCu$UxlOZYhhFSAwJ8DPjlrjrl2Wv.Pz9DahMTfwpwlUC5ybyBGpuHToNIIjTqMLGSh0R2Ch4Ij5gkmP0eEH2RJhZ0:18050:0:99999:7:::'
- 'user2:$6$7gVE7KgT$ud1VN8OwYCbFveieo4CJQIoMcEgcfKqa24ivRs/MNAmmPeudsz/p3QeCMHj8ULlvSufZmp3TodaWlIFSZCKG5.:18050:0:99999:7:::'
- 'user3:$6$PaKeECW4$5yMn9UU4YByCj0LP4QWaGt/S1aG0Zs73EOJXh.Rl0ebjpmsBmuGUwTgBamqCCx7qZ0sWJOuzIqn.GM69aaWJO0:18051:0:99999:7:::'
- 'user4:$6$0pxj6KPl$NA5S/2yN3TTJbPypEnsqYe1PrgbfccHntMggLdU2eM5/23dnosIpmD8sRJwI1PyDFgQXH52kYk.bzc6sAVSWm.:18051:0:99999:7:::'
- 'user5:$6$wndyaxl9$cOEaymjMiRiljzzaSaFVXD7LFx2OwOxeonEdCW.GszLm77k0d5GpQZzJpcwvufmRndcYatr5ZQESdqbIsOb9n/:18051:0:99999:7:::'
- 'user6:$6$Y9wYnrUW$ihpBL4g3GswEay/AqgrKzv1n8uKhWiBNlhdKm6DdX7WtDZcUbh/5w/tQELa3LtiyTFwsLsWXubsSCfzRcao1u/:18051:0:99999:7:::'
- 'user7:$6$5RBuOGFi$eJrQ4/xf2z/3pG43UkkoE35Jb0BIl7AW/umj1Xa7eykmalVKiRKJ4w3vFEOEOtYinnkIRa.89dXtGQXdH.Rdy0:18052:0:99999:7:::'
- 'user8:$6$fdtulQ7i$G9THW4j6kUy4bXlf7C/0XQtntw123LRVRfIkJ6akDLPHIqB5PJLD4AEyz7wXsEhMc2XC4CqiTxATfb20xWaXP.:18052:0:99999:7:::'
- 'user:$6$gLVDPSY5$CGHDuEBpkC90vX2xFD9NeJC0O9XfhVj9oFVvL8XbTRpBnt/7WJFpADj0zboPTKTqPbOHafZGUd/exj4OZ1Frc/:15585:0:99999:7:::'
- 'veronica:$6$ud4650Og$j9dN4Xh6nHTDUQ5LpnrUzl6FdRiapcGvjg0JU2/Wx.G5Q.PFtbv.sa4OJyNnzTVsFEMmgnEZQV1nxGFiy56zS/:17033:0:99999:7:::'
- 'vulnix:$6$tMOyhDF2$gExhASDVWJqHYn00.A8XLJb.DvE7bdD6NffAno3iY5zEkJwZ4yDTGMrhdVbkMXV1dlBT00DoGFR7oXbtDi3lQ0:15585:0:99999:7:::'
- 'wpadmin:$6$FtTN/YPC$iidNFmRVpQ1p2kkfoOZ6OzNPqR95DQ/7G10aze2CA2W3ik/sHHyEPaNNY57tMvRDU0/Rs62FEimiKXD2VgEYC1:17096:0:99999:7:::'
- 'www-data:$6$SYixzIan$P3cvyztSwA1lmILF3kpKcqZpYSDONYwMwplB62RWu1RklKqIGCX1zleXuVwzxjLcpU6bhiW9N03AWkzVUZhms.:17264:0:99999:7:::'
methodology:
enumerate:
goal: to find service and version details
process:
- find ttps for open ports
- start with weird services
- identify installed software and version
- find critical cve/exploits
- enumerate more common services - smb/ftp
- enumerate services with large attack vector like http at the end
references:
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Methodology%20and%20enumeration.md
exploit:
goal: gain interactive access on <targetip>
process:
- debug available exploits for open ports
references:
- https://fareedfauzi.github.io/notes/Boot2Root-Notes/
- https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/CVE%20Exploits
privesc:
goal: gain elevated privileges on <targetip>
process:
- debug available exploits or misconfigurations
- for nix, use [linux smart enum](https://github.com/diego-treitos/linux-smart-enumeration)
- for windows, use [winpeas](https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite)
references:
- https://github.com/rayhan0x01/reverse-shell-able-exploit-pocs
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Linux%20-%20Privilege%20Escalation.md
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Windows%20-%20Privilege%20Escalation.md
recon:
goal: to scan all ports on <targetip>
process:
- '[enumerate_nmap_initial](#enumerate_nmap_initial)'
- '[enumerate_nmap_tcp](#enumerate_nmap_tcp)'
- '[enumerate_nmap_udp](#enumerate_nmap_udp)'
plot:
categories:
hackthebox: 1
htb: 13
linux: 31
oscp: 36
tryhackme: 1
vulnhub: 24
windows: 8
ports:
10000/tcp: 1
1337/tcp: 1
139/tcp: 4
1433/tcp: 1
1974/tcp: 1
2049/tcp: 2
21/tcp: 2
22/tcp: 4
3000/tcp: 1
443/tcp: 1
445/tcp: 1
80/tcp: 24
8080/tcp: 3
9999/tcp: 1
protocols:
abyss?: 1
ftp: 2
http: 30
microsoft-ds: 1
ms-sql-s: 1
netbios-ssn: 4
nfs_acl: 2
ssh: 4
ssl: 1
services:
'2-3 (RPC #100227)': 1
2.4.18 ((Ubuntu)): 1
'3 (RPC #100227)': 1
Apache httpd: 1
Apache httpd 2.0.52 ((CentOS)): 1
Apache httpd 2.2.15 ((CentOS) DAV/2 PHP/5.3.3): 1
Apache httpd 2.2.21 ((FreeBSD) mod_ssl/2.2.21 OpenSSL/0.9.8q DAV/2 PHP/5.3.8): 2
Apache httpd 2.2.22 ((Ubuntu)): 2
Apache httpd 2.2.8 ((Ubuntu) PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch): 2
Apache httpd 2.4.18 ((Ubuntu)): 4
Apache httpd 2.4.25 ((Debian)): 1
Apache httpd 2.4.29: 1
Apache httpd 2.4.29 ((Ubuntu)): 2
Apache httpd 2.4.34 ((Ubuntu)): 1
Apache httpd 2.4.41 ((Ubuntu)): 1
Apache httpd 2.4.43 ((Win64) OpenSSL/1.1.1g PHP/7.4.6): 1
Apache httpd 2.4.7 ((Ubuntu)): 3
HttpFileServer httpd 2.3: 1
Microsoft IIS httpd 6.0: 2
Microsoft IIS httpd 7.5: 1
Microsoft SQL Server 14.00.1000.00: 1
Microsoft Windows netbios-ssn: 2
Microsoft ftpd: 1
Node.js Express framework: 1
OpenSSH 5.9p1 Debian 5ubuntu1 (Ubuntu Linux; protocol 2.0): 1
OpenSSH 5.9p1 Debian 5ubuntu1.10 (Ubuntu Linux; protocol 2.0): 1
OpenSSH 6.6.1p1 Ubuntu 2ubuntu2.8 (Ubuntu Linux; protocol 2.0): 1
OpenSSH 6.7p1 Debian 5+deb8u3 (protocol 2.0): 1
'Samba smbd 3.X - 4.X (workgroup: WORKGROUP)': 2
SimpleHTTPServer 0.6 (Python 2.7.3): 1
Windows Server 2019 Standard 17763 microsoft-ds: 1
https/Apache/1.3.20 (Unix) (Red-Hat/Linux) mod_ssl/2.8.4 OpenSSL/0.9.6b: 1
vsftpd 2.3.5: 1
ttps:
enumerate_app_powershell_history: 1
enumerate_app_wordpress: 5
enumerate_proto_ftp: 1
enumerate_proto_http: 5
enumerate_proto_smb: 1
enumerate_proto_smb_anonymous_access: 1
enumerate_proto_sql: 1
enumerate_proto_sql_ssis_dtsconfig: 1
enumerate_proto_ssh: 1
exploit_bash_reverseshell: 1
exploit_bof: 1
exploit_cloudme_bof: 1
exploit_cmdexec: 1
exploit_command_injection: 1
exploit_credsreuse: 5
exploit_defaultcreds: 1
exploit_ftp_anonymous: 1
exploit_ftp_web_root: 1
exploit_gymsystem_rce: 1
exploit_hfs_cmd_exec: 1
exploit_iis_asp_reverseshell: 1
exploit_iis_webdav: 2
exploit_lotuscms: 1
exploit_modssl: 1
exploit_mongodb: 1
exploit_nfs_rw: 2
exploit_nodejs: 1
exploit_pchart: 1
exploit_php_fileupload: 3
exploit_php_fileupload_bypass: 2
exploit_php_reverseshell: 6
exploit_php_webshell: 1
exploit_phptax: 1
exploit_python_reverseshell: 2
exploit_shellshock: 1
exploit_smb_ms08_067: 1
exploit_smb_ms17_010: 1
exploit_smb_nullsession: 1
exploit_smb_usermap: 1
exploit_smb_web_root: 1
exploit_sql_login: 1
exploit_sql_xpcmdshell: 1
exploit_sqli: 4
exploit_ssh_authorizedkeys: 2
exploit_ssh_bruteforce: 1
exploit_ssh_privatekeys: 1
exploit_wordpress_defaultcreds: 1
exploit_wordpress_plugin: 1
exploit_wordpress_plugin_activitymonitor: 1
exploit_wordpress_plugin_hellodolly: 2
exploit_wordpress_template: 1
privesc_anansi: 1
privesc_bash_reverseshell: 1
privesc_bof: 1
privesc_chkrootkit: 1
privesc_credsreuse: 1
privesc_cron: 4
privesc_cron_rootjobs: 1
privesc_docker_group: 1
privesc_env_relative_path: 1
privesc_freebsd: 1
privesc_kernel_ipappend: 1
privesc_kernel_overlayfs: 1
privesc_lxc_bash: 1
privesc_modssl: 1
privesc_mysql_creds: 3
privesc_mysql_root: 2
privesc_mysql_udf: 2
privesc_nfs_norootsquash: 1
privesc_nmap: 2
privesc_passwd_writable: 1
privesc_psexec_login: 1
privesc_setuid: 6
privesc_shell_escape: 1
privesc_ssh_authorizedkeys: 1
privesc_ssh_knownhosts: 1
privesc_strace_setuid: 1
privesc_sudo: 6
privesc_sudoers: 7
privesc_windows_ms11_046: 1
privesc_windows_ms14_070: 1
privesc_windows_ms15_051: 1
privesc_windows_ms16_098: 1
readme:
- datetime: 20200428
infra: HackTheBox
machine:
difficulty: startingpoint
difficulty_ratings: null
id: 287
infrastructure: hackthebox
ip: 10.10.10.27
killchainurl: https://github.com/7h3rAm/writeups/blob/master/htb.archetype/killchain.png
matrix:
aggregate: []
maker: []
matrixurl: null
name: Archetype
order: 1
os: Windows
oscplike: false
owned_root: true
owned_user: true
points: 0
private: false
ratingsurl: null
shortname: archetype
url: https://app.hackthebox.eu/machines/287
verbose_id: hackthebox#287
vip: 0
writeupmdurl: https://github.com/7h3rAm/writeups/blob/master/htb.archetype/writeup.md
writeuppdfurl: https://github.com/7h3rAm/writeups/blob/master/htb.archetype/writeup.pdf
writeups:
7h3rAm:
ttps:
enumerate:
- enumerate_proto_smb
- enumerate_proto_smb_anonymous_access
- enumerate_proto_sql
- enumerate_proto_sql_ssis_dtsconfig
- enumerate_app_powershell_history
exploit:
- exploit_sql_login
- exploit_sql_xpcmdshell
privesc:
- privesc_psexec_login
name: Archetype
overview: <img src="https://github.com/7h3rAm/writeups/blob/master/htb.archetype/killchain.png"
width="100" height="100" />
points: null
status: public
tags:
- enumerate_proto_smb
- enumerate_proto_smb_anonymous_access
- enumerate_proto_sql
- enumerate_proto_sql_ssis_dtsconfig
- exploit_sql_login
- exploit_sql_xpcmdshell
- enumerate_app_powershell_history
- privesc_psexec_login
url: https://app.hackthebox.eu/machines/287
writeup: https://github.com/7h3rAm/writeups/blob/master/htb.archetype/writeup.pdf
- datetime: 20200625
infra: HackTheBox
machine:
difficulty: easy
difficulty_ratings:
- 6437
- 5533
- 5279
- 3111
- 8254
- 933
- 650
- 311
- 95
- 156
free: false
id: 118
infrastructure: hackthebox
ip: 10.10.10.68
killchainurl: https://github.com/7h3rAm/writeups/blob/master/htb.bashed/killchain.png
maker:
id: 2904
name: Arrexel
maker2: null
matrix:
aggregate:
- 5.5
- 4.4
- 4.3
- 5.7
- 5.6
maker:
- 0
- 0
- 0
- 0
- 0
matrixurl: https://github.com/7h3rAm/writeups/blob/master/htb.bashed/matrix.png
name: Bashed
os: Linux
oscplike: true
owned_root: true
owned_user: true
points: 20
private: false
rating: '4.5'
ratingsurl: https://github.com/7h3rAm/writeups/blob/master/htb.bashed/ratings.png
release: '2017-12-09'
retired: true
retired_date: '2018-04-28'
root_owns: 14742
shortname: bashed
url: https://app.hackthebox.eu/machines/118
user_owns: 18103
verbose_id: hackthebox#118
writeupmdurl: https://github.com/7h3rAm/writeups/blob/master/htb.bashed/writeup.md
writeuppdfurl: https://github.com/7h3rAm/writeups/blob/master/htb.bashed/writeup.pdf
writeups:
7h3rAm:
ttps:
enumerate:
- enumerate_proto_http
exploit:
- exploit_python_reverseshell
privesc:
- privesc_sudo
- privesc_cron_rootjobs
name: Bashed
overview: <img src="https://github.com/7h3rAm/writeups/blob/master/htb.bashed/killchain.png"
width="100" height="100" />
points: 20
status: public
tags:
- enumerate_proto_http
- exploit_python_reverseshell
- privesc_sudo
- privesc_cron_rootjobs
url: https://app.hackthebox.eu/machines/118
writeup: https://github.com/7h3rAm/writeups/blob/master/htb.bashed/writeup.pdf
- datetime: 20191113
infra: HackTheBox
machine:
difficulty: easy
difficulty_ratings:
- 2321
- 1854
- 2562
- 1541
- 3657
- 324
- 193
- 65
- 21
- 47
free: false
id: 48
infrastructure: hackthebox
ip: 10.10.10.37
killchainurl: https://github.com/7h3rAm/writeups/blob/master/htb.blocky/killchain.png
maker:
id: 2904
name: Arrexel
maker2: null
matrix:
aggregate:
- 6.4
- 5.4
- 4.1
- 5.9
- 4.6
maker:
- 0
- 0
- 0
- 0
- 0
matrixurl: https://github.com/7h3rAm/writeups/blob/master/htb.blocky/matrix.png
name: Blocky
os: Linux
oscplike: true
owned_root: true
owned_user: true
points: 20
private: false
rating: '4.4'
ratingsurl: https://github.com/7h3rAm/writeups/blob/master/htb.blocky/ratings.png
release: '2017-07-21'
retired: true
retired_date: '2017-12-09'
root_owns: 7124
shortname: blocky
url: https://app.hackthebox.eu/machines/48
user_owns: 7116
verbose_id: hackthebox#48
writeupmdurl: https://github.com/7h3rAm/writeups/blob/master/htb.blocky/writeup.md
writeuppdfurl: https://github.com/7h3rAm/writeups/blob/master/htb.blocky/writeup.pdf
writeups:
ippsec:
description:
00:00:01 - ------ Box Completed, Below extra content (Some mistakes, pretty much do this live without prep): https://www.youtube.com/watch?v=C2O-rilXA6I&t=1s
'00:00:01 - The STTY command I messed up was simply `stty rows ## cols ##`': https://www.youtube.com/watch?v=C2O-rilXA6I&t=1s
00:01:15 - Begin Recon with Reconnoitre: https://www.youtube.com/watch?v=C2O-rilXA6I&t=75s
00:03:15 - Examining findings from Reconnoitre: https://www.youtube.com/watch?v=C2O-rilXA6I&t=195s
00:06:50 - Decompiling java Jar Files with JAD: https://www.youtube.com/watch?v=C2O-rilXA6I&t=410s
00:08:18 - Using JD-GUI: https://www.youtube.com/watch?v=C2O-rilXA6I&t=498s
00:10:33 - Running WPScan: https://www.youtube.com/watch?v=C2O-rilXA6I&t=633s
00:12:10 - Manually enumerating wordpress users: https://www.youtube.com/watch?v=C2O-rilXA6I&t=730s
00:12:43 - SSH To the box and PrivEsc: https://www.youtube.com/watch?v=C2O-rilXA6I&t=763s
00:15:30 - Rabbit hole, gaining access through FTP: https://www.youtube.com/watch?v=C2O-rilXA6I&t=930s
00:17:09 - Finding Wordpress DB Password: https://www.youtube.com/watch?v=C2O-rilXA6I&t=1029s
00:18:33 - Switching to WWW-DATA by using phpMyAdmin + Wordpress: https://www.youtube.com/watch?v=C2O-rilXA6I&t=1113s
00:20:10 - Generating a PHP Password for Wordpress: https://www.youtube.com/watch?v=C2O-rilXA6I&t=1210s
00:21:50 - Gaining code execution with Wordpress Admin access: https://www.youtube.com/watch?v=C2O-rilXA6I&t=1310s
00:25:40 - Shell as www-data: https://www.youtube.com/watch?v=C2O-rilXA6I&t=1540s
00:26:40 - Enumerating Kernel Exploits with Linux-Exploit-Suggester: https://www.youtube.com/watch?v=C2O-rilXA6I&t=1600s
00:30:10 - Attempting CVE-2017-6074 Dccp Kernel Exploit (Unstable AF): https://www.youtube.com/watch?v=C2O-rilXA6I&t=1810s
name: HackTheBox - Blocky
video_url: https://www.youtube.com/watch?v=C2O-rilXA6I&t=0
name: Blocky
overview: <img src="https://github.com/7h3rAm/writeups/blob/master/htb.blocky/killchain.png"
width="100" height="100" />
points: 20
status: public
tags:
- enumerate_app_wordpress
- exploit_wordpress_plugin
- exploit_credsreuse
- privesc_sudoers
url: https://app.hackthebox.eu/machines/48
writeup: https://github.com/7h3rAm/writeups/blob/master/htb.blocky/writeup.pdf
- datetime: 20191101
infra: HackTheBox
machine:
difficulty: easy
difficulty_ratings:
- 16064
- 7264
- 3636
- 1256
- 6927
- 213
- 124
- 84
- 29
- 116
free: false
id: 51
infrastructure: hackthebox
ip: 10.10.10.40
killchainurl: https://github.com/7h3rAm/writeups/blob/master/htb.blue/killchain.png
maker:
id: 1
name: ch4p
maker2: null
matrix:
aggregate:
- 4
- 6.2
- 8.1
- 1.9
- 3.8
maker:
- 0
- 0
- 0
- 0
- 0
matrixurl: https://github.com/7h3rAm/writeups/blob/master/htb.blue/matrix.png
name: Blue
os: Windows
oscplike: true
owned_root: true
owned_user: true
points: 20
private: false
rating: '4.6'
ratingsurl: https://github.com/7h3rAm/writeups/blob/master/htb.blue/ratings.png
release: '2017-07-28'
retired: true
retired_date: '2018-01-13'
root_owns: 19988
shortname: blue
url: https://app.hackthebox.eu/machines/51
user_owns: 19300
verbose_id: hackthebox#51
writeupmdurl: https://github.com/7h3rAm/writeups/blob/master/htb.blue/writeup.md
writeuppdfurl: https://github.com/7h3rAm/writeups/blob/master/htb.blue/writeup.pdf
writeups:
ippsec:
description:
00:00:38 - Start of Recon: https://www.youtube.com/watch?v=YRsfX6DW10E&t=38s
00:01:20 - Finding NMAP Scripts (Probably a stupid way): https://www.youtube.com/watch?v=YRsfX6DW10E&t=80s
00:02:00 - Running Safe Scripts - Not -sC, which is default.: https://www.youtube.com/watch?v=YRsfX6DW10E&t=120s
00:02:52 - Listing NMAP Script Categories (Prob a really stupid way): https://www.youtube.com/watch?v=YRsfX6DW10E&t=172s
00:03:18 - Really Cool Grep (Only show matching -oP): https://www.youtube.com/watch?v=YRsfX6DW10E&t=198s
00:04:40 - Nmap Safe Script Output: https://www.youtube.com/watch?v=YRsfX6DW10E&t=280s
00:06:30 - Exploiting MS17-010 with MSF: https://www.youtube.com/watch?v=YRsfX6DW10E&t=390s
00:07:40 - Setting up Dev Branch of Empire: https://www.youtube.com/watch?v=YRsfX6DW10E&t=460s
00:09:07 - Starting a Listener: https://www.youtube.com/watch?v=YRsfX6DW10E&t=547s
00:10:55 - Getting a PowerShell Oneliner to launch payload: https://www.youtube.com/watch?v=YRsfX6DW10E&t=655s
00:12:16 - Invoke-Expression (IEX) to Execute Launcher: https://www.youtube.com/watch?v=YRsfX6DW10E&t=736s
00:13:25 - Interacting with a single agent: https://www.youtube.com/watch?v=YRsfX6DW10E&t=805s
00:13:40 - Using Modules - PowerUp Invoke-AllChecks: https://www.youtube.com/watch?v=YRsfX6DW10E&t=820s
00:14:40 - Fixing weird issue with PS Module: https://www.youtube.com/watch?v=YRsfX6DW10E&t=880s
00:16:15 - Invoke-AllChecks finished: https://www.youtube.com/watch?v=YRsfX6DW10E&t=975s
00:17:15 - Loading PS Modules into Memory: https://www.youtube.com/watch?v=YRsfX6DW10E&t=1035s
00:17:40 - Executing funcitons out of above module: https://www.youtube.com/watch?v=YRsfX6DW10E&t=1060s
00:18:20 - Why I don't pass to MSF via InjectShellcode: https://www.youtube.com/watch?v=YRsfX6DW10E&t=1100s
00:22:45 - How I pass from Empire to MSF (Unicorn + IEX): https://www.youtube.com/watch?v=YRsfX6DW10E&t=1365s
00:25:53 - Just running Powershell CMDs from Empire (Shell): https://www.youtube.com/watch?v=YRsfX6DW10E&t=1553s
name: HackTheBox - Blue
video_url: https://www.youtube.com/watch?v=YRsfX6DW10E&t=0
name: Blue
overview: <img src="https://github.com/7h3rAm/writeups/blob/master/htb.blue/killchain.png"
width="100" height="100" />
points: 20
status: public
tags:
- exploit_smb_ms17_010
url: https://app.hackthebox.eu/machines/51
writeup: https://github.com/7h3rAm/writeups/blob/master/htb.blue/writeup.pdf
- datetime: 20200722
infra: HackTheBox
machine:
difficulty: easy
difficulty_ratings:
- 2776
- 3111
- 3955
- 2482
- 5994
- 983
- 818
- 439
- 122
- 212
free: false
id: 263
infrastructure: hackthebox
ip: 10.10.10.198
killchainurl: https://github.com/7h3rAm/writeups/blob/master/htb.buff/killchain.png
maker:
id: 94858
name: egotisticalSW
maker2: null
matrix:
aggregate:
- 5.5
- 5.6
- 7.7
- 2.3
- 4.4
maker:
- 6
- 7
- 9
- 1
- 3
matrixurl: https://github.com/7h3rAm/writeups/blob/master/htb.buff/matrix.png
name: Buff
os: Windows
oscplike: true
owned_root: true
owned_user: true
points: 20
private: false
rating: '3.6'
ratingsurl: https://github.com/7h3rAm/writeups/blob/master/htb.buff/ratings.png
release: '2020-07-18'
retired: true
retired_date: '2020-11-21'
root_owns: 6470
shortname: buff
url: https://app.hackthebox.eu/machines/263
user_owns: 15667
verbose_id: hackthebox#263
writeupmdurl: https://github.com/7h3rAm/writeups/blob/master/htb.buff/writeup.md
writeuppdfurl: https://github.com/7h3rAm/writeups/blob/master/htb.buff/writeup.pdf
writeups:
ippsec:
description:
00:00:00 - Introduction: https://www.youtube.com/watch?v=-KBm3tBNK74&t=0s
00:00:45 - Begin of nmap and poking at the website: https://www.youtube.com/watch?v=-KBm3tBNK74&t=45s
00:03:00 - Checking when an image was uploaded to the server with wget and exiftool: https://www.youtube.com/watch?v=-KBm3tBNK74&t=180s
00:04:10 - Contact.php discloses the software Gym Management Software is being used. Examining the exploit: https://www.youtube.com/watch?v=-KBm3tBNK74&t=250s
00:06:10 - Editing the Python Exploit to force everything through a proxy, so we can examine what the exploit does.: https://www.youtube.com/watch?v=-KBm3tBNK74&t=370s
00:08:30 - Running the exploit and examining in Burp: https://www.youtube.com/watch?v=-KBm3tBNK74&t=510s
00:14:20 - Having trouble getting a reverse shell via PS, Uploading NC.EXE to do it: https://www.youtube.com/watch?v=-KBm3tBNK74&t=860s
'00:17:10 - Running WinPEAS.exe ': https://www.youtube.com/watch?v=-KBm3tBNK74&t=1030s
00:21:00 - Discovering CloudMe in the Downloads directory then looking at the exploit: https://www.youtube.com/watch?v=-KBm3tBNK74&t=1260s
00:23:20 - CloudMe isn't listening on a port... Reverting and getting a shell again: https://www.youtube.com/watch?v=-KBm3tBNK74&t=1400s
00:25:30 - Reverse shell returned... Still waiting for CloudMe to listen on a port: https://www.youtube.com/watch?v=-KBm3tBNK74&t=1530s
00:27:27 - Uploading Chisel to the box, then doing a port forward for MySQL to enumerate the database: https://www.youtube.com/watch?v=-KBm3tBNK74&t=1647s
00:31:00 - Finding MySQL Credentials in db.php, then checking the database from our box thanks to Chisel: https://www.youtube.com/watch?v=-KBm3tBNK74&t=1860s
00:34:30 - Replacing the payload in the CloudMe exploit with a reverse shell: https://www.youtube.com/watch?v=-KBm3tBNK74&t=2070s
00:37:20 - Running the exploit and getting root: https://www.youtube.com/watch?v=-KBm3tBNK74&t=2240s
name: HackTheBox - Buff
video_url: https://www.youtube.com/watch?v=-KBm3tBNK74&t=0
name: Buff
overview: <img src="https://github.com/7h3rAm/writeups/blob/master/htb.buff/killchain.png"
width="100" height="100" />
points: 20
status: public
tags:
- enumerate_proto_http
- exploit_gymsystem_rce
- exploit_cloudme_bof
url: https://app.hackthebox.eu/machines/263
writeup: https://github.com/7h3rAm/writeups/blob/master/htb.buff/writeup.pdf
- datetime: 20191113
infra: HackTheBox
machine:
difficulty: medium
difficulty_ratings:
- 551
- 1040
- 2263
- 1956
- 4130
- 616
- 387
- 168
- 46
- 49
free: false
id: 11
infrastructure: hackthebox
ip: 10.10.10.13
killchainurl: https://github.com/7h3rAm/writeups/blob/master/htb.cronos/killchain.png
maker:
id: 1
name: ch4p
maker2: null