txt2stix 0.0.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. txt2stix/__init__.py +33 -0
  2. txt2stix/ai_extractor/__init__.py +15 -0
  3. txt2stix/ai_extractor/anthropic.py +12 -0
  4. txt2stix/ai_extractor/base.py +87 -0
  5. txt2stix/ai_extractor/deepseek.py +19 -0
  6. txt2stix/ai_extractor/gemini.py +18 -0
  7. txt2stix/ai_extractor/openai.py +15 -0
  8. txt2stix/ai_extractor/openrouter.py +20 -0
  9. txt2stix/ai_extractor/prompts.py +164 -0
  10. txt2stix/ai_extractor/utils.py +85 -0
  11. txt2stix/attack_flow.py +101 -0
  12. txt2stix/bundler.py +428 -0
  13. txt2stix/common.py +23 -0
  14. txt2stix/extractions.py +59 -0
  15. txt2stix/includes/__init__.py +0 -0
  16. txt2stix/includes/extractions/ai/config.yaml +1023 -0
  17. txt2stix/includes/extractions/lookup/config.yaml +393 -0
  18. txt2stix/includes/extractions/pattern/config.yaml +609 -0
  19. txt2stix/includes/helpers/mimetype_filename_extension_list.csv +936 -0
  20. txt2stix/includes/helpers/stix_relationship_types.txt +41 -0
  21. txt2stix/includes/helpers/tlds.txt +1446 -0
  22. txt2stix/includes/helpers/windows_registry_key_prefix.txt +12 -0
  23. txt2stix/includes/lookups/_README.md +11 -0
  24. txt2stix/includes/lookups/_generate_lookups.py +247 -0
  25. txt2stix/includes/lookups/attack_pattern.txt +1 -0
  26. txt2stix/includes/lookups/campaign.txt +1 -0
  27. txt2stix/includes/lookups/country_iso3166_alpha2.txt +249 -0
  28. txt2stix/includes/lookups/course_of_action.txt +1 -0
  29. txt2stix/includes/lookups/disarm_id_v1_5.txt +345 -0
  30. txt2stix/includes/lookups/disarm_name_v1_5.txt +347 -0
  31. txt2stix/includes/lookups/extensions.txt +78 -0
  32. txt2stix/includes/lookups/identity.txt +1 -0
  33. txt2stix/includes/lookups/infrastructure.txt +1 -0
  34. txt2stix/includes/lookups/intrusion_set.txt +1 -0
  35. txt2stix/includes/lookups/malware.txt +2 -0
  36. txt2stix/includes/lookups/mitre_atlas_id_v4_5_2.txt +116 -0
  37. txt2stix/includes/lookups/mitre_atlas_name_v4_5_2.txt +117 -0
  38. txt2stix/includes/lookups/mitre_attack_enterprise_aliases_v16_0.txt +1502 -0
  39. txt2stix/includes/lookups/mitre_attack_enterprise_id_v16_0.txt +1656 -0
  40. txt2stix/includes/lookups/mitre_attack_enterprise_name_v16_0.txt +1765 -0
  41. txt2stix/includes/lookups/mitre_attack_ics_aliases_v16_0.txt +141 -0
  42. txt2stix/includes/lookups/mitre_attack_ics_id_v16_0.txt +254 -0
  43. txt2stix/includes/lookups/mitre_attack_ics_name_v16_0.txt +293 -0
  44. txt2stix/includes/lookups/mitre_attack_mobile_aliases_v16_0.txt +159 -0
  45. txt2stix/includes/lookups/mitre_attack_mobile_id_v16_0.txt +277 -0
  46. txt2stix/includes/lookups/mitre_attack_mobile_name_v16_0.txt +296 -0
  47. txt2stix/includes/lookups/mitre_capec_id_v3_9.txt +559 -0
  48. txt2stix/includes/lookups/mitre_capec_name_v3_9.txt +560 -0
  49. txt2stix/includes/lookups/mitre_cwe_id_v4_15.txt +939 -0
  50. txt2stix/includes/lookups/mitre_cwe_name_v4_15.txt +939 -0
  51. txt2stix/includes/lookups/threat_actor.txt +1 -0
  52. txt2stix/includes/lookups/tld.txt +1422 -0
  53. txt2stix/includes/lookups/tool.txt +1 -0
  54. txt2stix/includes/tests/test_cases.yaml +695 -0
  55. txt2stix/indicator.py +860 -0
  56. txt2stix/lookups.py +68 -0
  57. txt2stix/pattern/__init__.py +13 -0
  58. txt2stix/pattern/extractors/__init__.py +0 -0
  59. txt2stix/pattern/extractors/base_extractor.py +167 -0
  60. txt2stix/pattern/extractors/card/README.md +34 -0
  61. txt2stix/pattern/extractors/card/__init__.py +15 -0
  62. txt2stix/pattern/extractors/card/amex_card_extractor.py +52 -0
  63. txt2stix/pattern/extractors/card/diners_card_extractor.py +47 -0
  64. txt2stix/pattern/extractors/card/discover_card_extractor.py +48 -0
  65. txt2stix/pattern/extractors/card/jcb_card_extractor.py +43 -0
  66. txt2stix/pattern/extractors/card/master_card_extractor.py +63 -0
  67. txt2stix/pattern/extractors/card/union_card_extractor.py +38 -0
  68. txt2stix/pattern/extractors/card/visa_card_extractor.py +46 -0
  69. txt2stix/pattern/extractors/crypto/__init__.py +3 -0
  70. txt2stix/pattern/extractors/crypto/btc_extractor.py +38 -0
  71. txt2stix/pattern/extractors/directory/__init__.py +10 -0
  72. txt2stix/pattern/extractors/directory/unix_directory_extractor.py +40 -0
  73. txt2stix/pattern/extractors/directory/unix_file_path_extractor.py +42 -0
  74. txt2stix/pattern/extractors/directory/windows_directory_path_extractor.py +47 -0
  75. txt2stix/pattern/extractors/directory/windows_file_path_extractor.py +42 -0
  76. txt2stix/pattern/extractors/domain/__init__.py +8 -0
  77. txt2stix/pattern/extractors/domain/domain_extractor.py +39 -0
  78. txt2stix/pattern/extractors/domain/hostname_extractor.py +36 -0
  79. txt2stix/pattern/extractors/domain/sub_domain_extractor.py +49 -0
  80. txt2stix/pattern/extractors/hashes/__init__.py +16 -0
  81. txt2stix/pattern/extractors/hashes/md5_extractor.py +16 -0
  82. txt2stix/pattern/extractors/hashes/sha1_extractor.py +14 -0
  83. txt2stix/pattern/extractors/hashes/sha224_extractor.py +18 -0
  84. txt2stix/pattern/extractors/hashes/sha2_256_exactor.py +14 -0
  85. txt2stix/pattern/extractors/hashes/sha2_512_exactor.py +13 -0
  86. txt2stix/pattern/extractors/hashes/sha3_256_exactor.py +15 -0
  87. txt2stix/pattern/extractors/hashes/sha3_512_exactor.py +16 -0
  88. txt2stix/pattern/extractors/helper.py +64 -0
  89. txt2stix/pattern/extractors/ip/__init__.py +14 -0
  90. txt2stix/pattern/extractors/ip/ipv4_cidr_extractor.py +49 -0
  91. txt2stix/pattern/extractors/ip/ipv4_extractor.py +18 -0
  92. txt2stix/pattern/extractors/ip/ipv4_port_extractor.py +42 -0
  93. txt2stix/pattern/extractors/ip/ipv6_cidr_extractor.py +18 -0
  94. txt2stix/pattern/extractors/ip/ipv6_extractor.py +16 -0
  95. txt2stix/pattern/extractors/ip/ipv6_port_extractor.py +46 -0
  96. txt2stix/pattern/extractors/others/__init__.py +22 -0
  97. txt2stix/pattern/extractors/others/asn_extractor.py +14 -0
  98. txt2stix/pattern/extractors/others/cpe_extractor.py +29 -0
  99. txt2stix/pattern/extractors/others/cve_extractor.py +14 -0
  100. txt2stix/pattern/extractors/others/email_extractor.py +21 -0
  101. txt2stix/pattern/extractors/others/filename_extractor.py +17 -0
  102. txt2stix/pattern/extractors/others/iban_extractor.py +15 -0
  103. txt2stix/pattern/extractors/others/mac_address_extractor.py +13 -0
  104. txt2stix/pattern/extractors/others/phonenumber_extractor.py +41 -0
  105. txt2stix/pattern/extractors/others/user_agent_extractor.py +20 -0
  106. txt2stix/pattern/extractors/others/windows_registry_key_extractor.py +18 -0
  107. txt2stix/pattern/extractors/url/__init__.py +7 -0
  108. txt2stix/pattern/extractors/url/url_extractor.py +22 -0
  109. txt2stix/pattern/extractors/url/url_file_extractor.py +21 -0
  110. txt2stix/pattern/extractors/url/url_path_extractor.py +74 -0
  111. txt2stix/retriever.py +126 -0
  112. txt2stix/stix.py +1 -0
  113. txt2stix/txt2stix.py +336 -0
  114. txt2stix/utils.py +86 -0
  115. txt2stix-0.0.4.dist-info/METADATA +190 -0
  116. txt2stix-0.0.4.dist-info/RECORD +119 -0
  117. txt2stix-0.0.4.dist-info/WHEEL +4 -0
  118. txt2stix-0.0.4.dist-info/entry_points.txt +2 -0
  119. txt2stix-0.0.4.dist-info/licenses/LICENSE +202 -0
