Friday, December 30, 2011

Wireless LAN Access Point *WEBPAGE*

Just a simple web page I have made.
Note: Copy to a notepad and save as .html - *All files*



Code:
var Channel_24G_Text = new Array (" / 2.412GHz", " / 2.417GHz", " / 2.422GHz", " / 2.427GHz", " / 2.432GHz", 

                                  " / 2.437GHz", " / 2.442GHz", " / 2.447GHz", " / 2.452GHz", " / 2.457GHz",

                                  " / 2.462GHz", " / 2.467GHz", " / 2.472GHz");



var Band1Channel_20M = new Array (36,40,44,48);

var Band2Channel_20M = new Array (52,56,60,64);

var Band3Channel_20M = new Array (100,104,108,112,116,132,136,140);

var Band4Channel_20M = new Array (149,153,157,161);

var Band1Channel_40M = new Array (36,44);

var Band2Channel_40M = new Array (52,60);

var Band3Channel_40M = new Array (100,108,116,132);

var Band4Channel_40M = new Array (149,157);



var Band1Channel_20M_Text = new Array (" / 5.180GHz", " / 5.200GHz", " / 5.220GHz", " / 5.240GHz");

var Band2Channel_20M_Text = new Array (" / 5.260GHz", " / 5.280GHz", " / 5.300GHz", " / 5.320GHz");

var Band3Channel_20M_Text = new Array (" / 5.500GHz", " / 5.520GHz", " / 5.540GHz", " / 5.560GHz", " / 5.580GHz", " / 5.660GHz", " / 5.680GHz", " / 5.700GHz");

var Band4Channel_20M_Text = new Array (" / 5.745GHz", " / 5.765GHz", " / 5.785GHz", " / 5.805GHz");

var Band1Channel_40M_Text = new Array (" / 5.180GHz", " / 5.220GHz");

var Band2Channel_40M_Text = new Array (" / 5.260GHz", " / 5.300GHz");

var Band3Channel_40M_Text = new Array (" / 5.500GHz", " / 5.540GHz", " / 5.580GHz", " / 5.660GHz");

var Band4Channel_40M_Text = new Array (" / 5.745GHz", " / 5.785GHz");



var initRegion;

var changeMsg = "WARNING: Selecting the incorrect region may result in a violation of applicable law. \nDo you agree to act in accordance with these settings?";

var notShown = true; // only shown region change message once

var initialized = false;

function initScrn()

