Kako blokirati TOR pristup u Apacheu ili Nginxu

U određenim prilikama neki su administratori prisiljeni zabraniti pristup ljudima koji koriste Tor svojim web aplikacijama, bilo korištenjem Nginx kao apaš.

Zabrani pristup Toru u Apacheu:

Korištenje datoteke .htaccess Možemo odbiti pristup određenim IP-ovima, pa tada trebamo znati samo Tor-ove i to je to.

Drugim riječima, u bilo koji dio naše .htaccess datoteke dodajemo sljedeće:

nalog dopustiti, odbiti dopustiti od svih zabraniti od {TOR_IP} odbiti od {TOR_IP} odbiti od {TOR_IP}

Odnosno, u svaki redak stavimo Tor IP, na primjer:

nalog dopustiti, odbiti dopustiti od svih zabraniti od 213.163.72.224 odbiti od 82.94.251.227 odbiti od 14.0.21.39

Očito je popis IP-a ključni dio svega ovoga, u lunaticoutpost.com postoji mali popis Tor proxy IP adresa, popis Tor IP adresa možete pronaći i na TorProject.orgBilo bi dodati svaku tu IP adresu i to je to.

Zatim za primjenu promjena ponovno učitavamo Apache i to je to:

service apache2 reload

Zabraniti pristup Toru u Nginxu:

Korištenjem Nginxa možemo zabraniti pristup izravno na vhost-u (mogli bismo to učiniti i u Apacheu, ali radije bih to prikazao s htaccess), uređivanjem naše vhost datoteke (na primjer, / etc / nginx / sites-available / my .site.com) dodajemo neke redove ALI!, moraju se dodati između poslužitelja {i zadnjeg} ... na primjer:

poslužitelj {zabraniti {TOR_IP}; odbiti {TOR_IP}; odbiti {TOR_IP}; access_log /var/log/nginx/mysite_access.log; error_log /var/log/nginx/mysite_error.log; ime_poslužitelja www.mysite.net; root / var / www / mysite /; .... puno drugih stvari ...

Na primjer:

poslužitelj {zanijekati 213.163.72.224; nijekati 82.94.251.227; nijekati 14.0.21.39; access_log /var/log/nginx/mysite_access.log; error_log /var/log/nginx/mysite_error.log; ime_poslužitelja www.mysite.net; root / var / www / mysite /; .... puno drugih stvari ...

Odnosno, u svaki redak stavljaju svaki IP i završavaju ga znakom sa zarezom (;), važno je uvijek staviti Nginx; na kraju svakog retka inače daje pogrešku.

Ili možemo staviti da uključuje drugu datoteku, pretpostavimo da u / etc / nginx / imamo datoteku koja se zove tor.lst, svaki je redak te datoteke:

odbiti {TOR_IP}; ...

Odnosno, svaki redak je poput:

nijekati 82.94.251.227;

U vhost stavljamo:

poslužitelj {include /etc/nginx/tor.lst; access_log /var/log/nginx/mysite_access.log; error_log /var/log/nginx/mysite_error.log; ime_poslužitelja www.mysite.net; root / var / www / mysite /; .... puno drugih stvari ...

I voila, to je uredniji način da radimo ono što želimo.

Da bi nova pravila postala učinkovita, ponovno pokrećemo Nginx:

service nginx reload

Nakon što se to učini, nitko tko koristi bilo koju od navedenih IP adresa neće moći pristupiti web mjestu.

Trik?

Kao što vidite, navođenje da se određenim IP-ovima odbije pristup nešto je jednostavno i u Apacheu i u Nginxu, pa je trik znati koje IP adrese zabraniti, tu se nalaze popisi poput onog u TorProject.org, koji nam pružaju sve potrebne informacije.

Razlozi za blokiranje Tor-a?

Prije svega, razjasnite to Nisam protiv privatnosti daleko od toga, oni koji me poznaju (kao elava) znaju da mogu biti prilično paranoičan što se tiče sigurnosti (to jest, imam vatrozid za vatrozid svog prijenosnog računala LOL!), ali nije tajna da je to mnogo puta potrebno je blokirati pristup anonimnim mrežama kao što je Tor kako bi se izbjegli neki nepoželjni ljudi koji u lošim namjerama pokušavaju pokvariti ili naštetiti radu drugih.

Na primjer, iz mreža poput Tor-a izvršava se većina napada na web stranice (bilo rječnikom ili grubom silom), uskraćivanje pristupa Toru automatski dodaje zaštitu web mjestu, jer nitko 'skrivajući' tu anonimnost ne može naštetiti drugima.

Također, nije tajna da su posljednjih godina DDoS napadi postali moderni, da mnogi napadi dolaze od ljudi koji koriste ovu vrstu mreže kao što je Tor, sprečavajući pristup web mjestu sprečava PHP obradu, pa recimo i da je to malo zaštite od DDoS-a.

Kraj!

Bueno, espero que les haya sido de interés. Por favor, recuerden, DesdeLinux no fomenta el no-anonimato ni mucho menos (de hecho, aquí en DesdeLinux se permite el acceso de usuarios Tor), tampoco incita a otros a bloquear Tor o no en sus sitios, esto es una decisión de cada administrador, lo que sí en DesdeLinux damos las herramientas o tutoriales para que los interesados en aprender puedan hacer precisamente eso, aprender algo nuevo, de su interés.

pozdravi


Ostavite svoj komentar

Vaša email adresa neće biti objavljen. Obavezna polja su označena s *

*

*

  1. Za podatke odgovoran: Miguel Ángel Gatón
  2. Svrha podataka: Kontrola neželjene pošte, upravljanje komentarima.
  3. Legitimacija: Vaš pristanak
  4. Komunikacija podataka: Podaci se neće dostavljati trećim stranama, osim po zakonskoj obvezi.
  5. Pohrana podataka: Baza podataka koju hostira Occentus Networks (EU)
  6. Prava: U bilo kojem trenutku možete ograničiti, oporaviti i izbrisati svoje podatke.

  1.   Osoblje dijo

    Zaobilaženje te zaštite jednostavno je kao i nastavak upotrebe TOR-a iza VPN-a ili drugog proxyja.
    klijent-> TOR-> VPN / proxy-> Web.
    I ne zahtijeva napredno znanje, najlakši način bio bi instalirati TOR preglednik i pristupiti web proxyju kao što su anonimus, hidemyass ili taj stil i voila, možete pristupiti dotičnoj stranici.
    Imate novu dinamičku IP adresu koja nije na popisu koji je lako blokirati.

  2.   subota dijo

    Srećom postoje načini da se ta ograničenja zaobiđu.
    Ako izgubimo anonimnost, otišli smo.
    I ne samo to, već je TOR dobar način za zaobilaženje opunomoćenika u institucijama i / ili zemljama.

  3.   guillermoz0009 dijo

    Kao i uvijek izvrstan članak.

    1.    KZKG ^ Gaara dijo

      Hvala ti

      1.    CubaRed dijo

        Postoji li način za prilagodbu pogreške 403 u Nginxu?

        1.    Osoblje dijo

          Pretpostavljam da bi bilo dovoljno da datoteka (403.html u korijenskoj mapi) postoji s izgledom koji želite i da u nginx.conf na nju ukaže.

          1.    CubaRed dijo

            Imate neki primjer conf-a kako to radi ... u nginxu

          2.    Osoblje dijo

            @CubaRed
            Trenutno nemam instaliran Nginx, ne mogu vam dati cjelovit primjer .conf, ali brzo Google pretraživanje daje mi retke za dodavanje.

            stranica s pogreškama 403 /403.html;
            lokacija = /403.html {
            korijen html;
            dopustiti sve;
            }

            I vi radite tako da datoteka nije dostupna korisnicima, ali postoji pogreška.

            stranica s pogreškama 404 /404.html;
            lokacija /404.html {
            unutarnji;
            }

            Tada će biti pitanje spremanja promjena i ponovnog pokretanja usluge.

  4.   Vodič0Ignaci0 dijo

    Odakle vam ove informacije?

    "Iz mreža poput Tor-a izvršava se većina napada na web lokacije (bilo rječnikom ili grubom silom)"

    Bilo koji izvor?

    Općenito, napadi grubom silom, prema vlastitom iskustvu, dolaze iz Azije. Bolje je da blokirate taj kontinent nego TOR.

    Također blokiraj svaki ip jedan po jedan ???? Jer to ne činite po rangu. Dakle, stavili ste ovo:

    zanijekati iz 23.80.226.2
    zanijekati iz 23.80.226.4
    zanijekati iz 23.80.226.5

    Nije li ip 23.80.226.3 TOR?

    Bilo bi praktično blokirati onda ovako:

    odbiti od 23.80.226.0/255.255.255.0
    ili putem CIDR-a
    odbiti od 23.80.226.0/24

    Međutim, ne vidim upotrebu posta, mislim da je naslov pogrešan. Bilo bi bolje staviti "Kako blokirati posjete putem ip-a", tu bi se stvar promijenila

    Zagrljaj

    1.    KZKG ^ Gaara dijo

      "Mreže poput tor" == Tor, azijski VPN itd. Ne mislim samo na Tor, već na mreže te vrste.

      Što se tiče raspona IP-a, ističem da se točno služim popisom koji je dao TorProyect.org, jer su na tom popisu rasponi uzeti u obzir. Ako u primjeru koji sam stavio u postu nisam stavio opseg i da IP-ove, pa, zacijelo sam to zanemario, međutim ponavljam, u određenim prigodama spominjem da bi se trebali koristiti popisi.

      O korisnosti posta ili ne, pa ... svatko ima svoje mišljenje.

      pozdravi

    2.    Essau dijo

      Potpuno se slažem s Guid0Ignaci0, barem je naslov posta vrlo nesretan. Tehnički pokušava filtrirati IP adrese na poslužitelju.
      Nebitno je i tužno za to odabrati Tor-ove IP-ove. U vremenima u kojima živimo, suočeni s maltretiranjem od strane NSA-e i ograničavanjem građanskih sloboda i ljudskih prava (u svijetu općenito, a posebno u Španjolskoj), mreža poput Tor-a bitna je za obranu (a ne za cenzuru - filtrirano).
      Bilo bi puno poučnije, ako vam trebaju IP-ovi za filtriranje, da odaberete one iz CIA-e, Microsofta, španjolske biskupske konferencije ili odvratne Popularne stranke Španjolske.

  5.   579 dijo

    VRLO DOBRO SVE ALI GOTOVO ONO ŠTO STAVITE OVDJE ZA BLOKIRANJE DARUJETE KUBINSKOM VLADNOM BLOKU SVE OVE ALATE KAO TOR I VAŠU SLOBODU KOJE SE NAJČEŠĆE PRETRAŽUJU INTERNET KORISTIMO VPN VEZU ZA BROWSE INTERNET KROZ INTERNET ŠTO KORISTE ZA BLOKIRANJE JE SERVER U DEBIAN LINUXU SA IPTABLE + SQUID I OSTALIM STVARIMA ZA BLOKIRANJE PRISTUPA INTERNETU VIŠE DNS-a Preusmjeravanje i VIŠE LAŽNIH SSL certifikata da biste vam rekli da uđete skoro u sredinu i pitate jer OVO NE MOŽE BLOKIRATI ZNAŠ LI JOŠ JEDAN ALAT DA PRESKUPITE SVE OVO MOŽETE LI MI REĆI KROZ MOJ E-MAIL I TOR NE RADI ZA MENE I TVOJA SLOBODA SE UVIJEK NE POVEZUJE NIJE TEŠKO BLOKIRATI ALI BAREM P OSTAVITI MALO RAD PRISTUP INTERNETU ALI NE MOJI PRIJATELJI ZATO VAS PITAM AKO ZNATE BILO KOJI ALAT KAO SLOBODU Q AGA VEZE KROZ DNS Q JE Q VIŠE ILI MANJE MOŽE KORISTITI U KUBI HVALA I NADAM SE VAM RES STAVITI

  6.   noelilloproxy dijo

    Blokiraj tor i više proxyja

    Liata

    # ovo će blokirati sve veze u pošti s onih domena kojima je nemoguće pristupiti vašoj domeni s vezama od tamo

    RewriteEngine na
    RewriteCond% {HTTP_REFERER} ^ http: //.*yopmail \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*forcepoint \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*mailcontrol \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*console \ .developers \ .google \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*developers \ .google \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*yopmail \ .net / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*yopmail \ .fr / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*toopitoo \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*myyopdev \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*emailondeck \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*deypo \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*tempr \ .email / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*crazymailing \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*getnada \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*blackfire \ .club / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*ovoo \ .spagreen \ .net / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ https: //.*ovoo \ .spagreen \ .net / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*ovoo.spagreen.net/ [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*es \ .infobyip \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*infobyip/ [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*es.infobyip/ [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*letsencrypt \ .org / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*identrust \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*crl \ .identrust \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*identrust \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*cps \ .root-x1 \ .letsencrypt \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*letsencrypt \ .org / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*apps \ .identrust \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*godaddy \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*crl \ .godaddy \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*ocsp \ .godaddy \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*ocsp \ .digicert \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*digicert \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*cs9 \ .wac \ .phicdn \ .net / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*sni \ .cloudflaressl \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*cloudflaressl \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*xy \ .fbcdn \ .net / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*xx \ .fbcdn \ .net / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*fbcdn \ .net / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*pingma \ .qq \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*star-mini \ .c10r \ .facebook \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*clk \ .sh / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ https: //.*clk \ .sh / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*temp-mail \ .org / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*star-mini \ .c10r \ .facebook \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*omfgdogs \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ https: //.*omfgdogs \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*paypalobjects \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ https: //.*paypalobjects \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*ajax \ .googleapis \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*org \ .telegram \ .messenger / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*android-app: \ .org \ .telegram.messenger / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*ajax \ .googleapis \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ https: //.*ajax \ .googleapis \ .com / [NC, ILI]
    RewriteCond% {HTTP_REFERER} ^ http: //.*yopmail \ .com / [NC]
    RewriteRule. * https://raw.githubusercontent.com/ipxxx999/blokeador_de_proxy/main/error404.png [R]

    # https://tiro-directo.com/wp-content/uploads/2019/01/LOGO-SPORT-TIRO-DIRECTO-SF-web.png

    RewriteEngine on
    RewriteBase /
    RewriteCond% {REQUEST_METHOD} ^ (HEAD | TRACE | DELETE | TRACK) [NC]
    RewriteRule ^ (. *) $ - [F, L]
    RewriteCond% {QUERY_STRING} \. \. \ / [NC, ILI]
    RewriteCond% {QUERY_STRING} boot \ .ini [NC, ILI]
    Oznaka RewriteCond% {QUERY_STRING} \ = [NC, ILI]
    RewriteCond% {QUERY_STRING} ftp \: [NC, ILI]
    RewriteCond% {QUERY_STRING} http \: [NC, ILI]
    RewriteCond% {QUERY_STRING} https \: [NC, ILI]
    RewriteCond% {QUERY_STRING} (\ |% 3E) [NC, ILI]
    RewriteCond% {QUERY_STRING} mosConfig_ [a-zA-Z_] {1,21} (= |% 3D) [NC, ILI]
    RewriteCond% {QUERY_STRING} base64_encode. * \ (. * \) [NC, ILI]
    RewriteCond% {QUERY_STRING} ^. * (\ [| \] | \ (| \) || ê | »|; | \? | \ * | = $). * [NC, ILI]
    RewriteCond% {QUERY_STRING} ^. * ("| '| <|> | \ | {||). * [NC, ILI]
    RewriteCond% {QUERY_STRING} ^. * (% 24 & x). * [NC, ILI]
    RewriteCond% {QUERY_STRING} ^. * (% 0 |% A |% B |% C |% D |% E |% F | 127 \ .0). * [NC, ILI]
    RewriteCond% {QUERY_STRING} ^. * (Globals | kodiraj | localhost | loopback). * [NC, ILI]
    RewriteCond% {QUERY_STRING} ^. * (Zahtjev | odabir | umetanje | unija | izjava). * [NC]
    RewriteCond% {HTTP_COOKIE}! ^. * Wordpress_logged_in _. * $
    RewriteRule ^ (. *) $ - [F, L]

    # end uskraćuje pristup PHP kreditima i uskršnjim jajima

    # blokiraj neželjenu poštu komentara na webu

    SecFilterEngine uključen
    SecFilterScanPOST Uključeno
    SecFilterDefaultAction "odbij, zabilježi, odjavi, status: 503"
    SecFilterSelective POST_PAYLOAD «(jamstvo | Ì? Ì? Í? Ì |? Ì |? Ì | œÌºÌ? | ºÌ? | ŒÌº |? Ì | gssmÌŸÌ? | GssmÌŸÌ | ÅŸÌ? | SuÒ? | Ç? Ì? | MÒ? | mÌ? | refinance | Igrave ;? | Igrave; | i & | Ì | iÌ? Ì? Ì | | Meksiko | besplatna | obaveza | jeftine | cijene | povećanje | ponuda | težina | xxx | hipoteka | viagra | poker | promet | popust | medicinski | kasino | tekstovi | zajam) »

    # Blokiraj pristup putem proxyja
    RewriteEngine na
    RewriteCond% {HTTP: VIA}! ^ $ [ILI]
    RewriteCond% {HTTP: FORWARDED}! ^ $ [ILI]
    RewriteCond% {HTTP: USERAGENT_VIA}! ^ $ [ILI]
    RewriteCond% {HTTP: X_FORWARDED_FOR}! ^ $ [ILI]
    RewriteCond% {HTTP: PROXY_CONNECTION}! ^ $ [ILI]
    RewriteCond% {HTTP: XPROXY_CONNECTION}! ^ $ [ILI]
    RewriteCond% {HTTP: X-FORWARDED-FOR}! ^ $ [ILI]
    RewriteCond% {HTTP: FORWARDED-FOR}! ^ $ [ILI]
    RewriteCond% {HTTP: X-FORWARDED}! ^ $ [ILI]
    RewriteCond% {HTTP: XROXY_CONNECTION}! ^ $ [ILI]
    RewriteCond% {HTTP: HTTP_PC_REMOTE_ADDR}! ^ $ [ILI]
    RewriteCond% {HTTP: HTTP_CLIENT_IP}! ^ $
    RewriteRule ^ (. *) $ - [F]

    # —————————————
    #paypalobjects.com
    zanijekati iz 64.4.250.38
    demantirati od 64.4.250.

    #——- https://clk.sh/js/full-page-script.js

    demantirati od 104.26.14.

    # —————————————
    # https://www.omfgdogs.com/js/wat.js
    zanijekati iz 104.21.48.139
    demantirati od 104.21.48.
    # —————————————

    # ajax.googleapis.com
    zanijekati iz 172.217.13.202

    # —————————————

    # cache.google.com
    demantirati od 189.199.71.

    # VPN Proxy drugi QuickPacket, LLC

    demantirati od 139.99.209.
    demantirati od 172.82.134.
    demantirati od 79.141.162.
    demantirati od 146.70.25.

    # VPN proxy Cloudflare

    demantirati od 8.24.242.
    demantirati od 8.24.243.
    demantirati od 8.24.244.
    demantirati od 8.46.118.
    demantirati od 8.46.119.
    demantirati od 8.46.113.
    demantirati od 8.46.114.
    demantirati od 8.46.115.
    demantirati od 8.46.116.
    demantirati od 8.46.117.

    #Tor VPN proxy

    demantirati od 176.10.99.
    demantirati od 109.70.100.
    demantirati od 51.75.64.
    demantirati od 82.221.128.
    zanijekati iz 185.220.103
    demantirati od 195.176.3.
    demantirati od 185.220.100.
    demantirati od 198.58.107.
    demantirati od 199.249.230.
    demantirati od 185.220.101.
    demantirati od 104.244.76.
    demantirati od 66.70.228.
    demantirati od 23.129.64.
    demantirati od 71.19.144.
    demantirati od 95.143.193.
    demantirati od 51.38.64.
    demantirati od 124.109.1.
    demantirati od 178.20.55.
    demantirati od 178.17.170.
    demantirati od 45.125.65.
    demantirati od 49.50.107.
    demantirati od 91.250.242.
    demantirati od 185.82.219.
    demantirati od 46.182.21.
    demantirati od 185.220.103.
    demantirati od 87.118.122.
    demantirati od 205.185.117.
    demantirati od 192.160.102.
    demantirati od 45.15.16.
    demantirati od 80.79.23.
    demantirati od 212.21.66.
    demantirati od 207.244.70.
    zanijekati iz 217.79.178.53
    demantirati od 109.201.133.
    demantirati od 217.170.204.
    demantirati od 204.11.50.
    demantirati od 171.25.193.
    demantirati od 185.220.102.
    demantirati od 91.92.109.
    demantirati od 213.95.149.
    demantirati od 77.247.181.
    demantirati od 179.43.146.
    demantirati od 162.247.74.
    demantirati od 193.218.118.
    demantirati od 109.169.33.
    demantirati od 81.16.33.
    demantirati od 82.221.131.
    demantirati od 46.59.65.
    demantirati od 46.232.251.
    demantirati od 176.58.100.
    demantirati od 94.16.121.
    demantirati od 104.244.78.
    demantirati od 195.254.135.
    demantirati od 51.254.48.
    demantirati od 185.165.168.
    demantirati od 162.247.72.
    demantirati od 193.169.145.
    demantirati od 80.67.172.
    demantirati od 158.69.63.
    demantirati od 27.122.59.
    demantirati od 178.17.171.
    demantirati od 43.251.159.
    demantirati od 46.232.249.
    demantirati od 178.17.174.
    demantirati od 66.230.230.
    demantirati od 172.98.193.
    demantirati od 5.2.77.
    demantirati od 46.38.235.
    demantirati od 5.79.109.
    demantirati od 62.102.148.
    demantirati od 202.165.228.
    demantirati od 200.38.232.
    demantirati od 199.195.251.
    demantirati od 83.96.213.
    demantirati od 178.175.131.
    demantirati od 176.10.104.
    demantirati od 179.48.251.
    demantirati od 185.10.16.
    demantirati od 80.241.60.
    demantirati od 94.230.208.
    demantirati od 139.99.98.
    demantirati od 109.69.67.
    demantirati od 46.29.248.
    demantirati od 167.88.7.
    demantirati od 66.146.193.
    demantirati od 149.202.238.
    demantirati od 103.253.41.
    demantirati od 65.181.123.
    demantirati od 45.129.56.
    demantirati od 45.128.133.
    demantirati od 51.158.111.
    demantirati od 107.189.10.
    demantirati od 185.100.85.
    demantirati od 167.86.94.
    demantirati od 45.66.35.
    demantirati od 46.166.139.
    demantirati od 185.222.202.
    demantirati od 176.53.90.
    demantirati od 138.59.18.
    demantirati od 82.223.14.
    demantirati od 103.236.201.
    demantirati od 66.175.221.
    demantirati od 176.10.107.
    demantirati od 87.118.116.
    demantirati od 89.163.143.
    demantirati od 91.244.181.
    demantirati od 209.141.41.
    demantirati od 67.163.129.
    demantirati od 89.234.157.
    demantirati od 195.206.105.
    demantirati od 144.217.80.
    demantirati od 45.114.130.
    demantirati od 62.171.144.
    demantirati od 204.85.191.
    demantirati od 45.64.186.
    demantirati od 87.118.96.
    demantirati od 23.239.22.
    demantirati od 139.99.172.
    demantirati od 37.48.120.
    demantirati od 185.65.205.
    demantirati od 95.154.24.
    demantirati od 95.142.161.
    demantirati od 94.142.244.
    demantirati od 198.251.83.
    demantirati od 198.96.155.
    demantirati od 185.130.44.
    demantirati od 18.27.197.
    demantirati od 159.89.174.
    demantirati od 45.76.115.
    demantirati od 77.81.247.
    demantirati od 89.31.57.
    demantirati od 185.213.155.
    demantirati od 62.210.105.
    demantirati od 185.216.32.
    demantirati od 104.244.74.
    demantirati od 188.214.104.
    demantirati od 162.247.73.
    demantirati od 195.254.134.
    demantirati od 5.2.79.
    demantirati od 139.162.7.
    demantirati od 185.56.171.
    demantirati od 164.132.9.
    demantirati od 37.228.129.
    demantirati od 185.42.170.
    demantirati od 185.100.86.
    demantirati od 163.172.41.
    demantirati od 130.149.80.
    demantirati od 198.50.128.
    demantirati od 84.209.139.
    demantirati od 209.141.50.
    demantirati od 123.30.128.
    demantirati od 37.139.8.
    demantirati od 104.244.72.
    demantirati od 195.206.107.
    demantirati od 51.161.43.
    demantirati od 180.150.226.
    demantirati od 95.128.43.
    demantirati od 189.84.21.
    demantirati od 144.217.60.
    demantirati od 45.140.170.
    demantirati od 198.98.51.
    demantirati od 93.115.241.
    demantirati od 192.42.116.
    demantirati od 104.244.77.
    demantirati od 181.119.30.
    demantirati od 94.32.66.
    demantirati od 51.38.233.
    demantirati od 209.141.54.
    demantirati od 178.175.148.
    demantirati od 151.237.185.
    demantirati od 166.70.207.
    demantirati od 180.149.125.
    demantirati od 217.12.221.
    demantirati od 185.65.206.
    demantirati od 125.212.241.
    demantirati od 103.28.52.
    demantirati od 95.216.145.
    demantirati od 46.194.47.
    demantirati od 185.35.202.
    demantirati od 185.113.128.
    demantirati od 71.174.105.
    demantirati od 176.123.5.
    demantirati od 217.170.206.
    demantirati od 217.170.205.
    demantirati od 199.195.250.
    demantirati od 195.80.151.
    demantirati od 45.79.157.
    demantirati od 185.100.87.
    demantirati od 104.244.73.
    demantirati od 185.12.45.
    demantirati od 46.19.141.
    demantirati od 81.17.16.
    demantirati od 185.170.114.
    demantirati od 208.68.7.
    demantirati od 179.43.167.
    demantirati od 103.35.74.
    demantirati od 139.99.120.
    demantirati od 103.228.53.
    demantirati od 178.165.72.
    demantirati od 198.251.89.
    demantirati od 212.109.197.
    demantirati od 131.255.4.
    demantirati od 91.132.147.
    demantirati od 62.109.0.
    demantirati od 5.199.130.
    demantirati od 134.249.106.
    demantirati od 185.38.175.
    demantirati od 176.58.89.
    demantirati od 209.141.53.
    demantirati od 195.144.21.
    demantirati od 94.140.114.
    demantirati od 204.194.29.
    demantirati od 209.141.34.
    demantirati od 209.141.45.
    demantirati od 141.98.252.
    demantirati od 185.185.170.
    demantirati od 185.4.132.
    demantirati od 184.105.220.
    demantirati od 94.142.241.
    demantirati od 185.235.146.
    demantirati od 104.248.88.
    demantirati od 23.141.240.
    demantirati od 74.82.47.
    demantirati od 45.141.159.
    demantirati od 185.107.47.
    demantirati od 179.43.160.
    demantirati od 45.119.203.
    demantirati od 212.60.5.
    demantirati od 54.38.22.
    demantirati od 84.53.225.
    demantirati od 45.90.218.
    demantirati od 193.189.100.
    demantirati od 45.154.255.
    demantirati od 78.40.217.
    demantirati od 193.239.232.
    demantirati od 51.195.166.
    demantirati od 128.31.0.
    demantirati od 142.44.133.
    demantirati od 219.91.20.
    zanijekati iz 219.91.9.104
    demantirati od 88.80.20.
    demantirati od 147.135.105.
    demantirati od 27.122.59.
    demantirati od 101.100.146.
    demantirati od 82.118.23.
    demantirati od 51.210.34.
    demantirati od 103.249.28.
    demantirati od 5.206.224.
    demantirati od 71.19.154.
    demantirati od 89.144.12.
    demantirati od 64.113.32.
    demantirati od 185.205.210.
    demantirati od 163.172.29.
    demantirati od 198.98.50.
    demantirati od 45.79.144.
    demantirati od 204.17.56.
    demantirati od 189.131.221.
    demantirati od 189.132.28.
    demantirati od 189.131.202.
    demantirati od 189.132.34.
    demantirati od 189.131.196.
    demantirati od 189.132.44.
    demantirati od 189.131.232.
    demantirati od 189.131.253.
    demantirati od 189.132.32.
    demantirati od 189.131.236.
    demantirati od 189.132.21.
    demantirati od 5.2.78.
    demantirati od 107.189.30.
    demantirati od 209.141.46.
    demantirati od 45.151.167.
    demantirati od 51.15.59.
    demantirati od 24.3.110.
    demantirati od 92.246.84.
    demantirati od 205.185.124.
    demantirati od 193.148.70.
    demantirati od 176.107.179.
    demantirati od 185.34.33.
    demantirati od 192.34.80.
    demantirati od 172.106.0.
    demantirati od 199.195.254.
    demantirati od 200.122.181.
    demantirati od 31.7.61.
    demantirati od 92.223.93.
    demantirati od 198.98.60.
    demantirati od 84.53.192.
    demantirati od 209.141.58.
    demantirati od 45.91.101.
    demantirati od 23.120.182.
    demantirati od 67.249.107.
    demantirati od 107.189.11.
    demantirati od 45.153.160.
    demantirati od 81.6.43.
    demantirati od 51.83.131.
    demantirati od 51.195.42.
    demantirati od 51.178.86.
    demantirati od 141.239.148.
    demantirati od 185.242.113.
    demantirati od 104.244.75.
    demantirati od 213.164.204.
    demantirati od 79.136.1.
    demantirati od 185.56.80.
    demantirati od 45.61.51.
    demantirati od 198.98.61.
    demantirati od 198.98.48.
    demantirati od 198.98.62.
    demantirati od 51.195.103.
    demantirati od 72.93.243.
    demantirati od 91.219.237.
    demantirati od 87.118.110.
    demantirati od 178.250.157.
    demantirati od 185.247.224.
    demantirati od 205.185.127.
    demantirati od 51.15.124.
    demantirati od 51.15.113.
    demantirati od 51.15.99.
    demantirati od 185.112.144.
    demantirati od 101.99.95.
    demantirati od 62.178.138.
    demantirati od 185.196.2.
    demantirati od 209.141.56.
    demantirati od 205.185.120.
    demantirati od 37.187.96.
    demantirati od 204.8.156.
    demantirati od 51.81.34.
    demantirati od 144.172.118.
    demantirati od 51.158.171.
    demantirati od 51.15.225.
    demantirati od 104.244.79.
    demantirati od 135.125.137.
    demantirati od 37.157.253.
    demantirati od 208.68.4.
    demantirati od 37.187.196.
    demantirati od 107.189.31.
    demantirati od 216.218.134.
    demantirati od 199.184.215.
    demantirati od 205.185.123.
    demantirati od 24.3.111.
    demantirati od 185.248.160.
    demantirati od 209.141.40.
    demantirati od 107.174.244.
    demantirati od 185.112.146.
    demantirati od 209.141.59.
    demantirati od 199.195.253.
    demantirati od 45.9.13.
    demantirati od 185.101.35.
    demantirati od 91.149.225.
    demantirati od 37.187.21.
    demantirati od 157.90.38.
    demantirati od 142.44.156.
    demantirati od 209.141.42.
    demantirati od 209.127.17.
    demantirati od 176.152.45.
    demantirati od 139.99.170.
    demantirati od 185.10.68.
    demantirati od 51.15.235.
    demantirati od 135.148.32.
    demantirati od 176.123.3.
    demantirati od 54.36.24.
    demantirati od 91.221.57.
    demantirati od 172.81.131.
    demantirati od 131.196.253.
    demantirati od 185.233.100.
    demantirati od 46.167.244.
    demantirati od 51.210.101.
    demantirati od 91.218.203.
    demantirati od 193.31.24.
    demantirati od 198.98.52.
    demantirati od 198.98.57.
    demantirati od 198.73.50.
    demantirati od 91.148.147.
    demantirati od 51.15.197.
    demantirati od 209.141.55.
    demantirati od 83.97.20.
    demantirati od 128.199.213.
    demantirati od 91.203.146.
    demantirati od 192.241.183.
    demantirati od 210.114.1.
    demantirati od 37.187.2.
    demantirati od 200.98.135.
    demantirati od 82.221.139.
    demantirati od 185.191.124.
    demantirati od 194.182.73.
    demantirati od 81.171.29.
    demantirati od 198.251.84.
    demantirati od 198.251.80.
    demantirati od 163.172.213.
    demantirati od 62.128.111.
    demantirati od 185.67.82.
    demantirati od 89.236.112.
    demantirati od 172.107.201.
    demantirati od 45.79.177.
    demantirati od 213.164.205.
    demantirati od 82.68.49.
    demantirati od 51.15.177.
    demantirati od 195.37.209.
    demantirati od 103.151.145.
    demantirati od 45.95.235.
    demantirati od 198.144.120.
    demantirati od 198.144.121.
    demantirati od 158.69.35.
    demantirati od 51.210.80.
    demantirati od 66.175.208.
    demantirati od 79.124.60.
    demantirati od 190.10.8.
    demantirati od 188.127.227.
    demantirati od 139.99.239.
    demantirati od 51.79.204.
    demantirati od 167.71.224.
    demantirati od 143.198.208.
    demantirati od 192.46.212.
    demantirati od 172.104.179.
    demantirati od 141.98.10.
    demantirati od 199.195.249.
    demantirati od 178.162.216.
    demantirati od 46.226.107.
    demantirati od 122.117.91.
    demantirati od 62.171.142.
    demantirati od 176.126.253.
    demantirati od 45.121.147.
    demantirati od 51.15.250.
    demantirati od 62.210.37.
    demantirati od 185.165.171.
    demantirati od 23.81.64.
    demantirati od 198.54.128.
    demantirati od 51.81.160.
    demantirati od 101.99.90.
    demantirati od 185.130.45.
    demantirati od 147.135.211.
    demantirati od 87.120.254.
    demantirati od 192.195.80.
    demantirati od 95.214.235.
    demantirati od 198.167.206.
    demantirati od 185.82.218.
    demantirati od 195.123.214.
    demantirati od 168.119.183.
    demantirati od 31.42.184.
    demantirati od 51.158.183.
    demantirati od 45.93.80.
    demantirati od 89.163.245.
    demantirati od 45.192.176.
    demantirati od 190.45.86.
    demantirati od 209.141.49.
    demantirati od 43.226.26.
    demantirati od 72.167.47.
    demantirati od 188.116.36.
    demantirati od 212.129.26.
    demantirati od 93.115.84.
    demantirati od 114.199.75.
    demantirati od 213.164.206.
    demantirati od 213.164.206.
    demantirati od 51.75.17.
    demantirati od 51.75.19.
    demantirati od 152.228.216.
    demantirati od 89.163.252.
    demantirati od 51.79.147.
    demantirati od 185.65.134.
    demantirati od 193.70.45.
    demantirati od 176.123.7.
    demantirati od 193.32.126.
    demantirati od 135.125.236.
    demantirati od 204.9.38.
    demantirati od 51.75.122.
    demantirati od 51.77.39.
    demantirati od 154.94.7.
    demantirati od 5.2.76.
    demantirati od 51.255.106.
    demantirati od 51.89.151.
    demantirati od 51.75.22.
    demantirati od 51.75.24.
    demantirati od 91.219.236.
    demantirati od 154.92.22.
    demantirati od 43.227.112.
    demantirati od 91.219.238.
    demantirati od 87.120.37.
    demantirati od 89.163.243.
    demantirati od 173.249.57.
    demantirati od 5.104.110.
    demantirati od 104.200.20.
    demantirati od 37.59.34.
    demantirati od 84.19.186.
    demantirati od 51.195.223.
    demantirati od 51.83.128.
    demantirati od 51.75.161.
    demantirati od 51.75.21.
    demantirati od 94.140.115.
    demantirati od 198.244.151.
    demantirati od 178.18.243.
    demantirati od 193.34.167.
    demantirati od 212.83.172.
    demantirati od 91.219.239.
    demantirati od 218.250.255.
    demantirati od 89.249.49.
    demantirati od 62.85.69.
    demantirati od 193.34.166.
    demantirati od 45.148.4.
    demantirati od 5.2.75.
    demantirati od 185.112.147.
    demantirati od 128.199.36.
    demantirati od 192.121.102.
    demantirati od 146.59.15.
    demantirati od 31.220.40.
    demantirati od 77.73.68.
    demantirati od 135.125.238.
    demantirati od 31.220.3.
    demantirati od 176.123.10.
    demantirati od 157.90.69.
    demantirati od 51.15.244.
    demantirati od 51.195.118.
    demantirati od 141.94.20.
    demantirati od 198.244.152.
    demantirati od 188.119.113.
    zanijekati iz 51.15.76.60
    zanijekati iz 94.156.11.41
    demantirati od 37.221.120.
    demantirati od 185.70.185.
    demantirati od 88.99.50.
    demantirati od 64.98.75.
    demantirati od 54.90.231.
    demantirati od 195.123.246.
    demantirati od 194.61.120.
    demantirati od 5.199.143.
    demantirati od 194.195.214.
    demantirati od 185.142.239.
    zanijekati iz 83.97.20.236
    demantirati od 192.187.111.
    demantirati od 141.164.48.
    demantirati od 185.224.129.
    demantirati od 213.202.218.
    demantirati od 213.202.216.
    demantirati od 50.254.218.
    demantirati od 191.250.242.
    demantirati od 191.34.124.
    demantirati od 191.251.188.
    demantirati od 89.163.150.
    demantirati od 45.130.11.
    demantirati od 89.163.154.
    demantirati od 89.163.128.
    demantirati od 89.163.249.
    demantirati od 51.79.251.
    demantirati od 213.252.246.
    demantirati od 185.117.118.
    demantirati od 190.246.39.
    demantirati od 194.68.44.
    demantirati od 195.123.244.
    demantirati od 54.36.102.
    demantirati od 45.79.167.
    demantirati od 5.2.73.
    demantirati od 192.138.210.
    demantirati od 118.101.246.
    demantirati od 51.15.103.
    demantirati od 185.233.252.
    demantirati od 149.56.44.
    demantirati od 51.195.65.
    demantirati od 217.182.172.
    demantirati od 95.211.118.
    demantirati od 135.181.187.
    demantirati od 23.160.193.
    demantirati od 51.195.40.
    demantirati od 135.125.183.
    demantirati od 51.195.40.
    demantirati od 135.125.183.
    demantirati od 135.125.183.
    demantirati od 51.195.43.
    demantirati od 135.125.183.
    demantirati od 51.38.227.
    demantirati od 51.195.41.
    demantirati od 135.125.183.
    demantirati od 51.195.40.
    demantirati od 135.125.183.
    demantirati od 51.195.41.
    demantirati od 212.102.50.
    demantirati od 155.138.211.
    demantirati od 45.32.220.
    demantirati od 193.38.54.
    demantirati od 5.2.69.
    demantirati od 104.149.171.
    demantirati od 45.139.53.
    demantirati od 45.92.172.
    demantirati od 217.182.76.
    demantirati od 51.81.143.
    demantirati od 185.83.214.
    demantirati od 203.159.80.
    demantirati od 45.153.225.
    demantirati od 45.133.1.
    demantirati od 45.144.225.
    demantirati od 91.149.225.
    demantirati od 156.146.34.
    demantirati od 156.146.58.
    demantirati od 195.154.56.
    demantirati od 23.154.177.
    demantirati od 62.210.11.
    demantirati od 120.138.27.
    demantirati od 101.98.27.
    demantirati od 45.32.249.
    demantirati od 58.152.137.
    demantirati od 51.158.187.
    demantirati od 5.2.69.
    demantirati od 54.38.159.
    demantirati od 51.195.137.
    demantirati od 31.210.20.
    demantirati od 45.79.26.
    demantirati od 82.65.32.
    demantirati od 185.82.126.
    demantirati od 146.59.45.
    demantirati od 139.99.133.
    demantirati od 198.98.53.
    demantirati od 209.141.51.
    demantirati od 54.36.101.
    demantirati od 78.24.219.
    demantirati od 82.103.181.
    demantirati od 45.9.149.
    demantirati od 205.185.126.
    demantirati od 31.220.1.
    demantirati od 5.2.64.
    demantirati od 46.36.41.
    demantirati od 87.120.8.
    demantirati od 93.95.227.
    demantirati od 37.1.216.
    demantirati od 185.165.169.
    demantirati od 202.43.239.
    demantirati od 202.69.76.
    demantirati od 173.212.219.
    demantirati od 51.75.163.
    demantirati od 151.80.152.
    demantirati od 51.75.162.
    demantirati od 135.125.46.
    demantirati od 213.185.130.
    demantirati od 173.244.209.
    demantirati od 149.56.99.
    demantirati od 142.44.246.

    #Tor VPN proxy

  7.   noelilo dijo

    blokirati TOR pristup u Apacheu ili Nginxu

    U svakom slučaju, evo ih još

    https://github.com/ipxxx999?tab=repositories