@@ -0,0 +1,1422 @@
1
+ aaa
2
+ aarp
3
+ abarth
4
+ abb
5
+ abbott
6
+ abbvie
7
+ abc
8
+ able
9
+ abogado
10
+ abudhabi
11
+ ac
12
+ academy
13
+ accenture
14
+ accountant
15
+ accountants
16
+ aco
17
+ active
18
+ actor
19
+ ad
20
+ adac
21
+ ads
22
+ adult
23
+ ae
24
+ aeg
25
+ aero
26
+ aetna
27
+ af
28
+ afamilycompany
29
+ afl
30
+ africa
31
+ ag
32
+ agakhan
33
+ agency
34
+ ai
35
+ aig
36
+ aigo
37
+ airbus
38
+ airforce
39
+ airtel
40
+ akdn
41
+ al
42
+ alfaromeo
43
+ alibaba
44
+ alipay
45
+ allfinanz
46
+ allstate
47
+ ally
48
+ alsace
49
+ alstom
50
+ am
51
+ amazon
52
+ americanexpress
53
+ americanfamily
54
+ amex
55
+ amfam
56
+ amica
57
+ amsterdam
58
+ an
59
+ analytics
60
+ android
61
+ anquan
62
+ anz
63
+ ao
64
+ aol
65
+ apartments
66
+ app
67
+ apple
68
+ aq
69
+ aquarelle
70
+ ar
71
+ arab
72
+ aramco
73
+ archi
74
+ army
75
+ arpa
76
+ art
77
+ arte
78
+ as
79
+ asda
80
+ asia
81
+ associates
82
+ at
83
+ athleta
84
+ attorney
85
+ au
86
+ auction
87
+ audi
88
+ audible
89
+ audio
90
+ auspost
91
+ author
92
+ auto
93
+ autos
94
+ avianca
95
+ aw
96
+ aws
97
+ ax
98
+ axa
99
+ az
100
+ azure
101
+ ba
102
+ baby
103
+ baidu
104
+ banamex
105
+ bananarepublic
106
+ band
107
+ bank
108
+ bar
109
+ barcelona
110
+ barclaycard
111
+ barclays
112
+ barefoot
113
+ bargains
114
+ baseball
115
+ basketball
116
+ bauhaus
117
+ bayern
118
+ bb
119
+ bbc
120
+ bbt
121
+ bbva
122
+ bcg
123
+ bcn
124
+ bd
125
+ be
126
+ beats
127
+ beauty
128
+ beer
129
+ bentley
130
+ berlin
131
+ best
132
+ bestbuy
133
+ bet
134
+ bf
135
+ bg
136
+ bh
137
+ bharti
138
+ bi
139
+ bible
140
+ bid
141
+ bike
142
+ bing
143
+ bingo
144
+ bio
145
+ biz
146
+ bj
147
+ bl
148
+ black
149
+ blackfriday
150
+ blanco
151
+ blockbuster
152
+ blog
153
+ bloomberg
154
+ blue
155
+ bm
156
+ bms
157
+ bmw
158
+ bn
159
+ bnl
160
+ bnpparibas
161
+ bo
162
+ boats
163
+ boehringer
164
+ bofa
165
+ bom
166
+ bond
167
+ boo
168
+ book
169
+ booking
170
+ boots
171
+ bosch
172
+ bostik
173
+ boston
174
+ bot
175
+ boutique
176
+ box
177
+ bq
178
+ br
179
+ bradesco
180
+ bridgestone
181
+ broadway
182
+ broker
183
+ brother
184
+ brussels
185
+ bs
186
+ bt
187
+ budapest
188
+ bugatti
189
+ build
190
+ builders
191
+ business
192
+ buy
193
+ buzz
194
+ bv
195
+ bw
196
+ by
197
+ bz
198
+ bzh
199
+ ca
200
+ cab
201
+ cafe
202
+ cal
203
+ call
204
+ calvinklein
205
+ cam
206
+ camera
207
+ camp
208
+ cancerresearch
209
+ canon
210
+ capetown
211
+ capital
212
+ capitalone
213
+ car
214
+ caravan
215
+ cards
216
+ care
217
+ career
218
+ careers
219
+ cars
220
+ cartier
221
+ casa
222
+ case
223
+ caseih
224
+ cash
225
+ casino
226
+ cat
227
+ catering
228
+ catholic
229
+ cba
230
+ cbn
231
+ cbre
232
+ cbs
233
+ cc
234
+ cd
235
+ ceb
236
+ center
237
+ ceo
238
+ cern
239
+ cf
240
+ cfa
241
+ cfd
242
+ cg
243
+ ch
244
+ chanel
245
+ channel
246
+ charity
247
+ chase
248
+ chat
249
+ cheap
250
+ chintai
251
+ chloe
252
+ christmas
253
+ chrome
254
+ chrysler
255
+ church
256
+ ci
257
+ cipriani
258
+ circle
259
+ cisco
260
+ citadel
261
+ citi
262
+ citic
263
+ city
264
+ cityeats
265
+ ck
266
+ cl
267
+ claims
268
+ cleaning
269
+ click
270
+ clinic
271
+ clinique
272
+ clothing
273
+ cloud
274
+ club
275
+ clubmed
276
+ cm
277
+ cn
278
+ co
279
+ coach
280
+ codes
281
+ coffee
282
+ college
283
+ cologne
284
+ com
285
+ comcast
286
+ commbank
287
+ community
288
+ company
289
+ compare
290
+ computer
291
+ comsec
292
+ condos
293
+ construction
294
+ consulting
295
+ contact
296
+ contractors
297
+ cooking
298
+ cookingchannel
299
+ cool
300
+ coop
301
+ corsica
302
+ country
303
+ coupon
304
+ coupons
305
+ courses
306
+ cpa
307
+ cr
308
+ credit
309
+ creditcard
310
+ creditunion
311
+ cricket
312
+ crown
313
+ crs
314
+ cruise
315
+ cruises
316
+ csc
317
+ cu
318
+ cuisinella
319
+ cv
320
+ cw
321
+ cx
322
+ cy
323
+ cymru
324
+ cyou
325
+ cz
326
+ dabur
327
+ dad
328
+ dance
329
+ data
330
+ date
331
+ dating
332
+ datsun
333
+ day
334
+ dclk
335
+ dds
336
+ de
337
+ deal
338
+ dealer
339
+ deals
340
+ degree
341
+ delivery
342
+ dell
343
+ deloitte
344
+ delta
345
+ democrat
346
+ dental
347
+ dentist
348
+ desi
349
+ design
350
+ dev
351
+ dhl
352
+ diamonds
353
+ diet
354
+ digital
355
+ direct
356
+ directory
357
+ discount
358
+ discover
359
+ dish
360
+ diy
361
+ dj
362
+ dk
363
+ dm
364
+ dnp
365
+ do
366
+ docs
367
+ doctor
368
+ dodge
369
+ dog
370
+ doha
371
+ domains
372
+ doosan
373
+ dot
374
+ download
375
+ drive
376
+ dtv
377
+ dubai
378
+ duck
379
+ dunlop
380
+ duns
381
+ dupont
382
+ durban
383
+ dvag
384
+ dvr
385
+ dz
386
+ earth
387
+ eat
388
+ ec
389
+ eco
390
+ edeka
391
+ edu
392
+ education
393
+ ee
394
+ eg
395
+ eh
396
+ email
397
+ emerck
398
+ energy
399
+ engineer
400
+ engineering
401
+ enterprises
402
+ epost
403
+ epson
404
+ equipment
405
+ er
406
+ ericsson
407
+ erni
408
+ es
409
+ esq
410
+ estate
411
+ esurance
412
+ et
413
+ etisalat
414
+ eu
415
+ eurovision
416
+ eus
417
+ events
418
+ everbank
419
+ exchange
420
+ expert
421
+ exposed
422
+ express
423
+ extraspace
424
+ fage
425
+ fail
426
+ fairwinds
427
+ faith
428
+ family
429
+ fan
430
+ fans
431
+ farm
432
+ farmers
433
+ fashion
434
+ fast
435
+ fedex
436
+ feedback
437
+ ferrari
438
+ ferrero
439
+ fi
440
+ fiat
441
+ fidelity
442
+ fido
443
+ film
444
+ final
445
+ finance
446
+ financial
447
+ fire
448
+ firestone
449
+ firmdale
450
+ fish
451
+ fishing
452
+ fit
453
+ fitness
454
+ fj
455
+ fk
456
+ flickr
457
+ flights
458
+ flir
459
+ florist
460
+ flowers
461
+ flsmidth
462
+ fly
463
+ fm
464
+ fo
465
+ foo
466
+ food
467
+ foodnetwork
468
+ football
469
+ ford
470
+ forex
471
+ forsale
472
+ forum
473
+ foundation
474
+ fox
475
+ fr
476
+ free
477
+ fresenius
478
+ frl
479
+ frogans
480
+ frontdoor
481
+ frontier
482
+ ftr
483
+ fujitsu
484
+ fujixerox
485
+ fun
486
+ fund
487
+ furniture
488
+ futbol
489
+ fyi
490
+ ga
491
+ gal
492
+ gallery
493
+ gallo
494
+ gallup
495
+ game
496
+ games
497
+ gap
498
+ garden
499
+ gay
500
+ gb
501
+ gbiz
502
+ gd
503
+ gdn
504
+ ge
505
+ gea
506
+ gent
507
+ genting
508
+ george
509
+ gf
510
+ gg
511
+ ggee
512
+ gh
513
+ gi
514
+ gift
515
+ gifts
516
+ gives
517
+ giving
518
+ gl
519
+ glade
520
+ glass
521
+ gle
522
+ global
523
+ globo
524
+ gm
525
+ gmail
526
+ gmbh
527
+ gmo
528
+ gmx
529
+ gn
530
+ godaddy
531
+ gold
532
+ goldpoint
533
+ golf
534
+ goo
535
+ goodhands
536
+ goodyear
537
+ goog
538
+ google
539
+ gop
540
+ got
541
+ gov
542
+ gp
543
+ gq
544
+ gr
545
+ grainger
546
+ graphics
547
+ gratis
548
+ green
549
+ gripe
550
+ grocery
551
+ group
552
+ gs
553
+ gt
554
+ gu
555
+ guardian
556
+ gucci
557
+ guge
558
+ guide
559
+ guitars
560
+ guru
561
+ gw
562
+ gy
563
+ hair
564
+ hamburg
565
+ hangout
566
+ haus
567
+ hbo
568
+ hdfc
569
+ hdfcbank
570
+ health
571
+ healthcare
572
+ help
573
+ helsinki
574
+ here
575
+ hermes
576
+ hgtv
577
+ hiphop
578
+ hisamitsu
579
+ hitachi
580
+ hiv
581
+ hk
582
+ hkt
583
+ hm
584
+ hn
585
+ hockey
586
+ holdings
587
+ holiday
588
+ homedepot
589
+ homegoods
590
+ homes
591
+ homesense
592
+ honda
593
+ honeywell
594
+ horse
595
+ hospital
596
+ host
597
+ hosting
598
+ hot
599
+ hoteles
600
+ hotels
601
+ hotmail
602
+ house
603
+ how
604
+ hr
605
+ hsbc
606
+ ht
607
+ htc
608
+ hu
609
+ hughes
610
+ hyatt
611
+ hyundai
612
+ ibm
613
+ icbc
614
+ ice
615
+ icu
616
+ id
617
+ ie
618
+ ieee
619
+ ifm
620
+ iinet
621
+ ikano
622
+ il
623
+ im
624
+ imamat
625
+ imdb
626
+ immo
627
+ immobilien
628
+ in
629
+ inc
630
+ industries
631
+ infiniti
632
+ info
633
+ ing
634
+ ink
635
+ institute
636
+ insurance
637
+ insure
638
+ int
639
+ intel
640
+ international
641
+ intuit
642
+ investments
643
+ io
644
+ ipiranga
645
+ iq
646
+ ir
647
+ irish
648
+ is
649
+ iselect
650
+ ismaili
651
+ ist
652
+ istanbul
653
+ it
654
+ itau
655
+ itv
656
+ iveco
657
+ iwc
658
+ jaguar
659
+ java
660
+ jcb
661
+ jcp
662
+ je
663
+ jeep
664
+ jetzt
665
+ jewelry
666
+ jio
667
+ jlc
668
+ jll
669
+ jm
670
+ jmp
671
+ jnj
672
+ jo
673
+ jobs
674
+ joburg
675
+ jot
676
+ joy
677
+ jp
678
+ jpmorgan
679
+ jprs
680
+ juegos
681
+ juniper
682
+ kaufen
683
+ kddi
684
+ ke
685
+ kerryhotels
686
+ kerrylogistics
687
+ kerryproperties
688
+ kfh
689
+ kg
690
+ kh
691
+ ki
692
+ kia
693
+ kids
694
+ kim
695
+ kinder
696
+ kindle
697
+ kitchen
698
+ kiwi
699
+ km
700
+ kn
701
+ koeln
702
+ komatsu
703
+ kosher
704
+ kp
705
+ kpmg
706
+ kpn
707
+ kr
708
+ krd
709
+ kred
710
+ kuokgroup
711
+ kw
712
+ ky
713
+ kyoto
714
+ kz
715
+ la
716
+ lacaixa
717
+ ladbrokes
718
+ lamborghini
719
+ lamer
720
+ lancaster
721
+ lancia
722
+ lancome
723
+ land
724
+ landrover
725
+ lanxess
726
+ lasalle
727
+ lat
728
+ latino
729
+ latrobe
730
+ law
731
+ lawyer
732
+ lb
733
+ lc
734
+ lds
735
+ lease
736
+ leclerc
737
+ lefrak
738
+ legal
739
+ lego
740
+ lexus
741
+ lgbt
742
+ li
743
+ liaison
744
+ lidl
745
+ life
746
+ lifeinsurance
747
+ lifestyle
748
+ lighting
749
+ like
750
+ lilly
751
+ limited
752
+ limo
753
+ lincoln
754
+ linde
755
+ link
756
+ lipsy
757
+ live
758
+ living
759
+ lixil
760
+ lk
761
+ llc
762
+ llp
763
+ loan
764
+ loans
765
+ locker
766
+ locus
767
+ loft
768
+ lol
769
+ london
770
+ lotte
771
+ lotto
772
+ love
773
+ lpl
774
+ lplfinancial
775
+ lr
776
+ ls
777
+ lt
778
+ ltd
779
+ ltda
780
+ lu
781
+ lundbeck
782
+ lupin
783
+ luxe
784
+ luxury
785
+ lv
786
+ ly
787
+ ma
788
+ macys
789
+ madrid
790
+ maif
791
+ maison
792
+ makeup
793
+ man
794
+ management
795
+ mango
796
+ map
797
+ market
798
+ marketing
799
+ markets
800
+ marriott
801
+ marshalls
802
+ maserati
803
+ mattel
804
+ mba
805
+ mc
806
+ mcd
807
+ mcdonalds
808
+ mckinsey
809
+ md
810
+ me
811
+ med
812
+ media
813
+ meet
814
+ melbourne
815
+ meme
816
+ memorial
817
+ men
818
+ menu
819
+ meo
820
+ merckmsd
821
+ metlife
822
+ mf
823
+ mg
824
+ mh
825
+ miami
826
+ microsoft
827
+ mil
828
+ mini
829
+ mint
830
+ mit
831
+ mitsubishi
832
+ mk
833
+ ml
834
+ mlb
835
+ mls
836
+ mm
837
+ mma
838
+ mn
839
+ mo
840
+ mobi
841
+ mobile
842
+ mobily
843
+ moda
844
+ moe
845
+ moi
846
+ mom
847
+ monash
848
+ money
849
+ monster
850
+ montblanc
851
+ mopar
852
+ mormon
853
+ mortgage
854
+ moscow
855
+ moto
856
+ motorcycles
857
+ mov
858
+ movie
859
+ movistar
860
+ mp
861
+ mq
862
+ mr
863
+ ms
864
+ msd
865
+ mt
866
+ mtn
867
+ mtpc
868
+ mtr
869
+ mu
870
+ museum
871
+ music
872
+ mutual
873
+ mutuelle
874
+ mv
875
+ mw
876
+ mx
877
+ my
878
+ mz
879
+ na
880
+ nab
881
+ nadex
882
+ nagoya
883
+ name
884
+ nationwide
885
+ natura
886
+ navy
887
+ nba
888
+ nc
889
+ ne
890
+ nec
891
+ net
892
+ netbank
893
+ netflix
894
+ network
895
+ neustar
896
+ new
897
+ newholland
898
+ news
899
+ next
900
+ nextdirect
901
+ nexus
902
+ nf
903
+ nfl
904
+ ng
905
+ ngo
906
+ nhk
907
+ ni
908
+ nico
909
+ nike
910
+ nikon
911
+ ninja
912
+ nissan
913
+ nissay
914
+ nl
915
+ no
916
+ nokia
917
+ northwesternmutual
918
+ norton
919
+ now
920
+ nowruz
921
+ nowtv
922
+ np
923
+ nr
924
+ nra
925
+ nrw
926
+ ntt
927
+ nu
928
+ nyc
929
+ nz
930
+ obi
931
+ observer
932
+ off
933
+ office
934
+ okinawa
935
+ olayan
936
+ olayangroup
937
+ oldnavy
938
+ ollo
939
+ om
940
+ omega
941
+ one
942
+ ong
943
+ onion
944
+ onl
945
+ online
946
+ onyourside
947
+ ooo
948
+ open
949
+ oracle
950
+ orange
951
+ org
952
+ organic
953
+ orientexpress
954
+ origins
955
+ osaka
956
+ otsuka
957
+ ott
958
+ ovh
959
+ pa
960
+ page
961
+ pamperedchef
962
+ panasonic
963
+ panerai
964
+ paris
965
+ pars
966
+ partners
967
+ parts
968
+ party
969
+ passagens
970
+ pay
971
+ pccw
972
+ pe
973
+ pet
974
+ pf
975
+ pfizer
976
+ pg
977
+ ph
978
+ pharmacy
979
+ phd
980
+ philips
981
+ phone
982
+ photo
983
+ photography
984
+ photos
985
+ physio
986
+ piaget
987
+ pics
988
+ pictet
989
+ pictures
990
+ pid
991
+ pin
992
+ ping
993
+ pink
994
+ pioneer
995
+ pizza
996
+ pk
997
+ pl
998
+ place
999
+ play
1000
+ playstation
1001
+ plumbing
1002
+ plus
1003
+ pm
1004
+ pn
1005
+ pnc
1006
+ pohl
1007
+ poker
1008
+ politie
1009
+ porn
1010
+ post
1011
+ pr
1012
+ pramerica
1013
+ praxi
1014
+ press
1015
+ prime
1016
+ pro
1017
+ prod
1018
+ productions
1019
+ prof
1020
+ progressive
1021
+ promo
1022
+ properties
1023
+ property
1024
+ protection
1025
+ pru
1026
+ prudential
1027
+ ps
1028
+ pt
1029
+ pub
1030
+ pw
1031
+ pwc
1032
+ py
1033
+ qa
1034
+ qpon
1035
+ quebec
1036
+ quest
1037
+ qvc
1038
+ racing
1039
+ radio
1040
+ raid
1041
+ re
1042
+ read
1043
+ realestate
1044
+ realtor
1045
+ realty
1046
+ recipes
1047
+ red
1048
+ redstone
1049
+ redumbrella
1050
+ rehab
1051
+ reise
1052
+ reisen
1053
+ reit
1054
+ reliance
1055
+ ren
1056
+ rent
1057
+ rentals
1058
+ repair
1059
+ report
1060
+ republican
1061
+ rest
1062
+ restaurant
1063
+ review
1064
+ reviews
1065
+ rexroth
1066
+ rich
1067
+ richardli
1068
+ ricoh
1069
+ rightathome
1070
+ ril
1071
+ rio
1072
+ rip
1073
+ rmit
1074
+ ro
1075
+ rocher
1076
+ rocks
1077
+ rodeo
1078
+ rogers
1079
+ room
1080
+ rs
1081
+ rsvp
1082
+ ru
1083
+ rugby
1084
+ ruhr
1085
+ run
1086
+ rw
1087
+ rwe
1088
+ ryukyu
1089
+ sa
1090
+ saarland
1091
+ safe
1092
+ safety
1093
+ sakura
1094
+ sale
1095
+ salon
1096
+ samsclub
1097
+ samsung
1098
+ sandvik
1099
+ sandvikcoromant
1100
+ sanofi
1101
+ sap
1102
+ sapo
1103
+ sarl
1104
+ sas
1105
+ save
1106
+ saxo
1107
+ sb
1108
+ sbi
1109
+ sbs
1110
+ sc
1111
+ sca
1112
+ scb
1113
+ schaeffler
1114
+ schmidt
1115
+ scholarships
1116
+ school
1117
+ schule
1118
+ schwarz
1119
+ science
1120
+ scjohnson
1121
+ scor
1122
+ scot
1123
+ sd
1124
+ se
1125
+ search
1126
+ seat
1127
+ secure
1128
+ security
1129
+ seek
1130
+ select
1131
+ sener
1132
+ services
1133
+ ses
1134
+ seven
1135
+ sew
1136
+ sex
1137
+ sexy
1138
+ sfr
1139
+ sg
1140
+ shangrila
1141
+ sharp
1142
+ shaw
1143
+ shell
1144
+ shia
1145
+ shiksha
1146
+ shoes
1147
+ shop
1148
+ shopping
1149
+ shouji
1150
+ show
1151
+ showtime
1152
+ shriram
1153
+ si
1154
+ silk
1155
+ sina
1156
+ singles
1157
+ site
1158
+ sj
1159
+ sk
1160
+ ski
1161
+ skin
1162
+ sky
1163
+ skype
1164
+ sl
1165
+ sling
1166
+ sm
1167
+ smart
1168
+ smile
1169
+ sn
1170
+ sncf
1171
+ so
1172
+ soccer
1173
+ social
1174
+ softbank
1175
+ software
1176
+ sohu
1177
+ solar
1178
+ solutions
1179
+ song
1180
+ sony
1181
+ soy
1182
+ spa
1183
+ space
1184
+ spiegel
1185
+ sport
1186
+ spot
1187
+ spreadbetting
1188
+ sr
1189
+ srl
1190
+ srt
1191
+ ss
1192
+ st
1193
+ stada
1194
+ staples
1195
+ star
1196
+ starhub
1197
+ statebank
1198
+ statefarm
1199
+ statoil
1200
+ stc
1201
+ stcgroup
1202
+ stockholm
1203
+ storage
1204
+ store
1205
+ stream
1206
+ studio
1207
+ study
1208
+ style
1209
+ su
1210
+ sucks
1211
+ supplies
1212
+ supply
1213
+ support
1214
+ surf
1215
+ surgery
1216
+ suzuki
1217
+ sv
1218
+ swatch
1219
+ swiftcover
1220
+ swiss
1221
+ sx
1222
+ sy
1223
+ sydney
1224
+ symantec
1225
+ systems
1226
+ sz
1227
+ tab
1228
+ taipei
1229
+ talk
1230
+ taobao
1231
+ target
1232
+ tatamotors
1233
+ tatar
1234
+ tattoo
1235
+ tax
1236
+ taxi
1237
+ tc
1238
+ tci
1239
+ td
1240
+ tdk
1241
+ team
1242
+ tech
1243
+ technology
1244
+ tel
1245
+ telecity
1246
+ telefonica
1247
+ temasek
1248
+ tennis
1249
+ teva
1250
+ tf
1251
+ tg
1252
+ th
1253
+ thd
1254
+ theater
1255
+ theatre
1256
+ tiaa
1257
+ tickets
1258
+ tienda
1259
+ tiffany
1260
+ tips
1261
+ tires
1262
+ tirol
1263
+ tj
1264
+ tjmaxx
1265
+ tjx
1266
+ tk
1267
+ tkmaxx
1268
+ tl
1269
+ tm
1270
+ tmall
1271
+ tn
1272
+ to
1273
+ today
1274
+ tokyo
1275
+ tools
1276
+ top
1277
+ toray
1278
+ toshiba
1279
+ total
1280
+ tours
1281
+ town
1282
+ toyota
1283
+ toys
1284
+ tp
1285
+ tr
1286
+ trade
1287
+ trading
1288
+ training
1289
+ travel
1290
+ travelchannel
1291
+ travelers
1292
+ travelersinsurance
1293
+ trust
1294
+ trv
1295
+ tt
1296
+ tube
1297
+ tui
1298
+ tunes
1299
+ tushu
1300
+ tv
1301
+ tvs
1302
+ tw
1303
+ tz
1304
+ ua
1305
+ ubank
1306
+ ubs
1307
+ uconnect
1308
+ ug
1309
+ uk
1310
+ um
1311
+ unicom
1312
+ university
1313
+ uno
1314
+ uol
1315
+ ups
1316
+ us
1317
+ uy
1318
+ uz
1319
+ va
1320
+ vacations
1321
+ vana
1322
+ vanguard
1323
+ vc
1324
+ ve
1325
+ vegas
1326
+ ventures
1327
+ verisign
1328
+ vermögensberater
1329
+ vermögensberatung
1330
+ versicherung
1331
+ vet
1332
+ vg
1333
+ vi
1334
+ viajes
1335
+ video
1336
+ vig
1337
+ viking
1338
+ villas
1339
+ vin
1340
+ vip
1341
+ virgin
1342
+ visa
1343
+ vision
1344
+ vista
1345
+ vistalogging.info
1346
+ viva
1347
+ vivo
1348
+ vlaanderen
1349
+ vn
1350
+ vodka
1351
+ volkswagen
1352
+ volvo
1353
+ vote
1354
+ voting
1355
+ voto
1356
+ voyage
1357
+ vu
1358
+ vuelos
1359
+ wales
1360
+ walmart
1361
+ walter
1362
+ wang
1363
+ wanggou
1364
+ warman
1365
+ watch
1366
+ watches
1367
+ weather
1368
+ weatherchannel
1369
+ webcam
1370
+ weber
1371
+ website
1372
+ wed
1373
+ wedding
1374
+ weibo
1375
+ weir
1376
+ wf
1377
+ whoswho
1378
+ wien
1379
+ wiki
1380
+ williamhill
1381
+ win
1382
+ windows
1383
+ wine
1384
+ winners
1385
+ wme
1386
+ wolterskluwer
1387
+ woodside
1388
+ work
1389
+ works
1390
+ world
1391
+ wow
1392
+ ws
1393
+ wtc
1394
+ wtf
1395
+ xbox
1396
+ xerox
1397
+ xfinity
1398
+ xihuan
1399
+ xin
1400
+ xyz
1401
+ yachts
1402
+ yahoo
1403
+ yamaxun
1404
+ yandex
1405
+ ye
1406
+ yodobashi
1407
+ yoga
1408
+ yokohama
1409
+ you
1410
+ youtube
1411
+ yt
1412
+ yun
1413
+ za
1414
+ zappos
1415
+ zara
1416
+ zero
1417
+ zippo
1418
+ zm
1419
+ zone
1420
+ zuerich
1421
+ zw
1422
+ co.uk