{

    var defaultKey;

    var fm=document.forms[0];

    var i;



 if(fm.tempSetting.value == 1)

 {

  var temp_region = parseInt(fm.tempRegion.value);

  if (temp_region == 12)

   fm.WRegion.selectedIndex=10;

  else if (temp_region >= 10 && temp_region <= 11)

   fm.WRegion.selectedIndex=temp_region+1;

  else

   fm.WRegion.selectedIndex=temp_region;

 }

        

    initRegion = fm.WRegion.selectedIndex;



    setOpMode();

    setChannel();

    for (i=0; i

    {

        if (fm.w_channel.options[i].value == fm.initChannel.value)

        {

            fm.w_channel[i].selected = true;

            break;

        }

    }

    for (i=0; i

    {

        if (fm.g_channel.options[i].value == fm.initGChannel.value)

        {

            fm.g_channel[i].selected = true;

            break;

        }

    }

    initialized=true;

}

function chgCh(from)

{

    if ( from == 2 )

    {

        var cf = document.forms[0];

        cf.only_mode.value = "1";

        cf.submit();

    }

    else

    {

        setOpMode();

        setChannel();

    }

}



function setOpMode()

{

 var cf = document.forms[0];

 var index = cf.WRegion.selectedIndex;

 var currentMode = cf.opmode.selectedIndex;



 cf.opmode.options.length = 4;

 cf.opmode.options[0].text = "Up to 270Mbps at 2.4GHz";

 cf.opmode.options[1].text = "Up to 270Mbps at 5GHz & 54Mbps at 2.4GHz";

 cf.opmode.options[2].text = "Up to 130Mbps at 2.4GHz";

 cf.opmode.options[3].text = "Up to 130Mbps at 5GHz & 54Mbps at 2.4GHz";

 cf.opmode.options[0].value = "300Mbps";

 cf.opmode.options[1].value = "300Mbps_5G";

 cf.opmode.options[2].value = "130Mbps";

 cf.opmode.options[3].value = "130Mbps_5G";

 cf.opmode.selectedIndex = currentMode;

 

 if (cf.opmode.options[cf.opmode.selectedIndex].value.indexOf("5G") == -1) {

  cf.g_ssid.disabled = true;

  cf.g_channel.disabled = true;

 } else {

  cf.g_ssid.disabled = false;

  cf.g_channel.disabled = false;

 }

}

function setChannel()

{

 var cf = document.forms[0];

 var index = cf.WRegion.selectedIndex;

 var chIndex = cf.w_channel.selectedIndex;

 var currentMode = cf.opmode.selectedIndex;

 var b1=0, b2=0, b3=0, b4=0;



 if (cf.nBand.value == "5G")

 {

  if (cf.opmode.selectedIndex == 1) // 40MHz

  {

   cf.w_channel.options.length = 100;

   for (b1=0; b1

   {

    cf.w_channel.options[b1].text = Band1Channel_40M[b1] + Band1Channel_40M_Text[b1];

    cf.w_channel.options[b1].value = Band1Channel_40M[b1];

   }

   if (cf.dfs_ch_enable.value == "1"

       || (cf.dfs_ch_enable.value == "0" && cf.dfs_ch_enable_default.value == "OFF" && index != 12))

   {   

       for (b2=0; b2

       {

        cf.w_channel.options[b1+b2].text = Band2Channel_40M[b2] + Band2Channel_40M_Text[b2];

        cf.w_channel.options[b1+b2].value = Band2Channel_40M[b2];

       }

       for (b3=0; b3

       {

        cf.w_channel.options[b1+b2+b3].text = Band3Channel_40M[b3] + Band3Channel_40M_Text[b3];

        cf.w_channel.options[b1+b2+b3].value = Band3Channel_40M[b3];

       }

   }

   if (index != 5 && index != 7)  // No band 4 channels for Europe

   {

    for (b4=0; b4

    {

     cf.w_channel.options[b1+b2+b3+b4].text = Band4Channel_40M[b4] + Band4Channel_40M_Text[b4];

     cf.w_channel.options[b1+b2+b3+b4].value = Band4Channel_40M[b4];

    }

   }

   //cf.w_channel.options.length = b1+b2+b3+b4+1;

   if (index == 5 || index == 7)  // No band 4 channels for Europe

    cf.w_channel.options.length = b1+b2+b3;

   else

    cf.w_channel.options.length = b1+b2+b3+b4;

  }

  else

  {

   cf.w_channel.options.length = 100;

   for (b1=0; b1

   {

    cf.w_channel.options[b1].text = Band1Channel_20M[b1] + Band1Channel_20M_Text[b1];

    cf.w_channel.options[b1].value = Band1Channel_20M[b1];

   }

   if (cf.dfs_ch_enable.value == "1"

       || (cf.dfs_ch_enable.value == "0" && cf.dfs_ch_enable_default.value == "OFF" && index != 12))

   {        

       for (b2=0; b2

       {

        cf.w_channel.options[b1+b2].text = Band2Channel_20M[b2] + Band2Channel_20M_Text[b2];

        cf.w_channel.options[b1+b2].value = Band2Channel_20M[b2];

       }

       for (b3=0; b3

       {

        cf.w_channel.options[b1+b2+b3].text = Band3Channel_20M[b3] + Band3Channel_20M_Text[b3];

        cf.w_channel.options[b1+b2+b3].value = Band3Channel_20M[b3];

       }

   }    

   if (index != 5 && index != 7)  // No band 4 channels for Europe

   {

    for (b4=0; b4

    {

     cf.w_channel.options[b1+b2+b3+b4].text = Band4Channel_20M[b4] + Band4Channel_20M_Text[b4];

     cf.w_channel.options[b1+b2+b3+b4].value = Band4Channel_20M[b4];

    }

   }

   //cf.w_channel.options.length = b1+b2+b3+b4+1;

   if (index == 5 || index == 7)  // No band 4 channels for Europe

    cf.w_channel.options.length = b1+b2+b3;

   else

    cf.w_channel.options.length = b1+b2+b3+b4;

  }

  //cf.w_channel.options[0].text = "Auto";

  //cf.w_channel.options[0].value = 0;

 }

 else

 {

  if (FinishChannel[index]==14 && cf.opmode.selectedIndex!=0)

   cf.w_channel.options.length = FinishChannel[index] - StartChannel[index] + 1;

  else

   cf.w_channel.options.length = FinishChannel[index] - StartChannel[index] + 2;



  cf.w_channel.options[0].text = "Auto";

  cf.w_channel.options[0].value = 0;



  for (var i = StartChannel[index]; i <= FinishChannel[index]; i++) {

   if (i==14 && cf.opmode.selectedIndex!=0)

    continue;

   cf.w_channel.options[i - StartChannel[index] + 1].value = i;

   cf.w_channel.options[i - StartChannel[index] + 1].text = ((i < 10)? "0" + i : i) + Channel_24G_Text[i -1];

  }

  cf.w_channel.selectedIndex = ((chIndex > -1) && (chIndex < cf.w_channel.options.length)) ? chIndex : 0 ;

 }



 chIndex = cf.g_channel.selectedIndex;

 if (FinishChannel[index]==14 && cf.opmode.selectedIndex!=0)

  cf.g_channel.options.length = FinishChannel[index] - StartChannel[index];

 else

  cf.g_channel.options.length = FinishChannel[index] - StartChannel[index] + 2;



 cf.g_channel.options[0].text = "Auto";

 cf.g_channel.options[0].value = 0;



 for (var i = StartChannel[index]; i <= FinishChannel[index]; i++) {

  if (i==14 && cf.opmode.selectedIndex!=0)

   continue;

  cf.g_channel.options[i - StartChannel[index] + 1].value = i;

  cf.g_channel.options[i - StartChannel[index] + 1].text = ((i < 10)? "0" + i : i) + Channel_24G_Text[i-1];

 }

 cf.g_channel.selectedIndex = ((chIndex > -1) && (chIndex < cf.g_channel.options.length)) ? chIndex : 0 ;

}

function loadhelp(fname,anchname)

{

    if ((loadhelp.arguments.length == 1 ) || (anchname == "" ))

        top.helpframe.location.href=fname+"_h.htm";

    else

        top.helpframe.location.href=fname+"_h.htm#" + anchname;

}

function checkRegion()

{

    var cf = document.forms[0];

    if(cf.WRegion.selectedIndex == 0)

    {

        cf.WRegion.focus();

        return alertR("Please select the correct region for your location");

    }

    if (notShown)

        notShown = false;

    else if(cf.WRegion.selectedIndex != initRegion && notShown)

    {

        if(!confirm(changeMsg))

            return false;

        else notShown = false;

    }

    return true;

}

function checkData()

{

    var cf = document.forms[0];

    if(!checkRegion()) return false;



    if (cf.ssid.value == "")

    {

        alert("SSID cannot be empty");

        return false;

    }



    if (cf.ssid.value.match( /[^\x20-\x7E]/ ))

    {

        alert("Character is not allowed in SSID.");

        cf.ssid.focus();

        return false;

    }



    if (cf.g_ssid.value == "")

    {

        alert("SSID cannot be empty");

        return false;

    }



    if (cf.g_ssid.value.match( /[^\x20-\x7E]/ ))

    {

        alert("Character is not allowed in SSID.");

        cf.ssid.focus();

        return false;

    }

    

//    if (cf.ssid.value.toLowerCase() == "any")

//    {

//        alert("Invalid SSID.\nThe 'ANY' including any upper/lower case combination\n(e.g, 'Any' or 'aNy') of this word is not allowed to be a SSID.");

//        return false;

//    }



    if(cf.passphrase.value.length < 8)

    {

        alert("Insufficient passphrase length, should be minimum of 8 characters long.");

        return false;    

    }

    if(cf.passphrase.value.length > 63)

    {

        if ( isHex(cf.passphrase.value) == false)

        {

            alert("Passphrase is too long, the maximum length should be 63 characters.");

            cf.passphrase.value = "";

            return false;

        }    

    }

    

    if (cf.passphrase.value.match( /[^\x20-\x7E]/ ))

    {

        alert("Character is not allowed in passphrase.");

        cf.passphrase.focus();

        return false;

    }



//    if (cf.wds_enable.value == "1" &&

//        ((cf.g_channel.disabled == true && cf.w_channel[0].selected) ||

//         (cf.g_channel.disabled == false && cf.g_channel[0].selected)))

    if (cf.wds_enable.value == "1" &&

       (cf.g_channel.disabled == true && cf.w_channel[0].selected))

    {

        alert("Auto Channel cannot be used with Wireless Repeating Function.");

        cf.w_channel.focus();

        return false;

    }



    return true;

}

function hotkey(e)

{

    var cf = document.forms[0];

    if(window.event) // IE

    {

        keynum = e.keyCode

    }

    else if(e.which) // Netscape/Firefox/Opera

    {

        keynum = e.keyCode

    }

    if((keynum==77)&&(e.altKey))

    {

        cf.opmode.focus();

        cf.opmode.select;       

    }

    else if((keynum==78)&&(e.altKey))

    {

        cf.security_type[0].checked = true;  

        document.forms[0].submit();  

    } 

}

// -->








Wireless Settings

 
Wireless Network
Name (11N SSID):
Name (11G SSID):
Region:
Mode:
11N Channel:
11G Channel:
 
Security Options
None
WEP
WPA-PSK [TKIP]
WPA2-PSK [AES]
WPA-PSK [TKIP] + WPA2-PSK [AES]
 
Security Options (WPA-PSK)
  Passphrase:   (8-63 characters or 64 hex digits)
 

 

[Javascript] Annoying

Code:

Web Content Management

A web content management solution is a kind of software which allows the user to make changes or edit the content of any website without having any web design knowledge. It is essentially a computer system which is used to maintain web documents. CMS web designers create series of CMS templates where webpages are dropped for future changes. User can then use a simple interface to add, delete or modify the content of the page. CMS also provides simple and easy way to create new webpages. A CMS allows document editing, auditing and timeline management.



Why CMS?
If you have a website then you need to update it regularly so that your visitors find it interesting. Stagnant websites are like stale food making every one disinterested to even see. But it will need a lot of money if you plan to update your site by web developers every week. Hence you can have a mid way for this. A CMS can help you update your website allowing you to edit or modify the content in your website. You can save money and time by using CMS. Through CMS, you can update your content as often as you want. With constant updating your site will look more interactive and appealing. If you plan to update your content then it is a good idea to have a CMS.



Key Features of CMS
Many CMS' have different features. It is not essential that every CMS will have similar features. The basic feature of CMS is to edit the content of the website. Many CMS' have features like access rights management and content approval, dynamic site maps, e-mail alerts, dual or multilingual functionality, form creation and management, standard and accessibility compliance, Meta tag updating, site security, image optimization and processing, versioning, static report and search functionality.



How to get CMS?
Many web deigning companies offer CMS along with other services. CMS pricing depends on the number of pages and users involved in it. You can get varieties of CMS offered by different companies. Make sure you do a thorough market research before spending big bucks on CMS. You can also consult software companies for better advice.

Yahoo Voice Socks Fresh List

108.197.126.35:1507 108.28.137.19:1330 108.6.60.250:1712 109.108.76.9:8618 112.95.238.199:1080 113.106.90.199:1080 114.36.0.19:8164 117.239.105.164:1080 117.240.73.3:1080 119.235.50.162:1080 119.36.138.131:1080 120.151.182.207:24437 120.29.155.2:1080 121.192.32.221:1080 121.8.124.42:1080 123.201.19.80:1080 124.207.233.117:1080 125.164.121.234:1080 131.247.19.133:7541 137.28.24.42:4005 140.198.113.219:1273 146.115.110.48:1049 146.115.25.15:14679 149.169.114.175:11897 149.169.119.88:1346 165.166.215.118:14415 173.16.16.58:1346 173.166.171.105:1511 173.168.63.81:9131 173.17.197.129:1143 173.182.159.207:7109 173.19.190.203:1381 173.2.151.182:24069 173.216.124.126:1069 173.216.4.55:11605 173.217.146.23:1690 173.217.93.22:1167 173.218.161.146:1745 173.22.63.177:1127 173.23.126.12:1768 173.230.112.197:9825 173.25.99.128:1908 173.27.10.8:1136 173.27.81.88:1750 173.3.162.218:11594 173.31.175.133:2002 173.31.56.208:1815 173.51.124.142:1144 173.60.108.251:23149 173.66.195.171:1110 173.69.200.203:1250 173.72.119.139:31765 173.74.208.70:13637 173.79.236.8:1090 173.81.213.117:1893 173.88.101.85:1283 173.88.181.169:1190 

Speed sock 5 servers

107.10.46.241:1783
107.8.47.78:4736
108.13.9.241:1283
108.6.60.250:1712
167.206.79.250:2393
173.16.197.183:1669
173.171.133.232:1490
173.184.183.123:2531
173.213.140.255:38791
173.216.150.80:1971
173.217.93.22:1282
173.29.21.246:22837
173.65.54.93:27647
173.73.27.191:1720
173.79.236.8:1090
173.81.169.226:2452
174.100.111.60:11606
174.111.58.228:1471
174.134.118.61:1268
174.49.127.98:1502
174.51.154.147:1952
174.53.151.38:1394
174.61.46.220:23981
174.96.233.17:20797
18.125.1.205:1330
184.155.18.77:4709
184.155.56.70:5978
184.167.68.20:1860
198.174.37.113:4283
199.192.159.47:1080
204.116.238.169:14437
208.107.17.187:1883
208.107.72.108:6939
208.114.72.87:1877
208.126.143.141:1674
208.65.13.147:1565
216.164.41.186:20513
216.221.207.233:1810
24.0.114.172:21555
24.1.103.178:1234
24.107.232.14:1744
24.11.197.191:42777
24.110.35.186:48315
24.113.201.130:1190
24.113.254.185:1174
24.12.239.53:12219
24.121.32.81:1884
24.121.62.130:1123
24.127.105.131:32293
24.128.77.115:57884
24.129.18.144:1377
24.140.27.212:45207
24.145.217.35:6311
24.147.100.184:1877
24.149.93.182:49193
24.151.162.43:1080
24.160.114.119:1471
24.177.38.192:1971
24.177.65.102:3107
24.179.58.130:1377
24.181.94.202:6829
24.184.26.235:28247
24.185.12.187:5587
24.187.252.6:1311
24.188.14.173:1529

[DEC 30] Checked & Filtered SSL Proxy List

67.228.53.122:80
124.16.10.44:8080
187.17.133.137:3128
189.7.81.5:3128
41.233.32.164:8080
113.106.210.230:8080
125.161.127.160:8080
180.246.179.177:3128
78.24.78.230:8080
122.52.117.92:8080
178.150.87.235:8080
200.222.88.18:3128
87.249.148.244:8000
31.185.24.205:3128
190.242.98.75:3128
119.235.26.140:8888
186.215.200.164:3128
199.106.100.4:80
93.174.2.169:3128
187.7.82.22:3128
200.252.216.133:8080
200.97.128.58:3128
85.31.70.157:80
184.107.235.230:3128
89.112.6.35:3128
190.249.167.176:8080
93.157.254.37:8080
202.93.221.62:8080
46.235.94.203:80
41.35.46.1:8080
2.228.2.14:80
201.89.88.4:3128
180.183.205.251:3128
178.162.154.129:3128
2.228.124.158:8080
110.138.239.81:8080
120.50.3.1:8080
87.250.100.194:8080
74.203.64.123:8080
187.103.43.18:3128
217.196.113.81:8080
95.140.115.41:8080
189.89.208.157:8080
80.82.145.52:8080
41.32.99.222:80
59.125.100.113:3128
218.152.121.191:8080
92.60.232.11:8080
212.90.191.126:8080
221.7.172.71:80
116.50.30.42:8080
189.51.255.250:3128
103.10.121.129:8080
82.128.123.22:8080
195.235.202.98:80
64.34.165.39:8118
41.197.132.150:80
190.25.188.136:3128
183.62.141.210:3128
85.126.224.146:8080
180.246.120.228:8080
184.107.108.42:3128
62.48.54.81:8080
115.124.64.254:8181
186.109.89.208:3128
118.97.45.139:3128
202.77.107.109:8082
118.97.18.164:8080
199.203.55.217:8080
91.121.66.28:3128
219.137.226.168:3128
124.226.193.133:8080
116.66.206.189:8989
119.235.50.138:3128
210.19.191.167:3128
89.31.145.195:8118
177.20.234.200:3128
78.46.212.216:3128
60.209.7.54:8080
186.251.177.226:3128
112.25.12.36:80
217.153.67.22:8080
93.62.187.6:8080
186.215.93.6:80
81.145.129.116:3128
119.235.49.202:3128
186.250.3.20:3128
81.223.49.103:8080
188.122.20.132:80
176.34.244.220:3128
190.90.161.66:8081
198.164.129.13:80
81.93.163.25:8080
158.123.252.5:80
186.225.39.86:8080
111.94.140.30:8080
125.163.212.15:808
190.199.128.30:3128
41.133.114.101:3128
124.109.51.154:80
195.191.159.34:8080
197.220.97.38:8080
88.102.251.95:80
180.247.255.154:3128
123.108.15.117:80
82.222.49.65:8080
81.214.86.198:3128
202.112.50.218:3128
222.124.154.107:80
90.177.253.145:8080
85.25.2.65:3128
86.125.12.8:8080
69.90.109.254:3128
187.75.254.26:3128
189.113.64.122:8080
91.135.28.26:8080
93.57.25.242:80
213.42.74.187:80
89.103.4.56:3128
94.248.159.45:3128
125.167.125.235:3128
122.155.2.75:80
177.65.8.8:8080
64.128.132.206:3128
200.86.194.165:8080
180.244.208.185:8080
210.4.73.130:8080
194.228.125.69:8080
180.245.249.125:8080
187.16.250.133:3128
213.57.119.55:8080
193.179.3.10:8080
218.30.111.40:80
41.79.48.12:8080
177.36.194.131:3128
190.196.19.129:3128
110.138.183.60:8080
201.15.13.117:80
210.4.66.163:8080
212.118.224.156:80
95.80.219.55:80
203.76.106.67:8080
79.139.85.78:3128
174.129.245.165:80
119.97.146.152:80
41.79.49.225:8080
112.25.12.38:80
190.92.17.17:8080

30/Dec/2011 VIP Http Proxies

1.227.196.123:8080
101.50.17.25:8080
108.59.253.113:3128
108.67.222.29:3128
108.95.190.42:80
108.95.190.42:8000
108.95.190.43:80
108.95.191.67:3128
109.121.205.236:8000
109.123.80.99:3128
109.160.76.32:3128
109.160.87.43:8080
109.204.121.123:80
109.234.199.41:3128
109.69.7.146:8080
109.70.21.83:3128
109.74.135.179:3128
109.86.220.228:3128
110.136.153.72:8008
110.136.39.156:8080
110.137.56.232:8008
110.138.101.250:3128
110.138.183.60:8080
110.138.194.153:8080
110.138.20.42:3128
110.138.207.141:8080
110.138.207.199:8080
110.138.208.116:8008
110.138.208.79:3128
110.138.210.109:80
110.138.210.109:8080
110.138.210.160:8080
110.138.211.39:8080
110.138.215.30:8080
110.138.215.48:8085
110.138.237.116:3128
110.138.237.80:3128
110.138.30.223:8080
110.139.15.57:8080
110.139.166.35:8080
110.139.182.234:80
110.139.24.116:3128
110.139.66.22:8080
110.164.214.118:3128
110.232.77.22:8080
110.234.104.25:3128
110.5.97.28:80
110.77.137.222:3128
111.93.26.10:8080
112.109.20.154:8888
112.136.157.96:3128
112.175.245.101:80
112.175.245.81:80
112.175.251.56:8080
112.215.62.99:8080
112.217.228.212:8080
112.85.42.69:80
112.91.70.2:80
112.91.70.3:80
112.91.70.4:80
113.106.234.226:8080
113.108.181.171:3128
113.140.49.135:3128
113.16.172.162:8080
113.192.1.99:3128
113.192.1.99:80
113.192.1.99:8000
113.192.1.99:8080
113.53.232.91:8080
113.53.240.90:3128
113.55.0.222:3128
114.112.253.22:3128
114.113.158.29:80
114.129.24.210:8080
114.129.27.228:8080
114.134.72.182:8080
114.134.76.30:8080
114.141.49.244:8080
114.199.81.155:80
114.199.81.155:8080
114.215.28.125:80
114.30.47.10:80
114.57.36.218:8080
114.6.14.132:80
114.80.80.8:8081
115.108.1.78:3128
115.108.172.67:3128
115.124.65.2:80
115.124.65.3:80
115.236.98.109:80
115.248.167.221:3128
115.31.136.249:8080
116.0.3.74:3128
116.226.38.161:8080
116.50.30.36:8080
116.50.30.42:8080
116.58.94.106:8080
116.66.203.249:80
116.68.250.50:8080
116.68.255.231:8080
116.90.172.250:8888
116.90.209.91:8080
117.102.101.219:8080
117.102.121.131:8888
117.20.56.66:3128
117.239.12.115:3128
117.239.40.66:8080
118.107.163.7:8000
118.112.185.71:8080
118.174.0.155:3128
118.96.120.197:80
118.96.123.8:8080
118.96.129.55:8080
118.96.130.99:3128
118.96.148.17:8080
118.96.151.110:8080
118.96.151.118:8080
118.96.152.155:8080
118.96.153.161:3128
118.96.153.161:80
118.96.185.98:8080
118.96.206.208:8080
118.96.217.82:8080
118.96.218.178:8080
118.96.226.214:8080
118.96.229.22:8080
118.96.248.196:8080
118.96.31.67:8080
118.96.52.126:3128
118.96.6.172:8080
118.96.78.16:8080
118.96.79.234:8080
118.96.89.155:8080
118.96.94.40:8080
118.97.12.44:8080
118.97.12.4:8080
118.97.164.75:8080
118.97.17.155:8080
118.97.17.157:8080
118.97.18.163:8080
118.97.18.250:8080
118.97.208.194:3128
118.97.234.217:3128
118.97.27.250:3128
118.97.30.210:8080
118.97.37.210:3128
118.97.44.154:8000
118.97.44.156:8080
118.97.45.139:3128
118.97.73.21:8080
118.97.75.187:3128
118.97.77.138:3128
118.97.85.52:8080
118.97.94.18:3128
118.97.94.18:8080
118.97.94.194:3128
118.97.94.19:8080
118.97.94.235:8080
118.98.161.26:3128
118.98.168.250:8080
118.98.171.58:8080
118.98.212.146:3128
118.98.212.146:80
118.98.215.62:8080
118.98.232.132:8080
118.98.35.251:8080
119.110.67.56:8080
119.110.72.14:8080
119.110.72.193:8080
119.147.146.135:8080
119.167.225.1:80
119.177.15.238:3128
119.226.131.85:3128
119.235.19.32:8080
119.235.54.125:3128
119.235.54.182:3128
119.235.54.197:3128
119.252.167.226:8080
119.252.167.227:8080
119.252.170.42:8080
119.82.225.98:8080
119.82.226.139:8080
119.82.231.142:3128
119.84.79.169:80
119.92.232.130:3128
120.136.20.243:8080
120.203.214.148:80
120.29.157.106:8080
120.29.158.242:8080
120.35.31.101:8080
120.50.2.10:80
120.50.2.10:8080
120.50.43.13:8080
120.50.43.48:8080
121.13.236.100:8080
121.13.236.101:8080
121.14.133.169:3128
121.22.34.166:3128
121.8.209.190:3128
121.97.128.20:8080
122.117.43.13:808
122.129.114.28:8080
122.129.119.10:8080
122.160.148.113:8000
122.225.22.22:8080
122.225.68.113:8181
122.225.68.114:8181
122.225.68.116:8181
122.225.68.117:8181
122.225.68.118:8181
122.225.68.120:8181
122.225.68.123:8181
122.225.68.124:8181
122.225.68.126:8181
122.48.31.76:80
122.48.31.77:80
122.72.1.131:80
122.72.33.138:80
122.72.33.139:80
123.127.98.170:80
123.15.33.34:8080
123.231.247.155:8080
123.231.252.162:3128
123.232.119.100:80
123.234.47.213:3128
123.234.70.58:3128
123.62.28.32:80
123.62.6.58:80
124.107.61.33:8080
124.109.51.154:80
124.124.110.204:3128
124.127.249.249:8909
124.172.250.177:3128
124.193.109.117:80
124.244.221.113:8909
124.40.254.51:8080
124.6.36.77:8080
124.81.235.38:8080
125.161.127.160:8080
125.162.170.42:3128
125.162.184.143:3128
125.162.231.248:3128
125.162.231.248:8080
125.163.210.203:3128
125.163.54.149:3128
125.163.54.149:8080
125.164.236.215:3128
125.164.69.237:8080
125.165.186.124:8080
125.167.125.235:3128
125.167.185.217:80
125.167.232.48:80
125.19.212.251:3128
125.210.188.36:80
125.253.96.108:8080
125.253.99.85:8080
125.40.181.247:8080
125.46.74.185:3128
125.76.227.6:3128
125.88.75.151:3128
125.90.196.153:3128

Newer Posts Older Posts Home