-
Notifications
You must be signed in to change notification settings - Fork 81
/
googledorks_full.txt.txt
9806 lines (9806 loc) · 292 KB
/
googledorks_full.txt.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
!Host=*.* intext:enc_UserPassword=* ext:pcf
!Host=. intext:enc_UserPassword= ext:pcf
" -FrontPage-" ext:pwd inurl:(service | authors | administrators | users)
" -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) " -FrontPage-" inurl:service.pwd
" Dumping data for table (username|user|users|password)"
" Dumping data for table"
" phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
" phpMyAdmin MySQL-Dump" filetype:txt
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
"# -FrontPage-" inurl:service.pwd
"#mysql dump" filetype:sql
"#mysql dump" filetype:sql 21232f297a57a5a743894a0e4a801fc3
"1999-2004 FuseTalk Inc" -site:fusetalk.com
"2003 DUware All Rights Reserved"
"2004-2005 ReloadCMS Team."
"2005 SugarCRM Inc. All Rights Reserved" "Powered By SugarCRM"
"4images Administration Control Panel"
": vBulletin Version 1.1.5"
"[SQL Server Driver][SQL Server]Line 1: Incorrect syntax near" -forum -thread -showthread
"A syntax error has occurred" filetype:ihtml
"About Mac OS Personal Web Sharing"
"About Winamp Web Interface" intitle:"Winamp Web Interface"
"access denied for user" "using password"
"Active Webcam Page" inurl:8080
"adding new user" inurl:addnewuser -"there are no domains"
"admin account info" filetype:log
"allow_call_time_pass_reference" "PATH_INFO"
"An illegal character has been found in the statement" -"previous message"
"AnWeb/1.42h" intitle:index.of
"APC Console Port Management Server" intitle:"Console Port Management Server"
"apricot - admin" 00h
"apricot – admin" 00h
"ASP.NET_SessionId" "data source="
"AutoCreate=TRUE password="
"AutoCreate=TRUE password=*"
"Based on DoceboLMS 2.0"
"BlackBoard 1.5.1-f | …. 2003-4 by Yves Goergen"
"BosDates Calendar System " "powered by BosDates v3.2 by BosDev"
"bp blog admin" intitle:login | intitle:admin -site:johnny.ihackstuff.com
"by Reimar Hoven. All Rights Reserved. Disclaimer" | inurl:"log/logdb.dta"
"cacheserverreport for" "This analysis was produced by calamaris"
"Calendar programming by AppIdeas.com" filetype:php
"Can't connect to local" intitle:warning
"Cannot use a scalar value as an array in" "on line" -issues -help -problem
"CERN httpd 3.0B (VAX VMS)"
"Certificate Practice Statement" inurl:(PDF | DOC)
"Chatologica MetaSearch" "stack tracking"
"Chatologica MetaSearch" "stack tracking:"
"Copyright (c) Tektronix, Inc." "printer status"
"Copyright 2000 - 2005 Miro International Pty Ltd. All rights reserved" "Mambo is Free Software released"
"Copyright 2004 .... Digital Scribe v.1.4"
"Copyright © Tektronix, Inc." "printer status"
"Copyright …. 2002 Agustin Dondo Scripts"
"CosmoShop by Zaunz Publishing" inurl:"cgi-bin/cosmoshop/lshop.cgi" -johnny.ihackstuff.com -V8.10.106 -V8.10.100 -V.8.10.85 -V8.10.108 -V8.11*
"create the Super User" "now by clicking here"
"Cyphor (Release:" -www.cynox.ch
"delete entries" inurl:admin/delete.asp
"delivered by mailman" inurl:admin/mailman | intitle:"Mailman Administrator Authentication"
"detected an internal error [IBM][CLI Driver][DB2/6000]"
"Directory Listing for" "Hosted by Xerver"
"display printer status" intitle:"Home"
"driven by: ASP Message Board"
"Duclassified" -site:duware.com "DUware All Rights reserved"
"duclassmate" -site:duware.com
"Dudirectory" -site:duware.com
"dudownload" -site:duware.com
"Dumping data for table"
"DUpaypal" -site:duware.com
"e107.org 2002/2003? inurl:forum_post.php?nt
"Elite Forum Version *.*"
"Elite Forum Version ."
"Emergisoft web applications are a part of our"
"Enter ip" inurl:"php-ping.php"
"Error Diagnostic Information" intitle:"Error Occurred While"
"error found handling the request" cocoon filetype:xml
"Establishing a secure Integrated Lights Out session with" OR intitle:"Data Frame - Browser not HTTP 1.1 compatible" OR intitle:"HP Integrated Lights-
"Establishing a secure Integrated Lights Out session with" OR intitle:"Data Frame – Browser not HTTP 1.1 compatible" OR intitle:"HP Integrated Lights-
"Fatal error: Call to undefined function" -reply -the -next
"FC Bigfeet" -inurl:mail
"File Upload Manager v1.3? "rename to"
"ftp://" "www.eastgame.net"
"ftp://” "www.eastgame.net"
"Generated by phpSystem"
"generated by wwwstat"
"Host Vulnerability Summary Report"
"HostingAccelerator" intitle:"login" +"Username" -"news" -demo
"html allowed" guestbook
"http://*:*@www" bob:bob
"http://*:*@www" domainname
"http://*:*@www” domainname
"http://:@www" domainname
"HTTP_FROM=googlebot" googlebot.com "Server_Software="
"HTTP_FROM=googlebot" googlebot.com "Server_Software="
"httpd+ssl/kttd" * server at intitle:index.of
"IceWarp Web Mail 5.3.0? "Powered by IceWarp"
"iCONECT 4.1 :: Login"
"id=" & intext:"Warning: array_merge()
"id=" & intext:"Warning: filesize()
"id=" & intext:"Warning: getimagesize()
"id=" & intext:"Warning: ilesize()
"id=" & intext:"Warning: mysql_fetch_array()
"id=" & intext:"Warning: mysql_num_rows()
"id=" & intext:"Warning: mysql_query()
"id=" & intext:"Warning: preg_match()
"id=" & intext:"Warning: session_start()
"Ideal BB Version: 0.1? -idealbb.com
"images in this album on"
"IMail Server Web Messaging" intitle:login
"Incorrect syntax near"
"Incorrect syntax near" -the
"index of /" ( upload.cfm | upload.asp | upload.php | upload.cgi | upload.jsp | upload.pl )
"Index of /" +.htaccess
"Index of /" +passwd
"Index of /" +password.txt
"Index of /admin"
"Index of /backup"
"Index of /mail"
"Index Of /network" "last modified"
"Index of /password"
"index of /private" -site:net -site:com -site:org
"index of /private" site:mil
"index of cgi-bin"
"Index of" / "chat/logs"
"index of" / lck
"index of" / picasa.ini
"index of" intext:fckeditor inurl:fckeditor
"Index of" inurl:htdocs inurl:xampp
"Index of" inurl:phpmyadmin
"index of" inurl:recycler
"Index of" inurl:webalizer
"Index of" rar r01 nfo Modified 2004
"index of/" "ws_ftp.ini" "parent directory"
"inspanel" intitle:"login" -"cannot" "Login ID" -site:inspediumsoft.com
"Installed Objects Scanner" inurl:default.asp
"Internal Server Error" "server at"
"intitle:3300 Integrated Communications Platform" inurl:main.htm
"intitle:Cisco Systems, Inc. VPN 3000 Concentrator"
"intitle:index of"
"intitle:Index.Of /" stats merchant cgi-* etc
"inurl:/site/articles.asp?idcategory="
"inurl:admin.asp"
"inurl:admin/login.asp"
"inurl:admin_login.asp"
"inurl:adminhome.asp"
"inurl:administrator_login.asp"
"inurl:administratorlogin.asp"
"inurl:adminlogin.asp"
"inurl:login/admin.asp"
"inurl:login/administrator.asp"
"Invision Power Board Database Error"
"JRun Web Server" intitle:index.of
"LANCOM DSL/*-* Office *" "Entry Page"
"Link Department"
"liveice configuration file" ext:cfg
"liveice configuration file" ext:cfg -site:sourceforge.net
"Login - Sun Cobalt RaQ"
"login prompt" inurl:GM.cgi
"Login to Usermin" inurl:20000
"Login – Sun Cobalt RaQ"
"login: *" "password= *" filetype:xls
"Looking Glass" (inurl:"lg/" | inurl:lookingglass)
"MacHTTP" filetype:log inurl:machttp.log
"Mail-it Now!" intitle:"Contact form" | inurl:contact.php
"Maintained with Subscribe Me 2.044.09p"+"Professional" inurl:"s.pl"
"maxwebportal" inurl:"default" "snitz forums" +"homepage" -intitle:maxwebportal
"MaXX/3.1" intitle:index.of
"Mecury Version" "Infastructure Group"
"Microsoft (R) Windows (TM) Version DrWtsn32 Copyright (C)" ext:log
"Microsoft (R) Windows * (TM) Version * DrWtsn32 Copyright (C)" ext:log
"Microsoft CRM : Unsupported Browser Version"
"Microsoft ® Windows * ™ Version * DrWtsn32 Copyright ©" ext:log
"Microsoft ® Windows ™ Version DrWtsn32 Copyright ©" ext:log
"Microsoft-IIS/* server at" intitle:index.of
"Microsoft-IIS/4.0" intitle:index.of
"Microsoft-IIS/5.0 server at"
"Microsoft-IIS/6.0" intitle:index.of
"Mimicboard2 086"+"2000 Nobutaka Makino"+"password"+"message" inurl:page=1
"More Info about MetaCart Free"
"Most Submitted Forms and s?ri?ts" "this section"
"Most Submitted Forms and Scripts" "this section"
"mysql dump" filetype:sql
"mysql dump" filetype:sql 21232f297a57a5a743894a0e4a801fc3
"mySQL error with query"
"Netware * Home" inurl:nav.html
"Network Host Assessment Report" "Internet Scanner"
"Network Vulnerability Assessment Report"
"News generated by Utopia News Pro" | "Powered By: Utopia News Pro"
"not for distribution" confidential
"not for public release" -.edu -.gov -.mil
"Novell, Inc" WEBACCESS Username Password "Version *.*" Copyright -inurl:help -guides|guide
"Obtenez votre forum Aztek" -site:forum-aztek.com
"OK logout" inurl:vb.htm?logout=1
"OmniHTTPd/2.10" intitle:index.of
"Online Store – Powered by ProductCart"
"OpenSA/1.0.4" intitle:index.of
"OPENSRS Domain Management" inurl:manage.cgi
"ORA-00921: unexpected end of SQL command"
"ORA-00933: SQL command not properly ended"
"ORA-00936: missing expression"
"ORA-12541: TNS:no listener" intitle:"error occurred"
"Output produced by SysWatch "
"Output produced by SysWatch *"
"parent directory " /appz/ -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory " DVDRip -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory " Gamez -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory " MP3 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory " Name of Singer or album -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory "Xvid -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory" +proftpdpasswd
"Parse error: parse error, unexpected T_VARIABLE" "on line" filetype:php
"pcANYWHERE EXPRESS Java Client"
"Phaser 6250? "Printer Neighborhood" "XEROX CORPORATION"
"Phaser 8200? "…. Xerox" "refresh" " Email Alerts"
"Phaser…. 740 Color Printer" "printer named: "
"Phaser…. 840 Color Printer" "Current Status" "printer named:"
"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"
"phone " "address " "e-mail" intitle:"curriculum vitae"
"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"
"Phorum Admin" "Database Connection" inurl:forum inurl:admin
"PhpCollab . Log In" | "NetOffice . Log In" | (intitle:"index.of." intitle:phpcollab|netoffice inurl:phpcollab|netoffice -gentoo)
"phpinfo.php" -manual
"phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
"phpMyAdmin MySQL-Dump" filetype:txt
"phpMyAdmin" "running on" inurl:"main.php"
"Please authenticate yourself to get access to the management interface"
"please log in"
"Please login with admin pass" -"leak" -sourceforge
"Please re-enter your password It must match exactly"
"Please use Netscape 2.0 or enhance !!" -site:dlink.com -site:ovislink.com.tw
"please visit" intitle:"i-Catcher Console" Copyright "iCode Systems"
"portailphp v1.3" inurl:"index.php?affiche" inurl:"PortailPHP" -site:safari-msi.com
"Portal engine source code * copyright …. 2002-2004 * DotNetNuke." -site:dotnetnuke.com
"PostgreSQL query failed: ERROR: parser: parse error"
"PostgreSQL query failed: ERROR: parser: parse error"
"Powered *: newtelligence" ("dasBlog 1.6?| "dasBlog 1.5?| "dasBlog 1.4?|"dasBlog 1.3?)
"powered by 4images"
"Powered by A-CART"
"powered by active php bookmarks" | inurl:bookmarks/view_group.php?id=
"Powered by AJ-Fork v.167?
"Powered by and copyright class-1" 0.24.4
"powered by andromeda version" (filetype:php | filetype:asp)
"powered by antiboard"
"Powered by AutoIndex PHP Script"
"Powered by autolinks pro 2.1" inurl:register.php
"Powered by AzDg" (2.1.3 | 2.1.2 | 2.1.1)
"Powered by Caudium Webserver" -caudium.net
"powered by claroline" -demo
"Powered by Coppermine Photo Gallery"
"Powered by Coppermine Photo Gallery" ( "v1.2.2 b" | "v1.2.1" | "v1.2" | "v1.1" | "v1.0")
"powered by CubeCart 2.0"
"Powered by CubeCart"
"Powered by CuteNews"
"powered by CuteNews" "2003..2005 CutePHP"
"Powered by DCP-Portal v5.5?
"Powered by DMXReady Site Chassis Manager" -site:dmxready.com
"powered by ducalendar" -site:duware.com
"Powered by Duclassified" -site:duware.com
"Powered by Duclassified" -site:duware.com "DUware All Rights reserved"
"powered by duclassmate" -site:duware.com
"Powered by Dudirectory" -site:duware.com
"powered by dudownload" -site:duware.com
"Powered by DUpaypal" -site:duware.com
"Powered by DWMail" password intitle:dwmail
"Powered By Elite Forum Version *.*"
"Powered by FlexPHPNews" inurl:news | inurl:press
"Powered by FUDForum 2.6" -site:fudforum.org -johnny.ihackstuff
"Powered by FUDForum 2.7" -site:fudforum.org -johnny.ihackstuff
"Powered by FUDforum"
"Powered by FunkBoard"
"powered by Gallery v"|"images" inurl:gallery
"Powered by Gallery v1.4.4?
"Powered by Gravity Board"
"Powered by GTChat 0.95"+"User Login"+"Remember my login information"
"powered by guestbook script" -ihackstuff -exploit
"powered by GuppY v4"|"Site cr........ avec GuppY v4"
"Powered by IceWarp Software" inurl:mail
"Powered by Ikonboard 3.1.1?
"Powered by Invision Power Board(U) v1.3 Final"
"Powered by Invision Power File Manager" (inurl:login.php) | (intitle:"Browsing directory /" )
"powered by ITWorking"
"Powered by Land Down Under 601?
"Powered by Link Department"
"Powered by Loudblog"
"powered by mailgust"
"Powered by MD-Pro" | "made with MD-Pro"
"Powered by Megabook *" inurl:guestbook.cgi
"Powered by Merak Mail Server Software" -.gov -.mil -.edu -site:merakmailserver.com -johnny.ihackstuff
"Powered by MercuryBoard [v1"
"Powered by Midmart Messageboard" "Administrator Login"
"powered by minibb forum software"
"powered by minibb" -site:www.minibb.net -intext:1.7f
"Powered by mnoGoSearch - free web search engine software"
"Powered by mnoGoSearch – free web search engine software"
"Powered by Monster Top List" MTL numrange:200-
"Powered by My Blog" intext:"FuzzyMonkey.org"
"powered by my little forum"
"Powered by ocPortal" -demo -ocportal.com
"powered by openbsd" +"powered by apache"
"Powered by PHP Advanced Transfer Manager v1.30"
"powered by php icalendar" -ihackstuff -exploit
"powered by php photo album" | inurl:"main.php?cmd=album" -demo2 -pitanje
"Powered by PHP-Fusion v6.00.110" | "Powered by PHP-Fusion v6.00.2.." | "Powered by PHP-Fusion v6.00.3.." -v6.00.400 -johnny.ihackstuff
"powered by PhpBB 2.0.15" -site:phpbb.com
"Powered By phpCOIN 1.2.2"
"Powered by PHPFM" filetype:php -username
"powered by phplist" | inurl:"lists/?p=subscribe" | inurl:"lists/index.php?p=subscribe" -ubbi -bugs +phplist -tincan.co.uk
"Powered by phpOpenTracker" Statistics
"Powered by PowerPortal v1.3?
"powered by pppblog v 0.3.(.)"
"powered by runcms" -runcms.com -runcms.org
"powered by sblog" +"version 0.7"
"Powered by sendcard - an advanced PHP e-card program" -site:sendcard.org
"Powered by SilverNews"
"Powered by Simplog"
"powered by sphider" -exploit -ihackstuff -www.cs.ioc.ee
"powered by ubbthreads"
"Powered by UebiMiau" -site:sourceforge.net
"Powered by UPB" (b 1.0)|(1.0 final)|(Public Beta 1.0b)
"Powered by Vsns Lemon" intitle:"Vsns Lemon"
"powered by webcamXP" "Pro|Broadcast"
"Powered by Woltlab Burning Board" -"2.3.3" -"v2.3.3" -"v2.3.2" -"2.3.2"
"Powered by WordPress" -html filetype:php -demo -wordpress.org -bugtraq
"Powered by WowBB" -site:wowbb.com
"Powered by Xaraya" "Copyright 2005"
"Powered by Xcomic"
"Powered by XHP CMS" -ihackstuff -exploit -xhp.targetit.ro
"powered by xmb"
"Powered by XOOPS 2.2.3 Final"
"Powered by YaPig V0.92b"
"Powered by yappa-ng"
"powered by YellDL"
"Powered by Zorum 3.5"
"powered by" "shoutstats" hourly daily
"Powered by: Land Down Under 800" | "Powered by: Land Down Under 801" - www.neocrome.net
"Powered By: lucidCMS 1.0.11"
"Powered By: Simplicity oF Upload" inurl:download.php | inurl:upload.php
"Powered by: vBulletin * 3.0.1? inurl:newreply.php
"Powered by: vBulletin Version 1.1.5?
"powered | performed by Beyond Security's Automated Scanning" -kazaa -example
"produced by getstats"
"Red Hat Secure/2.0"
"Red Hat Secure/3.0 server at"
"Request Details" "Control Tree" "Server Variables"
"RICOH Network Printer D model-Restore Factory"
"robots.txt" "Disallow:" filetype:txt
"robots.txt" + "Disallow:" filetype:txt
"Running in Child mode"
"running: Nucleus v3.1? -.nucleuscms.org -demo
"seeing this instead" intitle:"test page for apache"
"Select a database to view" intitle:"filemaker pro"
"set up the administrator user" inurl:pivot
"sets mode: +k"
"sets mode: +p"
"sets mode: +s"
"Shadow Security Scanner performed a vulnerability assessment"
"site info for" "Enter Admin Password"
"Site powered By Limbo CMS"
"SnapGear Management Console" "Welcome to the SnapGear Unit!" -pdf
"SnortSnarf alert page"
"Software PBLang" 4.65 filetype:php
"SQL Server Driver][SQL Server]Line 1: Incorrect syntax near"
"SquirrelMail version 1.4.4? inurl:src ext:php
"SquirrelMail version" "By the SquirrelMail development Team"
"SquirrelMail version" "By the SquirrelMail Development Team"
"Starting SiteZAP 6.0?
"Status message received from" intitle:big brother
"Summary View of Sensors" | "sensorProbe8 v *" | "
"Supplied argument is not a valid MySQL result resource"
"supplied argument is not a valid MySQL result resource"
"Supplied argument is not a valid PostgreSQL result"
"SurgeMAIL" inurl:/cgi/user.cgi ext:cgi
"Switch to table format" inurl:table|plain
"Syntax error in query expression " -the
"SysCP - login"
"SysCP – login"
"Thank You for using WPCeasy"
"Thank you for your order" +receipt
"Thank you for your purchase" +download
"The following report contains confidential information" vulnerability -search
"The s?ri?t whose uid is " "is not allowed to access"
"The script whose uid is " "is not allowed to access"
"The statistics were last upd?t?d" "Daily"-microsoft.com
"The statistics were last updated" "Daily"-microsoft.com
"There are no Administrators Accounts" inurl:admin.php -mysql_fetch_row
"There seems to have been a problem with the" " Please try again by clicking the Refresh button in your web browser."
"These statistics were produced by getstats"
"This file was generated by Nessus"
"This is a restricted Access Server" "Javas?ri?t Not Enabled!"|"Messenger Express" -edu -ac
"This is a restricted Access Server" "Javascript Not Enabled!"|"Messenger Express" -edu -ac
"This is a Shareaza Node"
"This page has been automatically generated by Plesk Server Administrator"
"This page is for configuring Samsung Network Printer" | printerDetails.htm
"this proxy is working fine!" "enter " "URL" visit
"this proxy is working fine!" "enter *" "URL***" * visit
"This report lists" "identified by Internet Scanner"
"This report was generated by WebLog"
"This script was created by Php-ZeroNet" "Script . Php-ZeroNet"
"This section is for Administrators only. If you are an administrator then please"
"This summary was generated by wwwstat"
"This website engine code is copyright" "2005 by Clever Copy" -inurl:demo
"This website powered by PHPX" -demo
"This website was created with phpWebThings 1.4"
"To view the Web interface of the SpeedTouch, Java
"Traffic Analysis for" "RMON Port * on unit *"
"Traffic Analysis for" "RMON Port on unit "
"ttawlogin.cgi/?action="
"Unable to jump to row" "on MySQL result index" "on line"
"Unclosed quotation mark before the character string"
"Version Info" "Boot Version" "Internet Settings"
"VHCS Pro ver" -demo
"VHCS Pro ver" -demo
"VNC Desktop" inurl:5800
"Warning: Bad arguments to (join|implode) () in" "on line" -help -forum
"Warning: Cannot modify header information - headers already sent"
"Warning: Cannot modify header information – headers already sent"
"Warning: Division by zero in" "on line" -forum
"Warning: Installation directory exists at" "Powered by Zen Cart" -demo
"Warning: mysql_connect(): Access denied for user: '*@*" "on line" -help -forum
"Warning: mysql_connect(): Access denied for user: '*@*" "on line" -help -forum
"Warning: mysql_connect(): Access denied for user: '@" "on line" -help -forum
"Warning: mysql_connect(): Access denied for user: ‘*@*" "on line" -help -forum
"Warning: mysql_query()" "invalid query"
"Warning: pg_connect(): Unable to connect to PostgreSQL server: FATAL"
"Warning: Supplied argument is not a valid File-Handle resource in"
"Warning:" "Cannot execute a blank command in"
"Warning:" "failed to open stream: HTTP request failed" "on line"
"Warning:" "SAFE MODE Restriction in effect." "The s?ri?t whose uid is" "is not allowed to access owned by uid 0 in" "on line"
"Warning:" "SAFE MODE Restriction in effect." "The script whose uid is" "is not allowed to access owned by uid 0 in" "on line"
"Web File Browser" "Use regular expression"
"Web-Based Management" "Please input password to login" -inurl:johnny.ihackstuff.com
"WebExplorer Server - Login" "Welcome to WebExplorer Server"
"WebExplorer Server – Login" "Welcome to WebExplorer Server"
"WebSTAR Mail - Please Log In"
"WebSTAR Mail – Please Log In"
"Webthru User Login"
"Welcome to Administration" "General" "Local Domains" "SMTP Authentication" inurl:admin
"Welcome to Intranet"
"Welcome to PHP-Nuke" congratulations
"Welcome to phpMyAdmin" " Create new database"
"Welcome to phpMyAdmin" AND " Create new database"
"Welcome to the CyberGuard unit!"
"Welcome to the directory listing of" "NetworkActiv-Web-Server"
"Welcome to the Prestige Web-Based Configurator"
"Welcome to the versatileBulletinBoard" | "Powered by versatileBulletinBoard"
"xampp/phpinfo
"YaBB SE Dev Team"
"you can now password" | "this is a special page only seen by you. your profile visitors" inurl:imchaos
"you can now password" | "this is a special page only seen by you. your profile visitors" inurl:imchaos
"You have an error in your SQL syntax near"
"You have not provided a survey identification num
"You have requested access to a restricted area of our website. Please authenticate yourself to continue."
"You have requested to access the management functions" -.edu
"You have requested to access the management functions" -.edu
"Your password is * Remember this for later use"
"Your password is Remember this for later use"
"your password is" filetype:log
# -FrontPage-” ext:pwd inurl:(service | authors | administrators | users) “# -FrontPage-” inurl:service.pwd
#mysql dump” filetype:sql
#mysql dump” filetype:sql 21232f297a57a5a743894a0e4a801fc3
( filetype:mail | filetype:eml | filetype:mbox | filetype:mbx ) intext:password|subject
( intitle:"PacketShaper Login")|(intitle:"PacketShaper Customer Login")
("Fiery WebTools" inurl:index2.html) | "WebTools enable * * observe, *, * * * flow * print jobs"
("Indexed.By"|"Monitored.By") hAcxFtpScan
("port_255/home")|(inurl:"home?port=255?)
("powered by nocc" intitle:"NOCC Webmail") -site:sourceforge.net -Zoekinalles.nl -analysis
("Skin Design by Amie of Intense")|("Fanfiction Categories" "Featured Stories")|("default2, 3column, Romance, eFiction")
("This Dragonfly....... installation was" | "Thanks for downloading Dragonfly") -inurl:demo -inurl:cpgnuke.com
((inurl:ifgraph "Page generated at") OR ("This page was built using ifgraph"))
((inurl:ifgraph “Page generated at”) OR (“This page was built using ifgraph”))
(cam1java)|(cam2java)|(cam3java)|(cam4java)|(cam5java)|(cam6java) -navy.mil -backflip -power.ne.jp
(intext:"MOBOTIX M1? | intext:"MOBOTIX M10?) intext:"Open Menu" Shift-Reload
(intitle:"502 Proxy Error")|(intitle:"503 Proxy Error") "The proxy server could not handle the request" -topic -mail -4suite -list -site:geocrawler.co
(intitle:"Flyspray setup"|"powered by flyspray 0.9.7") -flyspray.rocks.cc
(intitle:"metaframe XP Login")|(intitle:"metaframe Presentation server Login")
(intitle:"phpop: login")|(intext:"You have attempted an action that requires you to be authenticated.")|(intitle:"bookmarker: login")
(intitle:"Please login - Forums
(intitle:"Please login – Forums
(intitle:"Please login – Forums powered by UBB.threads")|(inurl:login.php "ubb")
(intitle:"Please login – Forums powered by WWWThreads")|(inurl:"wwwthreads/login.php")|(inurl:"wwwthreads/login.pl?Cat=")
(intitle:"PRTG Traffic Grapher" inurl:"allsensors")|(intitle:"PRTG Traffic Grapher - Monitoring Results")
(intitle:"PRTG Traffic Grapher" inurl:"allsensors")|(intitle:"PRTG Traffic Grapher – Monitoring Results")
(intitle:"rymo Login")|(intext:"Welcome to rymo") -family
(intitle:"rymo Login")|(intext:"Welcome to rymo") -family
(intitle:"SHOUTcast Administrator")|(intext:"U SHOUTcast D.N.A.S. Status")
(intitle:"SilkyMail by Cyrusoft International, Inc
(intitle:"VisionGS Webcam Software")|(intext:"Powered by VisionGS Webcam") -showthread.php -showpost.php -"Search Engine" -computersglobal.com -site:g
(intitle:"WmSC e-Cart Administration")|(intitle:"WebMyStyle e-Cart Administration")
(intitle:"WordPress ……. Setup Configuration File")|(inurl:"setup-config.php?step=")
(intitle:(EyeSpyFX|OptiCamFX) "go to camera")|(inurl:servlet/DetectBrowser)
(intitle:MOBOTIX intitle:PDAS) | (intitle:MOBOTIX intitle:Seiten) | (inurl:/pda/index.html +camera)
(intitle:WebStatistica inurl:main.php) | (intitle:"WebSTATISTICA server") -inurl:statsoft -inurl:statsoftsa -inurl:statsoftinc.com -edu -software -rob
(intitle:WebStatistica inurl:main.php) | (intitle:”WebSTATISTICA server”) -inurl:statsoft -inurl:statsoftsa -inurl:statsoftinc.com -edu -software -rob
(intitle:”Please login – Forums
(intitle:”PRTG Traffic Grapher” inurl:”allsensors”)|(intitle:”PRTG Traffic Grapher – Monitoring Results”)
(intitle:”rymo Login”)|(intext:”Welcome to rymo”) -family
(intitle:”WmSC e-Cart Administration”)|(intitle:”WebMyStyle e-Cart Administration”)
(inurl:"ars/cgi-bin/arweb?O=0" | inurl:arweb.jsp) -site:remedy.com -site:mil
(inurl:"ars/cgi-bin/arweb?O=0? | inurl:arweb.jsp)
(inurl:"ars/cgi-bin/arweb?O=0? | inurl:arweb.jsp) -site:remedy.com -site:mil
(inurl:"ars/cgi-bin/arweb?O=0″ | inurl:arweb.jsp) -site:remedy.com -site:mil
(inurl:"robot.txt" | inurl:"robots.txt" ) intext:disallow filetype:txt
(inurl:/shop.cgi/page=) | (inurl:/shop.pl/page=)
(inurl:81-cobalt | inurl:cgi-bin/.cobalt)
(inurl:81/cgi-bin/.cobalt/) | (intext:"Welcome to the Cobalt RaQ")
(inurl:webArch/mainFrame.cgi ) | (intitle:"web image monitor" -htm -solutions)
(inurl:”ars/cgi-bin/arweb?O=0″ | inurl:arweb.jsp) -site:remedy.com -site:mil
(inurl:”robot.txt” | inurl:”robots.txt” ) intext:disallow filetype:txt
(“Indexed.By”|”Monitored.By”) hAcxFtpScan
********.php?cid=
********.php?id=
********s_in_area.php?area_id=
****.php?cid=
****s_in_area.php?area_id=
***zine/board.php?board=
*.php?catch=
*.php?f=
*.php?go=
*.php?include=
*.php?inf=
*.php?layout=
*.php?load=
*.php?loc=
*.php?locate=
*.php?mode=
*.php?naam=
*.php?name=
*.php?pg=
*.php?place=
*.php?secc=
*.php?sel=
*.php?session=&content=
*/newbb/print.php?forum=*topic_id=*”
*/newbb_plus/*=”
*/news/archive.php?op=*year=*month=*”
*/tsep/include/colorswitch.php?tsep_config[absPath]=*”
*coppercop/theme.php?THEME_DIR=
*default.php?bOdy=
*default.php?body=
*default.php?page=
*inc*.php?addr=
*inc*.php?adresa=
*inc*.php?base_dir=
*inc*.php?body=
*inc*.php?bOdy=
*inc*.php?c=
*inc*.php?category=
*inc*.php?doshow=
*inc*.php?ev=
*inc*.php?get=
*inc*.php?i=
*inc*.php?inc=
*inc*.php?incl=
*inc*.php?include=
*inc*.php?j=
*inc*.php?k=
*inc*.php?ki=
*inc*.php?left=
*inc*.php?link=
*inc*.php?m=
*inc*.php?menu=
*inc*.php?modo=
*inc*.php?open=
*inc*.php?pg=
*inc*.php?rub=
*inc*.php?showpage=
*inc*.php?siv
*inc*.php?sivu=
*inc*.php?start=
*inc*.php?str=
*inc*.php?to=
*inc*.php?type=
*inc*.php?y=
*inc/header.php/step_one.php?server_inc=
*inc/pipe.php?HCL_path=
*include/new-visitor.inc.php?lvc_include_dir=
*include/write.php?dir=
*includes/header.php?systempath=
*index.php?arquivo=
*index.php?url=
*inst/index.php?lng=../../include/main.inc&G_PATH=
*mwchat/libs/start_lobby.php?CONFIG[MWCHAT_Libs]=
*pivot/modules/module_db.php?pivot_path=
*support/mailling/maillist/inc/initdb.php?absolute_path=
*zentrack/index.php?configFile=
*zine/board.php?board=
+ View Webcam User Accessing
+":8080" +":3128" +":80" filetype:txt
+":8080? +":3128? +":80? filetype:txt
+":8080″ +":3128″ +":80″ filetype:txt
+"HSTSNR" -"netop.com"
+"Powered by INDEXU" inurl:(browse|top_rated|power
+"Powered by Invision Power Board v2.0.0..2?
+"Powered by phpBB 2.0.6..10? -phpbb.com -phpbb.pl
+htpasswd +WS_FTP.LOG filetype:log
+intext:"powered by MyBulletinBoard"
+intext:"webalizer" +intext:"Total Usernames" +intext:"Usage Statistics for"
+inurl:"@" filetype:url +inurl:"ftp://"
---Contain Sensitive Data-----------
---LFI DORKS---------------------
-FrontPage-” ext:pwd inurl:(service | authors | administrators | users)
-Login inurl:photopost/uploadphoto.php
-site:php.net -"The PHP Group" inurl:source inurl:url ext:pHp
-site:php.net -"The PHP Group" inurl:source inurl:url ext:pHp
-site:php.net -“The PHP Group” inurl:source inurl:url ext:pHp
.asp?bookID=
.asp?cart=
.asp?cartID=
.asp?catalogid=
.asp?category_list=
.asp?CategoryID=
.asp?catID=
.asp?cid=
.asp?code=
.asp?code_no=
.asp?designer=
.asp?framecode=
.asp?id=
.asp?idcategory=
.asp?idproduct=
.asp?intCatalogID=
.asp?intProdId=
.asp?item=
.asp?item_id=
.asp?itemID=
.asp?maingroup=
.asp?misc=
.asp?newsid=
.asp?order_id=
.asp?p=
.asp?pid=
.asp?ProdID=
.asp?product=
.asp?product_id=
.asp?productid=
.asp?showtopic=
.asp?Sku=
.asp?storeid=
.asp?style_id=
.asp?StyleID=
.asp?userID=
.br/index.php?loc=
.gov.br/index.php?arquivo=
.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=”
.php?a=”
.php?abrir=”
.php?act=”
.php?action=”
.php?ad=”
.php?archive=”
.php?area=”
.php?article=”
.php?b=”
.php?back=”
.php?base=”
.php?basedir=”
.php?bbs=”
.php?board_no=”
.php?bOdy=”
.php?body=”
.php?c=”
.php?cal_dir=”
.php?cat=”
.php?category=”
.php?choice=”
.php?class=”
.php?club_id=”
.php?cod.tipo=”
.php?cod=”
.php?conf=”
.php?configFile=”
.php?cont=”
.php?corpo=”
.php?cvsroot=”
.php?d=”
.php?da=”
.php?date=”
.php?debug=”
.php?debut=”
.php?default=”
.php?destino=”
.php?dir=”
.php?display=”
.php?east=”
.php?f=”
.php?f_content=”
.php?file=”
.php?file_id=”
.php?filepath=”
.php?flash=”
.php?folder=”
.php?for=”
.php?form=”
.php?formatword=”
.php?from=”
.php?funcao=”
.php?function=”
.php?g=”
.php?get=”
.php?go=”
.php?gorumDir=”
.php?goto=”
.php?h=”
.php?headline=”
.php?i=”
.php?inc=”
.php?include=
.php?include=”
.php?includedir=”
.php?inter=”
.php?item_id=”
.php?itemid=”
.php?j=”
.php?join=”
.php?jojo=”
.php?l=”
.php?la=”
.php?lan=”
.php?lang=”
.php?lest=”
.php?link=”
.php?load=”
.php?loc=”
.php?m=”
.php?main=”
.php?meio.php=”
.php?meio=”
.php?menu=”
.php?menuID=”
.php?mep=”
.php?mid=”
.php?month=”
.php?mostra=”
.php?my=”
.php?n=”
.php?name=”
.php?nav=”
.php?new=”
.php?news=”
.php?next=”
.php?nextpage=”
.php?o=”
.php?op=”
.php?open=”
.php?option=”
.php?origem=”
.php?p=”
.php?Page_ID=”
.php?pageurl=”
.php?para=”
.php?part=”
.php?perm=”
.php?pg=”
.php?pid=”
.php?place=”
.php?play=”
.php?plugin=”
.php?pm_path=”
.php?pollname=”
.php?post=”
.php?pr=”
.php?prefix=”
.php?prefixo=”
.php?q=”
.php?redirect=”
.php?ref=”
.php?refid=”
.php?regionId=”
.php?release=”
.php?release_id=”
.php?return=”
.php?root=”
.php?S=”
.php?searchcode_id=”
.php?sec=”
.php?secao=”
.php?sect=”
.php?sel=”
.php?server=”
.php?servico=”
.php?sg=”
.php?shard=”
.php?show=”
.php?sid=”
.php?site=”
.php?sourcedir=”
.php?start=”
.php?storyid=”
.php?str=”
.php?subd=”
.php?subdir=”
.php?subject=”
.php?sufixo=”
.php?systempath=”
.php?t=”
.php?task=”
.php?teste=”
.php?theme_dir=”
.php?thread_id=”
.php?tid=”
.php?title=”
.php?to=”
.php?topic_id=”
.php?type=”
.php?u=”
.php?url=”
.php?urlFrom=”
.php?v=”
.php?var=”
.php?vi=”
.php?view=”
.php?visual=”
.php?wPage=”
.php?y=”
.php?z=”
.php?zo=”
/?p= .php5?id=
/?pag= .php5?id=
/?page= .php5?id=
/?pg= .php5?id=
/_functions.php?prefix=
/access/login.php?path_to_root=
/account.php?action=
/accounts.php?command=
/active/components/xmlrpc/client.php?c[components]=
/addmedia.php?factsfile[$********]=
/addpost_newpoll.php?addpoll=preview&thispath=
/addpost_newpoll.php?addpoll=preview&thispath= /ubbthreads/
/addpost_newpoll.php?addpoll=preview&thispath= /ubbthreads/”
/addpost_newpoll.php?addpoll=preview&thispath= ubbthreads
/addpost_newpoll.php?addpoll=preview&thispath= “/ubbthreads/”
/addpost_newpoll.php?addpoll=preview&thispath= “ubbthreads”
/admin.php?cal_dir=
/admin.php?page=
/admin/auth.php?xcart_dir=
/admin/doeditconfig.php?thispath=../includes&config[path]=
/admin/inc/change_action.php?format_menue=
/admin/include/header.php?repertoire=
/admin/index.php?o= admin/index.php”
/admin/index.php?o= admin/index.php”;
/admin_modules/admin_module_deldir.inc.php?config[path_src_include]=
/admincp/auth/checklogin.php?cfgProgDir=
/administrator/components/com_***ring/admin.***ring.docs.php?component_dir=
/administrator/components/com_a6mambocredits/admin.a6mambocredits.php?mosConfig_live_site=
/administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path=
/administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=
/administrator/components/com_jcs/jcs.function.php?mosConfig_absolute_path=
/administrator/components/com_jcs/view/register.php?mosConfig_absolute_path=
/administrator/components/com_joom12pic/admin.joom12pic.php?mosConfig_live_site=
/administrator/components/com_joomlaradiov5/admin.joomlaradiov5.php?mosConfig_live_site=
/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_ path=
/administrator/components/com_mgm/help.mgm.php?mosConfig_absolute_path=
/administrator/components/com_peoplebook/param.peoplebook.php?mosConfig_absolute_path=
/administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path=
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path=
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path= com_serverstat
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path= “com_serverstat”
/administrator/components/com_serverstat/install.serverstat.php?mosConfig_absolute_path=
/administrator/components/com_uhp/uhp_config.php?mosConfig_absolute_path=
/afb-3-beta-2007-08-28/_includes/settings.inc.php?approot=
/agendax/addevent.inc.php?agendax_path=
/akocomments.php?mosConfig_absolute_path=
/al_initialize.php?alpath=
/album_portal.php?phpbb_root_path=
/all*/newbb/print.php?forum=*topic_id=*
/all*/newbb_plus/*=
/all*/news/archive.php?op=*year=*month=*
/all*/tsep/include/colorswitch.php?tsep_config[absPath]=*
/all.php?****=
/all.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=
/all.php?a=
/all.php?abrir=
/all.php?act=
/all.php?action=
/all.php?ad=
/all.php?archive=
/all.php?area=
/all.php?article=
/all.php?b=
/all.php?back=
/all.php?base=
/all.php?basedir=
/all.php?bbs=
/all.php?board_no=
/all.php?c=
/all.php?cal_dir=
/all.php?cat=
/all.php?category=
/all.php?choice=
/all.php?class=
/all.php?club_id=
/all.php?cod.tipo=
/all.php?cod=
/all.php?conf=
/all.php?configFile=
/all.php?cont=
/all.php?corpo=
/all.php?cvsroot=
/all.php?d=
/all.php?da=
/all.php?date=
/all.php?debug=
/all.php?debut=
/all.php?default=
/all.php?destino=
/all.php?dir=
/all.php?display=
/all.php?east=
/all.php?f=
/all.php?f_content=
/all.php?file=
/all.php?file_id=
/all.php?filepath=
/all.php?flash=
/all.php?folder=
/all.php?for=
/all.php?form=
/all.php?formatword=
/all.php?from=
/all.php?funcao=
/all.php?function=
/all.php?g=
/all.php?get=
/all.php?go=
/all.php?gorumDir=
/all.php?goto=
/all.php?h=
/all.php?headline=
/all.php?i=
/all.php?inc=
/all.php?include=
/all.php?includedir=
/all.php?inter=
/all.php?item_id=
/all.php?itemid=
/all.php?j=
/all.php?join=
/all.php?jojo=
/all.php?l=
/all.php?la=
/all.php?lan=
/all.php?lang=
/all.php?lest=
/all.php?link=
/all.php?load=
/all.php?loc=
/all.php?m=
/all.php?main=
/all.php?meio.php=
/all.php?meio=
/all.php?menu=
/all.php?menuID=
/all.php?mep=
/all.php?mid=
/all.php?month=
/all.php?mostra=
/all.php?my=
/all.php?n=
/all.php?nav=
/all.php?new=
/all.php?news=
/all.php?next=
/all.php?nextpage=
/all.php?o=
/all.php?op=
/all.php?open=
/all.php?option=
/all.php?origem=
/all.php?p=
/all.php?Page_ID=
/all.php?pageurl=
/all.php?para=
/all.php?part=
/all.php?perm=
/all.php?pg=
/all.php?pid=
/all.php?place=
/all.php?play=
/all.php?plugin=
/all.php?pm_path=
/all.php?poll****=
/all.php?post=
/all.php?pr=
/all.php?prefix=
/all.php?prefixo=
/all.php?q=
/all.php?redirect=
/all.php?ref=
/all.php?refid=
/all.php?regionId=
/all.php?release=
/all.php?release_id=
/all.php?return=
/all.php?root=
/all.php?S=
/all.php?searchcode_id=
/all.php?sec=
/all.php?secao=
/all.php?sect=
/all.php?sel=