-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathzips.txt
2894 lines (2894 loc) · 33 KB
/
zips.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
a.zip
aa.zip
aaa.zip
abc.zip
abc123.zip
abcd.zip
abcd1234.zip
about.zip
about-us.zip
about_us.zip
aboutus.zip
abstract.zip
access.zip
access-log.zip
accessories.zip
accommodation.zip
account.zip
actions.zip
activate.zip
active.zip
admin.zip
administr8.zip
administracion.zip
administrador.zip
administrat.zip
administratie.zip
administration.zip
administrator.zip
administratoraccounts.zip
administrators.zip
administrivia.zip
adminlogin.zip
adminlogon.zip
adminpanel.zip
adminpro.zip
admins.zip
comp.zip
compact.zip
companies.zip
company.zip
compare.zip
compare_product.zip
comparison.zip
comparison_list.zip
compat.zip
compiled.zip
complaint.zip
complaints.zip
compliance.zip
component.zip
components.zip
compose.zip
composer.zip
compress.zip
compressed.zip
computer.zip
computers.zip
conditions.zip
conf.zip
conference.zip
conferences.zip
config.zip
config.local.zip
configs.zip
configuration.zip
configure.zip
confirm.zip
confirmed.zip
conlib.zip
conn.zip
connect.zip
connections.zip
connector.zip
connectors.zip
console.zip
constant.zip
constants.zip
consulting.zip
consumer.zip
cont.zip
contact.zip
contact-form.zip
contact-us.zip
contact_bean.zip
contact_us.zip
contactinfo.zip
contacto.zip
contacts.zip
contactus.zip
contao.zip
contato.zip
contenido.zip
content.zip
contents.zip
contest.zip
contests.zip
contract.zip
contracts.zip
contrib.zip
contribute.zip
contributor.zip
control.zip
controller.zip
controllers.zip
controlpanel.zip
controls.zip
converge_local.zip
converse.zip
cookie.zip
cookie_usage.zip
cookies.zip
cool.zip
copies.zip
copy.zip
copyright.zip
copyright-policy.zip
corba.zip
core.zip
coreg.zip
corp.zip
corpo.zip
corporate.zip
corporation.zip
corrections.zip
count.zip
counter.zip
counters.zip
country.zip
counts.zip
coupon.zip
coupons.zip
coupons1.zip
course.zip
courses.zip
cover.zip
covers.zip
cp.zip
cpadmin.zip
cpanel.zip
cpanel_file.zip
cpath.zip
cpp.zip
cps.zip
cpstyles.zip
cr.zip
crack.zip
crash.zip
crashes.zip
create.zip
create_account.zip
createaccount.zip
createbutton.zip
creation.zip
creator.zip
credit.zip
creditcards.zip
credits.zip
crime.zip
crm.zip
crms.zip
cron.zip
cronjobs.zip
crons.zip
crontab.zip
crontabs.zip
crossdomain.zip
crossdomain.xml.zip
crs.zip
crtr.zip
crypt.zip
crypto.zip
cs.zip
cse.zip
csproj.zip
css.zip
csv.zip
ct.zip
ctl.zip
culture.zip
currency.zip
current.zip
custom.zip
custom-log.zip
custom_log.zip
customavatars.zip
customcode.zip
customer.zip
customer_login.zip
customers.zip
customgroupicons.zip
customize.zip
cute.zip
cutesoft_client.zip
cv.zip
cvs.zip
cxf.zip
cy.zip
cyberworld.zip
cycle_image.zip
cz.zip
czcmdcvt.zip
d.zip
da.zip
daemon.zip
daily.zip
dan.zip
dana-na.zip
dark.zip
dashboard.zip
dat.zip
data.zip
database.zip
database_administration.zip
databases.zip
datafiles.zip
datas.zip
date.zip
daten.zip
datenschutz.zip
dating.zip
dav.zip
day.zip
db.zip
db_connect.zip
dba.zip
dbadmin.zip
dbase.zip
dbboon.zip
dbg.zip
dbi.zip
dblclk.zip
dbm.zip
dbman.zip
dbmodules.zip
dbms.zip
dbutil.zip
dc.zip
dcforum.zip
dclk.zip
de.zip
de_DE.zip
deal.zip
dealer.zip
dealers.zip
deals.zip
debian.zip
debug.zip
dec.zip
decl.zip
declaration.zip
declarations.zip
decode.zip
decoder.zip
decrypt.zip
decrypted.zip
decryption.zip
def.zip
default.zip
default_icon.zip
default_image.zip
default_logo.zip
default_page.zip
default_pages.zip
defaults.zip
definition.zip
definitions.zip
del.zip
delete.zip
deleted.zip
deleteme.zip
deletion.zip
delicious.zip
demo.zip
demo2.zip
demos.zip
denied.zip
deny.zip
departments.zip
deploy.zip
deployment.zip
descargas.zip
design.zip
designs.zip
desktop.zip
desktopmodules.zip
desktops.zip
destinations.zip
detail.zip
details.zip
deutsch.zip
dev.zip
dev2.zip
dev60cgi.zip
devel.zip
develop.zip
developement.zip
developer.zip
developers.zip
development.zip
development.log.zip
device.zip
devices.zip
devs.zip
devtools.zip
df.zip
dh_.zip
dh_phpmyadmin.zip
di.zip
diag.zip
diagnostics.zip
dial.zip
dialog.zip
dialogs.zip
diary.zip
dictionary.zip
diff.zip
diffs.zip
dig.zip
digest.zip
digg.zip
digital.zip
dir.zip
dir-login.zip
dir-prop-base.zip
dirbmark.zip
direct.zip
directadmin.zip
directions.zip
directories.zip
directorio.zip
directory.zip
dirs.zip
disabled.zip
disallow.zip
disclaimer.zip
disclosure.zip
discootra.zip
discount.zip
discovery.zip
discus.zip
discuss.zip
discussion.zip
disdls.zip
disk.zip
dispatch.zip
dispatcher.zip
display.zip
display_vvcodes.zip
dist.zip
divider.zip
django.zip
dk.zip
dl.zip
dll.zip
dm.zip
dm-config.zip
dmdocuments.zip
dms.zip
dms0.zip
dns.zip
do.zip
doc.zip
docebo.zip
docedit.zip
dock.zip
docroot.zip
docs.zip
docs41.zip
docs51.zip
document.zip
document_library.zip
documentation.zip
documents.zip
doinfo.zip
dokuwiki.zip
domain.zip
domains.zip
donate.zip
donations.zip
done.zip
dot.zip
doubleclick.zip
down.zip
download.zip
download_private.zip
downloader.zip
downloads.zip
downsys.zip
draft.zip
drafts.zip
dragon.zip
draver.zip
driver.zip
drivers.zip
drop.zip
dropped.zip
drupal.zip
ds.zip
dummy.zip
dump.zip
dumpenv.zip
dumps.zip
dumpuser.zip
dvd.zip
dwr.zip
dyn.zip
dynamic.zip
dyop_addtocart.zip
dyop_delete.zip
dyop_quan.zip
e.zip
e-mail.zip
e-store.zip
e107_admin.zip
e107_files.zip
e107_handlers.zip
e2fs.zip
ear.zip
easy.zip
ebay.zip
eblast.zip
ebook.zip
ebooks.zip
ebriefs.zip
ec.zip
ecard.zip
ecards.zip
echannel.zip
ecommerce.zip
ecrire.zip
edge.zip
edgy.zip
edit.zip
edit_link.zip
edit_profile.zip
editaddress.zip
editor.zip
editorial.zip
editorials.zip
editors.zip
editpost.zip
edits.zip
edp.zip
edu.zip
education.zip
ee.zip
effort.zip
efforts.zip
egress.zip
ehdaa.zip
ejb.zip
el.zip
electronics.zip
element.zip
elements.zip
elmar.zip
em.zip
email.zip
email-a-friend.zip
email-addresses.zip
emailafriend.zip
emailer.zip
emailhandler.zip
emailing.zip
emailproduct.zip
emails.zip
emailsignup.zip
emailtemplates.zip
embed.zip
embedd.zip
embedded.zip
emea.zip
emergency.zip
emoticons.zip
employee.zip
employees.zip
employers.zip
employment.zip
empty.zip
emu.zip
emulator.zip
en.zip
en_US.zip
en_us.zip
enable-cookies.zip
enc.zip
encode.zip
encoder.zip
encrypt.zip
encrypted.zip
encryption.zip
encyption.zip
end.zip
enduser.zip
endusers.zip
energy.zip
enews.zip
eng.zip
engine.zip
engines.zip
english.zip
enterprise.zip
entertainment.zip
entries.zip
entropybanner.zip
entry.zip
env.zip
environ.zip
environment.zip
ep.zip
eproducts.zip
equipment.zip
eric.zip
err.zip
erraddsave.zip
errata.zip
error.zip
error-espanol.zip
error-log.zip
error404.zip
error_docs.zip
error_log.zip
error_message.zip
error_pages.zip
errordocs.zip
errorpage.zip
errorpages.zip
errors.zip
erros.zip
es.zip
es_ES.zip
esale.zip
esales.zip
eshop.zip
esp.zip
espanol.zip
established.zip
estilos.zip
estore.zip
esupport.zip
et.zip
etc.zip
ethics.zip
eu.zip
europe.zip
evb.zip
event.zip
events.zip
evil.zip
evt.zip
ewebeditor.zip
ews.zip
ex.zip
example.zip
examples.zip
excalibur.zip
excel.zip
exception_log.zip
exch.zip
exchange.zip
exchweb.zip
exclude.zip
exe.zip
exec.zip
executable.zip
executables.zip
exiar.zip
exit.zip
expert.zip
experts.zip
exploits.zip
explore.zip
explorer.zip
export.zip
exports.zip
ext.zip
ext2.zip
extension.zip
extensions.zip
extern.zip
external.zip
externalid.zip
externalisation.zip
externalization.zip
extra.zip
extranet.zip
extras.zip
ezshopper.zip
ezsqliteadmin.zip
f.zip
fa.zip
fabric.zip
face.zip
facebook.zip
faces.zip
facts.zip
faculty.zip
fail.zip
failed.zip
failure.zip
fake.zip
family.zip
fancybox.zip
faq.zip
faqs.zip
fashion.zip
favicon.ico.zip
favorite.zip
favorites.zip
fb.zip
fbook.zip
fc.zip
fcategory.zip
fcgi.zip
fcgi-bin.zip
fck.zip
fckeditor.zip
fdcp.zip
feature.zip
featured.zip
features.zip
fedora.zip
feed.zip
feedback.zip
feedback_js.zip
feeds.zip
felix.zip
fetch.zip
fi.zip
field.zip
fields.zip
file.zip
fileadmin.zip
filelist.zip
filemanager.zip
files.zip
fileupload.zip
fileuploads.zip
filez.zip
film.zip
films.zip
filter.zip
finance.zip
financial.zip
find.zip
finger.zip
finishorder.zip
firefox.zip
firewall.zip
firewalls.zip
firmconnect.zip
firms.zip
firmware.zip
first.zip
fixed.zip
fk.zip
fla.zip
flag.zip
flags.zip
flash.zip
flash-intro.zip
flex.zip
flights.zip
flow.zip
flowplayer.zip
flows.zip
flv.zip
flvideo.zip
flyspray.zip
fm.zip
fn.zip
focus.zip
foia.zip
folder.zip
folder_new.zip
folders.zip
font.zip
fonts.zip
foo.zip
food.zip
football.zip
footer.zip
footers.zip
for.zip
forcedownload.zip
forget.zip
forgot.zip
forgot-password.zip
forgot_password.zip
forgotpassword.zip
forgotten.zip
form.zip
format.zip
formatting.zip
formhandler.zip
formmail.zip
forms.zip
forms1.zip
formsend.zip
formslogin.zip
formupdate.zip
foro.zip
foros.zip
forrest.zip
fortune.zip
forum.zip
forum1.zip
forum2.zip
forum_old.zip
forumcp.zip
forumdata.zip
forumdisplay.zip
forums.zip
forward.zip
foto.zip
fotos.zip
foundation.zip
fpdb.zip
fpdf.zip
fr.zip
fr_FR.zip
frame.zip
frames.zip
frameset.zip
framework.zip
francais.zip
france.zip
free.zip
freebsd.zip
freeware.zip
french.zip
friend.zip
friends.zip
frm_attach.zip
frob.zip
from.zip
front.zip
frontend.zip
frontpage.zip
fs.zip
fsck.zip
ftp.zip
fuck.zip
fuckoff.zip
fuckyou.zip
full.zip
fun.zip
func.zip
funcs.zip
function.zip
function.require.zip
functionlude.zip
functions.zip
fund.zip
funding.zip
funds.zip
furl.zip
fusion.zip
future.zip
fw.zip
fwlink.zip
fx.zip
g.zip
ga.zip
gadget.zip
gadgets.zip
gaestebuch.zip
galeria.zip
galerie.zip
galleries.zip
gallery.zip
gallery2.zip
game.zip
gamercard.zip
games.zip
gaming.zip
ganglia.zip
garbage.zip
gate.zip
gateway.zip
gb.zip
gbook.zip
gccallback.zip
gdform.zip
geeklog.zip
gen.zip
general.zip
generateditems.zip
generator.zip
generic.zip
gentoo.zip
geo.zip
geoip.zip
german.zip
geronimo.zip
gest.zip
gestion.zip
gestione.zip
get.zip
get-file.zip
getFile.cfm.zip
get_file.zip
getaccess.zip
getconfig.zip
getfile.zip
getjobid.zip
getout.zip
gettxt.zip
gfen.zip
gfx.zip
gg.zip
gid.zip
gif.zip
gifs.zip
gift.zip
giftcert.zip
giftoptions.zip
giftreg_manage.zip
giftregs.zip
gifts.zip
git.zip
gitweb.zip
gl.zip
glance_config.zip
glimpse.zip
global.zip
global.asa.zip
global.asax.zip
globalnav.zip
globals.zip
globes_admin.zip
glossary.zip
go.zip
goaway.zip
gold.zip
golf.zip
gone.zip
goods.zip
goods_script.zip
google.zip
google_sitemap.zip
googlebot.zip
goto.zip
government.zip
gp.zip
gpapp.zip
gpl.zip
gprs.zip
gps.zip
gr.zip
gracias.zip
grafik.zip
grant.zip
granted.zip
grants.zip
graph.zip
graphics.zip
green.zip
greybox.zip
grid.zip
group.zip
group_inlinemod.zip
groupcp.zip
groups.zip
groupware.zip
gs.zip
gsm.zip
guess.zip
guest.zip
guest-tracking.zip
guestbook.zip
guests.zip
gui.zip
guide.zip
guidelines.zip
guides.zip
gump.zip
gv_faq.zip
gv_redeem.zip
gv_send.zip
gwt.zip
gz.zip
h.zip
hack.zip
hacker.zip
hacking.zip
hackme.zip
hadoop.zip
handle.zip
handler.zip
handlers.zip
handles.zip
happen.zip
happening.zip
hard.zip
hardcore.zip
hardware.zip
harm.zip
harming.zip
harmony.zip
head.zip
header.zip
header_logo.zip
headers.zip
headlines.zip
health.zip
healthcare.zip
hello.zip
helloworld.zip
help.zip
help_answer.zip
helpdesk.zip
helper.zip
helpers.zip
hi.zip
hidden.zip
hide.zip
high.zip
highslide.zip
hilfe.zip
hipaa.zip
hire.zip
history.zip
hit.zip
hitcount.zip
hits.zip
hold.zip
hole.zip
holiday.zip
holidays.zip
home.zip
homepage.zip
hop.zip
horde.zip
host.zip
host-manager.zip
hosted.zip
hosting.zip
hosts.zip
hotel.zip
hotels.zip
hour.zip
hourly.zip
house.zip
how.zip
howto.zip
hp.zip
hpwebjetadmin.zip
hr.zip
ht.zip
hta.zip
htbin.zip
htdig.zip
htdoc.zip
htdocs.zip
htm.zip
html.zip
htmlarea.zip
htmls.zip
htpasswd.zip
http.zip
httpd.zip
httpdocs.zip
httpmodules.zip
https.zip
httpuser.zip
hu.zip
human.zip
humans.zip
humor.zip
hyper.zip
i.zip
ia.zip
ibm.zip
icat.zip
ico.zip
icon.zip
icons.zip
icq.zip
id.zip
id_rsa.zip
id_rsa.pub.zip
idbc.zip
idea.zip
ideas.zip
identity.zip
idp.zip
ids.zip
ie.zip
if.zip
iframe.zip
iframes.zip
ig.zip
ignore.zip
ignoring.zip
iis.zip
iisadmin.zip
iisadmpwd.zip
iissamples.zip
im.zip