<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4270368249177761362</id><updated>2012-02-16T06:58:15.844-08:00</updated><title type='text'>Hacking and Cracking -- Start Coding for Fun</title><subtitle type='html'>This blog contains lots of technical stuff. If you guys interested in some hacking stuff keep in touch with my blog. All are FREE and well TESTED by my self.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-8033078086095438706</id><published>2012-01-08T04:32:00.000-08:00</published><updated>2012-01-08T04:37:10.257-08:00</updated><title type='text'>Forwarding Outlook Emails to your public Email Account or to your Pager</title><content type='html'>&lt;p class="MsoNormal"&gt;&lt;span &gt;I was searching ways of forwarding my Outlook emails to my mobile or either to my preferred public email accounts. Unfortunately all the easiest ways were blocked including email forwarding Outlook options, externally forwarding emails through a SMTP server and also forwarding mails from an external program. However, further studying on it I have found a way which is very interesting &amp;amp; no way of blocking it. That is by writing an Outlook Macro.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span &gt;Using Outlook Macro option you can write a custom VB code as you want as well as trigger your particular code with Outlook events such as when a new email received, etc.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span &gt;Also you can forward your Outlook emails to any email address, your mobile Pager address through your VB code in a totally customized way. You will be receiving the forwarded email to your public mail account or mobile as same way you sent through the Outlook.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span &gt;There is no way your system administrator could find out that you are using such a Macro, however, there is a possibility that your mails are blocking from the SMTP server end and due to server failure your code may retrying it forever. Therefore, your administrators would find it due to incoming traffic and failures from your mail account. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span &gt;So below is the code and use it with your own risk.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpFirst" style="text-indent:-.25in;mso-list:l0 level1 lfo1"&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;span &gt;&lt;span style="text-indent: -0.25in; font: normal normal normal 7pt/normal 'Times New Roman'; "&gt; &lt;/span&gt;&lt;span style="text-indent: -0.25in; "&gt;MS Outlook 2007 &amp;gt; Tools &amp;gt; Macro &amp;gt; Visual Basic Editor&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span &gt;&lt;span style="text-indent: -0.25in; font: normal normal normal 7pt/normal 'Times New Roman'; "&gt; &lt;/span&gt;&lt;span style="text-indent: -0.25in; "&gt;Copy &amp;amp; paste below code&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span &gt;&lt;span style="text-indent: -0.25in; font: normal normal normal 7pt/normal 'Times New Roman'; "&gt; &lt;/span&gt;&lt;span style="text-indent: -0.25in; "&gt;Provide your public email address, Save and Run it.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span &gt;&lt;span style="text-indent: -0.25in; "&gt;This will trigger when you receive a new email address and forward the content to given mail account.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;!--[if !supportLists]--&gt;&lt;p&gt;&lt;/p&gt;        &lt;p class="MsoNormal" style="margin-left:.25in"&gt;&lt;span &gt;Further, you can enhance this as you want by writing events only for your custom Inbox folders, forwarding attachments, etc.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt;&lt;span &gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="line-height: 150%; "&gt;&lt;span &gt;Private Sub Application_NewMail()&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt; Dim objItem As Outlook.MailItem&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   Dim objMailItem As Outlook.MailItem&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   Dim sEmailAddress As String&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   Dim sSubject As String&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   Dim sBody As String&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;    ' Get the item that likely triggered the event.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;  Set objItem = Application.GetNamespace("MAPI"). _&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   GetDefaultFolder(olFolderInbox).Items(1)&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;     sSubject = objItem.Subject &amp;amp; " From: " &amp;amp; _&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   objItem.SenderName&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;  sBody = objItem.Body&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;   Set objMailItem = Application.CreateItem(olMailItem)&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;  With objMailItem&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;    .Subject = sSubject&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;    .Body = sBody&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;    .Recipients.Add "YourPublicEmail@gmail.com"&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;    .Send&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;  End With&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormalCxSpMiddle" style="mso-margin-bottom-alt:auto;margin-left: .5in;mso-add-space:auto;line-height:150%"&gt;&lt;span &gt;  Set objMailItem = Nothing&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-8033078086095438706?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/8033078086095438706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=8033078086095438706' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/8033078086095438706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/8033078086095438706'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2012/01/forwarding-outlook-emails-to-your.html' title='Forwarding Outlook Emails to your public Email Account or to your Pager'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-7405616600097351609</id><published>2009-02-19T10:58:00.000-08:00</published><updated>2009-02-20T05:30:20.092-08:00</updated><title type='text'>Is Your Personal Email Account Being Hacked?</title><content type='html'>&lt;span style=";font-family:verdana;font-size:78%;"  &gt;Did someone hack your personal Email/Facebook/hi5 accounts? Or did someone create any fake facebook/hi5/myspace profiles with your personal information? Yurp, Most of buggers are doing those things and having fun over it. Most of mails I received were regarding those matters and it seems most of girls facing those problems&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;So how do we find out the buggers who are trying to play against you? You may think they can be experts in computer programming and you are not much good enough to tackle them. Remember this; there is no one we can call as a genius unless they are really good enough depend on their experience. If so they won’t waste their valuable time to do those silly things rather than research on a new thing. So be Optimistic. The hacker's simple mistake will be enough to track him easily. In this post I’ll explain you few simple ways of locating hackers.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;Basically the easiest way is to track his IP and locate him. The IPs can be dynamic or static. For example for website hosted servers or registered companies have static IPs. That assigned by your Internet Service Provider (ISP). It won’t change periodically. But our local machines IPs are dynamic. When we reset the router, our IP will be changed.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;So how do we gonna track hacker's IP?? There are many ways of tracking IP. One way is allow him to click a link. That will be the easiest way unless the hacker uses any &lt;a href="http://gamenuwan.blogspot.com/2007/03/anonymous-proxy-surfing.html"&gt;proxy browser&lt;/a&gt;. You can simply host a web page which locates IP of page requester and save it with the requested time. You can use an online free hosting server for it and pass that web page link in a tricky way to people that you want to track. The following php code stub will trace the IP of page requester and save it to a text file along with the requested time.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;$clientip = $_SERVER['REMOTE_ADDR'];&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;$myFile = "testFile.txt";&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;$fh = fopen($myFile, 'a') or die("can't open file");&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;$thetime = time();&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;$stringData = "$clientip -- $thetime \n";&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;fwrite($fh, $stringData);&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;fclose($fh);&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;?&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;Simply opening that text file you can get all IPs with accessed time.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;So is that the only way to trace an IP? Nope there are many. Another way is if the hacker sent you a mail you can read the mail header information find out his IP unless he use Gmail. So what about Gmail? Actually most of hackers use Gmail to send mails. One advantage is, it doesn’t show senders IP and the other one is we can send anonymous mails using gsmtp.gmail.com server.&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;[For more information about anonymous mails see my previous post: -&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;&lt;a href="http://gamenuwan.blogspot.com/2007/03/send-automatic-mail-using-smtp-server.html"&gt;http://gamenuwan.blogspot.com/2007/03/send-automatic-mail-using-smtp-server.html&lt;/a&gt; ]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;Then if some one sent an email through yahoo/msn/etc how are we gonna find out? It’s simple. Go to you mail box options and set visible true to view full header of your email. Refer the following image of a yahoo mail header. The "Received: from [xxx.xx.xxx.xx]" is the sender's IP address.&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HEkcbXl1SQY/SZ6wRZa29TI/AAAAAAAAAGI/Oi7yAg_HkLo/s1600-h/1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 172px;" src="http://4.bp.blogspot.com/_HEkcbXl1SQY/SZ6wRZa29TI/AAAAAAAAAGI/Oi7yAg_HkLo/s320/1.JPG" alt="" id="BLOGGER_PHOTO_ID_5304871224016827698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;Now you know few ways to trace someone's IP. After tracing the IP along with accessed Date and time how you gonna locate him?&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;First you can find out the location &amp;amp; registered names by searching it in IP lookup site.&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;Ex:- &lt;a href="http://ip-lookup.net/"&gt;http://ip-lookup.net/&lt;/a&gt;, &lt;a href="http://www.dnsstuff.com/"&gt;http://www.dnsstuff.com/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;If he has a static IP you will be getting the registered name, location and some other information. But if he has a dynamic IP then the IP locating site will result the location and details of his Internet Service Provider (ISP). So you know the IP with accessed time. The ISP can locate him by tracing that mapped IP with time that he used it. The ISP has pool of IPs and dynamically mapped that IPs among users. So all the mapped IPs, Timestamps and the mapped user details should be logged on their servers.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;Actually I explained you some simple methods to trace IPs. Those are more accurate and efficient methods. Other than that there are many other ways of tracing an IP.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;Some other methods to trace hackers:-&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;- You can create a .swf with an action script in order to steal cookies, IP, etc and send it as an Email attachment&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;- If you know his email address you can send a messenger request and trace his IP while chatting. Ex:- You can share a file and run "netstat -a" in your command prompt or you can use &lt;a href="http://gamenuwan.blogspot.com/2008/02/find-hackers-and-find-security-holes.html"&gt;WireShark &lt;/a&gt;tool I explained in my previous posts or You can use Sharp-IP-Getter to trace IP while chatting in the yahoo messenger]&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;- If you are familiar with &lt;a href="http://gamenuwan.blogspot.com/2007/06/hi-ppl.html"&gt;Cross-site scripting (XSS)&lt;/a&gt;, you can use malicious scripts to trace hackers or even to hack mail accounts.&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;- You can send a &lt;a href="http://gamenuwan.blogspot.com/2007/09/weird-development-of-keyloggers.html"&gt;KeyLogger&lt;/a&gt; to monitor his all activities and received them via a mail.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-7405616600097351609?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/7405616600097351609/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=7405616600097351609' title='107 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/7405616600097351609'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/7405616600097351609'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2009/02/is-your-personal-email-account-being.html' title='Is Your Personal Email Account Being Hacked?'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_HEkcbXl1SQY/SZ6wRZa29TI/AAAAAAAAAGI/Oi7yAg_HkLo/s72-c/1.JPG' height='72' width='72'/><thr:total>107</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-4499248566767945922</id><published>2008-08-19T09:45:00.000-07:00</published><updated>2008-08-19T11:00:22.574-07:00</updated><title type='text'>How to access blocked websites?? -Torpark, the anonymous browser</title><content type='html'>&lt;a style="font-family: verdana;" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HEkcbXl1SQY/SKsJYVNLN5I/AAAAAAAAADI/2Zmw5u0lYlc/s1600-h/Torpark_logo.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_HEkcbXl1SQY/SKsJYVNLN5I/AAAAAAAAADI/2Zmw5u0lYlc/s320/Torpark_logo.jpg" alt="" id="BLOGGER_PHOTO_ID_5236289305362249618" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family: verdana;font-size:78%;" &gt;I would like to introduce to you guys a something more useful and powerful which can use for the anonymous internet surfing. I received so many mails by asking how to unblock restricted websites. I explained in my previous posts about proxy sites and also listed some proxy sites which you can use to browse the internet anonymously. But it seems all those proxy sites have been blocked on your network. So what to do if the firewalls on your network block all your favorite websites and proxy sites as well?? &lt;/span&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;Don’t worry still you have a solution..  That is the &lt;span style="font-weight: bold;"&gt;Torpark&lt;/span&gt;.&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p style="font-family: verdana; text-align: justify;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;So what the hell is that and how does it do it huh??&lt;br /&gt;First of all how your firewall blocks websites?&lt;br /&gt;Basically it blocks websites by specified website URLS and by looking at keywords which has given by network administrator. For example FortiGate firewall has web filtering features such as URL/Keyword/Phrase Block, URL Exempt List, Content Profiles, Blocks Java Applet, Cookies, Active X, etc. In the FortiGate firewall content blocking enables you to specify file types and words that should have to block. With web content block enabled, every requested web page is checked against the content block list. The score value of each pattern appearing on the page is added, and if the total is greater than the threshold value set in the protection profile, the page is blocked.&lt;br /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;That can be happened if the firewall can read and understand the content of incoming data packets. So what if the firewall can’t understand the content of incoming data packets?? That means the firewall can’t find out any specific URLs or keywords within that web content…&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p style="font-family: verdana; text-align: justify;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;So that’s what exactly happened when we are browsing internet using Torpark. So let’s go in to the subject….&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p style="font-family: verdana; text-align: justify;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;The Torpark is a combination of Mozilla FireFox browser and the &lt;span style="font-weight: bold;"&gt;Tor&lt;/span&gt;(Onion Router).&lt;br /&gt;So what the hell is Tor??&lt;br /&gt;Tor is an Internet based system which enables users to communicate anonymously on the Internet. The Tor network encrypts traffic between a computer and the Tor network of routers. The client side Torpark browser connects out to Tor, periodically negotiating a virtual circuit through the Tor network. Tor provides a way for two parties - a connection initiator and a connection responder to communicate with each other anonymously. Which protects its communications against traffic analysis attacks. The all data packets are encrypted in a tunnel between your PC and the Tor network. After sending encrypted data to the Tor network, it will change the tunnels until it reach the internet as unencrypted. Also Tor network will be passing back data to your computer as encrypted and your Torpark browser is used to decrypt them and render it to user. So it will be bit slowly specially when establishing the circuit.&lt;br /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;So now you see how hard it is for network observers (such as crackers, companies, and governments) to reliably learn who is talking to whom and for what purpose, by examining data packets flowing over the network since which used to communicate all data in an encrypted and anonymous way. And another good thing is Torpark browser is portable and you can run it in a USB drive as well.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p style="font-family: verdana; text-align: justify;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;So I think I am done with this post. Hope you all got the idea. So good luck you all.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p style="font-family: verdana; text-align: justify;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;You can Download Torpark using following Urls:-&lt;br /&gt;&lt;a href="http://software-files.download.com/sd/K96LPWhkUUd27Whl5Ak_9tcrHVnNSlv2oFIlG9qstaDzuckKyLIChAARMidtxKL6LVEc-7vvyktR0S_w_lS0FTxZoKjYDxgO/software/10586816/10586817/3/Torpark_1.5.0.7.exe?lop=&amp;amp;ptype=1721&amp;amp;ontid=2356&amp;amp;siteId=4&amp;amp;edId=3&amp;amp;spi=52ca5d2fd74ea9b29fbb7f65660f9e9b&amp;amp;pid=10586816&amp;amp;psid=10586817"&gt;&lt;/a&gt;&lt;a href="http://www.download.com/Torpark/3000-2356_4-10586817.html?hhTest=1"&gt;http://www.download.com/Torpark/3000-2356_4-10586817.html?hhTest=1&lt;/a&gt;&lt;br /&gt;&lt;a href="http://software-files.download.com/sd/K96LPWhkUUd27Whl5Ak_9tcrHVnNSlv2oFIlG9qstaDzuckKyLIChAARMidtxKL6LVEc-7vvyktR0S_w_lS0FTxZoKjYDxgO/software/10586816/10586817/3/Torpark_1.5.0.7.exe?lop=&amp;amp;ptype=1721&amp;amp;ontid=2356&amp;amp;siteId=4&amp;amp;edId=3&amp;amp;spi=52ca5d2fd74ea9b29fbb7f65660f9e9b&amp;amp;pid=10586816&amp;amp;psid=10586817"&gt;Click here to Direct Download&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p style="font-family: verdana; text-align: justify;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;For More Info:-&lt;br /&gt;&lt;a href="http://news.softpedia.com/news/Anonymous-Portable-Web-Browsing-Via-Torpark-36123.shtml"&gt;&lt;/a&gt;&lt;a href="http://security.ngoinabox.org/ScreenShots/Torpark/manual.html"&gt;http://security.ngoinabox.org/ScreenShots/Torpark/manual.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://security.ngoinabox.org/Documentation/Manuals/chapters/Torpark.pdf"&gt;http://security.ngoinabox.org/Documentation/Manuals/chapters/Torpark.pdf&lt;/a&gt;&lt;br /&gt;&lt;a href="http://advosys.ca/viewpoints/2006/09/torpark-quick-look/"&gt;http://advosys.ca/viewpoints/2006/09/torpark-quick-look/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.linux.com/articles/53394"&gt;http://www.linux.com/articles/53394&lt;/a&gt;&lt;br /&gt;&lt;a href="http://news.softpedia.com/news/Anonymous-Portable-Web-Browsing-Via-Torpark-36123.shtml"&gt;http://news.softpedia.com/news/Anonymous-Portable-Web-Browsing-Via-Torpark-36123.shtml&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p style="font-family: verdana; text-align: justify;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-4499248566767945922?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/4499248566767945922/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=4499248566767945922' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/4499248566767945922'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/4499248566767945922'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2008/08/how-to-access-blocked-websites-torpark.html' title='How to access blocked websites?? -Torpark, the anonymous browser'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HEkcbXl1SQY/SKsJYVNLN5I/AAAAAAAAADI/2Zmw5u0lYlc/s72-c/Torpark_logo.jpg' height='72' width='72'/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-8592651709610097706</id><published>2008-02-29T22:58:00.000-08:00</published><updated>2008-11-12T20:09:41.233-08:00</updated><title type='text'>Find Hackers and Security Holes Using WIRESHARK!!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HEkcbXl1SQY/R8kHsCW5HVI/AAAAAAAAAC4/QYZqF0viMps/s1600-h/Wireshark_GameNuwan.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_HEkcbXl1SQY/R8kHsCW5HVI/AAAAAAAAAC4/QYZqF0viMps/s320/Wireshark_GameNuwan.jpg" alt="" id="BLOGGER_PHOTO_ID_5172674100140252498" border="0" /&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 51, 0);font-size:78%;" &gt;Hi Guys,&lt;/span&gt;          &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Up to now I have done few posts regarding hacking.. On this post I would like to introduce you a great tool called "Wireshark" in order to find out security vulnerabilities in your network,  in other word find out hackers who accessing your computer or the network .... huh&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;The scenario is like this;&lt;br /&gt;Think you are currently working on a computer network. There are thousands of computers. You feel someone is monitoring on you or someone is accessing your PC or someone is sniffing your yahoo chats or else you need to know which sites, IPs and Ports you are currently connected through your PC.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Test this command on your Windows Command Prompt:-&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-weight: bold;"&gt;C:\&gt;netstat -a&lt;/span&gt; &lt;/span&gt;&lt;/p&gt;            &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt;&lt;/o:p&gt;If you type that command on you Windows Command Prompt you could find out all the sites, IPs and Ports and people who currently accessing you computer. But if there is a serious hacking is going on its not enough to find out the bugger.&lt;br /&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;br /&gt;So lets move on to the topic.&lt;br /&gt;Wireshark (formerly known as Ethereal) is an extremely valuable tool which capable to scan Wireless and Ethernet data and comes with some robust filtering capabilities. In another words Wireshark is a network protocol analyzer, or “packet sniffer”, that captures and shows contents of network frames. It runs on Unix/Linux, and Windows. Wireshark uses the WinPcap project to capture packets (lipcap on Linux).&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;If you are a network administrator it would be really useful to control your network interface and find security holes. Even the Linux platform is vulnerable to attacks. This is an open source network packet sniffing product that would watch on DNS, TCP, UDP, HTTP and most the known network protocols.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="color: rgb(0, 51, 0);font-size:78%;" &gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HEkcbXl1SQY/R8kH9yW5HWI/AAAAAAAAADA/ikbpZSlYSMg/s1600-h/wireshark_Sample_GameNuwan.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_HEkcbXl1SQY/R8kH9yW5HWI/AAAAAAAAADA/ikbpZSlYSMg/s320/wireshark_Sample_GameNuwan.png" alt="" id="BLOGGER_PHOTO_ID_5172674405082930530" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;   &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;You can see the content of the captured data packets as well. If some other data packets going though your network location that would be captured as well. For example you can see the data packets received to the PCs that next to you. By looking at the content of data packets you can read their chat records as well.&lt;/span&gt;&lt;/p&gt;        &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;br /&gt;Download Wireshark:-&lt;br /&gt;&lt;a target="_blank" href="http://www.wireshark.org/download.html"&gt;http://www.wireshark.org/download.html&lt;/a&gt;&lt;a href="http://www.wireshark.org/download.html"&gt;&lt;br /&gt;&lt;/a&gt;&lt;a target="_blank" href="http://sourceforge.net/projects/wireshark/"&gt;http://sourceforge.net/projects/wireshark/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;      &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Website:-&lt;a href="http://www.wireshark.org/"&gt;&lt;br /&gt;&lt;/a&gt;&lt;a target="_blank" href="http://www.wireshark.org/"&gt;http://www.wireshark.org&lt;/a&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;        &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Basic User Guides:-&lt;br /&gt;&lt;a target="_blank" href="http://zone.ni.com/devzone/cda/tut/p/id/6746"&gt;&lt;/a&gt;&lt;a target="_blank" href="http://portforward.com/networking/wireshark.htm"&gt;http://portforward.com/networking/wireshark.htm&lt;/a&gt;&lt;br /&gt;&lt;a target="_blank" href="http://zone.ni.com/devzone/cda/tut/p/id/6746"&gt;http://zone.ni.com/devzone/cda/tut/p/id/6746&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;        &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Advanced User Guides:-&lt;br /&gt;&lt;a target="_blank" href="http://www.wireshark.org/docs/wsug_html_chunked/"&gt;http://www.wireshark.org/docs/wsug_html_chunked/&lt;/a&gt;&lt;br /&gt;&lt;a target="_blank" href="http://ftp.uni-kl.de/pub/wireshark/docs/user-guide-us.pdf"&gt;http://ftp.uni-kl.de/pub/wireshark/docs/user-guide-us.pdf&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Other References:-&lt;br /&gt;&lt;a target="_blank" href="http://www.willhackforsushi.com/books/377_eth_2e_06.pdf"&gt;http://www.willhackforsushi.com/books/377_eth_2e_06.pdf&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify; font-style: italic;"&gt;&lt;span style="font-size:78%;"&gt;Note:- This is an extremely powerful tool. If you are not a Network Administrator, be careful when you use this tool. Because if you run this tool on your machine which connected to a network, your Network Administrator can find out that you are using a Sniffing Tool. Because when you run it always there is a network traffic comes to your computer.&lt;/span&gt;&lt;/p&gt;    &lt;p class="MsoNormal"  style="text-align: justify; color: rgb(0, 51, 51);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-8592651709610097706?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/8592651709610097706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=8592651709610097706' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/8592651709610097706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/8592651709610097706'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2008/02/find-hackers-and-find-security-holes.html' title='Find Hackers and Security Holes Using WIRESHARK!!'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HEkcbXl1SQY/R8kHsCW5HVI/AAAAAAAAAC4/QYZqF0viMps/s72-c/Wireshark_GameNuwan.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-6133696118411289834</id><published>2008-01-24T06:38:00.000-08:00</published><updated>2008-01-25T04:52:42.938-08:00</updated><title type='text'>Windows Management Instrumentation! Its coool! :-)</title><content type='html'>&lt;p  style="color: rgb(0, 0, 102); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;hi guys,&lt;/span&gt;&lt;/p&gt;&lt;div style="color: rgb(0, 0, 102); font-family: verdana; text-align: justify;"&gt;  &lt;/div&gt;&lt;p  style="color: rgb(0, 0, 102); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;I just like to give you a brief idea about WMI interface. Actually it’s a kind of efficient way to access OS resources using programming modules. In another words it’s a bridge between your Windows OS and programming interface. Using WMI interface you can programmatically change computer settings as well as do many operations which your administrator can do on your computer.&lt;/span&gt;&lt;/p&gt;&lt;div style="color: rgb(0, 0, 102); font-family: verdana; text-align: justify;"&gt;      &lt;/div&gt;&lt;p  style="color: rgb(0, 0, 102); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style=""&gt; &lt;/span&gt;Actually it was very helpful for me once my PC infected with a damn virus and all administrative settings were disabled coz of it. So what I have done was I used WMI interface to access to OS resources including registry entries to change some settings. As well as if you are a developer it’s wide area you need to study.&lt;br /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;Basically WMI used WMI Query Language (WQL) to manipulate system resources. It’s just like SQL queries; if you are familiar with SQL it’s easy to make adjustment to WQL. Actually it’s hard to give a clear definition on this, but try to think like WMI as a repository of properties and methods related to the system environment that you canaccess like a database.&lt;/span&gt;&lt;/p&gt;&lt;div style="color: rgb(0, 0, 102); font-family: verdana; text-align: justify;"&gt;  &lt;/div&gt;&lt;p  style="color: rgb(0, 0, 102); text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;You need a few different objects to perform WMI queries in .Net.  They include the following:&lt;br /&gt;&lt;br /&gt;(all within System.Management namespace)&lt;br /&gt;&lt;span style="font-style: italic;"&gt;ConnectionOptions&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;ManagementScope&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;ObjectQuery&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;ManagementObjectSearcher&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;ManagementObjectCollection&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;ManagementObject&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="color: rgb(0, 0, 102); font-family: verdana; text-align: justify;"&gt;  &lt;/div&gt;&lt;div style="color: rgb(0, 0, 102); font-family: verdana; text-align: justify;"&gt;  &lt;/div&gt;&lt;p  style="color: rgb(0, 0, 102); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;Here is a sample  program that I used to search folders&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p face="verdana" style="text-align: justify; color: rgb(0, 0, 102); font-family: verdana;" class="MsoNormal"&gt;  &lt;/p&gt;&lt;p style="text-align: left; font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style=""&gt;public&lt;/span&gt;&lt;span style=""&gt; &lt;span style="color:blue;"&gt;static&lt;/span&gt; &lt;span style="color:blue;"&gt;void&lt;/span&gt; FindFoldersByName(&lt;span style="color:blue;"&gt;string&lt;/span&gt; strName)&lt;br /&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style=""&gt;&lt;span style=""&gt;   &lt;/span&gt;try&lt;/span&gt;&lt;br /&gt;&lt;span style=""&gt;&lt;span style=""&gt;   &lt;/span&gt;{&lt;br /&gt;&lt;span style=""&gt;        &lt;/span&gt;&lt;span style="color:green;"&gt;// Execute WMI Query and wait for result&lt;/span&gt;&lt;br /&gt;&lt;span style=""&gt;        &lt;/span&gt;&lt;span style="color:teal;"&gt;WqlObjectQuery&lt;/span&gt; wqlObjectQuery = &lt;span style="color:blue;"&gt;new&lt;/span&gt; &lt;span style="color:teal;"&gt;WqlObjectQuery&lt;/span&gt;&lt;br /&gt;&lt;span style=""&gt;                &lt;/span&gt;(&lt;span style="color:maroon;"&gt;"SELECT Name FROM CIM_Directory WHERE FileName = '"&lt;/span&gt; + strName + &lt;span style="color:maroon;"&gt;"'"&lt;/span&gt;);&lt;br /&gt;&lt;span style=""&gt;        &lt;/span&gt;&lt;span style="color:teal;"&gt;ManagementObjectSearcher&lt;/span&gt; searcher = &lt;span style="color:blue;"&gt;new&lt;/span&gt; &lt;span style="color:teal;"&gt;ManagementObjectSearcher&lt;/span&gt;(wqlObjectQuery);&lt;br /&gt;&lt;span style=""&gt;        &lt;/span&gt;&lt;span style="color:teal;"&gt;ManagementObjectCollection&lt;/span&gt; collFolders = searcher.Get();&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left; font-family: verdana;"&gt;                        &lt;/div&gt;&lt;p style="text-align: left; font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style=""&gt;&lt;span style=""&gt;        &lt;/span&gt;&lt;span style="color:green;"&gt;// Display each folder path...&lt;/span&gt;&lt;br /&gt;&lt;span style=""&gt;        &lt;/span&gt;&lt;span style="color:blue;"&gt;foreach&lt;/span&gt; (&lt;span style="color:teal;"&gt;ManagementObject&lt;/span&gt; folder &lt;span style="color:blue;"&gt;in&lt;/span&gt; collFolders)&lt;br /&gt;&lt;span style=""&gt;        &lt;/span&gt;{&lt;br /&gt;&lt;span style=""&gt;             &lt;/span&gt;&lt;span style="color:blue;"&gt;string&lt;/span&gt; strCurrentPath = folder.Properties[&lt;span style="color:maroon;"&gt;"Name"&lt;/span&gt;].Value.ToString();&lt;br /&gt;&lt;span style=""&gt;              &lt;/span&gt;&lt;span style="color:teal;"&gt;MessageBox&lt;/span&gt;.Show(strCurrentPath);&lt;br /&gt;&lt;span style=""&gt;        &lt;/span&gt;}&lt;br /&gt;&lt;span style=""&gt;     &lt;/span&gt;}&lt;br /&gt;&lt;span style=""&gt;     &lt;/span&gt;&lt;span style="color:blue;"&gt;catch&lt;/span&gt; (&lt;span style="color:teal;"&gt;Exception&lt;/span&gt; ex)&lt;br /&gt;&lt;span style=""&gt;     &lt;/span&gt;{&lt;br /&gt;&lt;span style=""&gt;         &lt;/span&gt;&lt;span style="color:teal;"&gt;MessageBox&lt;/span&gt;.Show(ex.ToString());&lt;br /&gt;&lt;span style=""&gt;     &lt;/span&gt;}&lt;br /&gt;&lt;span style=""&gt;  &lt;/span&gt;}&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: left; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p  style="text-align: left; font-weight: bold; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-size:10;"&gt;&lt;span style="font-size:78%;"&gt;More on this:-&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.codeguru.com/csharp/csharp/cs_network/wmi/article.php/c6035/#WMI"&gt;&lt;/a&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/aa394582%28VS.85%29.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa394582%28VS.85%29.aspx&lt;/a&gt;&lt;br /&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/aa510211.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa510211.aspx&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.codeguru.com/csharp/csharp/cs_network/wmi/article.php/c6035/#WMI"&gt;http://www.codeguru.com/csharp/csharp/cs_network/wmi/article.php/c6035/#WMI&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://www.codeguru.com/csharp/csharp/cs_network/wmi/article.php/c6035/#WMI"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;  &lt;/div&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-6133696118411289834?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/6133696118411289834/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=6133696118411289834' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/6133696118411289834'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/6133696118411289834'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2008/01/hi-guys-i-just-like-to-give-you-brief.html' title='Windows Management Instrumentation! Its coool! :-)'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-4824857841281382138</id><published>2007-09-20T06:19:00.000-07:00</published><updated>2008-11-12T20:09:41.565-08:00</updated><title type='text'>Weird development of Keyloggers..</title><content type='html'>&lt;div face="verdana" style="text-align: justify; font-family: verdana;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HEkcbXl1SQY/RveBqty7V5I/AAAAAAAAACo/j4TwsCSGO00/s1600-h/key_logger.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_HEkcbXl1SQY/RveBqty7V5I/AAAAAAAAACo/j4TwsCSGO00/s320/key_logger.jpg" alt="" id="BLOGGER_PHOTO_ID_5113698472750176146" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;How comfortable would you be if you can read someone's every single word that typed, including email messages, passwords, and IM conversations and so on? Definitely you may feel its really awesome, in other end you may feel its terrible if you knew someone out there monitoring on you. It can and does happen via a bit of code known as a keylogger. A keylogger is a computer program that logs each keystroke a user types on a keyboard and saves this data into a file or transfers it via the Internet to a predetermined remote host. The keyloggers represent a serious threat to your computer’s security and personal privacy. It’s a kind of weird development in computer history&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div face="verdana" style="text-align: justify; font-family: verdana;"&gt;    &lt;/div&gt;&lt;p  style="color: rgb(51, 0, 0); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;Basically there are two types of keyloggers &lt;/span&gt;&lt;/p&gt;&lt;div style="font-family: verdana; text-align: justify;"&gt;    &lt;/div&gt;&lt;p  style="color: rgb(51, 0, 0); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;1) H/W keyloggers and&lt;br /&gt;2) S/W keyloggers&lt;/span&gt;&lt;/p&gt;&lt;div style="font-family: verdana; text-align: justify;"&gt;    &lt;/div&gt;&lt;p  style="color: rgb(51, 0, 0); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;br /&gt;Hardware Keyloggers plug in between a computer keyboard and a computer and log all keyboard activity on an internal memory.They are designed to work with PS/2 keyboards, and more recentlywith USB keyboards.&lt;/span&gt;&lt;/p&gt;&lt;div style="font-family: verdana; text-align: justify;"&gt;    &lt;/div&gt;&lt;p  style="color: rgb(51, 0, 0); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;Hardware keyloggers have an advantage over software keyloggers as they begin logging from the moment a computer is turned on&lt;span style=""&gt;  &lt;/span&gt;(and are therefore able to collect a BIOS password for instance), and do not require software installation (unlike software solutions).&lt;/span&gt;&lt;/p&gt;&lt;div style="font-family: verdana; text-align: justify;"&gt;    &lt;/div&gt;&lt;p  style="color: rgb(51, 0, 0); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;But the SW keyloggers are much more powerful than the H/W keyloggers because now they are integrated with some Spy wares as well. Also we could find out HW keyloggers easily but to find an installed SW keylogger is a really hard job. It will entirely monitor what you have typed on your computer also processes currenly running on your computer as well as able to send keytrokes, chats, websites, screenshots of you computer desktop and passwords periodically&lt;span style=""&gt;  &lt;/span&gt;as an email attachment&lt;span style=""&gt;  &lt;/span&gt;or FTP to unknown parties. All the things are running as a hidden background process and you can’t view that process through the normal task manager.&lt;/span&gt;&lt;/p&gt;&lt;div style="font-family: verdana; text-align: justify;"&gt;    &lt;/div&gt;&lt;p  style="color: rgb(51, 0, 0); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;Also some keylogger soft wares allow you to install it on a remote PC on your network or sent it to someone as an email attachments.&lt;/span&gt;&lt;/p&gt;&lt;div style="font-family: verdana; text-align: justify;"&gt;    &lt;/div&gt;&lt;p  style="color: rgb(51, 0, 0); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;br /&gt;Here are some keyloggers I found in rapidshare.com&lt;/span&gt;&lt;/p&gt;&lt;div style="font-family: verdana; text-align: justify;"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-size:7;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://rapidshare.com/files/3633050/ardamax_metakodix___JR.rar"&gt;http://rapidshare.com/files/30447072/Dark_Elite.exe&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://rapidshare.com/files/3633050/ardamax_metakodix___JR.rar"&gt;http://rapidshare.com/files/23649214/keysteal_1.34.rar&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://rapidshare.com/files/3633050/ardamax_metakodix___JR.rar"&gt;http://rapidshare.com/files/17935151/AV-Tester.rar&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://rapidshare.com/files/3633050/ardamax_metakodix___JR.rar"&gt;http://rapidshare.com/files/18585289/Ghost_Keylogger.rar&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://rapidshare.com/files/3633050/ardamax_metakodix___JR.rar"&gt;http://rapidshare.com/files/3633050/ardamax_metakodix___JR.rar&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;p  style="color: rgb(51, 0, 0); text-align: justify; font-family: verdana;font-family:verdana;" class="MsoNormal"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-weight: bold;"&gt;I suggest you to use it for some testing and educational purposes only, but if you try to use it in order to hack or to damage someone's PC, remember that there are some ways to find out who exactly installed the keylogger and currently monitoring.&lt;/span&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-4824857841281382138?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/4824857841281382138/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=4824857841281382138' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/4824857841281382138'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/4824857841281382138'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/09/weird-development-of-keyloggers.html' title='Weird development of Keyloggers..'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_HEkcbXl1SQY/RveBqty7V5I/AAAAAAAAACo/j4TwsCSGO00/s72-c/key_logger.jpg' height='72' width='72'/><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-7260003143149978766</id><published>2007-06-05T02:49:00.000-07:00</published><updated>2009-07-03T22:15:24.673-07:00</updated><title type='text'>Cross Site Scripting (XSS) Vulnerabilities..</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_HEkcbXl1SQY/RmVknoduCwI/AAAAAAAAACY/bu0Bc05kr14/s1600-h/xss.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5072571187342478082" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://4.bp.blogspot.com/_HEkcbXl1SQY/RmVknoduCwI/AAAAAAAAACY/bu0Bc05kr14/s320/xss.jpg" border="0" /&gt;&lt;/a&gt; &lt;span style="font-family:verdana;font-size:78%;"&gt;Hi ppl.. I was searching and working with some Cross Site Scripts (XSS) on past few weeks. So I'm interesting to give a brief idea about XSS Vulnerabilities of websites and mail accounts ..&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;By the way,, What is XSS??? What kind of things XSS can do???&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;XSS stand for cross-side scripting and you can do many things when you get to know about XSS.. For example you can login to someones mail account, destroy a website or do what ever things you want in a website.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;Cross-site scripting is an attack that takes advantage of a Web site vulnerability in which the site displays content that includes unauthorized user-provided data. For example, an attacker might place a hyperlink with an embedded malicious script into an online discussion forum. That purpose of the malicious script is to attack other forum users who happen to select the hyperlink. For example it could copy user cookies and then send those cookies to the attacker.Sometimes attacker will send you a mail included with a malicious script. When you open it the script will execute and steal your cookie.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Different types of XSS attacks&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;1&lt;/span&gt;. DOM based or local XSS&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-Precondition: the vulnerable page uses data from the document.location, document.URL or document.referer properties in an insecure manner.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-The payload is never located in the html but in the URL. Thus also works with static pages.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-Only works with browser which do not modify the URL characters (of course IE 6.0 does not...)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-Used with social-engineering.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;2&lt;/span&gt;. Non-persistent or reflected XSS&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-Such holes show up when data provided by a web client is immediately used by the server to generate a page of result.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-Payload vector: mostly malicious URLs/links&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-Used with social engineering.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;3&lt;/span&gt;. Stored, persistent or second-order XSS&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-The payload is stored on the server.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;-Used with or without social engineering.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="TEXT-ALIGN: center"&gt;&lt;br /&gt;&lt;iframe id="654321" name="content" src="http://ha.ckers.org/xss.html" width="455" scrolling="yes" height="400"&gt;&amp;ampamp;amp;amp;amp;amp;amp;lt;br&amp;ampamp;amp;amp;amp;gt;             &amp;ampamp;amp;amp;amp;lt;br&amp;ampamp;amp;amp;amp;gt;                &lt;/iframe&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-7260003143149978766?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/7260003143149978766/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=7260003143149978766' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/7260003143149978766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/7260003143149978766'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/06/hi-ppl.html' title='Cross Site Scripting (XSS) Vulnerabilities..'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_HEkcbXl1SQY/RmVknoduCwI/AAAAAAAAACY/bu0Bc05kr14/s72-c/xss.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-5483538667618533759</id><published>2007-04-12T02:32:00.001-07:00</published><updated>2008-11-12T20:09:42.086-08:00</updated><title type='text'>Hacking GMAIL..</title><content type='html'>&lt;span style="font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Hi ppl, &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;Want to customize your GMAIL accounts?&lt;/span&gt;&lt;span style="font-size:78%;"&gt; Or want to know about how its really working? Or want to change it into an effiient way? Or Want to hack together scripts to do dangerously efficient things with your mail, This book will really help you!!&lt;/span&gt;&lt;/span&gt;&lt;a href="http://rapidshare.com/files/7524434/Hacking.Gmail.rar"&gt;&lt;/a&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;This ebook contains how gmail has implemented, how you could further customized it.Also on this book you could learn Ajax technology and CSS,JavaScripts in advance.&lt;br /&gt;In author words,If you picked up a book called Hacking Gmail, you’re very likely to want it. If you’re a programmer looking to use Gmail in wacky ways, this book is for you. If you’re a power user looking to hack together scripts to do dangerously efficient things with your mail, this book is for you.&lt;br /&gt;If you read this book and get some important tips[ex:- cookies,etc], hacking gmail accounts will not be an imposible thing.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="TEXT-ALIGN: right"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HEkcbXl1SQY/Rh399K41R9I/AAAAAAAAACQ/JYe5gE7_TOk/s1600-h/azfjhgjhgjhg.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5052473584316139474" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_HEkcbXl1SQY/Rh399K41R9I/AAAAAAAAACQ/JYe5gE7_TOk/s320/azfjhgjhgjhg.JPG" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://rapidshare.com/files/7524434/Hacking.Gmail.rar"&gt;Download&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-family:verdana;"&gt;&lt;em&gt;&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-family:verdana;"&gt;&lt;span style="font-family:arial;"&gt;&lt;em&gt;Note:- I got this book from rapidshare.com.Someone has uploaded this book on to it. And I just gave the link for it. I will not responsible for whatever things anyone does after reading this.&lt;/em&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-5483538667618533759?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/5483538667618533759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=5483538667618533759' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/5483538667618533759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/5483538667618533759'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/04/hacking-gmail.html' title='Hacking GMAIL..'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HEkcbXl1SQY/Rh399K41R9I/AAAAAAAAACQ/JYe5gE7_TOk/s72-c/azfjhgjhgjhg.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-2290783030468499253</id><published>2007-03-27T05:46:00.000-07:00</published><updated>2008-11-12T20:09:42.320-08:00</updated><title type='text'>What is SQL injection?</title><content type='html'>&lt;div align="justify"&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;span style="color:#993399;"&gt;&lt;strong&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HEkcbXl1SQY/Rgok-lGUPII/AAAAAAAAABM/wm1eld8SMKQ/s1600-h/pic001.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5046886989951155330" style="FLOAT: left; MARGIN: 0pt 10px 10px 0pt; CURSOR: pointer" alt="" src="http://3.bp.blogspot.com/_HEkcbXl1SQY/Rgok-lGUPII/AAAAAAAAABM/wm1eld8SMKQ/s320/pic001.jpg" border="0" /&gt;&lt;/a&gt;Definition-&lt;/strong&gt; SQL injection is a technique that exploits a security vulnerability occurring in the database layer of an application. The vulnerability is present when user input is either incorrectly filtered for string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby unexpectedly executed. It is in fact an instance of a more general class of vulnerabilities that can occur whenever one programming or scripting language is embedded inside another. ~Wiki&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;font-size:78%;color:#993399;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Hi all, Want to hack some web databases which located in different locations?? Yeahhhh you can do it!! I have already tried and its really fun. I am not going to tell you the sites that I have tried, but you could find more...&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;All you have to do is block all JavaScripts on your browser. You can easily do it by Firefox web browser. In order to do that with Firefox browser you have to download a pluggin called Web Developer 1.1.3 and install it on your browser.&lt;br /&gt;&lt;br /&gt;The Web Developer extension adds a menu and a toolbar to the browser with various web developer tools. It is designed for Firefox, Flock, Mozilla and Seamonkey, and will run on any platform that these browsers support including Windows, Mac OS X and Linux.&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span style="font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;Several websites do their control validations using client side scriptings.&lt;br /&gt;For example you want to retrive a invoice number from a particular website.&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:78%;"&gt;So the site allows you to enter only numbers(Integers) and also will retrieve only one record at a time.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;p align="justify"&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;So what will happen if you disable client scripts? If there isnt any sever side validations you have full privilege to enter anything on that field in order to process data.&lt;/span&gt;&lt;/p&gt;&lt;div align="justify"&gt;&lt;span style="font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;So why dont you get full advantage of it?&lt;br /&gt;If the website data processing has done by using SQL statements, &lt;/span&gt;&lt;span style="font-size:78%;"&gt;Why dont you enter some SQL statements on that field and see what will happen?&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;p align="justify"&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;Thats all about I have to say on this.. I guess you got my points.&lt;br /&gt;ha ha!! All the best!&lt;br /&gt;&lt;br /&gt;But keep it on your mind if you do something like that site will easily track your IP address and locate your location. So dont be afraid,use a anonymous proxy browsing site that I have mentioned below in order to hide IP and your funny face!! :-)&lt;/span&gt; &lt;/p&gt;&lt;p align="justify"&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Some Usefull Links:-&lt;/span&gt;&lt;br /&gt;&lt;a href="http://ferruh.mavituna.com/makale/sql-injection-cheatsheet/"&gt;&lt;span style="font-size:78%;"&gt;http://ferruh.mavituna.com/makale/sql-injection-cheatsheet/&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.spidynamics.com/papers/SQLInjectionWhitePaper.pdf"&gt;&lt;span style="font-size:78%;"&gt;http://www.spidynamics.com/papers/SQLInjectionWhitePaper.pdf&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.ngssoftware.com/papers/advanced_sql_injection.pdf"&gt;&lt;span style="font-size:78%;"&gt;http://www.ngssoftware.com/papers/advanced_sql_injection.pdf&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.imperva.com/application_defense_center/glossary/sql_injection.html"&gt;&lt;span style="font-size:78%;"&gt;http://www.imperva.com/application_defense_center/glossary/sql_injection.html&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-2290783030468499253?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/2290783030468499253/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=2290783030468499253' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2290783030468499253'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2290783030468499253'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/try-and-see.html' title='What is SQL injection?'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_HEkcbXl1SQY/Rgok-lGUPII/AAAAAAAAABM/wm1eld8SMKQ/s72-c/pic001.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-2645922427716201472</id><published>2007-03-26T06:49:00.000-07:00</published><updated>2008-11-12T20:09:42.424-08:00</updated><title type='text'>Want to Block a Site?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HEkcbXl1SQY/RgpQV1GUPNI/AAAAAAAAAB0/o6vVXEBI4r8/s1600-h/pic005.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_HEkcbXl1SQY/RgpQV1GUPNI/AAAAAAAAAB0/o6vVXEBI4r8/s320/pic005.jpg" alt="" id="BLOGGER_PHOTO_ID_5046934668383108306" border="0" /&gt;&lt;/a&gt;&lt;span style="color: rgb(102, 51, 102);font-family:verdana;font-size:78%;"  &gt;yoo guys do you want to block a site in your local computer? or change the localhost name? or want to give a specific name to known IP address? its simple. You can do it by editing the host file in your windows OS. So first of all what is the host file?&lt;/span&gt;&lt;br /&gt;&lt;div  style="text-align: justify; color: rgb(102, 51, 102);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;br /&gt;The Hosts file contains the mappings of IP addresses to host names. This file is loaded into memory (cache) at startup, then Windows checks the Hosts file before it queries any DNS servers, which enables it to override addresses in the DNS. This prevents access to the listed sites by redirecting any connection attempts back to the local machine. Another feature of the HOSTS file is its ability to block other applications from connecting to the Internet, providing the entry exists.&lt;br /&gt;&lt;br /&gt;You could find windows hosts files in following locations..&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Windows Vista      =      C:\WINDOWS\SYSTEM32\DRIVERS\ETC&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Windows XP     =     C:\WINDOWS\SYSTEM32\DRIVERS\ETC&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Windows 2K     =     C:\WINNT\SYSTEM32\DRIVERS\ETC&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win 98/ME     =     C:\WINDOWS&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Open the hosts file in notepad.&lt;br /&gt;For example if you want to block a site called www.hailztorm.com.&lt;br /&gt;Type following commands in the bottom of your host file,&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;127.0.0.1 www.hailztorm.com&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;127.0.0.1 www.nuwandimuthu.tk&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;127.0.0.1 www.gmail.com&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;When you surf to a site, Windows automatically checks to see if the address is located in the Hosts file. The number 127.0.0.1 is the "loop back" IP address of your own computer, so Windows skips the link to the site (www.hailztorm.com) and moves on. The ad server can't open its window, so it can't load any programs, spyware, or cookie files either.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-2645922427716201472?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/2645922427716201472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=2645922427716201472' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2645922427716201472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2645922427716201472'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/want-to-block-site.html' title='Want to Block a Site?'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_HEkcbXl1SQY/RgpQV1GUPNI/AAAAAAAAAB0/o6vVXEBI4r8/s72-c/pic005.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-2169522762466077062</id><published>2007-03-20T05:11:00.000-07:00</published><updated>2008-11-12T20:09:42.689-08:00</updated><title type='text'>Anonymous Proxy Surfing</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HEkcbXl1SQY/Rgon_lGUPJI/AAAAAAAAABU/BuKUpwlQxTg/s1600-h/pic002.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_HEkcbXl1SQY/Rgon_lGUPJI/AAAAAAAAABU/BuKUpwlQxTg/s320/pic002.jpg" alt="" id="BLOGGER_PHOTO_ID_5046890305665907858" border="0" /&gt;&lt;/a&gt;&lt;span style="color: rgb(102, 0, 0);font-size:78%;" &gt;&lt;span style="font-family:verdana;"&gt;When you surf the Internet your unique identification number  (IP number) can be detected by any Website you visit.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;       By using an anonymous proxy to surf  the web, lets you use another IP number which is provided by a server called  anonymous proxy server as your unique identification number. Your location and  IP address are not revealed due to the fact that you surf through a website  that provides anonymous surfing. Even the fact that you are using a proxy  server itself is also hidden.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;        Through an anonymous proxy, all web related  activities can be done normally, like browsing, chatting, sending and receiving  e-mails, transferring files, and more.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-5974218763723609"; google_ad_width = 728; google_ad_height = 90; google_ad_format = "728x90_as"; google_ad_type = "text"; google_ad_channel =""; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "000080"; google_color_url = "FFFFFF"; google_color_text = "333333"; //--&gt;&lt;/script&gt;         &lt;script type="text/javascript" src="Find%20Proxy%20-%20Fast%20anonymous%20web%20proxy%20browsing%20with%20findproxy.org%20-%20Rankings%20-%20All%20Sites_files/show_ads.js"&gt;&lt;br /&gt;  &lt;/script&gt;         &lt;script type="text/javascript"&gt;&lt;br /&gt;&lt;!-- // THIS CODE MUST BE **AFTER** THE ADSENSE CODE function adsense_log_click() {  if(window.status.indexOf('go to') == 0)  {   adsense_log_url_image = new Image();   adsense_log_url_image.src = '/adsense_clicklogger.php?R=' +    escape(document.location) + '&amp;U=' +    escape(window.status.substring(6));  } }  var elements; if(document.getElementsByTagName) {  elements = document.body.getElementsByTagName("IFRAME"); } else if (document.body.all) {  elements = document.body.all.tags("IFRAME"); } else {  elements = Array(); } for(var i = 0; i &lt;&gt; -1) {&lt;br /&gt;  elements[i].onfocus = adsense_log_click;&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//--&gt;&lt;br /&gt;  &lt;/script&gt;         &lt;form style="font-family: verdana; color: rgb(102, 0, 0);" method="get" name="proxy" action="http://www.findproxy.org/proxy.php" target="_blank"&gt;&lt;div align="center"&gt;              &lt;!-- Enter a URL to visit via proxy:&lt;br /&gt;&lt;br /&gt; &lt;input type="submit" value=" GO "&gt;&lt;br /&gt;&lt;br /&gt; --&gt;&lt;span style="font-size:78%;"&gt;Here is a huge list of websites that helps you to hide your poxies when internet browsing.&lt;br /&gt;&lt;select name="proxy" size="20" onclick="document.proxy.submit();" style="font-size: 10px;"&gt;              &lt;option value="random" selected="selected"&gt;*******    random proxy    ******* &lt;/option&gt;              &lt;option class="premium" value="http://www.proxyimpact.com"&gt;http://www.proxyimpact.com &lt;/option&gt;              &lt;option class="premium" value="http://alternativeproxy.com"&gt;http://alternativeproxy.com &lt;/option&gt;              &lt;option class="premium" value="http://www.publicproxy.com.ar"&gt;http://www.publicproxy.com.ar &lt;/option&gt;              &lt;option class="premium" value="http://www.ubridge.us"&gt;http://www.ubridge.us &lt;/option&gt;              &lt;option class="premium" value="http://uanon.com"&gt;http://uanon.com &lt;/option&gt;              &lt;option class="premium" value="http://www.hiltonproxy.com"&gt;http://www.hiltonproxy.com &lt;/option&gt;              &lt;option class="premium" value="http://www.vpass.us"&gt;http://www.vpass.us &lt;/option&gt;              &lt;option class="" value="http://safebrowse.info"&gt;http://safebrowse.info &lt;/option&gt;              &lt;option class="" value="http://spacecop.info"&gt;http://spacecop.info &lt;/option&gt;              &lt;option class="" value="http://invisurfer.info"&gt;http://invisurfer.info &lt;/option&gt;              &lt;option class="" value="http://www.bypassus.com"&gt;http://www.bypassus.com &lt;/option&gt;              &lt;option class="" value="http://www.cameraproxy.com"&gt;http://www.cameraproxy.com &lt;/option&gt;              &lt;option class="" value="http://typeurl.info"&gt;http://typeurl.info &lt;/option&gt;              &lt;option class="" value="http://hidenway.info"&gt;http://hidenway.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyhub.co.uk"&gt;http://www.proxyhub.co.uk &lt;/option&gt;              &lt;option class="" value="http://clearbrowse.info"&gt;http://clearbrowse.info &lt;/option&gt;              &lt;option class="" value="http://best-browse.info"&gt;http://best-browse.info &lt;/option&gt;              &lt;option class="" value="http://dialon.info"&gt;http://dialon.info &lt;/option&gt;              &lt;option class="" value="http://www.passmyspace.info"&gt;http://www.passmyspace.info &lt;/option&gt;              &lt;option class="" value="http://www.yourproxy.eu"&gt;http://www.yourproxy.eu &lt;/option&gt;              &lt;option class="" value="http://startconnect.info"&gt;http://startconnect.info &lt;/option&gt;              &lt;option class="" value="http://www.browseprox.com"&gt;http://www.browseprox.com &lt;/option&gt;              &lt;option class="" value="http://www.access24h.com"&gt;http://www.access24h.com &lt;/option&gt;              &lt;option class="" value="http://www.hiqj.com"&gt;http://www.hiqj.com &lt;/option&gt;              &lt;option class="" value="http://filternow.info"&gt;http://filternow.info &lt;/option&gt;              &lt;option class="" value="http://opensites.info"&gt;http://opensites.info &lt;/option&gt;              &lt;option class="" value="http://www.proxygym.info"&gt;http://www.proxygym.info &lt;/option&gt;              &lt;option class="" value="http://mediaproxy.info"&gt;http://mediaproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxygun.net"&gt;http://www.proxygun.net &lt;/option&gt;              &lt;option class="" value="http://zeuspoxy.info"&gt;http://zeuspoxy.info &lt;/option&gt;              &lt;option class="" value="http://usa-proxy.info"&gt;http://usa-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.letmego.in"&gt;http://www.letmego.in &lt;/option&gt;              &lt;option class="" value="http://myspace-browser.info"&gt;http://myspace-browser.info &lt;/option&gt;              &lt;option class="" value="http://secretsurfer.info"&gt;http://secretsurfer.info &lt;/option&gt;              &lt;option class="" value="http://schoolsurfer.info"&gt;http://schoolsurfer.info &lt;/option&gt;              &lt;option class="" value="http://connectproxy.info"&gt;http://connectproxy.info &lt;/option&gt;              &lt;option class="" value="http://pehw.com"&gt;http://pehw.com &lt;/option&gt;              &lt;option class="" value="http://www.get2surf.com"&gt;http://www.get2surf.com &lt;/option&gt;              &lt;option class="" value="http://onbrowser.info"&gt;http://onbrowser.info &lt;/option&gt;              &lt;option class="" value="http://smart-surf.info"&gt;http://smart-surf.info &lt;/option&gt;              &lt;option class="" value="http://hotsurfin.info"&gt;http://hotsurfin.info &lt;/option&gt;              &lt;option class="" value="http://real-browser.info"&gt;http://real-browser.info &lt;/option&gt;              &lt;option class="" value="http://url0.in"&gt;http://url0.in &lt;/option&gt;              &lt;option class="" value="http://access-proxy.info"&gt;http://access-proxy.info &lt;/option&gt;              &lt;option class="" value="http://thesurfer.info"&gt;http://thesurfer.info &lt;/option&gt;              &lt;option class="" value="http://www.fprox.info"&gt;http://www.fprox.info &lt;/option&gt;              &lt;option class="" value="http://vipsurfer.info"&gt;http://vipsurfer.info &lt;/option&gt;              &lt;option class="" value="http://private-server.info"&gt;http://private-server.info &lt;/option&gt;              &lt;option class="" value="http://hostingproxy.info"&gt;http://hostingproxy.info &lt;/option&gt;              &lt;option class="" value="http://wall-pass.info"&gt;http://wall-pass.info &lt;/option&gt;              &lt;option class="" value="http://autoproxy.info"&gt;http://autoproxy.info &lt;/option&gt;              &lt;option class="" value="http://megabrowse.info"&gt;http://megabrowse.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyradio.info"&gt;http://www.proxyradio.info &lt;/option&gt;              &lt;option class="" value="http://tooprox.info"&gt;http://tooprox.info &lt;/option&gt;              &lt;option class="" value="http://bypass-filter.info"&gt;http://bypass-filter.info &lt;/option&gt;              &lt;option class="" value="http://proxyftw.info"&gt;http://proxyftw.info &lt;/option&gt;              &lt;option class="" value="http://www.proxy411.com"&gt;http://www.proxy411.com &lt;/option&gt;              &lt;option class="" value="http://yourtunnel.info"&gt;http://yourtunnel.info &lt;/option&gt;              &lt;option class="" value="http://fixip.info"&gt;http://fixip.info &lt;/option&gt;              &lt;option class="" value="http://www.oprox.info"&gt;http://www.oprox.info &lt;/option&gt;              &lt;option class="" value="http://proexplorer.info"&gt;http://proexplorer.info &lt;/option&gt;              &lt;option class="" value="http://www.hiltonproxy.com"&gt;http://www.hiltonproxy.com &lt;/option&gt;              &lt;option class="" value="http://interproxy.info"&gt;http://interproxy.info &lt;/option&gt;              &lt;option class="" value="http://smart-browse.info"&gt;http://smart-browse.info &lt;/option&gt;              &lt;option class="" value="http://officesurf.info"&gt;http://officesurf.info &lt;/option&gt;              &lt;option class="" value="http://hugespace.info"&gt;http://hugespace.info &lt;/option&gt;              &lt;option class="" value="http://megasurfer.info"&gt;http://megasurfer.info &lt;/option&gt;              &lt;option class="" value="http://slpoint.com"&gt;http://slpoint.com &lt;/option&gt;              &lt;option class="" value="http://undertunnel.info"&gt;http://undertunnel.info &lt;/option&gt;              &lt;option class="bolded" value="http://www.privatproxy.com"&gt;http://www.privatproxy.com &lt;/option&gt;              &lt;option class="" value="http://wolfproxy.info"&gt;http://wolfproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.omgbrowser.com"&gt;http://www.omgbrowser.com &lt;/option&gt;              &lt;option class="" value="http://myunlockedspace.info"&gt;http://myunlockedspace.info &lt;/option&gt;              &lt;option class="" value="http://winsurfer.info"&gt;http://winsurfer.info &lt;/option&gt;              &lt;option class="" value="http://www.quickbypass.com"&gt;http://www.quickbypass.com &lt;/option&gt;              &lt;option class="" value="http://connect-x.info"&gt;http://connect-x.info &lt;/option&gt;              &lt;option class="" value="http://smart-browser.info"&gt;http://smart-browser.info &lt;/option&gt;              &lt;option class="" value="http://myspacebypass.com"&gt;http://myspacebypass.com &lt;/option&gt;              &lt;option class="" value="http://www.uprox.info"&gt;http://www.uprox.info &lt;/option&gt;              &lt;option class="" value="http://www.proxydream.com"&gt;http://www.proxydream.com &lt;/option&gt;              &lt;option class="" value="http://noteproxy.info"&gt;http://noteproxy.info &lt;/option&gt;              &lt;option class="" value="http://sneakysurfers.com"&gt;http://sneakysurfers.com &lt;/option&gt;              &lt;option class="" value="http://www.tunnelcorner.info"&gt;http://www.tunnelcorner.info &lt;/option&gt;              &lt;option class="" value="http://win-surf.info"&gt;http://win-surf.info &lt;/option&gt;              &lt;option class="bolded" value="http://www.privacysecure.info"&gt;http://www.privacysecure.info &lt;/option&gt;              &lt;option class="" value="http://browserfix.info"&gt;http://browserfix.info &lt;/option&gt;              &lt;option class="" value="http://www.downandaround.com"&gt;http://www.downandaround.com &lt;/option&gt;              &lt;option class="" value="http://www.myspaceciti.com"&gt;http://www.myspaceciti.com &lt;/option&gt;              &lt;option class="" value="http://www.hiddenwebbrowser.com"&gt;http://www.hiddenwebbrowser.com &lt;/option&gt;              &lt;option class="" value="http://providerx.info"&gt;http://providerx.info &lt;/option&gt;              &lt;option class="" value="http://web-unlocker.info"&gt;http://web-unlocker.info &lt;/option&gt;              &lt;option class="" value="http://openwebkey.info"&gt;http://openwebkey.info &lt;/option&gt;              &lt;option class="" value="http://www.proxinbox.com"&gt;http://www.proxinbox.com &lt;/option&gt;              &lt;option class="" value="http://www.unblockthat.info"&gt;http://www.unblockthat.info &lt;/option&gt;              &lt;option class="" value="http://herspeace.info"&gt;http://herspeace.info &lt;/option&gt;              &lt;option class="" value="http://iheartproxy.info"&gt;http://iheartproxy.info &lt;/option&gt;              &lt;option class="bolded" value="http://www.hideurip.com"&gt;http://www.hideurip.com &lt;/option&gt;              &lt;option class="" value="http://pirateproxy.info"&gt;http://pirateproxy.info &lt;/option&gt;              &lt;option class="" value="http://teleproxy.info"&gt;http://teleproxy.info &lt;/option&gt;              &lt;option class="" value="http://italproxy.info"&gt;http://italproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.sneakmeout.com"&gt;http://www.sneakmeout.com &lt;/option&gt;              &lt;option class="" value="http://proxyform.info"&gt;http://proxyform.info &lt;/option&gt;              &lt;option class="" value="http://www.winproxy.info"&gt;http://www.winproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyimpact.com"&gt;http://www.proxyimpact.com &lt;/option&gt;              &lt;option class="" value="http://virtualoff.info"&gt;http://virtualoff.info &lt;/option&gt;              &lt;option class="" value="http://viaweb.info"&gt;http://viaweb.info &lt;/option&gt;              &lt;option class="" value="http://www.itsmefavorite.co.uk/"&gt;http://www.itsmefavorite.co.uk/ &lt;/option&gt;              &lt;option class="" value="http://gerproxy.info"&gt;http://gerproxy.info &lt;/option&gt;              &lt;option class="" value="http://unlockedweb.info"&gt;http://unlockedweb.info &lt;/option&gt;              &lt;option class="" value="http://www.freesurfez.info"&gt;http://www.freesurfez.info &lt;/option&gt;              &lt;option class="" value="http://www.msurf.info"&gt;http://www.msurf.info &lt;/option&gt;              &lt;option class="" value="http://montaddress.info"&gt;http://montaddress.info &lt;/option&gt;              &lt;option class="" value="http://www.sneaksurf.info"&gt;http://www.sneaksurf.info &lt;/option&gt;              &lt;option class="" value="http://www.raditz.net"&gt;http://www.raditz.net &lt;/option&gt;              &lt;option class="" value="http://cantstopme.com"&gt;http://cantstopme.com &lt;/option&gt;              &lt;option class="" value="http://www.zawoogle.com"&gt;http://www.zawoogle.com &lt;/option&gt;              &lt;option class="" value="http://www.schoolunblocker.com"&gt;http://www.schoolunblocker.com &lt;/option&gt;              &lt;option class="" value="http://takefreely.info"&gt;http://takefreely.info &lt;/option&gt;              &lt;option class="" value="http://caproxy.info"&gt;http://caproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.hidemybum.com"&gt;http://www.hidemybum.com &lt;/option&gt;              &lt;option class="" value="http://genericproxy.info"&gt;http://genericproxy.info &lt;/option&gt;              &lt;option class="" value="http://hideyourass.info"&gt;http://hideyourass.info &lt;/option&gt;              &lt;option class="" value="http://www.shadowsurfer.info"&gt;http://www.shadowsurfer.info &lt;/option&gt;              &lt;option class="" value="http://lightbrowser.info"&gt;http://lightbrowser.info &lt;/option&gt;              &lt;option class="" value="http://http://seeproxy.info"&gt;http://http://seeproxy.info &lt;/option&gt;              &lt;option class="" value="http://h-transparent.info"&gt;http://h-transparent.info &lt;/option&gt;              &lt;option class="" value="http://www.bigproxies.info"&gt;http://www.bigproxies.info &lt;/option&gt;              &lt;option class="" value="http://www.proxymelody.com"&gt;http://www.proxymelody.com &lt;/option&gt;              &lt;option class="" value="http://uanon.com"&gt;http://uanon.com &lt;/option&gt;              &lt;option class="" value="http://adressfilter.info"&gt;http://adressfilter.info &lt;/option&gt;              &lt;option class="" value="http://www.nsurf.info"&gt;http://www.nsurf.info &lt;/option&gt;              &lt;option class="" value="http://usewebkey.info"&gt;http://usewebkey.info &lt;/option&gt;              &lt;option class="" value="http://proxy-eu.info"&gt;http://proxy-eu.info &lt;/option&gt;              &lt;option class="" value="http://www.butaneproxy.com"&gt;http://www.butaneproxy.com &lt;/option&gt;              &lt;option class="" value="http://fast-surfing.info"&gt;http://fast-surfing.info &lt;/option&gt;              &lt;option class="" value="http://procenter.info"&gt;http://procenter.info &lt;/option&gt;              &lt;option class="" value="http://win-surfer.info"&gt;http://win-surfer.info &lt;/option&gt;              &lt;option class="" value="http://allowline.info"&gt;http://allowline.info &lt;/option&gt;              &lt;option class="" value="http://browseproof.com"&gt;http://browseproof.com &lt;/option&gt;              &lt;option class="" value="http://proxywawe.info"&gt;http://proxywawe.info &lt;/option&gt;              &lt;option class="" value="http://www.proxy-monkey.com"&gt;http://www.proxy-monkey.com &lt;/option&gt;              &lt;option class="" value="http://existline.info "&gt;http://existline.info &lt;/option&gt;              &lt;option class="" value="http://opticproxy.info"&gt;http://opticproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.hidenature.info"&gt;http://www.hidenature.info &lt;/option&gt;              &lt;option class="" value="http://www.proxypunk.com"&gt;http://www.proxypunk.com &lt;/option&gt;              &lt;option class="" value="http://www.jprox.info"&gt;http://www.jprox.info &lt;/option&gt;              &lt;option class="" value="http://www.surfinstealth.com"&gt;http://www.surfinstealth.com &lt;/option&gt;              &lt;option class="" value="http://onholder.info"&gt;http://onholder.info &lt;/option&gt;              &lt;option class="" value="http://star-war.info"&gt;http://star-war.info &lt;/option&gt;              &lt;option class="" value="http://technologyreports.info/bypass/"&gt;http://technologyreports.info/bypass/ &lt;/option&gt;              &lt;option class="" value="http://getwebkey.info"&gt;http://getwebkey.info &lt;/option&gt;              &lt;option class="" value="http://funnysurf.info"&gt;http://funnysurf.info &lt;/option&gt;              &lt;option class="" value="http://getbandwidth.info"&gt;http://getbandwidth.info &lt;/option&gt;              &lt;option class="" value="http://gowebproxy.info"&gt;http://gowebproxy.info &lt;/option&gt;              &lt;option class="" value="http://useonly.info"&gt;http://useonly.info &lt;/option&gt;              &lt;option class="" value="http://mywebtunnel.info"&gt;http://mywebtunnel.info &lt;/option&gt;              &lt;option class="" value="http://fast-surfer.info"&gt;http://fast-surfer.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyauthority.com"&gt;http://www.proxyauthority.com &lt;/option&gt;              &lt;option class="" value="http://covertweb.info"&gt;http://covertweb.info &lt;/option&gt;              &lt;option class="" value="http://tele-proxy.info"&gt;http://tele-proxy.info &lt;/option&gt;              &lt;option class="" value="http://cutbrowse.info"&gt;http://cutbrowse.info &lt;/option&gt;              &lt;option class="" value="http://realbrowser.info"&gt;http://realbrowser.info &lt;/option&gt;              &lt;option class="" value="http://www.443proxy.com"&gt;http://www.443proxy.com &lt;/option&gt;              &lt;option class="" value="http://fraproxy.info"&gt;http://fraproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyadvice.info"&gt;http://www.proxyadvice.info &lt;/option&gt;              &lt;option class="" value="http://hide-profile.info"&gt;http://hide-profile.info &lt;/option&gt;              &lt;option class="" value="http://newsproxy.info"&gt;http://newsproxy.info &lt;/option&gt;              &lt;option class="" value="http://hotbrowser.info"&gt;http://hotbrowser.info &lt;/option&gt;              &lt;option class="" value="http://www.proxylobby.info"&gt;http://www.proxylobby.info &lt;/option&gt;              &lt;option class="" value="http://browseproxy.info"&gt;http://browseproxy.info &lt;/option&gt;              &lt;option class="" value="http://intunnel.info"&gt;http://intunnel.info &lt;/option&gt;              &lt;option class="" value="http://www.proxystars.com"&gt;http://www.proxystars.com &lt;/option&gt;              &lt;option class="" value="http://www.buffaloproxy.com"&gt;http://www.buffaloproxy.com &lt;/option&gt;              &lt;option class="" value="http://hidemyid.info"&gt;http://hidemyid.info &lt;/option&gt;              &lt;option class="" value="http://olimproxy.info"&gt;http://olimproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxybros.com"&gt;http://www.proxybros.com &lt;/option&gt;              &lt;option class="" value="http://big-proxy.info"&gt;http://big-proxy.info &lt;/option&gt;              &lt;option class="" value="http://hiddenstyle.info"&gt;http://hiddenstyle.info &lt;/option&gt;              &lt;option class="" value="http://startsurf.info"&gt;http://startsurf.info &lt;/option&gt;              &lt;option class="" value="http://www.proxy911.net"&gt;http://www.proxy911.net &lt;/option&gt;              &lt;option class="" value="http://www.reallycoolproxy.com"&gt;http://www.reallycoolproxy.com &lt;/option&gt;              &lt;option class="" value="http://sofaraway.info"&gt;http://sofaraway.info &lt;/option&gt;              &lt;option class="" value="http://www.ixune.com"&gt;http://www.ixune.com &lt;/option&gt;              &lt;option class="" value="http://smart-proxy.info"&gt;http://smart-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.webunblocker.info"&gt;http://www.webunblocker.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyscoop.com"&gt;http://www.proxyscoop.com &lt;/option&gt;              &lt;option class="" value="http://stealthpages.info"&gt;http://stealthpages.info &lt;/option&gt;              &lt;option class="" value="http://extraserver.info"&gt;http://extraserver.info &lt;/option&gt;              &lt;option class="" value="http://gethide.info"&gt;http://gethide.info &lt;/option&gt;              &lt;option class="" value="http://www.mybestproxy.info"&gt;http://www.mybestproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.anonabrowse.com"&gt;http://www.anonabrowse.com &lt;/option&gt;              &lt;option class="" value="http://www.redproxy.net"&gt;http://www.redproxy.net &lt;/option&gt;              &lt;option class="" value="http://probrowse.info"&gt;http://probrowse.info &lt;/option&gt;              &lt;option class="" value="http://webunblock.info"&gt;http://webunblock.info &lt;/option&gt;              &lt;option class="" value="http://myspace-anonymous-proxy.xtreview.com/"&gt;http://myspace-anonymous-proxy.xtreview.com/ &lt;/option&gt;              &lt;option class="" value="http://www.mimenine.com"&gt;http://www.mimenine.com &lt;/option&gt;              &lt;option class="" value="http://visaprox.info"&gt;http://visaprox.info &lt;/option&gt;              &lt;option class="" value="http://www.tunnelpride.info"&gt;http://www.tunnelpride.info &lt;/option&gt;              &lt;option class="" value="http://slipby.info"&gt;http://slipby.info &lt;/option&gt;              &lt;option class="" value="http://www.schoolsurf.info"&gt;http://www.schoolsurf.info &lt;/option&gt;              &lt;option class="" value="http://istantweb.info"&gt;http://istantweb.info &lt;/option&gt;              &lt;option class="" value="http://surfinsecret.info"&gt;http://surfinsecret.info &lt;/option&gt;              &lt;option class="" value="http://www.gsurf.info"&gt;http://www.gsurf.info &lt;/option&gt;              &lt;option class="" value="http://proxyfix.info"&gt;http://proxyfix.info &lt;/option&gt;              &lt;option class="" value="http://proxypiggy.com"&gt;http://proxypiggy.com &lt;/option&gt;              &lt;option class="" value="http://virtual-browse.info/"&gt;http://virtual-browse.info/ &lt;/option&gt;              &lt;option class="" value="http://fasterbrowser.info"&gt;http://fasterbrowser.info &lt;/option&gt;              &lt;option class="" value="http://greatestproxy.info"&gt;http://greatestproxy.info &lt;/option&gt;              &lt;option class="" value="http://easy-proxy.info"&gt;http://easy-proxy.info &lt;/option&gt;              &lt;option class="" value="http://hidefile.info"&gt;http://hidefile.info &lt;/option&gt;              &lt;option class="" value="http://poleproxy.info"&gt;http://poleproxy.info &lt;/option&gt;              &lt;option class="" value="http://proxyage.info"&gt;http://proxyage.info &lt;/option&gt;              &lt;option class="" value="http://mysapcebrowser.info"&gt;http://mysapcebrowser.info &lt;/option&gt;              &lt;option class="" value="http://changetunnel.info"&gt;http://changetunnel.info &lt;/option&gt;              &lt;option class="" value="http://hiddenway.info"&gt;http://hiddenway.info &lt;/option&gt;              &lt;option class="" value="http://www.prokzy.com"&gt;http://www.prokzy.com &lt;/option&gt;              &lt;option class="" value="http://eurekaproxy.info"&gt;http://eurekaproxy.info &lt;/option&gt;              &lt;option class="" value="http://pasteadress.info"&gt;http://pasteadress.info &lt;/option&gt;              &lt;option class="" value="http://free-browser.info"&gt;http://free-browser.info &lt;/option&gt;              &lt;option class="" value="http://www.proxymelody.info"&gt;http://www.proxymelody.info &lt;/option&gt;              &lt;option class="" value="http://go-now.info"&gt;http://go-now.info &lt;/option&gt;              &lt;option class="" value="http://ghostline.info"&gt;http://ghostline.info &lt;/option&gt;              &lt;option class="" value="http://www.proxystat.info"&gt;http://www.proxystat.info &lt;/option&gt;              &lt;option class="" value="http://vipsurfing.info"&gt;http://vipsurfing.info &lt;/option&gt;              &lt;option class="" value="http://www.HiddenMonkey.net"&gt;http://www.HiddenMonkey.net &lt;/option&gt;              &lt;option class="" value="http://proxy77.info"&gt;http://proxy77.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyrepair.info"&gt;http://www.proxyrepair.info &lt;/option&gt;              &lt;option class="" value="http://www.blockbypasser.com"&gt;http://www.blockbypasser.com &lt;/option&gt;              &lt;option class="" value="http://proksy.info"&gt;http://proksy.info &lt;/option&gt;              &lt;option class="" value="http://www.freefastproxy.info"&gt;http://www.freefastproxy.info &lt;/option&gt;              &lt;option class="bolded" value="http://www.anonymousbrowsing.info"&gt;http://www.anonymousbrowsing.info &lt;/option&gt;              &lt;option class="" value="http://proxyprovider.info"&gt;http://proxyprovider.info &lt;/option&gt;              &lt;option class="" value="http://star-proxy.info"&gt;http://star-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.vsurf.info"&gt;http://www.vsurf.info &lt;/option&gt;              &lt;option class="" value="http://redded.info"&gt;http://redded.info &lt;/option&gt;              &lt;option class="" value="http://classicproxy.info"&gt;http://classicproxy.info &lt;/option&gt;              &lt;option class="" value="http://gomars.info"&gt;http://gomars.info &lt;/option&gt;              &lt;option class="" value="http://centralproxy.info"&gt;http://centralproxy.info &lt;/option&gt;              &lt;option class="" value="http://labproxy.info"&gt;http://labproxy.info &lt;/option&gt;              &lt;option class="" value="http://x-anonymous.info"&gt;http://x-anonymous.info &lt;/option&gt;              &lt;option class="" value="http://imcunning.info"&gt;http://imcunning.info &lt;/option&gt;              &lt;option class="" value="http://consumerproxy.info"&gt;http://consumerproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.bondproxy.com"&gt;http://www.bondproxy.com &lt;/option&gt;              &lt;option class="" value="http://passstop.info"&gt;http://passstop.info &lt;/option&gt;              &lt;option class="" value="http://dark-surfer.info"&gt;http://dark-surfer.info &lt;/option&gt;              &lt;option class="" value="http://proxy-code.info"&gt;http://proxy-code.info &lt;/option&gt;              &lt;option class="" value="http://economicpro.info"&gt;http://economicpro.info &lt;/option&gt;              &lt;option class="" value="http://www.surf1.info"&gt;http://www.surf1.info &lt;/option&gt;              &lt;option class="" value="http://new-ip.info"&gt;http://new-ip.info &lt;/option&gt;              &lt;option class="" value="http://www.chicproxy.com"&gt;http://www.chicproxy.com &lt;/option&gt;              &lt;option class="" value="http://likeproxy.info"&gt;http://likeproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.csurf.info"&gt;http://www.csurf.info &lt;/option&gt;              &lt;option class="" value="http://winbrowser.info"&gt;http://winbrowser.info &lt;/option&gt;              &lt;option class="" value="http://silver-proxy.info"&gt;http://silver-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.e2n.info/"&gt;http://www.e2n.info/ &lt;/option&gt;              &lt;option class="" value="http://google-proxy.info"&gt;http://google-proxy.info &lt;/option&gt;              &lt;option class="" value="http://onprocess.info"&gt;http://onprocess.info &lt;/option&gt;              &lt;option class="" value="http://deladress.info"&gt;http://deladress.info &lt;/option&gt;              &lt;option class="" value="http://www.wprox.info"&gt;http://www.wprox.info &lt;/option&gt;              &lt;option class="" value="http://accessforbidden.net"&gt;http://accessforbidden.net &lt;/option&gt;              &lt;option class="" value="http://www.alwaysprox.com"&gt;http://www.alwaysprox.com &lt;/option&gt;              &lt;option class="" value="http://topproxy.url1.in"&gt;http://topproxy.url1.in &lt;/option&gt;              &lt;option class="" value="http://neo-proxy.info"&gt;http://neo-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxxxy.org"&gt;http://www.proxxxy.org &lt;/option&gt;              &lt;option class="" value="http://spaproxy.info"&gt;http://spaproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.6l5.net"&gt;http://www.6l5.net &lt;/option&gt;              &lt;option class="" value="http://www.ipcondom.com"&gt;http://www.ipcondom.com &lt;/option&gt;              &lt;option class="" value="http://www.tunnelvenue.info"&gt;http://www.tunnelvenue.info &lt;/option&gt;              &lt;option class="" value="http://onposting.info"&gt;http://onposting.info &lt;/option&gt;              &lt;option class="" value="http://wideaccess.info"&gt;http://wideaccess.info &lt;/option&gt;              &lt;option class="" value="http://www.milliondollardigital.com"&gt;http://www.milliondollardigital.com &lt;/option&gt;              &lt;option class="" value="http://filter-stop.info"&gt;http://filter-stop.info &lt;/option&gt;              &lt;option class="" value="http://outme.info"&gt;http://outme.info &lt;/option&gt;              &lt;option class="" value="http://his-space.info"&gt;http://his-space.info &lt;/option&gt;              &lt;option class="" value="http://www.hprox.info"&gt;http://www.hprox.info &lt;/option&gt;              &lt;option class="" value="http://www.yprox.info"&gt;http://www.yprox.info &lt;/option&gt;              &lt;option class="" value="http://www.cprox.info"&gt;http://www.cprox.info &lt;/option&gt;              &lt;option class="" value="http://www.web111.net"&gt;http://www.web111.net &lt;/option&gt;              &lt;option class="" value="http://technoexplorer.com"&gt;http://technoexplorer.com &lt;/option&gt;              &lt;option class="" value="http://valeblu.info"&gt;http://valeblu.info &lt;/option&gt;              &lt;option class="" value="http://live-proxy.info"&gt;http://live-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.hidelikebinladen.com"&gt;http://www.hidelikebinladen.com &lt;/option&gt;              &lt;option class="" value="http://avoidserver.info"&gt;http://avoidserver.info &lt;/option&gt;              &lt;option class="" value="http://zoxy.info"&gt;http://zoxy.info &lt;/option&gt;              &lt;option class="" value="http://xtunnel.info"&gt;http://xtunnel.info &lt;/option&gt;              &lt;option class="" value="http://www.sneakfiesta.info"&gt;http://www.sneakfiesta.info &lt;/option&gt;              &lt;option class="" value="http://www.surf24h.com"&gt;http://www.surf24h.com &lt;/option&gt;              &lt;option class="" value="http://proxyfix.info"&gt;http://proxyfix.info &lt;/option&gt;              &lt;option class="" value="http://proanaconda.info"&gt;http://proanaconda.info &lt;/option&gt;              &lt;option class="" value="http://biheaded.info"&gt;http://biheaded.info &lt;/option&gt;              &lt;option class="" value="http://hiprox.info"&gt;http://hiprox.info &lt;/option&gt;              &lt;option class="" value="http://biserver.info"&gt;http://biserver.info &lt;/option&gt;              &lt;option class="" value="http://hideid.info"&gt;http://hideid.info &lt;/option&gt;              &lt;option class="" value="http://outofyou.info"&gt;http://outofyou.info &lt;/option&gt;              &lt;option class="" value="http://hugeproxy.info"&gt;http://hugeproxy.info &lt;/option&gt;              &lt;option class="" value="http://helpmebrowse.com"&gt;http://helpmebrowse.com &lt;/option&gt;              &lt;option class="" value="http://neoproxy.info"&gt;http://neoproxy.info &lt;/option&gt;              &lt;option class="" value="http://passadoproxy.com"&gt;http://passadoproxy.com &lt;/option&gt;              &lt;option class="" value="http://unfilter.info"&gt;http://unfilter.info &lt;/option&gt;              &lt;option class="" value="http://in-theweb.info"&gt;http://in-theweb.info &lt;/option&gt;              &lt;option class="" value="http://www.freshbb.com"&gt;http://www.freshbb.com &lt;/option&gt;              &lt;option class="" value="http://abcline.info"&gt;http://abcline.info &lt;/option&gt;              &lt;option class="" value="http://surfingline.info"&gt;http://surfingline.info &lt;/option&gt;              &lt;option class="" value="http://credit-card-sl.info"&gt;http://credit-card-sl.info &lt;/option&gt;              &lt;option class="" value="http://www.secretbypass.com"&gt;http://www.secretbypass.com &lt;/option&gt;              &lt;option class="" value="http://www.proxymeup.com"&gt;http://www.proxymeup.com &lt;/option&gt;              &lt;option class="" value="http://www.msurf.info"&gt;http://www.msurf.info &lt;/option&gt;              &lt;option class="" value="http://iptube.info"&gt;http://iptube.info &lt;/option&gt;              &lt;option class="" value="http://myspace-sufring.info"&gt;http://myspace-sufring.info &lt;/option&gt;              &lt;option class="" value="http://fileproxy.info"&gt;http://fileproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.superhide.info"&gt;http://www.superhide.info &lt;/option&gt;              &lt;option class="" value="http://iran-proxy.info"&gt;http://iran-proxy.info &lt;/option&gt;              &lt;option class="" value="http://proxyftw.net"&gt;http://proxyftw.net &lt;/option&gt;              &lt;option class="" value="http://virtualsurfer.info"&gt;http://virtualsurfer.info &lt;/option&gt;              &lt;option class="" value="http://web-browse.info"&gt;http://web-browse.info &lt;/option&gt;              &lt;option class="bolded" value="http://www.proxydream.com"&gt;http://www.proxydream.com &lt;/option&gt;              &lt;option class="" value="http://proxycab.com"&gt;http://proxycab.com &lt;/option&gt;              &lt;option class="" value="http://her-speace.info"&gt;http://her-speace.info &lt;/option&gt;              &lt;option class="" value="http://browservice.info"&gt;http://browservice.info &lt;/option&gt;              &lt;option class="bolded" value="http://schoolunblocker.net"&gt;http://schoolunblocker.net &lt;/option&gt;              &lt;option class="" value="http://www.zsurf.info"&gt;http://www.zsurf.info &lt;/option&gt;              &lt;option class="" value="http://kompany.info"&gt;http://kompany.info &lt;/option&gt;              &lt;option class="" value="http://linerace.info"&gt;http://linerace.info &lt;/option&gt;              &lt;option class="" value="http://world-server.info"&gt;http://world-server.info &lt;/option&gt;              &lt;option class="" value="http://www.koxy.info"&gt;http://www.koxy.info &lt;/option&gt;              &lt;option class="" value="http://infoproxy.info"&gt;http://infoproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.joxy.info"&gt;http://www.joxy.info &lt;/option&gt;              &lt;option class="" value="http://www.wacast.com"&gt;http://www.wacast.com &lt;/option&gt;              &lt;option class="" value="http://www.egyb.com"&gt;http://www.egyb.com &lt;/option&gt;              &lt;option class="" value="http://www.proxycorner.net"&gt;http://www.proxycorner.net &lt;/option&gt;              &lt;option class="" value="http://www.proxy4.net"&gt;http://www.proxy4.net &lt;/option&gt;              &lt;option class="" value="http://mega-browser.info"&gt;http://mega-browser.info &lt;/option&gt;              &lt;option class="" value="http://hiddenclick.info"&gt;http://hiddenclick.info &lt;/option&gt;              &lt;option class="" value="http://www.osurf.info"&gt;http://www.osurf.info &lt;/option&gt;              &lt;option class="" value="http://www.fastsneak.info"&gt;http://www.fastsneak.info &lt;/option&gt;              &lt;option class="bolded" value="http://www.filtersneak.com"&gt;http://www.filtersneak.com &lt;/option&gt;              &lt;option class="" value="http://planetprox.info"&gt;http://planetprox.info &lt;/option&gt;              &lt;option class="" value="http://puttit.info"&gt;http://puttit.info &lt;/option&gt;              &lt;option class="" value="http://www.ffpu.com"&gt;http://www.ffpu.com &lt;/option&gt;              &lt;option class="" value="http://www.proxz.info"&gt;http://www.proxz.info &lt;/option&gt;              &lt;option class="" value="http://unblocking.info"&gt;http://unblocking.info &lt;/option&gt;              &lt;option class="" value="http://surfout.info"&gt;http://surfout.info &lt;/option&gt;              &lt;option class="" value="http://alternativeproxy.com"&gt;http://alternativeproxy.com &lt;/option&gt;              &lt;option class="" value="http://www.lld.cc"&gt;http://www.lld.cc &lt;/option&gt;              &lt;option class="" value="http://dark-browser.info"&gt;http://dark-browser.info &lt;/option&gt;              &lt;option class="" value="http://www.gotbanned.net"&gt;http://www.gotbanned.net &lt;/option&gt;              &lt;option class="" value="http://www.doxprox.com"&gt;http://www.doxprox.com &lt;/option&gt;              &lt;option class="" value="http://brazilpro.info"&gt;http://brazilpro.info &lt;/option&gt;              &lt;option class="" value="http://water-proxy.info"&gt;http://water-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.private-proxy.info"&gt;http://www.private-proxy.info &lt;/option&gt;              &lt;option class="bolded" value="http://www.whosgonnaknow.com"&gt;http://www.whosgonnaknow.com &lt;/option&gt;              &lt;option class="" value="http://www.ubridge.us"&gt;http://www.ubridge.us &lt;/option&gt;              &lt;option class="" value="http://www.proxyhell.info/"&gt;http://www.proxyhell.info/ &lt;/option&gt;              &lt;option class="" value="http://www.proxysurfs.com"&gt;http://www.proxysurfs.com &lt;/option&gt;              &lt;option class="" value="http://schoolsurfing.info"&gt;http://schoolsurfing.info &lt;/option&gt;              &lt;option class="" value="http://www.chilaxin.net"&gt;http://www.chilaxin.net &lt;/option&gt;              &lt;option class="" value="http://modernproxy.info"&gt;http://modernproxy.info &lt;/option&gt;              &lt;option class="" value="http://zaper.info"&gt;http://zaper.info &lt;/option&gt;              &lt;option class="" value="http://www.proxypride.com"&gt;http://www.proxypride.com &lt;/option&gt;              &lt;option class="" value="http://hot-surfin.info"&gt;http://hot-surfin.info &lt;/option&gt;              &lt;option class="" value="http://toeg.info"&gt;http://toeg.info &lt;/option&gt;              &lt;option class="" value="http://enterzone.inf"&gt;http://enterzone.inf &lt;/option&gt;              &lt;option class="" value="http://www.jsurf.info"&gt;http://www.jsurf.info &lt;/option&gt;              &lt;option class="" value="http://new-form.info"&gt;http://new-form.info &lt;/option&gt;              &lt;option class="" value="http://www.dsurf.info"&gt;http://www.dsurf.info &lt;/option&gt;              &lt;option class="" value="http://goonsurf.info"&gt;http://goonsurf.info &lt;/option&gt;              &lt;option class="" value="http://www.imsneaky.com"&gt;http://www.imsneaky.com &lt;/option&gt;              &lt;option class="" value="http://fast-browser.info"&gt;http://fast-browser.info &lt;/option&gt;              &lt;option class="" value="http://easytunnel.info"&gt;http://easytunnel.info &lt;/option&gt;              &lt;option class="" value="http://browse-proxy.info"&gt;http://browse-proxy.info &lt;/option&gt;              &lt;option class="" value="http://exsclusive.info"&gt;http://exsclusive.info &lt;/option&gt;              &lt;option class="" value="http://transparent-proxy.info"&gt;http://transparent-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxy-demon.com"&gt;http://www.proxy-demon.com &lt;/option&gt;              &lt;option class="" value="http://www.proxydiva.info"&gt;http://www.proxydiva.info &lt;/option&gt;              &lt;option class="" value="http://okproxy.info"&gt;http://okproxy.info &lt;/option&gt;              &lt;option class="" value="http://urlbrowse.com"&gt;http://urlbrowse.com &lt;/option&gt;              &lt;option class="" value="http://123proxy.net"&gt;http://123proxy.net &lt;/option&gt;              &lt;option class="" value="http://surfhide.info"&gt;http://surfhide.info &lt;/option&gt;              &lt;option class="" value="http://star-surfer.info"&gt;http://star-surfer.info &lt;/option&gt;              &lt;option class="" value="http://www.myamigos.in"&gt;http://www.myamigos.in &lt;/option&gt;              &lt;option class="" value="http://the-browser.info"&gt;http://the-browser.info &lt;/option&gt;              &lt;option class="" value="http://www.iprox.info"&gt;http://www.iprox.info &lt;/option&gt;              &lt;option class="" value="http://www.11business.com"&gt;http://www.11business.com &lt;/option&gt;              &lt;option class="" value="http://browseagent.info"&gt;http://browseagent.info &lt;/option&gt;              &lt;option class="" value="http://youproxy.info"&gt;http://youproxy.info &lt;/option&gt;              &lt;option class="" value="http://simplesurf.info"&gt;http://simplesurf.info &lt;/option&gt;              &lt;option class="" value="http://pureline.info"&gt;http://pureline.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyfiesta.info"&gt;http://www.proxyfiesta.info &lt;/option&gt;              &lt;option class="" value="http://www.supernerdsproxy.com"&gt;http://www.supernerdsproxy.com &lt;/option&gt;              &lt;option class="" value="http://mysection.info"&gt;http://mysection.info &lt;/option&gt;              &lt;option class="" value="http://www.b-ored.com"&gt;http://www.b-ored.com &lt;/option&gt;              &lt;option class="" value="http://fastsurfing.info"&gt;http://fastsurfing.info &lt;/option&gt;              &lt;option class="" value="http://www.ksurf.info"&gt;http://www.ksurf.info &lt;/option&gt;              &lt;option class="" value="http://surftour.info"&gt;http://surftour.info &lt;/option&gt;              &lt;option class="" value="http://webunlocker.info"&gt;http://webunlocker.info &lt;/option&gt;              &lt;option class="" value="http://www.mysafesurf.com/"&gt;http://www.mysafesurf.com/ &lt;/option&gt;              &lt;option class="" value="http://comandline.info"&gt;http://comandline.info &lt;/option&gt;              &lt;option class="" value="http://www.access24h.com"&gt;http://www.access24h.com &lt;/option&gt;              &lt;option class="" value="http://www.gprox.info"&gt;http://www.gprox.info &lt;/option&gt;              &lt;option class="" value="http://www.nprox.info"&gt;http://www.nprox.info &lt;/option&gt;              &lt;option class="" value="http://pro-proxy.info"&gt;http://pro-proxy.info &lt;/option&gt;              &lt;option class="" value="http://milanproxy.info"&gt;http://milanproxy.info &lt;/option&gt;              &lt;option class="" value="http://townprox.info"&gt;http://townprox.info &lt;/option&gt;              &lt;option class="" value="http://unlock-myspace.info"&gt;http://unlock-myspace.info &lt;/option&gt;              &lt;option class="" value="http://surfaddress.info"&gt;http://surfaddress.info &lt;/option&gt;              &lt;option class="" value="http://typeadress.info"&gt;http://typeadress.info &lt;/option&gt;              &lt;option class="" value="http://startsurfing.info"&gt;http://startsurfing.info &lt;/option&gt;              &lt;option class="" value="http://dark-proxy.info"&gt;http://dark-proxy.info &lt;/option&gt;              &lt;option class="" value="http://bluram.info"&gt;http://bluram.info &lt;/option&gt;              &lt;option class="" value="http://www.willthisdayend.com"&gt;http://www.willthisdayend.com &lt;/option&gt;              &lt;option class="" value="http://comhider.info"&gt;http://comhider.info &lt;/option&gt;              &lt;option class="" value="http://mytunnel.info"&gt;http://mytunnel.info &lt;/option&gt;              &lt;option class="" value="http://unblocksystem.info"&gt;http://unblocksystem.info &lt;/option&gt;              &lt;option class="" value="http://www.mprox.info"&gt;http://www.mprox.info &lt;/option&gt;              &lt;option class="" value="http://vitalproxy.info"&gt;http://vitalproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.surfeverywhere.com/"&gt;http://www.surfeverywhere.com/ &lt;/option&gt;              &lt;option class="" value="http://www.trustedproxy.com"&gt;http://www.trustedproxy.com &lt;/option&gt;              &lt;option class="" value="http://proxyroad.com"&gt;http://proxyroad.com &lt;/option&gt;              &lt;option class="" value="http://www.megasneak.com"&gt;http://www.megasneak.com &lt;/option&gt;              &lt;option class="" value="http://starsurfer.info"&gt;http://starsurfer.info &lt;/option&gt;              &lt;option class="" value="http://browse-agent.info"&gt;http://browse-agent.info &lt;/option&gt;              &lt;option class="" value="http://www.pussyproxy.com"&gt;http://www.pussyproxy.com &lt;/option&gt;              &lt;option class="" value="http://www.dvdproxy.com"&gt;http://www.dvdproxy.com &lt;/option&gt;              &lt;option class="" value="http://pageglove.com"&gt;http://pageglove.com &lt;/option&gt;              &lt;option class="" value="http://www.virtual-browser.info"&gt;http://www.virtual-browser.info &lt;/option&gt;              &lt;option class="" value="http://www.spookysurf.com"&gt;http://www.spookysurf.com &lt;/option&gt;              &lt;option class="" value="http://top-proxy.info"&gt;http://top-proxy.info &lt;/option&gt;              &lt;option class="" value="http://waveproxy.info"&gt;http://waveproxy.info &lt;/option&gt;              &lt;option class="" value="http://workingproxy.info"&gt;http://workingproxy.info &lt;/option&gt;              &lt;option class="" value="http://bebo-free.info"&gt;http://bebo-free.info &lt;/option&gt;              &lt;option class="" value="http://www.totprox.com"&gt;http://www.totprox.com &lt;/option&gt;              &lt;option class="" value="http://url-browse.info"&gt;http://url-browse.info &lt;/option&gt;              &lt;option class="" value="http://www.vpass.us"&gt;http://www.vpass.us &lt;/option&gt;              &lt;option class="" value="http://www.bitsubmit.com"&gt;http://www.bitsubmit.com &lt;/option&gt;              &lt;option class="" value="http://casinoproxy.info"&gt;http://casinoproxy.info &lt;/option&gt;              &lt;option class="" value="http://getship.info"&gt;http://getship.info &lt;/option&gt;              &lt;option class="" value="http://hidepost.com"&gt;http://hidepost.com &lt;/option&gt;              &lt;option class="bolded" value="http://www.hidemysites.com"&gt;http://www.hidemysites.com &lt;/option&gt;              &lt;option class="" value="http://chinaproxy.info"&gt;http://chinaproxy.info &lt;/option&gt;              &lt;option class="" value="http://awayfrom.info"&gt;http://awayfrom.info &lt;/option&gt;              &lt;option class="" value="http://webtunnel.info"&gt;http://webtunnel.info &lt;/option&gt;              &lt;option class="" value="http://www.insideproxy.com/"&gt;http://www.insideproxy.com/ &lt;/option&gt;              &lt;option class="" value="http://www.eazysurfer.com"&gt;http://www.eazysurfer.com &lt;/option&gt;              &lt;option class="" value="http://proxy-iran.info"&gt;http://proxy-iran.info &lt;/option&gt;              &lt;option class="" value="http://copyadress.info"&gt;http://copyadress.info &lt;/option&gt;              &lt;option class="" value="http://indiaproxy.info"&gt;http://indiaproxy.info &lt;/option&gt;              &lt;option class="" value="http://unknownid.info"&gt;http://unknownid.info &lt;/option&gt;              &lt;option class="" value="http://fixbrowser.info"&gt;http://fixbrowser.info &lt;/option&gt;              &lt;option class="" value="http://worldwebproxy.info"&gt;http://worldwebproxy.info &lt;/option&gt;              &lt;option class="" value="http://delta-proxy.info"&gt;http://delta-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxy4myspace.org/"&gt;http://www.proxy4myspace.org/ &lt;/option&gt;              &lt;option class="" value="http://www.qsurf.info"&gt;http://www.qsurf.info &lt;/option&gt;              &lt;option class="" value="http://hideschoolserver.info"&gt;http://hideschoolserver.info &lt;/option&gt;              &lt;option class="" value="http://proxychannel.info"&gt;http://proxychannel.info &lt;/option&gt;              &lt;option class="" value="http://privatesurf.info"&gt;http://privatesurf.info &lt;/option&gt;              &lt;option class="" value="http://iphider.info"&gt;http://iphider.info &lt;/option&gt;              &lt;option class="" value="http://www.loxy.info"&gt;http://www.loxy.info &lt;/option&gt;              &lt;option class="" value="http://china-proxy.info"&gt;http://china-proxy.info &lt;/option&gt;              &lt;option class="" value="http://proxygen.info"&gt;http://proxygen.info &lt;/option&gt;              &lt;option class="" value="http://proxy2006.info"&gt;http://proxy2006.info &lt;/option&gt;              &lt;option class="" value="http://my-freespace.info"&gt;http://my-freespace.info &lt;/option&gt;              &lt;option class="" value="http://hypersurfer.info"&gt;http://hypersurfer.info &lt;/option&gt;              &lt;option class="" value="http://browse-myspace.info"&gt;http://browse-myspace.info &lt;/option&gt;              &lt;option class="" value="http://fastsurfer.info"&gt;http://fastsurfer.info &lt;/option&gt;              &lt;option class="" value="http://school-surfing.info"&gt;http://school-surfing.info &lt;/option&gt;              &lt;option class="" value="http://flash-proxy.info"&gt;http://flash-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.xprox.info"&gt;http://www.xprox.info &lt;/option&gt;              &lt;option class="" value="http://www.alterproxy.info"&gt;http://www.alterproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.dprox.info"&gt;http://www.dprox.info &lt;/option&gt;              &lt;option class="" value="http://www.proxymafia.com"&gt;http://www.proxymafia.com &lt;/option&gt;              &lt;option class="" value="http://www.firewallbypassed.com"&gt;http://www.firewallbypassed.com &lt;/option&gt;              &lt;option class="" value="http://collegesproxy.info"&gt;http://collegesproxy.info &lt;/option&gt;              &lt;option class="" value="http://alfa-proxy.info"&gt;http://alfa-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.tsurf.info"&gt;http://www.tsurf.info &lt;/option&gt;              &lt;option class="" value="http://urlcode.info"&gt;http://urlcode.info &lt;/option&gt;              &lt;option class="" value="http://greproxy.info"&gt;http://greproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.vpass.us"&gt;http://www.vpass.us &lt;/option&gt;              &lt;option class="" value="http://www.myspace-proxy.info"&gt;http://www.myspace-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.publicproxy.com.ar"&gt;http://www.publicproxy.com.ar &lt;/option&gt;              &lt;option class="" value="http://datebrowser.info"&gt;http://datebrowser.info &lt;/option&gt;              &lt;option class="" value="http://thebrowse.info"&gt;http://thebrowse.info &lt;/option&gt;              &lt;option class="" value="http://headprox.info"&gt;http://headprox.info &lt;/option&gt;              &lt;option class="" value="http://special-proxy.info"&gt;http://special-proxy.info &lt;/option&gt;              &lt;option class="" value="http://realspeed.info"&gt;http://realspeed.info &lt;/option&gt;              &lt;option class="" value="http://hit-proxy.info"&gt;http://hit-proxy.info &lt;/option&gt;              &lt;option class="" value="http://opentunnel.info"&gt;http://opentunnel.info &lt;/option&gt;              &lt;option class="" value="http://tv-proxy.info"&gt;http://tv-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.privacybrowse.info"&gt;http://www.privacybrowse.info &lt;/option&gt;              &lt;option class="" value="http://proxbis.info"&gt;http://proxbis.info &lt;/option&gt;              &lt;option class="" value="http://www.sneakybrowsing.com"&gt;http://www.sneakybrowsing.com &lt;/option&gt;              &lt;option class="" value="http://alproxy.info"&gt;http://alproxy.info &lt;/option&gt;              &lt;option class="" value="http://masterbrowser.info"&gt;http://masterbrowser.info &lt;/option&gt;              &lt;option class="" value="http://www.myspaceproxy.nl/"&gt;http://www.myspaceproxy.nl/ &lt;/option&gt;              &lt;option class="" value="http://school-surfer.info"&gt;http://school-surfer.info &lt;/option&gt;              &lt;option class="" value="http://www.sd9.us"&gt;http://www.sd9.us &lt;/option&gt;              &lt;option class="" value="http://bvdy.com"&gt;http://bvdy.com &lt;/option&gt;              &lt;option class="" value="http://tangoproxy.info"&gt;http://tangoproxy.info &lt;/option&gt;              &lt;option class="" value="http://worldwideproxy.info"&gt;http://worldwideproxy.info &lt;/option&gt;              &lt;option class="" value="http://indipendent.info"&gt;http://indipendent.info &lt;/option&gt;              &lt;option class="" value="http://www.coolunblocker.com"&gt;http://www.coolunblocker.com &lt;/option&gt;              &lt;option class="" value="http://browsercom.info"&gt;http://browsercom.info &lt;/option&gt;              &lt;option class="" value="http://www.browsetool.com"&gt;http://www.browsetool.com &lt;/option&gt;              &lt;option class="" value="http://www.schoolsurf.org"&gt;http://www.schoolsurf.org &lt;/option&gt;              &lt;option class="" value="http://proxy-zone.info"&gt;http://proxy-zone.info &lt;/option&gt;              &lt;option class="" value="http://unlockmyspace.info"&gt;http://unlockmyspace.info &lt;/option&gt;              &lt;option class="" value="http://www.liveproxy.info"&gt;http://www.liveproxy.info &lt;/option&gt;              &lt;option class="" value="http://sqlprox.info"&gt;http://sqlprox.info &lt;/option&gt;              &lt;option class="" value="http://adressviewer.info"&gt;http://adressviewer.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyusers.com"&gt;http://www.proxyusers.com &lt;/option&gt;              &lt;option class="" value="http://www.atlanticproxy.com"&gt;http://www.atlanticproxy.com &lt;/option&gt;              &lt;option class="" value="http://proturk.info"&gt;http://proturk.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyowned.com"&gt;http://www.proxyowned.com &lt;/option&gt;              &lt;option class="" value="http://fire-proxy.info"&gt;http://fire-proxy.info &lt;/option&gt;              &lt;option class="" value="http://listedproxy.info"&gt;http://listedproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.wsurf.info"&gt;http://www.wsurf.info &lt;/option&gt;              &lt;option class="" value="http://starproxy.info"&gt;http://starproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxydance.info"&gt;http://www.proxydance.info &lt;/option&gt;              &lt;option class="" value="http://viaproxy.net"&gt;http://viaproxy.net &lt;/option&gt;              &lt;option class="" value="http://mega-browse.info"&gt;http://mega-browse.info &lt;/option&gt;              &lt;option class="" value="http://nofirewall.info"&gt;http://nofirewall.info &lt;/option&gt;              &lt;option class="" value="http://easy-proxy.info"&gt;http://easy-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.rockmyspace.info/proxy"&gt;http://www.rockmyspace.info/proxy &lt;/option&gt;              &lt;option class="" value="http://annonoproxy.info"&gt;http://annonoproxy.info &lt;/option&gt;              &lt;option class="" value="http://proxy-access.info"&gt;http://proxy-access.info &lt;/option&gt;              &lt;option class="" value="http://googlenetwork.org"&gt;http://googlenetwork.org &lt;/option&gt;              &lt;option class="" value="http://www.bprox.info"&gt;http://www.bprox.info &lt;/option&gt;              &lt;option class="" value="http://www.hideman.info"&gt;http://www.hideman.info &lt;/option&gt;              &lt;option class="" value="http://serverfilter.info"&gt;http://serverfilter.info &lt;/option&gt;              &lt;option class="" value="http://www.noproxy.org"&gt;http://www.noproxy.org &lt;/option&gt;              &lt;option class="" value="http://lineconnection.info"&gt;http://lineconnection.info &lt;/option&gt;              &lt;option class="" value="http://www.ooxy.info"&gt;http://www.ooxy.info &lt;/option&gt;              &lt;option class="" value="http://streamproxy.info"&gt;http://streamproxy.info &lt;/option&gt;              &lt;option class="" value="http://tvproxy.info"&gt;http://tvproxy.info &lt;/option&gt;              &lt;option class="" value="http://hide-ip.info"&gt;http://hide-ip.info &lt;/option&gt;              &lt;option class="" value="http://deltaproxy.info"&gt;http://deltaproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxytopsites.eu/"&gt;http://www.proxytopsites.eu/ &lt;/option&gt;              &lt;option class="" value="http://onatlas.info"&gt;http://onatlas.info &lt;/option&gt;              &lt;option class="" value="http://justavoid.info"&gt;http://justavoid.info &lt;/option&gt;              &lt;option class="" value="http://web-connection.info"&gt;http://web-connection.info &lt;/option&gt;              &lt;option class="" value="http://hide-id.info"&gt;http://hide-id.info &lt;/option&gt;              &lt;option class="" value="http://totalcontroll.info"&gt;http://totalcontroll.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyservice.de"&gt;http://www.proxyservice.de &lt;/option&gt;              &lt;option class="" value="http://wideline.info"&gt;http://wideline.info &lt;/option&gt;              &lt;option class="" value="http://www.freeproxysurfing.net"&gt;http://www.freeproxysurfing.net &lt;/option&gt;              &lt;option class="" value="http://moneyproxy.info"&gt;http://moneyproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.getpunked.com"&gt;http://www.getpunked.com &lt;/option&gt;              &lt;option class="" value="http://www.proxyvenue.info"&gt;http://www.proxyvenue.info &lt;/option&gt;              &lt;option class="" value="http://gointro.info"&gt;http://gointro.info &lt;/option&gt;              &lt;option class="" value="http://crush-proxy.info"&gt;http://crush-proxy.info &lt;/option&gt;              &lt;option class="" value="http://prona.info"&gt;http://prona.info &lt;/option&gt;              &lt;option class="" value="http://fast-browse.info"&gt;http://fast-browse.info &lt;/option&gt;              &lt;option class="" value="http://www.sneakpride.info"&gt;http://www.sneakpride.info &lt;/option&gt;              &lt;option class="" value="http://www.ipsite.net"&gt;http://www.ipsite.net &lt;/option&gt;              &lt;option class="" value="http://opentunnel.info"&gt;http://opentunnel.info &lt;/option&gt;              &lt;option class="" value="http://hiddenvisits.com/"&gt;http://hiddenvisits.com/ &lt;/option&gt;              &lt;option class="" value="http://indirectline.info"&gt;http://indirectline.info &lt;/option&gt;              &lt;option class="" value="http://afproxy.info"&gt;http://afproxy.info &lt;/option&gt;              &lt;option class="" value="http://wawproxy.info"&gt;http://wawproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.freemyinternetplease.com"&gt;http://www.freemyinternetplease.com &lt;/option&gt;              &lt;option class="" value="http://myunlockedspace.info"&gt;http://myunlockedspace.info &lt;/option&gt;              &lt;option class="" value="http://goproxygo.info"&gt;http://goproxygo.info &lt;/option&gt;              &lt;option class="" value="http://goldtunnel.info"&gt;http://goldtunnel.info &lt;/option&gt;              &lt;option class="" value="http://blockip.info"&gt;http://blockip.info &lt;/option&gt;              &lt;option class="" value="http://commercialproxy.info"&gt;http://commercialproxy.info &lt;/option&gt;              &lt;option class="" value="http://backnow.info"&gt;http://backnow.info &lt;/option&gt;              &lt;option class="" value="http://wallpass.info"&gt;http://wallpass.info &lt;/option&gt;              &lt;option class="" value="http://proxyzip.org/"&gt;http://proxyzip.org/ &lt;/option&gt;              &lt;option class="" value="http://www.noxy.info"&gt;http://www.noxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyz.ca"&gt;http://www.proxyz.ca &lt;/option&gt;              &lt;option class="" value="http://betaproxy.info"&gt;http://betaproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.easyproxies.info"&gt;http://www.easyproxies.info &lt;/option&gt;              &lt;option class="" value="http://proxydove.com"&gt;http://proxydove.com &lt;/option&gt;              &lt;option class="" value="http://myspaceunlocker.info"&gt;http://myspaceunlocker.info &lt;/option&gt;              &lt;option class="" value="http://hidealink.info"&gt;http://hidealink.info &lt;/option&gt;              &lt;option class="" value="http://helddownatwork.com"&gt;http://helddownatwork.com &lt;/option&gt;              &lt;option class="" value="http://hideyou.info"&gt;http://hideyou.info &lt;/option&gt;              &lt;option class="" value="http://www.kickblockers.com"&gt;http://www.kickblockers.com &lt;/option&gt;              &lt;option class="" value="http://www.stealth-proxy.com"&gt;http://www.stealth-proxy.com &lt;/option&gt;              &lt;option class="" value="http://lawyerproxy.com"&gt;http://lawyerproxy.com &lt;/option&gt;              &lt;option class="" value="http://www.bsurf.info"&gt;http://www.bsurf.info &lt;/option&gt;              &lt;option class="" value="http://gamebro.info"&gt;http://gamebro.info &lt;/option&gt;              &lt;option class="" value="http://www.proxygalaxy.com"&gt;http://www.proxygalaxy.com &lt;/option&gt;              &lt;option class="" value="http://filterthis.info"&gt;http://filterthis.info &lt;/option&gt;              &lt;option class="" value="http://www.hidexy.info"&gt;http://www.hidexy.info &lt;/option&gt;              &lt;option class="" value="http://europasurf.info"&gt;http://europasurf.info &lt;/option&gt;              &lt;option class="" value="http://www.url1.in"&gt;http://www.url1.in &lt;/option&gt;              &lt;option class="" value="http://proxy-channel.info"&gt;http://proxy-channel.info &lt;/option&gt;              &lt;option class="" value="http://profilespaces.com/vvd1"&gt;http://profilespaces.com/vvd1 &lt;/option&gt;              &lt;option class="" value="http://www.tunnelfiesta.info"&gt;http://www.tunnelfiesta.info &lt;/option&gt;              &lt;option class="" value="http://www.theschoolproxy.com"&gt;http://www.theschoolproxy.com &lt;/option&gt;              &lt;option class="" value="http://www.surfingagain.com"&gt;http://www.surfingagain.com &lt;/option&gt;              &lt;option class="" value="http://pass-stop.info"&gt;http://pass-stop.info &lt;/option&gt;              &lt;option class="" value="http://www.firewallkiller.com"&gt;http://www.firewallkiller.com &lt;/option&gt;              &lt;option class="" value="http://proxyhit.info"&gt;http://proxyhit.info &lt;/option&gt;              &lt;option class="" value="http://www.proxyfuel.info"&gt;http://www.proxyfuel.info &lt;/option&gt;              &lt;option class="" value="http://www.qoxy.info"&gt;http://www.qoxy.info &lt;/option&gt;              &lt;option class="" value="http://alfaproxy.info"&gt;http://alfaproxy.info &lt;/option&gt;              &lt;option class="" value="http://gold-tunnel.info"&gt;http://gold-tunnel.info &lt;/option&gt;              &lt;option class="" value="http://invisibleip.info"&gt;http://invisibleip.info &lt;/option&gt;              &lt;option class="" value="http://stealthpage.info"&gt;http://stealthpage.info &lt;/option&gt;              &lt;option class="" value="http://pentaproxy.info"&gt;http://pentaproxy.info &lt;/option&gt;              &lt;option class="" value="http://proxsie.com"&gt;http://proxsie.com &lt;/option&gt;              &lt;option class="" value="http://bestbrowse.info"&gt;http://bestbrowse.info &lt;/option&gt;              &lt;option class="" value="http://web-browsing.info"&gt;http://web-browsing.info &lt;/option&gt;              &lt;option class="" value="http://hideprofile.info"&gt;http://hideprofile.info &lt;/option&gt;              &lt;option class="" value="http://proxengine.info"&gt;http://proxengine.info &lt;/option&gt;              &lt;option class="" value="http://spliced.org/"&gt;http://spliced.org/ &lt;/option&gt;              &lt;option class="" value="http://fast-hide.info"&gt;http://fast-hide.info &lt;/option&gt;              &lt;option class="" value="http://orange-proxy.info"&gt;http://orange-proxy.info &lt;/option&gt;              &lt;option class="" value="http://find-proxy.info"&gt;http://find-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.theproxyguy.com"&gt;http://www.theproxyguy.com &lt;/option&gt;              &lt;option class="" value="http://onlineadress.info"&gt;http://onlineadress.info &lt;/option&gt;              &lt;option class="" value="http://xtremeproxy.biz"&gt;http://xtremeproxy.biz &lt;/option&gt;              &lt;option class="" value="http://ecoproxy.info"&gt;http://ecoproxy.info &lt;/option&gt;              &lt;option class="" value="http://page-viewer.info"&gt;http://page-viewer.info &lt;/option&gt;              &lt;option class="" value="http://stopblockingme.com"&gt;http://stopblockingme.com &lt;/option&gt;              &lt;option class="" value="http://secondline.info"&gt;http://secondline.info &lt;/option&gt;              &lt;option class="" value="http://www.ecoproxy.com"&gt;http://www.ecoproxy.com &lt;/option&gt;              &lt;option class="" value="http://magic-surf.info"&gt;http://magic-surf.info &lt;/option&gt;              &lt;option class="" value="http://www.privacysurf.info"&gt;http://www.privacysurf.info &lt;/option&gt;              &lt;option class="" value="http://okbrowse.info"&gt;http://okbrowse.info &lt;/option&gt;              &lt;option class="" value="http://www.allowmeout.com"&gt;http://www.allowmeout.com &lt;/option&gt;              &lt;option class="" value="http://myspaceunblock.co.uk"&gt;http://myspaceunblock.co.uk &lt;/option&gt;              &lt;option class="" value="http://www.hi5prox.info/"&gt;http://www.hi5prox.info/ &lt;/option&gt;              &lt;option class="" value="http://myspace-unlocker.info"&gt;http://myspace-unlocker.info &lt;/option&gt;              &lt;option class="" value="http://elproxy.info"&gt;http://elproxy.info &lt;/option&gt;              &lt;option class="" value="http://deticated.info"&gt;http://deticated.info &lt;/option&gt;              &lt;option class="" value="http://2og.biz/"&gt;http://2og.biz/ &lt;/option&gt;              &lt;option class="" value="http://www.scoobidoo.net"&gt;http://www.scoobidoo.net &lt;/option&gt;              &lt;option class="" value="http://invisibleface.info"&gt;http://invisibleface.info &lt;/option&gt;              &lt;option class="" value="http://www.keep-learn.info"&gt;http://www.keep-learn.info &lt;/option&gt;              &lt;option class="" value="http://tunnelx.info"&gt;http://tunnelx.info &lt;/option&gt;              &lt;option class="" value="http://bestserver.info"&gt;http://bestserver.info &lt;/option&gt;              &lt;option class="" value="http://world-proxy.info"&gt;http://world-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.milliondollarairline.com"&gt;http://www.milliondollarairline.com &lt;/option&gt;              &lt;option class="" value="http://www.netsneak.com"&gt;http://www.netsneak.com &lt;/option&gt;              &lt;option class="" value="http://unlockmyspace.whatzzup.net/"&gt;http://unlockmyspace.whatzzup.net/ &lt;/option&gt;              &lt;option class="" value="http://www.filterpimp.com"&gt;http://www.filterpimp.com &lt;/option&gt;              &lt;option class="" value="http://beta-proxy.info"&gt;http://beta-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.idcondom.com"&gt;http://www.idcondom.com &lt;/option&gt;              &lt;option class="" value="http://www.kufk.com"&gt;http://www.kufk.com &lt;/option&gt;              &lt;option class="" value="http://escaper.whatzzup.net/"&gt;http://escaper.whatzzup.net/ &lt;/option&gt;              &lt;option class="" value="http://nettunnel.info"&gt;http://nettunnel.info &lt;/option&gt;              &lt;option class="" value="http://highstspeed.info"&gt;http://highstspeed.info &lt;/option&gt;              &lt;option class="" value="http://chatproxy.info"&gt;http://chatproxy.info &lt;/option&gt;              &lt;option class="" value="http://hagiomusic.info"&gt;http://hagiomusic.info &lt;/option&gt;              &lt;option class="" value="http://www.browsetheweb.info"&gt;http://www.browsetheweb.info &lt;/option&gt;              &lt;option class="" value="http://pagejump.info"&gt;http://pagejump.info &lt;/option&gt;              &lt;option class="" value="http://eproxy.pl"&gt;http://eproxy.pl &lt;/option&gt;              &lt;option class="" value="http://gleeg.info"&gt;http://gleeg.info &lt;/option&gt;              &lt;option class="" value="http://clickproxy.info"&gt;http://clickproxy.info &lt;/option&gt;              &lt;option class="" value="http://myspacesurfing.info"&gt;http://myspacesurfing.info &lt;/option&gt;              &lt;option class="" value="http://proxygames.info"&gt;http://proxygames.info &lt;/option&gt;              &lt;option class="" value="http://red-prox.info"&gt;http://red-prox.info &lt;/option&gt;              &lt;option class="" value="http://changetun.info"&gt;http://changetun.info &lt;/option&gt;              &lt;option class="" value="http://www.proxans.com"&gt;http://www.proxans.com &lt;/option&gt;              &lt;option class="" value="http://wire-proxy.info"&gt;http://wire-proxy.info &lt;/option&gt;              &lt;option class="" value="http://fastbrowse.info"&gt;http://fastbrowse.info &lt;/option&gt;              &lt;option class="" value="http://viaweb.info"&gt;http://viaweb.info &lt;/option&gt;              &lt;option class="" value="http://www.proxylounge.com"&gt;http://www.proxylounge.com &lt;/option&gt;              &lt;option class="" value="http://jumpfirewall.info"&gt;http://jumpfirewall.info &lt;/option&gt;              &lt;option class="" value="http://inserturl.info"&gt;http://inserturl.info &lt;/option&gt;              &lt;option class="" value="http://jumpserver.info"&gt;http://jumpserver.info &lt;/option&gt;              &lt;option class="" value="http://hyperbrowser.info"&gt;http://hyperbrowser.info &lt;/option&gt;              &lt;option class="" value="http://skynetproxy.info"&gt;http://skynetproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.fsurf.info"&gt;http://www.fsurf.info &lt;/option&gt;              &lt;option class="" value="http://proxy80.com"&gt;http://proxy80.com &lt;/option&gt;              &lt;option class="" value="http://virtual-surfer.info"&gt;http://virtual-surfer.info &lt;/option&gt;              &lt;option class="" value="http://redbrowser.info"&gt;http://redbrowser.info &lt;/option&gt;              &lt;option class="" value="http://stealthysurfers.com"&gt;http://stealthysurfers.com &lt;/option&gt;              &lt;option class="" value="http://filtercrusher.whatzzup.net/"&gt;http://filtercrusher.whatzzup.net/ &lt;/option&gt;              &lt;option class="" value="http://vip-surfing.info"&gt;http://vip-surfing.info &lt;/option&gt;              &lt;option class="" value="http://vistaproxy.info"&gt;http://vistaproxy.info &lt;/option&gt;              &lt;option class="" value="http://americaonproxy.info"&gt;http://americaonproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.surf2x2.com"&gt;http://www.surf2x2.com &lt;/option&gt;              &lt;option class="" value="http://crushproxy.info"&gt;http://crushproxy.info &lt;/option&gt;              &lt;option class="" value="http://surferkey.com"&gt;http://surferkey.com &lt;/option&gt;              &lt;option class="" value="http://proxnow.info"&gt;http://proxnow.info &lt;/option&gt;              &lt;option class="" value="http://proxy-wawe.info"&gt;http://proxy-wawe.info &lt;/option&gt;              &lt;option class="" value="http://smartbrowser.info"&gt;http://smartbrowser.info &lt;/option&gt;              &lt;option class="" value="http://www.zprox.info"&gt;http://www.zprox.info &lt;/option&gt;              &lt;option class="" value="http://serverline.info"&gt;http://serverline.info &lt;/option&gt;              &lt;option class="" value="http://www.tprox.info"&gt;http://www.tprox.info &lt;/option&gt;              &lt;option class="" value="http://surf-myspace.info"&gt;http://surf-myspace.info &lt;/option&gt;              &lt;option class="" value="http://www.opentobrowse.info"&gt;http://www.opentobrowse.info &lt;/option&gt;              &lt;option class="" value="http://browsesilent.com"&gt;http://browsesilent.com &lt;/option&gt;              &lt;option class="" value="http://httpsurf.info"&gt;http://httpsurf.info &lt;/option&gt;              &lt;option class="" value="http://www.proxydance.com"&gt;http://www.proxydance.com &lt;/option&gt;              &lt;option class="" value="http://imcrafty.info"&gt;http://imcrafty.info &lt;/option&gt;              &lt;option class="" value="http://wide-web.info"&gt;http://wide-web.info &lt;/option&gt;              &lt;option class="" value="http://gameson.info"&gt;http://gameson.info &lt;/option&gt;              &lt;option class="" value="http://creditprox.info"&gt;http://creditprox.info &lt;/option&gt;              &lt;option class="" value="http://media-proxy.info"&gt;http://media-proxy.info &lt;/option&gt;              &lt;option class="" value="http://office-surf.info"&gt;http://office-surf.info &lt;/option&gt;              &lt;option class="" value="http://unionproxy.info"&gt;http://unionproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.y11.biz"&gt;http://www.y11.biz &lt;/option&gt;              &lt;option class="" value="http://www.rockproxy.com"&gt;http://www.rockproxy.com &lt;/option&gt;              &lt;option class="" value="http://www.browsefreely.info"&gt;http://www.browsefreely.info &lt;/option&gt;              &lt;option class="" value="http://guaranteedproxy.info"&gt;http://guaranteedproxy.info &lt;/option&gt;              &lt;option class="" value="http://bebofree.info"&gt;http://bebofree.info &lt;/option&gt;              &lt;option class="" value="http://www.microno.com"&gt;http://www.microno.com &lt;/option&gt;              &lt;option class="" value="http://killfilter.info"&gt;http://killfilter.info &lt;/option&gt;              &lt;option class="" value="http://www.kprox.info"&gt;http://www.kprox.info &lt;/option&gt;              &lt;option class="" value="http://intheshadow.info"&gt;http://intheshadow.info &lt;/option&gt;              &lt;option class="" value="http://www.sneakyinternet.com"&gt;http://www.sneakyinternet.com &lt;/option&gt;              &lt;option class="" value="http://filterall.info"&gt;http://filterall.info &lt;/option&gt;              &lt;option class="" value="http://www.passmyass.info"&gt;http://www.passmyass.info &lt;/option&gt;              &lt;option class="" value="http://work.3phonestuff.com"&gt;http://work.3phonestuff.com &lt;/option&gt;              &lt;option class="" value="http://htmlprox.info"&gt;http://htmlprox.info &lt;/option&gt;              &lt;option class="" value="http://darksurfer.info"&gt;http://darksurfer.info &lt;/option&gt;              &lt;option class="" value="http://hidid.info"&gt;http://hidid.info &lt;/option&gt;              &lt;option class="" value="http://goawayfrom.info"&gt;http://goawayfrom.info &lt;/option&gt;              &lt;option class="" value="http://proksi.info"&gt;http://proksi.info &lt;/option&gt;              &lt;option class="" value="http://fistproxy.info"&gt;http://fistproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.lprox.info"&gt;http://www.lprox.info &lt;/option&gt;              &lt;option class="" value="http://allfreehere.info"&gt;http://allfreehere.info &lt;/option&gt;              &lt;option class="bolded" value="http://www.stealth-proxy.com"&gt;http://www.stealth-proxy.com &lt;/option&gt;              &lt;option class="" value="http://filterstop.info"&gt;http://filterstop.info &lt;/option&gt;              &lt;option class="" value="http://gotunnel.info"&gt;http://gotunnel.info &lt;/option&gt;              &lt;option class="" value="http://www.hsurf.info"&gt;http://www.hsurf.info &lt;/option&gt;              &lt;option class="" value="http://www.qprox.info"&gt;http://www.qprox.info &lt;/option&gt;              &lt;option class="" value="http://www.todaysurf.info"&gt;http://www.todaysurf.info &lt;/option&gt;              &lt;option class="" value="http://www.proxr.co.uk"&gt;http://www.proxr.co.uk &lt;/option&gt;              &lt;option class="" value="http://24hour-online.info"&gt;http://24hour-online.info &lt;/option&gt;              &lt;option class="" value="http://www.areaquest.com"&gt;http://www.areaquest.com &lt;/option&gt;              &lt;option class="" value="http://www.opentobrowse.com"&gt;http://www.opentobrowse.com &lt;/option&gt;              &lt;option class="" value="http://proxycredit.info"&gt;http://proxycredit.info &lt;/option&gt;              &lt;option class="" value="http://bigbrowser.info"&gt;http://bigbrowser.info &lt;/option&gt;              &lt;option class="bolded" value="http://proxybear.com"&gt;http://proxybear.com &lt;/option&gt;              &lt;option class="" value="http://www.vprox.info"&gt;http://www.vprox.info &lt;/option&gt;              &lt;option class="" value="http://school-surf.info"&gt;http://school-surf.info &lt;/option&gt;              &lt;option class="" value="http://outdoorproxy.com"&gt;http://outdoorproxy.com &lt;/option&gt;              &lt;option class="" value="http://www.mysneak.info"&gt;http://www.mysneak.info &lt;/option&gt;              &lt;option class="" value="http://bannfilter.info"&gt;http://bannfilter.info &lt;/option&gt;              &lt;option class="" value="http://usespace.info"&gt;http://usespace.info &lt;/option&gt;              &lt;option class="" value="http://cunningproxy.info"&gt;http://cunningproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.proxysoccer.info"&gt;http://www.proxysoccer.info &lt;/option&gt;              &lt;option class="" value="http://proxywww.com"&gt;http://proxywww.com &lt;/option&gt;              &lt;option class="" value="http://www.proxycrew.com"&gt;http://www.proxycrew.com &lt;/option&gt;              &lt;option class="" value="http://startusingproxy.info"&gt;http://startusingproxy.info &lt;/option&gt;              &lt;option class="" value="http://enterbrowser.info"&gt;http://enterbrowser.info &lt;/option&gt;              &lt;option class="" value="http://netunblock.info"&gt;http://netunblock.info &lt;/option&gt;              &lt;option class="" value="http://hideofficeserver.info"&gt;http://hideofficeserver.info &lt;/option&gt;              &lt;option class="" value="http://greenpips.info"&gt;http://greenpips.info &lt;/option&gt;              &lt;option class="" value="http://work-proxy.info"&gt;http://work-proxy.info &lt;/option&gt;              &lt;option class="" value="http://www.clanesl.com"&gt;http://www.clanesl.com &lt;/option&gt;              &lt;option class="" value="http://www.pprox.info"&gt;http://www.pprox.info &lt;/option&gt;              &lt;option class="" value="http://usono.info"&gt;http://usono.info &lt;/option&gt;              &lt;option class="" value="http://darkproxy.info"&gt;http://darkproxy.info &lt;/option&gt;              &lt;option class="" value="http://liquidproxy.info"&gt;http://liquidproxy.info &lt;/option&gt;              &lt;option class="" value="http://waterproxy.info"&gt;http://waterproxy.info &lt;/option&gt;              &lt;option class="" value="http://www.vip-surf.net"&gt;http://www.vip-surf.net &lt;/option&gt;              &lt;option class="" value="http://stream-proxy.info"&gt;http://stream-proxy.info &lt;/option&gt;              &lt;option class="" value="http://redprox.info"&gt;http://redprox.info &lt;/option&gt;              &lt;option class="" value="http://fastwebaccess.info"&gt;http://fastwebaccess.info &lt;/option&gt;              &lt;option class="" value="http://www.mysitegotblocked.com"&gt;http://www.mysitegotblocked.com &lt;/option&gt;              &lt;option class="" value="http://tango-proxy.info"&gt;http://tango-proxy.info &lt;/option&gt;              &lt;option class="" value="http://totalcontroll.info"&gt;http://totalcontroll.info &lt;/option&gt;              &lt;option class="" value="http://filtergame.info"&gt;http://filtergame.info &lt;/option&gt;              &lt;option class="" value="http://hideschool.info"&gt;http://hideschool.info &lt;/option&gt;              &lt;option class="" value="http://hideaccess.info"&gt;http://hideaccess.info &lt;/option&gt;              &lt;option class="" value="http://darkbrowser.info"&gt;http://darkbrowser.info &lt;/option&gt;              &lt;option class="" value="http://netunnel.info"&gt;http://netunnel.info &lt;/option&gt;              &lt;option class="" value="http://bluebrowser.info"&gt;http://bluebrowser.info &lt;/option&gt;              &lt;option class="" value="http://reect.info"&gt;http://reect.info &lt;/option&gt;              &lt;option class="" value="http://proxyaccess.info"&gt;http://proxyaccess.info &lt;/option&gt;              &lt;option class="" value="http://ibreach.com"&gt;http://ibreach.com &lt;/option&gt;              &lt;option class="" value="http://autobrowse.info"&gt;http://autobrowse.info &lt;/option&gt;              &lt;option class="" value="http://private-proxy.info"&gt;http://private-proxy.info &lt;/option&gt;              &lt;option class="" value="http://rusproxy.info"&gt;http://rusproxy.info &lt;/option&gt;              &lt;option class="" value="http://vip-surfer.info"&gt;http://vip-surfer.info &lt;/option&gt;              &lt;option class="" value="http://kickfilters.com"&gt;http://kickfilters.com &lt;/option&gt;              &lt;option class="" value="http://win-proxy.info"&gt;http://win-proxy.info &lt;/option&gt;              &lt;option class="" value="http://testedproxy.info"&gt;http://testedproxy.info &lt;/option&gt;              &lt;option class="" value="http://safe-browse.info"&gt;http://safe-browse.info &lt;/option&gt;              &lt;option class="" value="http://www.passmebrowser.com"&gt;http://www.passmebrowser.com &lt;/option&gt;              &lt;option class="" value="http://proxpage.info"&gt;http://proxpage.info &lt;/option&gt;              &lt;option class="" value="http://usebandwidth.info"&gt;http://usebandwidth.info &lt;/option&gt;              &lt;option class="" value="http://uploadaddress.info"&gt;http://uploadaddress.info &lt;/option&gt;              &lt;option class="" value="http://surffast.info"&gt;http://surffast.info &lt;/option&gt;              &lt;option class="" value="http://stopmenot.com"&gt;http://stopmenot.com &lt;/option&gt;              &lt;option class="" value="http://proxyzip.info"&gt;http://proxyzip.info &lt;/option&gt;              &lt;option class="" value="http://small-proxy.info"&gt;http://small-proxy.info &lt;/option&gt;              &lt;option disabled="disabled" value="random"&gt; &lt;/option&gt;              &lt;option disabled="disabled" value="random"&gt;*** DEFUNCT &lt;/option&gt;              &lt;option class="" value="random"&gt;http://Cantfindme.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://MYSPACE.COM &lt;/option&gt;              &lt;option class="" value="random"&gt;http://anon.emigrants.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://without-filter2.blogfa.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.businessstudiesonline.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;http://letmepast.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.safetunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://privateproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://unblockwebsense.uni.cc &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.workhost.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyforall.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxydoll.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://coverip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.freeproxy.ph &lt;/option&gt;              &lt;option class="" value="random"&gt;http://orangeproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://pr0xy.co.nr &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ClanDrake.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://iloveim.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.kufk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.pwoxyserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://mafiaproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://proxyloop.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://topfreeproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.wh-solutions.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://onlineclick.us &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.tunnelserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://myspaceproxyunblock.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.httpstunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://public-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://anonymousbrowsing.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.irshost.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://testercwn.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.browser9.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.abcproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://anonymouse.org/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://gonzo.surf2proxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxytopsitelist.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyaffiliates.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.sitevisit.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.hideatschool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://proxyowl.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.stoptheblock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.anoserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ipidiot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyninja.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://chconnection.com/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.rrpproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxy4free.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ecomatrix.eu/proxy/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyology.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.noruleshere.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://myproxybox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.cgitunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyshield.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.mortgagetunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.o7c.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.tunnelpipe.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://invixi.fino &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyhustle.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.hotelhost.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.letmein.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.404surf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.carhost.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.getmepast.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;http://blockemysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.gizlen.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.conceal.it &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.freewwwproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxysocks4.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.wingateproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.webproxyking.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://1proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ssltunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ondapc.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.pronserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://web2proxy.net/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxiespro.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.killers-hell.com/proxy &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.freeproxies4u.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://yourproxy.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxiesonline.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyleech.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.rbrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.myproxy2u.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.TheJays.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.perfectshelter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.vtunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://socks5proxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.4myspaceproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.restfull.info/v2/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.AtedPlace.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.unblockme.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;http://theproxyblog.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.worksurf.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.hoteltunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.dedserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://soxcks5proxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://3proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.123proxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.hotelsurfer.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://cl0ak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxydoom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.unblockmyspace.in &lt;/option&gt;              &lt;option class="" value="random"&gt;http://allfreeproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://unblockedweb.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxies4u.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxish.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.tunnelhost.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ccp3.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.megaproxy.com.ar &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.lawhost.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.stealthproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://anonymouse.org/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://ghostme.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.httpstunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ssltunnel.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.k1d.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.letmein.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.xroxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://doproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.browsedark.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.internet-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://testerhbk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyline.us/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.insurancetunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.middleschoolproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ethioaffairs.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.hideip.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.cetsohbet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://myspace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxylater.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxytower.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ilikeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://thesecureproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://googlenetwork.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.qwertysurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.2proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://homeworkhelpers.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.myspaceonschool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.1800proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.securetunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.topfreeproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxystreet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.TheCamelClub.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.wsunlock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.freeproxy.ru &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyfreelist.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.bullserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.winsurf.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.hotproxiespro.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.webmanyak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://proxysec.com/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://myspaceproxy.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.phptunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxylist8000.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ninjaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://unblockable.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.cantblockme.com/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://nordicmafia.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ninjaproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.goodwebproxy.com/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.whodad.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxies4u.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.SJCFS.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://FinalProxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxalot.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.musicaldb.com/proxy/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://getmyspaceproxyschool.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.cloakip.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.poxyserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.alltheproxies.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.publicproxyservers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.newproxies.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.youhide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.anobrowser.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.wingateproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.myspaceunblock.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.freewebproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxymates.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.officeproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.yoursneaky.com/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.schoolhost.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.dancingappolo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxa.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.lawserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.iphide.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.dartprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://mycoolproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyleech.com &lt;/option&gt;              &lt;option class="" value="random"&gt;www.dragongamez.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://smallproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.aerialsurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://hidemytail.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxsimity.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.creditsserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.hackersurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.wingateproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://schoolbypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.unblockmenow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://proxyparty.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.travelserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.irstunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.hackersproof.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.surfsneak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://abcdelasecurite.free.fr &lt;/option&gt;              &lt;option class="" value="random"&gt;http://official-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.cgihide.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.noto11.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.ssltunnel.net &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.trsohbet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://surfproxies.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://cantstopme.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.fixitall.us &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.unblocku.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://data.bg &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.omitlimit.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.AnonymousCamp.org &lt;/option&gt;              &lt;option class="" value="random"&gt;http://websiteredirect.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.prontunnel.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.browsesneak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://fpt.vn &lt;/option&gt;              &lt;option class="" value="random"&gt;http://proxter.us &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxytor.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxymask.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.sneakyonline.com/ &lt;/option&gt;              &lt;option class="" value="random"&gt;http://allproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.iceness.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.proxyfans.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://nuproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://gotbanned.info &lt;/option&gt;              &lt;option class="" value="random"&gt;http://www.schoolhelpsite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http://homeproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;blockfilter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;slimtrust.com &lt;/option&gt;              &lt;option class="" value="random"&gt;etary.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mathtunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iphide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;polysolve.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gecko-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypunk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;virtual-browser.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theprox.net &lt;/option&gt;              &lt;option class="" value="random"&gt;misterprivacy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;deluxeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pmproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonproxysite.net &lt;/option&gt;              &lt;option class="" value="random"&gt;devotedgaming.be &lt;/option&gt;              &lt;option class="" value="random"&gt;covertproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;pusher.net &lt;/option&gt;              &lt;option class="" value="random"&gt;daveproxy.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysite.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;targetfirstreview.com &lt;/option&gt;              &lt;option class="" value="random"&gt;heliproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bigwebfun.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfree.de &lt;/option&gt;              &lt;option class="" value="random"&gt;xblt.net &lt;/option&gt;              &lt;option class="" value="random"&gt;private-byspass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;7p9.net &lt;/option&gt;              &lt;option class="" value="random"&gt;boredatschool.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-hound.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pleaseunblock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;2leftnuts.com &lt;/option&gt;              &lt;option class="" value="random"&gt;josh1.bounceme.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyrat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;urlport.net &lt;/option&gt;              &lt;option class="" value="random"&gt;afunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspace-proxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxysite.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxygasp.com &lt;/option&gt;              &lt;option class="" value="random"&gt;youhide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;workbrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybuster.net &lt;/option&gt;              &lt;option class="" value="random"&gt;waterproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;directproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pagewash.com &lt;/option&gt;              &lt;option class="" value="random"&gt;firewallsucks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;w3proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;runproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypanther.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxee.net &lt;/option&gt;              &lt;option class="" value="random"&gt;q3m.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyman.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-o.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ghostclick.com &lt;/option&gt;              &lt;option class="" value="random"&gt;invisibrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonym.cn &lt;/option&gt;              &lt;option class="" value="random"&gt;radio-farda.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;clinicallegal.net &lt;/option&gt;              &lt;option class="" value="random"&gt;multimillion.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxylion.com &lt;/option&gt;              &lt;option class="" value="random"&gt;behidden.com &lt;/option&gt;              &lt;option class="" value="random"&gt;9s3.net &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymate.com &lt;/option&gt;              &lt;option class="" value="random"&gt;3proxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;browseatwork1.com &lt;/option&gt;              &lt;option class="" value="random"&gt;officeproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;perfectproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockmyspace.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-b.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-h.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyology.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastproxies.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyzap.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsecop.com &lt;/option&gt;              &lt;option class="" value="random"&gt;1anonymous.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mecproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;pionas.pionki.net &lt;/option&gt;              &lt;option class="" value="random"&gt;wrigglethrough.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ifreeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;donogood.com &lt;/option&gt;              &lt;option class="" value="random"&gt;omgstuff.com &lt;/option&gt;              &lt;option class="" value="random"&gt;taxiproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-p.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydrop.net &lt;/option&gt;              &lt;option class="" value="random"&gt;newproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;websiteproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;w00tage.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyslap.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blockremover.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wkccp.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysector.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ctrlaltproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;163.tl &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhub.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;bombproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywebpage.com &lt;/option&gt;              &lt;option class="" value="random"&gt;games4work.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyjuice.com &lt;/option&gt;              &lt;option class="" value="random"&gt;leetproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;greekwaves.be &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassit.be &lt;/option&gt;              &lt;option class="" value="random"&gt;cheaperwebhosts.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ezhide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;f1proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonproxysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ukwebproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyservices.org &lt;/option&gt;              &lt;option class="" value="random"&gt;vpntunnel.net &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockfacebook.org &lt;/option&gt;              &lt;option class="" value="random"&gt;picatta.homeip.net &lt;/option&gt;              &lt;option class="" value="random"&gt;bypasslive.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyraptor.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.cn &lt;/option&gt;              &lt;option class="" value="random"&gt;clickcop.com &lt;/option&gt;              &lt;option class="" value="random"&gt;oddproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;upr0xy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxyfree.com &lt;/option&gt;              &lt;option class="" value="random"&gt;companyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxr.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ghostproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mikescreation.com &lt;/option&gt;              &lt;option class="" value="random"&gt;desithoughts.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassproxyonline.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gtunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thebestproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wirelink.org &lt;/option&gt;              &lt;option class="" value="random"&gt;toastedpita.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-n.com &lt;/option&gt;              &lt;option class="" value="random"&gt;japanproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blackproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-e.com &lt;/option&gt;              &lt;option class="" value="random"&gt;masslan.com &lt;/option&gt;              &lt;option class="" value="random"&gt;dirtyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxygeek.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ninjaworm.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.de &lt;/option&gt;              &lt;option class="" value="random"&gt;myfriendsproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blockmy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;imsostudying.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zoot-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webprocksy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gigaproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxsurf.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxyserver.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ajaxcounters.com &lt;/option&gt;              &lt;option class="" value="random"&gt;moreproxies.info &lt;/option&gt;              &lt;option class="" value="random"&gt;hideip.be &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.la &lt;/option&gt;              &lt;option class="" value="random"&gt;vcamo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freakproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;a-bug.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxoid.com &lt;/option&gt;              &lt;option class="" value="random"&gt;quickproxyit.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zmonsters.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeanonymousproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhole.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemyass.info &lt;/option&gt;              &lt;option class="" value="random"&gt;anonoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;moonproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vip-surf.in &lt;/option&gt;              &lt;option class="" value="random"&gt;hidesecure.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ninjaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;snoopblocker.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myfreepixels.net &lt;/option&gt;              &lt;option class="" value="random"&gt;privatizer.net &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ipbouncer.be &lt;/option&gt;              &lt;option class="" value="random"&gt;afreefunkoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyselect.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nodeblock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymouse.org &lt;/option&gt;              &lt;option class="" value="random"&gt;schoolboredom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;usethisproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceproxyy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsespace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;embc404.info &lt;/option&gt;              &lt;option class="" value="random"&gt;hidesafe.com &lt;/option&gt;              &lt;option class="" value="random"&gt;censormy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;tekistan.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyunique.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cleverproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;aproxysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browserproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonproxyservers.net &lt;/option&gt;              &lt;option class="" value="random"&gt;thatproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxy.ca &lt;/option&gt;              &lt;option class="" value="random"&gt;allwebproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypasser.be &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymyspace.info &lt;/option&gt;              &lt;option class="" value="random"&gt;75i.net &lt;/option&gt;              &lt;option class="" value="random"&gt;jcz.net &lt;/option&gt;              &lt;option class="" value="random"&gt;yourportal.us &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyauthority.com &lt;/option&gt;              &lt;option class="" value="random"&gt;easysurfing.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ninjababe.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mfp.hostwindsor.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydrop.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyparadise.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxylla.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfing-cloak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;deliriumservers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonseek.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browseatwork.com &lt;/option&gt;              &lt;option class="" value="random"&gt;asproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;thefilterweb.com &lt;/option&gt;              &lt;option class="" value="random"&gt;perfectshelter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;antitrace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vbrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gamecopyworld.be &lt;/option&gt;              &lt;option class="" value="random"&gt;clickproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;www2.bbscience.org &lt;/option&gt;              &lt;option class="" value="random"&gt;lay-low.net &lt;/option&gt;              &lt;option class="" value="random"&gt;chaosdom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;http.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;8s3.net &lt;/option&gt;              &lt;option class="" value="random"&gt;thriftclick.com &lt;/option&gt;              &lt;option class="" value="random"&gt;urlencoded.com &lt;/option&gt;              &lt;option class="" value="random"&gt;illegalproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;prxxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;internetproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;drpruxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;uniqueproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;coveredtracks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;netnep.com &lt;/option&gt;              &lt;option class="" value="random"&gt;concealme.com &lt;/option&gt;              &lt;option class="" value="random"&gt;teenproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;v3proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxyspace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iloveny.be &lt;/option&gt;              &lt;option class="" value="random"&gt;sneak2.com &lt;/option&gt;              &lt;option class="" value="random"&gt;1xv.net &lt;/option&gt;              &lt;option class="" value="random"&gt;gopast.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyplease.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gostealthy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytogo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pipeproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywebpage.net &lt;/option&gt;              &lt;option class="" value="random"&gt;liveproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;mywebtunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;momosurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockyourself.com &lt;/option&gt;              &lt;option class="" value="random"&gt;msxsecurity.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wizproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-j.com &lt;/option&gt;              &lt;option class="" value="random"&gt;no-ip-anon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceproxy.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;prroxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;stupidproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nomorefilters.com &lt;/option&gt;              &lt;option class="" value="random"&gt;2proxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;seekproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;elitehacks.be &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceunblocker.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxychatroom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;torify.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ergoproxy1.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxup.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thepruxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mortgage-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;xxxproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;aproxym8.com &lt;/option&gt;              &lt;option class="" value="random"&gt;provacy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wsunlock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ctunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;avoider.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hiddenurl.net &lt;/option&gt;              &lt;option class="" value="random"&gt;lastproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;21proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;uf2.org &lt;/option&gt;              &lt;option class="" value="random"&gt;dbm8.com &lt;/option&gt;              &lt;option class="" value="random"&gt;treeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;btunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxcee.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shadow-click.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ekzi.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ipproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy7.com &lt;/option&gt;              &lt;option class="" value="random"&gt;totalupload.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxygenie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;filterwebsite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-d.com &lt;/option&gt;              &lt;option class="" value="random"&gt;aprox.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zoomproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zcloak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;xsent.com &lt;/option&gt;              &lt;option class="" value="random"&gt;n6c.net &lt;/option&gt;              &lt;option class="" value="random"&gt;thebloglisting.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bl0cked.com &lt;/option&gt;              &lt;option class="" value="random"&gt;faithless.ho11.com &lt;/option&gt;              &lt;option class="" value="random"&gt;your-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhq.com &lt;/option&gt;              &lt;option class="" value="random"&gt;flyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-site.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jungleproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytiger.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kezfun.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymess.com &lt;/option&gt;              &lt;option class="" value="random"&gt;justavoid.com &lt;/option&gt;              &lt;option class="" value="random"&gt;secretpr0xy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;psurf.net &lt;/option&gt;              &lt;option class="" value="random"&gt;link-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pageproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ab.tl &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-s.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhut.com &lt;/option&gt;              &lt;option class="" value="random"&gt;clinicallegal.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyone.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysurfers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.cc &lt;/option&gt;              &lt;option class="" value="random"&gt;getaroundfilters.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyrocker.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastfreeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;concealedurl.com &lt;/option&gt;              &lt;option class="" value="random"&gt;officeclerk.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ukproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;snoopblock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeinternetproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;access.4clever.com &lt;/option&gt;              &lt;option class="" value="random"&gt;intranetproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassall.com &lt;/option&gt;              &lt;option class="" value="random"&gt;darkproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unipeak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassblocks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyrocket.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pr0xy.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;cooltunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.info &lt;/option&gt;              &lt;option class="" value="random"&gt;firewalldown.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nevercaught.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypass-firewall.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-c.com &lt;/option&gt;              &lt;option class="" value="random"&gt;my-proxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;superpr0xy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jzmz.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mecporxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;ftp-proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;browseatschool.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydrop.com &lt;/option&gt;              &lt;option class="" value="random"&gt;orangeproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;jungleproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;concealmy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywork.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gouc.fr &lt;/option&gt;              &lt;option class="" value="random"&gt;unblox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-a.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zidev.com &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy5.com &lt;/option&gt;              &lt;option class="" value="random"&gt;calculatepie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;velocity-servers.be &lt;/option&gt;              &lt;option class="" value="random"&gt;nodeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unistealth.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyshot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastsec.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-site.info &lt;/option&gt;              &lt;option class="" value="random"&gt;comproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-k.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonbrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;intranetproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;onlinewebproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxykey.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webproxy.250.com.au &lt;/option&gt;              &lt;option class="" value="random"&gt;fyur.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeanonproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyaware.com &lt;/option&gt;              &lt;option class="" value="random"&gt;antifilters.com &lt;/option&gt;              &lt;option class="" value="random"&gt;w3privacy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anomisurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;accessanysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;netsack.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-g.com &lt;/option&gt;              &lt;option class="" value="random"&gt;insectstore.com &lt;/option&gt;              &lt;option class="" value="random"&gt;monsterproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fineproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;logbuster.net &lt;/option&gt;              &lt;option class="" value="random"&gt;genuineproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;2012.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;webproxy.cc &lt;/option&gt;              &lt;option class="" value="random"&gt;in2play.net &lt;/option&gt;              &lt;option class="" value="random"&gt;buzzysplat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mp6.us &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxystealth.com &lt;/option&gt;              &lt;option class="" value="random"&gt;tice.cz &lt;/option&gt;              &lt;option class="" value="random"&gt;anonfind.com &lt;/option&gt;              &lt;option class="" value="random"&gt;antiwebfilter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;maskedbrowser.com &lt;/option&gt;              &lt;option class="" value="random"&gt;annihilator.ca &lt;/option&gt;              &lt;option class="" value="random"&gt;hujiko.com &lt;/option&gt;              &lt;option class="" value="random"&gt;arcadeplayers.net &lt;/option&gt;              &lt;option class="" value="random"&gt;vmathpie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cloakme.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ms-excel-help.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypass.3-p-o.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyzoo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;prettyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nopath.net &lt;/option&gt;              &lt;option class="" value="random"&gt;doctorproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;killerproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pagebang.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mypr0xy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;anonproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;cloakedsurfing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;letmepast.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassfirewall.net &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockfacebook.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxyserver.info &lt;/option&gt;              &lt;option class="" value="random"&gt;polarproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;geotunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;firewalleater.com &lt;/option&gt;              &lt;option class="" value="random"&gt;uploadguru.com &lt;/option&gt;              &lt;option class="" value="random"&gt;littleproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxystarter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysnow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pimpmyip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pruxys.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ushide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;silverproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;csse.monash.edu.au &lt;/option&gt;              &lt;option class="" value="random"&gt;anonimator.net &lt;/option&gt;              &lt;option class="" value="random"&gt;pr0xies.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyguy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vibesurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;boxproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;uniproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxcover.net &lt;/option&gt;              &lt;option class="" value="random"&gt;zproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;yourwebproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.eu &lt;/option&gt;              &lt;option class="" value="random"&gt;anonproxy.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;hide-me.net &lt;/option&gt;              &lt;option class="" value="random"&gt;7eth.com &lt;/option&gt;              &lt;option class="" value="random"&gt;setproxy.de &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;nikq.com &lt;/option&gt;              &lt;option class="" value="random"&gt;dejacey.com &lt;/option&gt;              &lt;option class="" value="random"&gt;guyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhttps.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakyproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;sd9.us &lt;/option&gt;              &lt;option class="" value="random"&gt;anonypath.net &lt;/option&gt;              &lt;option class="" value="random"&gt;dunkindonuts.be &lt;/option&gt;              &lt;option class="" value="random"&gt;proxguard.net &lt;/option&gt;              &lt;option class="" value="random"&gt;idealproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyjunction.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kangzhuang.ucam.org &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassfilter.org &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy.spotted-productions.com &lt;/option&gt;              &lt;option class="" value="random"&gt;goproxing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;university-access.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mobiproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;beatthenanny.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ipbounce.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxy.nl &lt;/option&gt;              &lt;option class="" value="random"&gt;newbackdoor.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymain.com &lt;/option&gt;              &lt;option class="" value="random"&gt;switchproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;imsosneaky.com &lt;/option&gt;              &lt;option class="" value="random"&gt;3proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypill.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxynavigation.com &lt;/option&gt;              &lt;option class="" value="random"&gt;greekradio.be &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyparty.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gizlink.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nukeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytouch.com &lt;/option&gt;              &lt;option class="" value="random"&gt;moreproxies.net &lt;/option&gt;              &lt;option class="" value="random"&gt;filtercloak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webprox.net &lt;/option&gt;              &lt;option class="" value="random"&gt;gpass1.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lammasafe.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browseany.com &lt;/option&gt;              &lt;option class="" value="random"&gt;outplay.net &lt;/option&gt;              &lt;option class="" value="random"&gt;c9r.net &lt;/option&gt;              &lt;option class="" value="random"&gt;tightproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidip.stpwebhosting.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-f.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakysurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;l33tproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;a1proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;maxstealth.com &lt;/option&gt;              &lt;option class="" value="random"&gt;uxxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemenow.info &lt;/option&gt;              &lt;option class="" value="random"&gt;hidden-access.com &lt;/option&gt;              &lt;option class="" value="random"&gt;elitenetworks.be &lt;/option&gt;              &lt;option class="" value="random"&gt;pipeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyweb.net &lt;/option&gt;              &lt;option class="" value="random"&gt;akaelvis.com &lt;/option&gt;              &lt;option class="" value="random"&gt;geefly.com &lt;/option&gt;              &lt;option class="" value="random"&gt;runawayip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;concealednet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytheweb.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfirst.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypulse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myprxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;c00lproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;getmepast.com &lt;/option&gt;              &lt;option class="" value="random"&gt;craftyproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;cpanel.vanir.lifelesspeople.com &lt;/option&gt;              &lt;option class="" value="random"&gt;flatline.org.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;myfreeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hd-gaming.be &lt;/option&gt;              &lt;option class="" value="random"&gt;b3u.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydrop.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;bentmasreya.com &lt;/option&gt;              &lt;option class="" value="random"&gt;th3m4tr1x.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxylord.com &lt;/option&gt;              &lt;option class="" value="random"&gt;goldproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxygroup.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemyinfo.info &lt;/option&gt;              &lt;option class="" value="random"&gt;irancover.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cfunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;desireproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;eastproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonypath.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.us &lt;/option&gt;              &lt;option class="" value="random"&gt;global-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;moreproxies.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mr-proxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;backfox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxylot.info &lt;/option&gt;              &lt;option class="" value="random"&gt;safelizard.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lesproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gamedaemons.be &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockfacebook.com &lt;/option&gt;              &lt;option class="" value="random"&gt;rolista.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bingoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyposse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-m.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bbscience.org &lt;/option&gt;              &lt;option class="" value="random"&gt;secretproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysurfing.net &lt;/option&gt;              &lt;option class="" value="random"&gt;iprivacyonline.com &lt;/option&gt;              &lt;option class="" value="random"&gt;persiasproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;defilter.evilsprouts.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;bywhat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iraniproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;teamproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;asecreturl.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wildproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyvibe.com &lt;/option&gt;              &lt;option class="" value="random"&gt;usatunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxygate.de &lt;/option&gt;              &lt;option class="" value="random"&gt;safehazard.com &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy.frac.dk &lt;/option&gt;              &lt;option class="" value="random"&gt;atunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;diamondproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cloakmyass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hide-online.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ipdefend.com &lt;/option&gt;              &lt;option class="" value="random"&gt;3proxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;chillproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;differentip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;concealsurfing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;secretproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hotproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;coreproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxytool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxreg.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymod.com &lt;/option&gt;              &lt;option class="" value="random"&gt;atschool.be &lt;/option&gt;              &lt;option class="" value="random"&gt;yourfreeproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;velocityservers.be &lt;/option&gt;              &lt;option class="" value="random"&gt;bridgecity1.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hideme.info &lt;/option&gt;              &lt;option class="" value="random"&gt;mrbypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ocrig.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nitroproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wantproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;free-web-proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;ehobo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspace-unblock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blockmenot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;chinahtw.com &lt;/option&gt;              &lt;option class="" value="random"&gt;afreeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;techistan.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymouse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;filterjam.com &lt;/option&gt;              &lt;option class="" value="random"&gt;networkproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxify.tv &lt;/option&gt;              &lt;option class="" value="random"&gt;vnhide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kampen.org &lt;/option&gt;              &lt;option class="" value="random"&gt;gameserverdownloads.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fullysickproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemybox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;youhide.net &lt;/option&gt;              &lt;option class="" value="random"&gt;snoopblock.net &lt;/option&gt;              &lt;option class="" value="random"&gt;antman.thewaya.org &lt;/option&gt;              &lt;option class="" value="random"&gt;gopher292.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspacepr0xy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;doxyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;1xa.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhero.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browse-anonymously.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pureprivacy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;officebrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;johnsoninteractive.com &lt;/option&gt;              &lt;option class="" value="random"&gt;yoursecrecy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;behindproxies.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theyankees.be &lt;/option&gt;              &lt;option class="" value="random"&gt;harlandsanders.com &lt;/option&gt;              &lt;option class="" value="random"&gt;poxy.us.to &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyarea.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxable.com &lt;/option&gt;              &lt;option class="" value="random"&gt;madserve.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cilix.be &lt;/option&gt;              &lt;option class="" value="random"&gt;networktechs.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfull.com &lt;/option&gt;              &lt;option class="" value="random"&gt;alphaprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;filterforward.com &lt;/option&gt;              &lt;option class="" value="random"&gt;guardster.com &lt;/option&gt;              &lt;option class="" value="random"&gt;snoopblocker.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-q.com &lt;/option&gt;              &lt;option class="" value="random"&gt;public-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;concealbrowsing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;craftyproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;misterproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;antitrace.net &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassit.org &lt;/option&gt;              &lt;option class="" value="random"&gt;anonypost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-l.com &lt;/option&gt;              &lt;option class="" value="random"&gt;huntproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypasser.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyspy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;easytosecure.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyurl.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hideyourself.info &lt;/option&gt;              &lt;option class="" value="random"&gt;modernproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hideyour.info &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassit.net &lt;/option&gt;              &lt;option class="" value="random"&gt;elmanews.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pagehot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;merletn.org &lt;/option&gt;              &lt;option class="" value="random"&gt;letmeby.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anon-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;okproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;koolproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gotoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zeropaid.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyus.info &lt;/option&gt;              &lt;option class="" value="random"&gt;dprxy.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysite.eu &lt;/option&gt;              &lt;option class="" value="random"&gt;powerfulproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;missingip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidebehind.net &lt;/option&gt;              &lt;option class="" value="random"&gt;logbuster.com &lt;/option&gt;              &lt;option class="" value="random"&gt;craftyproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;anonify.info &lt;/option&gt;              &lt;option class="" value="random"&gt;velocityserver.be &lt;/option&gt;              &lt;option class="" value="random"&gt;7p8.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyit.info &lt;/option&gt;              &lt;option class="" value="random"&gt;myspace-proxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hoofle.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxsafe.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyquick.com &lt;/option&gt;              &lt;option class="" value="random"&gt;dtunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iranianproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;nyysuck.be &lt;/option&gt;              &lt;option class="" value="random"&gt;brian.accu.org &lt;/option&gt;              &lt;option class="" value="random"&gt;pavstaessentials.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;agoodproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;intranetproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;secret-bypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hideus.com &lt;/option&gt;              &lt;option class="" value="random"&gt;moreproxies.org &lt;/option&gt;              &lt;option class="" value="random"&gt;ipzap.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unfilterme.com &lt;/option&gt;              &lt;option class="" value="random"&gt;porkshandy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;b3y.net &lt;/option&gt;              &lt;option class="" value="random"&gt;objectsspace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cloaker.ca &lt;/option&gt;              &lt;option class="" value="random"&gt;waypointgaming.net &lt;/option&gt;              &lt;option class="" value="random"&gt;pimpproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;discountedclearance.com &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;primeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;roboproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymizer.ru &lt;/option&gt;              &lt;option class="" value="random"&gt;drproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;cdweb.info &lt;/option&gt;              &lt;option class="" value="random"&gt;bypasspoint.com &lt;/option&gt;              &lt;option class="" value="random"&gt;eagleproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;miniproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;redproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;safe-surfer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fisica.unina.it &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyboys.net &lt;/option&gt;              &lt;option class="" value="random"&gt;blockbegone.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypedia.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ahoraian.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ezproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.bz &lt;/option&gt;              &lt;option class="" value="random"&gt;secret-filter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyteam.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymization.org &lt;/option&gt;              &lt;option class="" value="random"&gt;myspacebypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cecid.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonasurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyplace.net &lt;/option&gt;              &lt;option class="" value="random"&gt;browse-from-school.com &lt;/option&gt;              &lt;option class="" value="random"&gt;studentproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;purpleproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;kochang-hotel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastfreeproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybutton.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thunderproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;w3url.net &lt;/option&gt;              &lt;option class="" value="random"&gt;websurferproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nfan.org &lt;/option&gt;              &lt;option class="" value="random"&gt;worldwideproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;everprivatebrowser.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webproxy-bypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;altarcore.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymummy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iranproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;thesecreturl.com &lt;/option&gt;              &lt;option class="" value="random"&gt;executiveproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockonline.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freebypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mintproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blackproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jozone.be &lt;/option&gt;              &lt;option class="" value="random"&gt;yourwebproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proksie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;tntproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidden-ip-server.com &lt;/option&gt;              &lt;option class="" value="random"&gt;orangeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxe.org &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymousproxies.net &lt;/option&gt;              &lt;option class="" value="random"&gt;pruxxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyng.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymask.com &lt;/option&gt;              &lt;option class="" value="random"&gt;silentproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;toughproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;someproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pornoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;xfunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gate7.us &lt;/option&gt;              &lt;option class="" value="random"&gt;anonguide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;usemyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;avoidr.com &lt;/option&gt;              &lt;option class="" value="random"&gt;roxypoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;livreproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-r.com &lt;/option&gt;              &lt;option class="" value="random"&gt;link2caro.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycraze.com &lt;/option&gt;              &lt;option class="" value="random"&gt;24proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;6zb.net &lt;/option&gt;              &lt;option class="" value="random"&gt;0pb.net &lt;/option&gt;              &lt;option class="" value="random"&gt;nopath.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysurf.org &lt;/option&gt;              &lt;option class="" value="random"&gt;localproxy.de &lt;/option&gt;              &lt;option class="" value="random"&gt;ia3.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxynanny.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakonline.com &lt;/option&gt;              &lt;option class="" value="random"&gt;goproxing.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;gr8proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;killtheboredom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxygroup.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webrerouter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytips.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockthe.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxxed.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyservice.info &lt;/option&gt;              &lt;option class="" value="random"&gt;guardproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ajitk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydrop.org &lt;/option&gt;              &lt;option class="" value="random"&gt;fusionproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ajaxcounter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;peoplesproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;youcantseeme.org &lt;/option&gt;              &lt;option class="" value="random"&gt;bestwebproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vtunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxythere.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nomorefilter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;accesstheunaccessible.com &lt;/option&gt;              &lt;option class="" value="random"&gt;perlproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;techtakeover.com &lt;/option&gt;              &lt;option class="" value="random"&gt;englishtunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;prox8.com &lt;/option&gt;              &lt;option class="" value="random"&gt;amyspaceproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mrproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;greenproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;prooxle.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxy.ca &lt;/option&gt;              &lt;option class="" value="random"&gt;ogproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;limeproxy.de &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.vg &lt;/option&gt;              &lt;option class="" value="random"&gt;anonproxyservers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;craftyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thewebtunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zhaodaola.org &lt;/option&gt;              &lt;option class="" value="random"&gt;netevade.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-i.com &lt;/option&gt;              &lt;option class="" value="random"&gt;alienproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browse-from-work.com &lt;/option&gt;              &lt;option class="" value="random"&gt;arandomproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lockproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cgi-proxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hiddenbrowsing.net &lt;/option&gt;              &lt;option class="" value="random"&gt;wanaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;uprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anti-proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;thehiddenurl.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shadow-point.com &lt;/option&gt;              &lt;option class="" value="random"&gt;geektunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;geektunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cleanproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cleanproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;h0x.org &lt;/option&gt;              &lt;option class="" value="random"&gt;emigrantas.com &lt;/option&gt;              &lt;option class="" value="random"&gt;emigrantas.com &lt;/option&gt;              &lt;option class="" value="random"&gt;aminguploads.com &lt;/option&gt;              &lt;option class="" value="random"&gt;schoolmyspace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblock-myspace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;dzzt.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxychamp.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fishswimfast.com &lt;/option&gt;              &lt;option class="" value="random"&gt;noshameproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pyroproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;spaceproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymousinet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hp-h.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymization.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myfirstproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fasthide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;helpmehide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;angryboss.net &lt;/option&gt;              &lt;option class="" value="random"&gt;yourfreeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;maxproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;maxd.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;anonprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;start-using-cgiproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;uberroots.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfeasy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;masterproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;lvyo.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxxed.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nikoniko.pote.jp &lt;/option&gt;              &lt;option class="" value="random"&gt;prx1.com mypwoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;yourproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockmy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy77.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nowebfilters.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wubi.org &lt;/option&gt;              &lt;option class="" value="random"&gt;intsouq.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxylife.org &lt;/option&gt;              &lt;option class="" value="random"&gt;flx-tech.net &lt;/option&gt;              &lt;option class="" value="random"&gt;123open.org &lt;/option&gt;              &lt;option class="" value="random"&gt;ultrareach.net &lt;/option&gt;              &lt;option class="" value="random"&gt;abrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;benboubker.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stupidcensorship.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy7.info &lt;/option&gt;              &lt;option class="" value="random"&gt;browsework.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyshack.com &lt;/option&gt;              &lt;option class="" value="random"&gt;redlightproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ibypass.us &lt;/option&gt;              &lt;option class="" value="random"&gt;fly24.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyprotected.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pass.redirectme.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy14.info &lt;/option&gt;              &lt;option class="" value="random"&gt;netgaurd.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy121.com &lt;/option&gt;              &lt;option class="" value="random"&gt;startcgiproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;probrowser.iu.bz &lt;/option&gt;              &lt;option class="" value="random"&gt;nopimps.com &lt;/option&gt;              &lt;option class="" value="random"&gt;p.jabab.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-u.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freerk.thumbguru.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wikiproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycombat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stealthnow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyeyes.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mycgiproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ocramc.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zombieinvasion.info &lt;/option&gt;              &lt;option class="" value="random"&gt;imhidden.com &lt;/option&gt;              &lt;option class="" value="random"&gt;knifa.vivator.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspacepwoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;reliableproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;famous5.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyindex.com &lt;/option&gt;              &lt;option class="" value="random"&gt;todag.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fromschool.net &lt;/option&gt;              &lt;option class="" value="random"&gt;rapidwire.net &lt;/option&gt;              &lt;option class="" value="random"&gt;anoniproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anderson318.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxert.com &lt;/option&gt;              &lt;option class="" value="random"&gt;the247proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxzy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;ieproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pornproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;surfatschool.net &lt;/option&gt;              &lt;option class="" value="random"&gt;data4art.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bottlerocketscientist.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sourproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyspot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeteenproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;probrowser.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;prxz.com &lt;/option&gt;              &lt;option class="" value="random"&gt;trickypanda.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wordy.i4host.net &lt;/option&gt;              &lt;option class="" value="random"&gt;butterflyswatter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy11.info &lt;/option&gt;              &lt;option class="" value="random"&gt;httproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;windows.adm24.de &lt;/option&gt;              &lt;option class="" value="random"&gt;phomail.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sierraspace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;multigaming.hkhp.us &lt;/option&gt;              &lt;option class="" value="random"&gt;sneak3.po.gs &lt;/option&gt;              &lt;option class="" value="random"&gt;sleekproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mehdinasiri.net &lt;/option&gt;              &lt;option class="" value="random"&gt;stealthclick.com &lt;/option&gt;              &lt;option class="" value="random"&gt;amzx.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemyip.eu &lt;/option&gt;              &lt;option class="" value="random"&gt;brocoli.my.free.fr &lt;/option&gt;              &lt;option class="" value="random"&gt;myfastproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hydrohost.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;p0k8h6g5f4.com &lt;/option&gt;              &lt;option class="" value="random"&gt;schoolgotowned.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pole.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;viewthat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyraid.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cnproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;at18.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ftoserver.com &lt;/option&gt;              &lt;option class="" value="random"&gt;yarrt.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybig.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxynut.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ptproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;digital-dilusion.com &lt;/option&gt;              &lt;option class="" value="random"&gt;brownproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;candyapplepie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywagon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;chubbicheeks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;0mg.us &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyally.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyvisit.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysite.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;visaoyeu.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webbypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;e-places.net &lt;/option&gt;              &lt;option class="" value="random"&gt;fuznet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;useproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;moddedhosting.com &lt;/option&gt;              &lt;option class="" value="random"&gt;usbm.de toyfm.com &lt;/option&gt;              &lt;option class="" value="random"&gt;monkeyaround.net &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxysurf.info &lt;/option&gt;              &lt;option class="" value="random"&gt;swifthide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycafe.net &lt;/option&gt;              &lt;option class="" value="random"&gt;gamesproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;awesomeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;httpproxie.info &lt;/option&gt;              &lt;option class="" value="random"&gt;dynaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsefreely.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxylife.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakthrough.com &lt;/option&gt;              &lt;option class="" value="random"&gt;eproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;spywebhosting.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stealthvisitor.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myinternetproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;icodeviruses.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.cd &lt;/option&gt;              &lt;option class="" value="random"&gt;funkiemunkie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cyberproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;ptron.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyday.com &lt;/option&gt;              &lt;option class="" value="random"&gt;getproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;anarchyzero.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stayanonymous.info &lt;/option&gt;              &lt;option class="" value="random"&gt;frozenraindrop.com &lt;/option&gt;              &lt;option class="" value="random"&gt;j4s0nn.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jeffcohost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nuweb.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockmyspace.org &lt;/option&gt;              &lt;option class="" value="random"&gt;stealthme.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kazimir.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxythat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bluelightproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyupload.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastopener.com &lt;/option&gt;              &lt;option class="" value="random"&gt;themountainboy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gamecrib.net &lt;/option&gt;              &lt;option class="" value="random"&gt;school-helper.info &lt;/option&gt;              &lt;option class="" value="random"&gt;googledout.com &lt;/option&gt;              &lt;option class="" value="random"&gt;getproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;surfanysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfox.info &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakyworm.com &lt;/option&gt;              &lt;option class="" value="random"&gt;privateinternet.org &lt;/option&gt;              &lt;option class="" value="random"&gt;freeme.worldispnetwork.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fixitall.us &lt;/option&gt;              &lt;option class="" value="random"&gt;computersteroids.com &lt;/option&gt;              &lt;option class="" value="random"&gt;xennexinc.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unbloxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;anony-surf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.tl &lt;/option&gt;              &lt;option class="" value="random"&gt;phpproxy.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;fastpwoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ukproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidealink.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iranhostingltd-linux.uni.cc &lt;/option&gt;              &lt;option class="" value="random"&gt;undirect.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyactive.com &lt;/option&gt;              &lt;option class="" value="random"&gt;expressproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ipguard.be &lt;/option&gt;              &lt;option class="" value="random"&gt;hacksmart.com &lt;/option&gt;              &lt;option class="" value="random"&gt;libya24.com &lt;/option&gt;              &lt;option class="" value="random"&gt;page-setup.com &lt;/option&gt;              &lt;option class="" value="random"&gt;brainflux.org &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakysniper.net &lt;/option&gt;              &lt;option class="" value="random"&gt;isproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;secretly2u.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;safeprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymousproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;speedybrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyaliens.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shorten.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy18.info &lt;/option&gt;              &lt;option class="" value="random"&gt;goproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;wallpass.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytwo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;demonproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhide.net &lt;/option&gt;              &lt;option class="" value="random"&gt;pelg88.com proxy80.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfbyproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;1flowersmalaysia.com &lt;/option&gt;              &lt;option class="" value="random"&gt;youproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;xiranx.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxism.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kickadmin.com &lt;/option&gt;              &lt;option class="" value="random"&gt;chocolatemilkmoney.com &lt;/option&gt;              &lt;option class="" value="random"&gt;liteproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;peacefulislands.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freevideocodes.us &lt;/option&gt;              &lt;option class="" value="random"&gt;findproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;xecuetor.hostcubed.com &lt;/option&gt;              &lt;option class="" value="random"&gt;greatking.info &lt;/option&gt;              &lt;option class="" value="random"&gt;hide.sc &lt;/option&gt;              &lt;option class="" value="random"&gt;deviantroad.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lettersfromgermany.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ninjaworm.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxynerd.net &lt;/option&gt;              &lt;option class="" value="random"&gt;thesmo.com frowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fsurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;easterislandgetaway.com &lt;/option&gt;              &lt;option class="" value="random"&gt;l-t.us &lt;/option&gt;              &lt;option class="" value="random"&gt;s67.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy1.be &lt;/option&gt;              &lt;option class="" value="random"&gt;eatmoreblueberries.com &lt;/option&gt;              &lt;option class="" value="random"&gt;valessor.com &lt;/option&gt;              &lt;option class="" value="random"&gt;absolute.x10hosting.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxize.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ebypassnow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fudgeyourself.com &lt;/option&gt;              &lt;option class="" value="random"&gt;prepsoncrack.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywiz.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pinkproxie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hide-me.be &lt;/option&gt;              &lt;option class="" value="random"&gt;slyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freedomdown.net &lt;/option&gt;              &lt;option class="" value="random"&gt;aptenodytes.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysnail.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pcwebtalk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;glamous.hostrocket.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyly.com &lt;/option&gt;              &lt;option class="" value="random"&gt;phpproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thephysicschannel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ironproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;siteunlocker.com &lt;/option&gt;              &lt;option class="" value="random"&gt;foxyproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;browser.pavsta.com &lt;/option&gt;              &lt;option class="" value="random"&gt;efewe.com l4z.us &lt;/option&gt;              &lt;option class="" value="random"&gt;php-proxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;jj4.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxy24.com &lt;/option&gt;              &lt;option class="" value="random"&gt;privacyproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;maskmy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;de-bo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lightproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;httpproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;surf-anon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myhiddenip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonimate.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bellj.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyserver7.com &lt;/option&gt;              &lt;option class="" value="random"&gt;game678.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfly.net &lt;/option&gt;              &lt;option class="" value="random"&gt;iamhidden.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy101.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyjet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;siteanalysis.info &lt;/option&gt;              &lt;option class="" value="random"&gt;pyeitconsultancy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysite.us &lt;/option&gt;              &lt;option class="" value="random"&gt;browser.grik.net &lt;/option&gt;              &lt;option class="" value="random"&gt;q2r.net &lt;/option&gt;              &lt;option class="" value="random"&gt;solidwebproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lnx.spyro.it &lt;/option&gt;              &lt;option class="" value="random"&gt;asavage.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybar.info &lt;/option&gt;              &lt;option class="" value="random"&gt;hasanagha.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;tpproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;doorhole.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxyserver.org &lt;/option&gt;              &lt;option class="" value="random"&gt;surfola.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pro.dragonfans.net &lt;/option&gt;              &lt;option class="" value="random"&gt;dor.gardoon.net &lt;/option&gt;              &lt;option class="" value="random"&gt;smartproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockworld.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iranproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;indianproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypuma.com &lt;/option&gt;              &lt;option class="" value="random"&gt;crazycrap.net &lt;/option&gt;              &lt;option class="" value="random"&gt;comservhost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;easypas.us &lt;/option&gt;              &lt;option class="" value="random"&gt;evaded.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxykey.org &lt;/option&gt;              &lt;option class="" value="random"&gt;greatadmin.com &lt;/option&gt;              &lt;option class="" value="random"&gt;i-space.tv &lt;/option&gt;              &lt;option class="" value="random"&gt;ipproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;siteallow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cgimyspaceproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ibypass.name &lt;/option&gt;              &lt;option class="" value="random"&gt;startusingcgiproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;surfitanon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;isbored.net &lt;/option&gt;              &lt;option class="" value="random"&gt;iranproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;justproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;surfalone.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nhuanet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;oriongroupllc.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zed1.com pmc.gs &lt;/option&gt;              &lt;option class="" value="random"&gt;proxygod.365.ne.jp &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywolf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gaipai.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;roxyproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;howdesi.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.fm &lt;/option&gt;              &lt;option class="" value="random"&gt;whiplash-girlchild.com &lt;/option&gt;              &lt;option class="" value="random"&gt;coconia.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyprince.com &lt;/option&gt;              &lt;option class="" value="random"&gt;labirint.com.ru &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy88.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybrowsing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidingyou.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywin.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pc-portal.at &lt;/option&gt;              &lt;option class="" value="random"&gt;acidraincloud.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bruno-me.org &lt;/option&gt;              &lt;option class="" value="random"&gt;xandango.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypop.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxylight.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;accessthat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;coolhandle.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blueproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;itracks.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ngt.kiev.ua &lt;/option&gt;              &lt;option class="" value="random"&gt;websitecondom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jinfyre.com &lt;/option&gt;              &lt;option class="" value="random"&gt;domainuniverzum.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freshtart.com &lt;/option&gt;              &lt;option class="" value="random"&gt;charlesk.library.arizona.edu &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-sock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;web-list.net &lt;/option&gt;              &lt;option class="" value="random"&gt;dahanservice.org &lt;/option&gt;              &lt;option class="" value="random"&gt;firstleft.net &lt;/option&gt;              &lt;option class="" value="random"&gt;phoenixproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;onlyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mmorpgzone.xeeblo.net &lt;/option&gt;              &lt;option class="" value="random"&gt;foxy-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyboys.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsingatwork.com &lt;/option&gt;              &lt;option class="" value="random"&gt;groundhogdayflowers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyweb.info &lt;/option&gt;              &lt;option class="" value="random"&gt;isquaredsoftware.com &lt;/option&gt;              &lt;option class="" value="random"&gt;firewallpass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freerk.ath.cx &lt;/option&gt;              &lt;option class="" value="random"&gt;bnetneeds.com &lt;/option&gt;              &lt;option class="" value="random"&gt;w3locator.com &lt;/option&gt;              &lt;option class="" value="random"&gt;baumgart.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;schoolsurf.net &lt;/option&gt;              &lt;option class="" value="random"&gt;browsingwork.info &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxy.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;perfectproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;starkravingmad.org &lt;/option&gt;              &lt;option class="" value="random"&gt;miproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;palsgraf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;safeprox.net &lt;/option&gt;              &lt;option class="" value="random"&gt;solutiondi.com &lt;/option&gt;              &lt;option class="" value="random"&gt;free-cgi-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;duoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;awkwardalliteration.com &lt;/option&gt;              &lt;option class="" value="random"&gt;openproxy.ath.cx &lt;/option&gt;              &lt;option class="" value="random"&gt;planetproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ip-privacy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyeah.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybeans.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;censorshipmakesmepuke.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyol.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stayinvis.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vistaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;easyproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockedweb.com &lt;/option&gt;              &lt;option class="" value="random"&gt;haroldsgym.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vanstra.nl &lt;/option&gt;              &lt;option class="" value="random"&gt;jiggyworm.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypowered.com &lt;/option&gt;              &lt;option class="" value="random"&gt;froovis.com &lt;/option&gt;              &lt;option class="" value="random"&gt;megaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypass-proxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;whopy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;goluna.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pr0xy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydude.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iraqigeek.com &lt;/option&gt;              &lt;option class="" value="random"&gt;powerproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;prox-e.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freebieproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxykingz.com &lt;/option&gt;              &lt;option class="" value="random"&gt;notrespassers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;free1.aerohostale.com &lt;/option&gt;              &lt;option class="" value="random"&gt;finderly.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxylite.net &lt;/option&gt;              &lt;option class="" value="random"&gt;secretip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thisproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysearch.net &lt;/option&gt;              &lt;option class="" value="random"&gt;secretbrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mankindorganization.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wikipedia.wudan.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;runecrap.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysea.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unitedemailsystems.com &lt;/option&gt;              &lt;option class="" value="random"&gt;medyadaily.com &lt;/option&gt;              &lt;option class="" value="random"&gt;tehbox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mdweiss.ods.org &lt;/option&gt;              &lt;option class="" value="random"&gt;clickthese.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ratepcmods.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bernwun.com &lt;/option&gt;              &lt;option class="" value="random"&gt;w1r3d.net &lt;/option&gt;              &lt;option class="" value="random"&gt;browseking.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfgreedy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxyserver.net &lt;/option&gt;              &lt;option class="" value="random"&gt;justproxyit.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ruproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;pruxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vrijsurfen.nl &lt;/option&gt;              &lt;option class="" value="random"&gt;shizzkabiz.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browseblack.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymize.com &lt;/option&gt;              &lt;option class="" value="random"&gt;monster.filter2005.com &lt;/option&gt;              &lt;option class="" value="random"&gt;heshan18.com &lt;/option&gt;              &lt;option class="" value="random"&gt;saudiproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;3pich.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybull.com &lt;/option&gt;              &lt;option class="" value="random"&gt;umzo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gofreeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gooblins.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyget.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thisproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;3voproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;filterfakeout.com &lt;/option&gt;              &lt;option class="" value="random"&gt;naifen.net &lt;/option&gt;              &lt;option class="" value="random"&gt;heyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;grandproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;silkyportal.com &lt;/option&gt;              &lt;option class="" value="random"&gt;niallmannion.com &lt;/option&gt;              &lt;option class="" value="random"&gt;xombra.com &lt;/option&gt;              &lt;option class="" value="random"&gt;tohide.us &lt;/option&gt;              &lt;option class="" value="random"&gt;0ic.net &lt;/option&gt;              &lt;option class="" value="random"&gt;freeusaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thevirtualbrowser.com &lt;/option&gt;              &lt;option class="" value="random"&gt;greenproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;aplusproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;twoface.name &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.us.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mysticproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thestrongestlinks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unitedproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fux0r.nl cgi-proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;hideinfo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydevil.com &lt;/option&gt;              &lt;option class="" value="random"&gt;razorthought.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hiddenbrowsing.info &lt;/option&gt;              &lt;option class="" value="random"&gt;ibypass.net &lt;/option&gt;              &lt;option class="" value="random"&gt;nphproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surphox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;peopleproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ibypass.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;unblock.info &lt;/option&gt;              &lt;option class="" value="random"&gt;websiteunblock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anoxx.com &lt;/option&gt;              &lt;option class="" value="random"&gt;generalproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fxproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;getpast.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pisirt.be &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-t.com &lt;/option&gt;              &lt;option class="" value="random"&gt;heyzeus.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybin.com &lt;/option&gt;              &lt;option class="" value="random"&gt;skweezer.net &lt;/option&gt;              &lt;option class="" value="random"&gt;choicesubmissions.com &lt;/option&gt;              &lt;option class="" value="random"&gt;web.freerk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iwantmyowncomputer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy15.info &lt;/option&gt;              &lt;option class="" value="random"&gt;flamesofplastic.net &lt;/option&gt;              &lt;option class="" value="random"&gt;germaniceskating.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyatwork.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fatpita.net &lt;/option&gt;              &lt;option class="" value="random"&gt;anulook.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycloak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;chuchasjewelry.com &lt;/option&gt;              &lt;option class="" value="random"&gt;varsitech.s43.eatj.com &lt;/option&gt;              &lt;option class="" value="random"&gt;open-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-w.com &lt;/option&gt;              &lt;option class="" value="random"&gt;riss.x05host.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhub.com &lt;/option&gt;              &lt;option class="" value="random"&gt;justprivacy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browseschool.info &lt;/option&gt;              &lt;option class="" value="random"&gt;smartproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybug.com &lt;/option&gt;              &lt;option class="" value="random"&gt;45.45n.cn &lt;/option&gt;              &lt;option class="" value="random"&gt;planetdangerous.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfanonym.de &lt;/option&gt;              &lt;option class="" value="random"&gt;technistan.com &lt;/option&gt;              &lt;option class="" value="random"&gt;filmformula.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sickproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;grafyx.dyndns.org &lt;/option&gt;              &lt;option class="" value="random"&gt;daproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;whatmyipaddress.net &lt;/option&gt;              &lt;option class="" value="random"&gt;buyanonimity.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemyass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblocktheweb.com &lt;/option&gt;              &lt;option class="" value="random"&gt;platinumproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;cyaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;polarmath.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fooznet.be &lt;/option&gt;              &lt;option class="" value="random"&gt;stripnow.be &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceproxies.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-browser.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydesk.info &lt;/option&gt;              &lt;option class="" value="random"&gt;checkmyip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;n6b.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hostinganime.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyforall.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybong.com &lt;/option&gt;              &lt;option class="" value="random"&gt;handsoffmycomputer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;qoosa.com &lt;/option&gt;              &lt;option class="" value="random"&gt;workrelated.info &lt;/option&gt;              &lt;option class="" value="random"&gt;12-21-2012.org &lt;/option&gt;              &lt;option class="" value="random"&gt;websecretproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;frod.be d-oh.net &lt;/option&gt;              &lt;option class="" value="random"&gt;viproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblocked.info &lt;/option&gt;              &lt;option class="" value="random"&gt;worldwant.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thepspmods.com &lt;/option&gt;              &lt;option class="" value="random"&gt;adultproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemytracks.net &lt;/option&gt;              &lt;option class="" value="random"&gt;shadow-surf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;earn-world.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pleger.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stayinvis.net &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy.dk &lt;/option&gt;              &lt;option class="" value="random"&gt;blackproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;surfonsteroids.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hideandgosurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;whiteproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hatkoff.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxies.bz &lt;/option&gt;              &lt;option class="" value="random"&gt;passfilter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsercondom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gigabitproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;cacheless.org &lt;/option&gt;              &lt;option class="" value="random"&gt;911proxy.com etxts.com &lt;/option&gt;              &lt;option class="" value="random"&gt;greatfm.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pxy.ca connectopus.com &lt;/option&gt;              &lt;option class="" value="random"&gt;papertigershark.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockmyspace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfprox.net &lt;/option&gt;              &lt;option class="" value="random"&gt;filteriran.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymizer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sonicproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymousindex.com &lt;/option&gt;              &lt;option class="" value="random"&gt;radioactivecarrot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;smallproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;organicchewinggum.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blassed.com proxy2.info &lt;/option&gt;              &lt;option class="" value="random"&gt;gocloak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypla.net &lt;/option&gt;              &lt;option class="" value="random"&gt;auco.info &lt;/option&gt;              &lt;option class="" value="random"&gt;browseasy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ibypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;musicmaster.homelinux.net &lt;/option&gt;              &lt;option class="" value="random"&gt;secure-tunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;coachguru.net &lt;/option&gt;              &lt;option class="" value="random"&gt;withislam.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ft888.net &lt;/option&gt;              &lt;option class="" value="random"&gt;novalok.net &lt;/option&gt;              &lt;option class="" value="random"&gt;1costaricalink.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyace.info &lt;/option&gt;              &lt;option class="" value="random"&gt;nomorelimits.net &lt;/option&gt;              &lt;option class="" value="random"&gt;freenetproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockschool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;k12audiobooks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jellyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxychoice.com &lt;/option&gt;              &lt;option class="" value="random"&gt;getmyspaceon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypi.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pascalos2006.free.fr &lt;/option&gt;              &lt;option class="" value="random"&gt;zambo.1l.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webanonymousproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;freehttpproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;misaki.org &lt;/option&gt;              &lt;option class="" value="random"&gt;barrythecablemodemguy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;x-proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydot.info &lt;/option&gt;              &lt;option class="" value="random"&gt;bluenewworld.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxyspot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pbkill.com &lt;/option&gt;              &lt;option class="" value="random"&gt;preoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;idoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybit.com &lt;/option&gt;              &lt;option class="" value="random"&gt;worldproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;mathpartyanimals.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ohhow.com procksie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;deckjockey.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fullyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shadowclick.com &lt;/option&gt;              &lt;option class="" value="random"&gt;urlgateway.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hillbillyvalley.com &lt;/option&gt;              &lt;option class="" value="random"&gt;dwayneg.com &lt;/option&gt;              &lt;option class="" value="random"&gt;trickmy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;mybigproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymate.info &lt;/option&gt;              &lt;option class="" value="random"&gt;factorism.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hiddenproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bassguy.tk &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymousurfing.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyart.com &lt;/option&gt;              &lt;option class="" value="random"&gt;prebuiltservers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;51helper.org &lt;/option&gt;              &lt;option class="" value="random"&gt;unblock.us &lt;/option&gt;              &lt;option class="" value="random"&gt;fapiko.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfany.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mathcookbook.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy13.info &lt;/option&gt;              &lt;option class="" value="random"&gt;ftunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;free-anonymous-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxysurfing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxinated.com &lt;/option&gt;              &lt;option class="" value="random"&gt;quietproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhost.org &lt;/option&gt;              &lt;option class="" value="random"&gt;orkutsky.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shysurfer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;spondoo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;motoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kernelpanic.mine.nu &lt;/option&gt;              &lt;option class="" value="random"&gt;proxynow.net &lt;/option&gt;              &lt;option class="" value="random"&gt;sonicpig.com &lt;/option&gt;              &lt;option class="" value="random"&gt;premoweb.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sapparod.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mccauleyhome.org &lt;/option&gt;              &lt;option class="" value="random"&gt;freewebproxy.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;mirkoreich.de &lt;/option&gt;              &lt;option class="" value="random"&gt;anothersadsong.com &lt;/option&gt;              &lt;option class="" value="random"&gt;the-crypt.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxysite.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydog.com &lt;/option&gt;              &lt;option class="" value="random"&gt;runarcade.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mzdg.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hidden-surfing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browser.tweekmonster.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-surf.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyghost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;legallyblindfold.com &lt;/option&gt;              &lt;option class="" value="random"&gt;eriknet.no-ip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bbc.php1h.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ftproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;spiralfive.1l.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sadstatue.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy12.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydoll.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browse-at-school.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywave.com &lt;/option&gt;              &lt;option class="" value="random"&gt;whsproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;pgo.glwb.info &lt;/option&gt;              &lt;option class="" value="random"&gt;gnor.net &lt;/option&gt;              &lt;option class="" value="random"&gt;bugfm.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mydomaintracker.net &lt;/option&gt;              &lt;option class="" value="random"&gt;surf-aid.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kashkool.net &lt;/option&gt;              &lt;option class="" value="random"&gt;linfoxdomain.com &lt;/option&gt;              &lt;option class="" value="random"&gt;paulmatvey.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycover.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy.1go.dk &lt;/option&gt;              &lt;option class="" value="random"&gt;warezyahoo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;absolutionx.ecomatrix.eu &lt;/option&gt;              &lt;option class="" value="random"&gt;inventd.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysite.org &lt;/option&gt;              &lt;option class="" value="random"&gt;spysurfing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;officialproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pauleyscorner.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxynine.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxygun.net &lt;/option&gt;              &lt;option class="" value="random"&gt;andrewville.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hcmfactor.com &lt;/option&gt;              &lt;option class="" value="random"&gt;phpproxie.info &lt;/option&gt;              &lt;option class="" value="random"&gt;cloakie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;alcoholrecovery.net &lt;/option&gt;              &lt;option class="" value="random"&gt;freetoview.net &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockurl.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ssl.shatincollege.edu.hk &lt;/option&gt;              &lt;option class="" value="random"&gt;shady.mytwinports.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydown.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sniper.hyptonicfilms.com &lt;/option&gt;              &lt;option class="" value="random"&gt;monkeysigns.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfhidden.info &lt;/option&gt;              &lt;option class="" value="random"&gt;redirecturls.net &lt;/option&gt;              &lt;option class="" value="random"&gt;nethider.com &lt;/option&gt;              &lt;option class="" value="random"&gt;yazfm.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxythrough.com &lt;/option&gt;              &lt;option class="" value="random"&gt;funkproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy911.net &lt;/option&gt;              &lt;option class="" value="random"&gt;elproxy.com bhproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ddss.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;fatproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;openweblive.serveftp.net &lt;/option&gt;              &lt;option class="" value="random"&gt;whiteproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;cloudproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webproxy.in &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-surfing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;absolutely.ugtech.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxysurfer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;tarball.info &lt;/option&gt;              &lt;option class="" value="random"&gt;giosalon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxy01.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydevice.com &lt;/option&gt;              &lt;option class="" value="random"&gt;dnbroker.us &lt;/option&gt;              &lt;option class="" value="random"&gt;granaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ssdoc.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy5.info &lt;/option&gt;              &lt;option class="" value="random"&gt;mrnewguy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;terrificproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unlimitedproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vnguide.org &lt;/option&gt;              &lt;option class="" value="random"&gt;acidmountain.com &lt;/option&gt;              &lt;option class="" value="random"&gt;luekinghost.net &lt;/option&gt;              &lt;option class="" value="random"&gt;faceless.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;qwerty.web-pros.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymousproxy.co.za &lt;/option&gt;              &lt;option class="" value="random"&gt;burningsnowball.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy4myspace.net &lt;/option&gt;              &lt;option class="" value="random"&gt;chadparker.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeipodsupport.com &lt;/option&gt;              &lt;option class="" value="random"&gt;safe-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bestproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;prxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;zz-surf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;flyingspaghettimonster.info &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymisierungsdienst.de &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyful.com &lt;/option&gt;              &lt;option class="" value="random"&gt;twobeep.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fireprox.net &lt;/option&gt;              &lt;option class="" value="random"&gt;noodlewars.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mac4arabs.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxii.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freewebproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;ihider.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cgiproxyweb.com &lt;/option&gt;              &lt;option class="" value="random"&gt;planetdifficult.com &lt;/option&gt;              &lt;option class="" value="random"&gt;schoolbypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;g3t.us &lt;/option&gt;              &lt;option class="" value="random"&gt;anonycure.com &lt;/option&gt;              &lt;option class="" value="random"&gt;farismahdi.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxd.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.ac &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockthis.com &lt;/option&gt;              &lt;option class="" value="random"&gt;safesurfer.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfrog.com &lt;/option&gt;              &lt;option class="" value="random"&gt;melloyello.org &lt;/option&gt;              &lt;option class="" value="random"&gt;advancedproxing.co.nr &lt;/option&gt;              &lt;option class="" value="random"&gt;hidip.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybum.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceunbloxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vanille.volodia.net &lt;/option&gt;              &lt;option class="" value="random"&gt;greyproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;speedyproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;mpvbrao.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxy.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;browsequiet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hide.easydonkey.net &lt;/option&gt;              &lt;option class="" value="random"&gt;redproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;poxypoxy.host-topia.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy19.info &lt;/option&gt;              &lt;option class="" value="random"&gt;no1proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfree.us &lt;/option&gt;              &lt;option class="" value="random"&gt;pproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myspace-proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;the-cloak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lightningproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;intelliproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;rouletteproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;e-konkursy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thecgiproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyflux.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxym8.com &lt;/option&gt;              &lt;option class="" value="random"&gt;clanfiles.net &lt;/option&gt;              &lt;option class="" value="random"&gt;high2sky.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ipsecret.com &lt;/option&gt;              &lt;option class="" value="random"&gt;articlesandtools.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;islipby.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxied.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ciscogeek.com &lt;/option&gt;              &lt;option class="" value="random"&gt;51proxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;skipthrough.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ecomatrix.eu &lt;/option&gt;              &lt;option class="" value="random"&gt;allmyclicks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;squadclans.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wuproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;rvcboards.com &lt;/option&gt;              &lt;option class="" value="random"&gt;rabbitjp.ddo.jp &lt;/option&gt;              &lt;option class="" value="random"&gt;hideyourtracks.net &lt;/option&gt;              &lt;option class="" value="random"&gt;thisproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;harrisherd.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyir.us &lt;/option&gt;              &lt;option class="" value="random"&gt;phpproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;needsitenow.net &lt;/option&gt;              &lt;option class="" value="random"&gt;chrishemple.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;kettner.tk &lt;/option&gt;              &lt;option class="" value="random"&gt;underproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mpleger.de &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyz.be &lt;/option&gt;              &lt;option class="" value="random"&gt;iuytrewq.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freewebprocksy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;askunix.net &lt;/option&gt;              &lt;option class="" value="random"&gt;webnav.info &lt;/option&gt;              &lt;option class="" value="random"&gt;surfquickly.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nichepal.com &lt;/option&gt;              &lt;option class="" value="random"&gt;crampdc.secure.powweb.com &lt;/option&gt;              &lt;option class="" value="random"&gt;highschoolproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cuteproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywebsite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;h2k.kicks-ass.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy4.info &lt;/option&gt;              &lt;option class="" value="random"&gt;searchattic.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webproxy.dk &lt;/option&gt;              &lt;option class="" value="random"&gt;freedproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;usurfsafe.net &lt;/option&gt;              &lt;option class="" value="random"&gt;pokerproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxer.net &lt;/option&gt;              &lt;option class="" value="random"&gt;madarshahi.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kazproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fadway.com &lt;/option&gt;              &lt;option class="" value="random"&gt;w3-secure.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unbloks.net &lt;/option&gt;              &lt;option class="" value="random"&gt;myspacetunnel.com &lt;/option&gt;              &lt;option class="" value="random"&gt;askunix.com &lt;/option&gt;              &lt;option class="" value="random"&gt;projectproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyforge.com &lt;/option&gt;              &lt;option class="" value="random"&gt;userbeam.de &lt;/option&gt;              &lt;option class="" value="random"&gt;nightproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybrowser.org &lt;/option&gt;              &lt;option class="" value="random"&gt;whatproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxystar.us &lt;/option&gt;              &lt;option class="" value="random"&gt;flylikeaturtle.com &lt;/option&gt;              &lt;option class="" value="random"&gt;a-proxy-mate.com &lt;/option&gt;              &lt;option class="" value="random"&gt;360proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;playatschool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shoandgo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxynow.info &lt;/option&gt;              &lt;option class="" value="random"&gt;hypeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyed.blogiseverything.com &lt;/option&gt;              &lt;option class="" value="random"&gt;avidproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyheart.com &lt;/option&gt;              &lt;option class="" value="random"&gt;firefoxproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unbloxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsefrom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;radiofarda.be &lt;/option&gt;              &lt;option class="" value="random"&gt;ve0.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxcover.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxene.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lytewave.com &lt;/option&gt;              &lt;option class="" value="random"&gt;urlredo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;teraproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyok.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyflame.com &lt;/option&gt;              &lt;option class="" value="random"&gt;absolutionx.ahost.ro &lt;/option&gt;              &lt;option class="" value="random"&gt;traffix.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytron.iu.bz &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.ph &lt;/option&gt;              &lt;option class="" value="random"&gt;arkadiy.myip.org &lt;/option&gt;              &lt;option class="" value="random"&gt;tuxish.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wu.jontalbot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyconnect.net &lt;/option&gt;              &lt;option class="" value="random"&gt;freewebproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycover.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stealthbrowse.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydoor.com &lt;/option&gt;              &lt;option class="" value="random"&gt;profileproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myjavaserver.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyforce.com &lt;/option&gt;              &lt;option class="" value="random"&gt;boxofprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy8.info &lt;/option&gt;              &lt;option class="" value="random"&gt;anon.sendfakemail.net &lt;/option&gt;              &lt;option class="" value="random"&gt;alexandargr8.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyallow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ccfhosting.com &lt;/option&gt;              &lt;option class="" value="random"&gt;get2myspace.info &lt;/option&gt;              &lt;option class="" value="random"&gt;tfarolz.com &lt;/option&gt;              &lt;option class="" value="random"&gt;madeinuk.info &lt;/option&gt;              &lt;option class="" value="random"&gt;tunnelproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bedadj.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browseatwork.net &lt;/option&gt;              &lt;option class="" value="random"&gt;home.no.net &lt;/option&gt;              &lt;option class="" value="random"&gt;boreproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;purpleproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxi.us &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywhip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;simpleproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyz.ohmyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeschool.be &lt;/option&gt;              &lt;option class="" value="random"&gt;4f.net &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;maskedproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;defendingthegalaxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastfoodstamps.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ympi.us &lt;/option&gt;              &lt;option class="" value="random"&gt;unbloks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;yesproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thedoo.be &lt;/option&gt;              &lt;option class="" value="random"&gt;wowhoahoa.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy4myspace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyrun.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ihatefilters.com &lt;/option&gt;              &lt;option class="" value="random"&gt;neoproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;pro-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxland.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stayhidden.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-y.com &lt;/option&gt;              &lt;option class="" value="random"&gt;teh-best.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybag.com &lt;/option&gt;              &lt;option class="" value="random"&gt;rentalzebras.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsethatsite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ahmadmuaz.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyshaq.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pageproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;shareinside.net &lt;/option&gt;              &lt;option class="" value="random"&gt;safeforwork.net &lt;/option&gt;              &lt;option class="" value="random"&gt;xanproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;satanproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyrush.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakyrascal.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfatschool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymann.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ecstasyband.com &lt;/option&gt;              &lt;option class="" value="random"&gt;tnproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ftpproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;bestinthe425.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassbrowser.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lightningproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;slickproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;geekyschmidt.com &lt;/option&gt;              &lt;option class="" value="random"&gt;qarasena.com &lt;/option&gt;              &lt;option class="" value="random"&gt;outlawrc.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myshield.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxystar.net &lt;/option&gt;              &lt;option class="" value="random"&gt;gravitywars.com &lt;/option&gt;              &lt;option class="" value="random"&gt;45percent.com &lt;/option&gt;              &lt;option class="" value="random"&gt;becauseimbored.com &lt;/option&gt;              &lt;option class="" value="random"&gt;rapidproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cgiproxy.at &lt;/option&gt;              &lt;option class="" value="random"&gt;strongproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ibypass.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;privatebrowsing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;visitany.com &lt;/option&gt;              &lt;option class="" value="random"&gt;potterybarnacle.com &lt;/option&gt;              &lt;option class="" value="random"&gt;dareproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy9.info &lt;/option&gt;              &lt;option class="" value="random"&gt;x2servers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidebehindmyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypass4all.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iamnewguy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymask.info &lt;/option&gt;              &lt;option class="" value="random"&gt;silentsurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wickedstar.com &lt;/option&gt;              &lt;option class="" value="random"&gt;2012countdown.info &lt;/option&gt;              &lt;option class="" value="random"&gt;chriscoelphoto.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stday.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pureprivacy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;surfatwill.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jowe.buildtolearn.net &lt;/option&gt;              &lt;option class="" value="random"&gt;smsegg.com &lt;/option&gt;              &lt;option class="" value="random"&gt;alexisthemovie.com &lt;/option&gt;              &lt;option class="" value="random"&gt;giantsurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;dualproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wu.freecphost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybeach.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsingschool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;deck3.de &lt;/option&gt;              &lt;option class="" value="random"&gt;cutplug.net &lt;/option&gt;              &lt;option class="" value="random"&gt;usagi.wall.to &lt;/option&gt;              &lt;option class="" value="random"&gt;blackberrywaffles.com &lt;/option&gt;              &lt;option class="" value="random"&gt;superproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxyhost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfox.org &lt;/option&gt;              &lt;option class="" value="random"&gt;kidya.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bigproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;ziproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shadowsurf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;smart-proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;filtergotowned.com &lt;/option&gt;              &lt;option class="" value="random"&gt;milene.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyearth.com &lt;/option&gt;              &lt;option class="" value="random"&gt;altproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;xerohour.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-z.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blackjackproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;rocktheproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;quicksilverscreen.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kaio-ken.com &lt;/option&gt;              &lt;option class="" value="random"&gt;portaling.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytastic.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-surf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hamletshut.com &lt;/option&gt;              &lt;option class="" value="random"&gt;datumining.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxythe.net &lt;/option&gt;              &lt;option class="" value="random"&gt;rwnt.us &lt;/option&gt;              &lt;option class="" value="random"&gt;prox9.com &lt;/option&gt;              &lt;option class="" value="random"&gt;phproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;anti-boredom.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;workstudyplay.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sitesurfing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;prowzer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;alproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxymaxi.com &lt;/option&gt;              &lt;option class="" value="random"&gt;boredatwork.info &lt;/option&gt;              &lt;option class="" value="random"&gt;sharedproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfox.net &lt;/option&gt;              &lt;option class="" value="random"&gt;bestmuleinshow.com &lt;/option&gt;              &lt;option class="" value="random"&gt;netwerkpc.nl &lt;/option&gt;              &lt;option class="" value="random"&gt;noblocker.com &lt;/option&gt;              &lt;option class="" value="random"&gt;httproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;cyberbite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;chronicpulse.net &lt;/option&gt;              &lt;option class="" value="random"&gt;websiteproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;traceless.com &lt;/option&gt;              &lt;option class="" value="random"&gt;whattheproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;attackcensorship.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jeffwu.net &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymizer.at &lt;/option&gt;              &lt;option class="" value="random"&gt;bikiniproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webtoolsking.com &lt;/option&gt;              &lt;option class="" value="random"&gt;silverproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;saproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;smartproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;coversurfer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;etproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;birdsflyfast.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydom.com &lt;/option&gt;              &lt;option class="" value="random"&gt;frastproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysocket.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy16.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyatschool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy20.info &lt;/option&gt;              &lt;option class="" value="random"&gt;arnit-proxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;syberdave.net &lt;/option&gt;              &lt;option class="" value="random"&gt;dodgefilters.com &lt;/option&gt;              &lt;option class="" value="random"&gt;inetproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;clanfiles.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytap.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymoussurf.be &lt;/option&gt;              &lt;option class="" value="random"&gt;pixelproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;icansavetheworld.info &lt;/option&gt;              &lt;option class="" value="random"&gt;futureproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mttbkk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockmyspace.us &lt;/option&gt;              &lt;option class="" value="random"&gt;absolutereason.com &lt;/option&gt;              &lt;option class="" value="random"&gt;enitude.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mrnewguy.websiteguru.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy3.info &lt;/option&gt;              &lt;option class="" value="random"&gt;guppyfish.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;spiffyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sqladim.adm24.de &lt;/option&gt;              &lt;option class="" value="random"&gt;bicyclefeathers.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pimper.org &lt;/option&gt;              &lt;option class="" value="random"&gt;cgiproxie.info &lt;/option&gt;              &lt;option class="" value="random"&gt;ipblind.be &lt;/option&gt;              &lt;option class="" value="random"&gt;surfnameless.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sweetproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxiest.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfonym.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freemyspaceproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;dangerouskitten.com &lt;/option&gt;              &lt;option class="" value="random"&gt;betaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxykick.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypeople.com &lt;/option&gt;              &lt;option class="" value="random"&gt;staplerstore.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceproxy1.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsingschool.info &lt;/option&gt;              &lt;option class="" value="random"&gt;projectbypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gofreehost.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyanon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfcambodia.com &lt;/option&gt;              &lt;option class="" value="random"&gt;novaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;usenet4all.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thecabletown.com &lt;/option&gt;              &lt;option class="" value="random"&gt;songtoday.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cmssky.com &lt;/option&gt;              &lt;option class="" value="random"&gt;urhidden.com &lt;/option&gt;              &lt;option class="" value="random"&gt;purplebananas.com &lt;/option&gt;              &lt;option class="" value="random"&gt;generalhaberdashery.com &lt;/option&gt;              &lt;option class="" value="random"&gt;aek21.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfshield.net &lt;/option&gt;              &lt;option class="" value="random"&gt;may42102.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cloakproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mblog.ru &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy99.t35.com &lt;/option&gt;              &lt;option class="" value="random"&gt;vielspassamgeraet.de &lt;/option&gt;              &lt;option class="" value="random"&gt;mz-server.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockme.net &lt;/option&gt;              &lt;option class="" value="random"&gt;unknownproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;jayuz.com &lt;/option&gt;              &lt;option class="" value="random"&gt;collegeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pr0xy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;spoondogg.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nsfwurl.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stealth.co.in &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.hm &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakysniper.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zipproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypeak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;net-entropy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;slideproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wowvina.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;freedomfilter.net &lt;/option&gt;              &lt;option class="" value="random"&gt;sunny.bbmp3.net &lt;/option&gt;              &lt;option class="" value="random"&gt;aeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;master.post2hostit.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shadowbrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;searchproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyboss.net &lt;/option&gt;              &lt;option class="" value="random"&gt;filtax.com spynot.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ihatefilters.info &lt;/option&gt;              &lt;option class="" value="random"&gt;seahorseolympics.com &lt;/option&gt;              &lt;option class="" value="random"&gt;iprox.fpfwebhost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stealth-ip.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhaven.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxifree.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfront.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyrequest.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxatron.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxydetective.com &lt;/option&gt;              &lt;option class="" value="random"&gt;estealth.net &lt;/option&gt;              &lt;option class="" value="random"&gt;yoursdomain.com &lt;/option&gt;              &lt;option class="" value="random"&gt;frozenthunder.com &lt;/option&gt;              &lt;option class="" value="random"&gt;domainrelocater.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stoptheblock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;roachhost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycircle.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxuk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;themexicanwall.com &lt;/option&gt;              &lt;option class="" value="random"&gt;whyismysitedown.com &lt;/option&gt;              &lt;option class="" value="random"&gt;spyrabbit.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastbypass.com &lt;/option&gt;              &lt;option class="" value="random"&gt;danyo.info &lt;/option&gt;              &lt;option class="" value="random"&gt;anypage.net &lt;/option&gt;              &lt;option class="" value="random"&gt;partyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastproxi.info &lt;/option&gt;              &lt;option class="" value="random"&gt;milliondollarproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fast-proxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyshock.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhype.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kaxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;enigmaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;googleintranet.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymize.be &lt;/option&gt;              &lt;option class="" value="random"&gt;lunaticrave.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stickworm.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;proxybus.com &lt;/option&gt;              &lt;option class="" value="random"&gt;infoexchangecenter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ukprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mrschool.org &lt;/option&gt;              &lt;option class="" value="random"&gt;iceproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;themyspaceproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;covermyip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxywizards.com &lt;/option&gt;              &lt;option class="" value="random"&gt;shipproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sweetproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;surfingspy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;greenrabbit.org &lt;/option&gt;              &lt;option class="" value="random"&gt;blockmenot.biz &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymise.com &lt;/option&gt;              &lt;option class="" value="random"&gt;77cc.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyou.com &lt;/option&gt;              &lt;option class="" value="random"&gt;zafh.com &lt;/option&gt;              &lt;option class="" value="random"&gt;homer.kill-9.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyforme.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kungfuproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;lockedhost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fireprox.com &lt;/option&gt;              &lt;option class="" value="random"&gt;floon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mezzy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;privacybrowsing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;niettevinden.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ebypass.org &lt;/option&gt;              &lt;option class="" value="random"&gt;mediahug.com &lt;/option&gt;              &lt;option class="" value="random"&gt;thegrahamfam.com &lt;/option&gt;              &lt;option class="" value="random"&gt;justproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;cantget.us &lt;/option&gt;              &lt;option class="" value="random"&gt;y-marine-services.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bulletbrowse.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pspwarehouse.aimfusion.com &lt;/option&gt;              &lt;option class="" value="random"&gt;russberger.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy1.info 78y.net &lt;/option&gt;              &lt;option class="" value="random"&gt;mxds.ch &lt;/option&gt;              &lt;option class="" value="random"&gt;iphush.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymous7.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemypersonal.info &lt;/option&gt;              &lt;option class="" value="random"&gt;iamfreeonline.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxykid.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browserproxy.ath.cx &lt;/option&gt;              &lt;option class="" value="random"&gt;upproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pinkproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;stb.tsukuba-ac.jp &lt;/option&gt;              &lt;option class="" value="random"&gt;thefreeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sqlproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxynest.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyschool.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyentry.com &lt;/option&gt;              &lt;option class="" value="random"&gt;justhide.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfinsecret.com &lt;/option&gt;              &lt;option class="" value="random"&gt;holoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;angryproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;unblockwebsites.info &lt;/option&gt;              &lt;option class="" value="random"&gt;freepr0xy.com r45.org &lt;/option&gt;              &lt;option class="" value="random"&gt;dewijk.csam.nl &lt;/option&gt;              &lt;option class="" value="random"&gt;euproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;mathcrash.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freewebproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;boardmerlin.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stealth-browser.biz.tm &lt;/option&gt;              &lt;option class="" value="random"&gt;rsxi.com &lt;/option&gt;              &lt;option class="" value="random"&gt;something4work.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;browseatwork2.com &lt;/option&gt;              &lt;option class="" value="random"&gt;davegoorox.c-f-h.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxypath.com &lt;/option&gt;              &lt;option class="" value="random"&gt;4proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsesecurely.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nuyyod.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyyahoo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mvpzero.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blowser.com &lt;/option&gt;              &lt;option class="" value="random"&gt;netofren.info &lt;/option&gt;              &lt;option class="" value="random"&gt;skypeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sneakyuser.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freefiltershekan.com &lt;/option&gt;              &lt;option class="" value="random"&gt;patelh123.50free.org &lt;/option&gt;              &lt;option class="" value="random"&gt;safesurfers.net &lt;/option&gt;              &lt;option class="" value="random"&gt;liteproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;rnmap.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pinkpruxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ztrer.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cpr0x.com &lt;/option&gt;              &lt;option class="" value="random"&gt;safaei.net &lt;/option&gt;              &lt;option class="" value="random"&gt;exoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;workfriendly.net &lt;/option&gt;              &lt;option class="" value="random"&gt;hideinfo.net &lt;/option&gt;              &lt;option class="" value="random"&gt;webproxysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;kniff.de kslabo.net &lt;/option&gt;              &lt;option class="" value="random"&gt;fromwork.net &lt;/option&gt;              &lt;option class="" value="random"&gt;shoutproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;atopqualitysite.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ipblocker.info &lt;/option&gt;              &lt;option class="" value="random"&gt;irproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;webwarper.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyslash.com &lt;/option&gt;              &lt;option class="" value="random"&gt;netshaq.com &lt;/option&gt;              &lt;option class="" value="random"&gt;redproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;craig-yvonne.celebrityblog.net &lt;/option&gt;              &lt;option class="" value="random"&gt;ripfilter.com &lt;/option&gt;              &lt;option class="" value="random"&gt;istealth.net &lt;/option&gt;              &lt;option class="" value="random"&gt;neonblu.com &lt;/option&gt;              &lt;option class="" value="random"&gt;webblockavoider.com &lt;/option&gt;              &lt;option class="" value="random"&gt;surfaproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mortonelectronics.com &lt;/option&gt;              &lt;option class="" value="random"&gt;sgproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;saproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;arnit.net &lt;/option&gt;              &lt;option class="" value="random"&gt;themaser.a-cro.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyip.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy6.info &lt;/option&gt;              &lt;option class="" value="random"&gt;nuproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyjungle.com &lt;/option&gt;              &lt;option class="" value="random"&gt;joeproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;w1g.net &lt;/option&gt;              &lt;option class="" value="random"&gt;anonycat.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gateway.krashi.nl &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhere.com &lt;/option&gt;              &lt;option class="" value="random"&gt;yellowproxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;myfreeproxy.be &lt;/option&gt;              &lt;option class="" value="random"&gt;spiderproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;bypassnow.net &lt;/option&gt;              &lt;option class="" value="random"&gt;d2-zone.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyd.com &lt;/option&gt;              &lt;option class="" value="random"&gt;procksee.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy17.info &lt;/option&gt;              &lt;option class="" value="random"&gt;letsproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;is-1337.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyboost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;monkeyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceproxy.eu &lt;/option&gt;              &lt;option class="" value="random"&gt;scaryproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;solidproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;idkfa.homeunix.net &lt;/option&gt;              &lt;option class="" value="random"&gt;secretinternet.info &lt;/option&gt;              &lt;option class="" value="random"&gt;retrocore.net &lt;/option&gt;              &lt;option class="" value="random"&gt;cgiproxy.pr0nthro.com &lt;/option&gt;              &lt;option class="" value="random"&gt;topproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;free-proxy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyhidden.com &lt;/option&gt;              &lt;option class="" value="random"&gt;geoepker.hu &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyserver.ws &lt;/option&gt;              &lt;option class="" value="random"&gt;localproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;myweb2surf.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxytime.net &lt;/option&gt;              &lt;option class="" value="random"&gt;qroxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;prestoproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;wannabe.fam.cx &lt;/option&gt;              &lt;option class="" value="random"&gt;keepbrowsing.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxilla.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxycontrol.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy10.info &lt;/option&gt;              &lt;option class="" value="random"&gt;symbianplace.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myspaceproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;anonymip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;lorengordon.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy4free.info &lt;/option&gt;              &lt;option class="" value="random"&gt;saycheeseburger.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ibypass.tk &lt;/option&gt;              &lt;option class="" value="random"&gt;freepwoxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;foxyproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxy.mooo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxiesrus.com &lt;/option&gt;              &lt;option class="" value="random"&gt;techiem2.no-ip.com &lt;/option&gt;              &lt;option class="" value="random"&gt;schoolfilterssuck.com &lt;/option&gt;              &lt;option class="" value="random"&gt;blockmenot.net &lt;/option&gt;              &lt;option class="" value="random"&gt;infodamina.net &lt;/option&gt;              &lt;option class="" value="random"&gt;mrfreewebhost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;cloakmy.info &lt;/option&gt;              &lt;option class="" value="random"&gt;nsgfx.com &lt;/option&gt;              &lt;option class="" value="random"&gt;gamingpug.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfriend.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyarcade.com &lt;/option&gt;              &lt;option class="" value="random"&gt;speedyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-v.com &lt;/option&gt;              &lt;option class="" value="random"&gt;intbonline.com &lt;/option&gt;              &lt;option class="" value="random"&gt;deafening-urge.net &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyking.net &lt;/option&gt;              &lt;option class="" value="random"&gt;fpfwebhost.com &lt;/option&gt;              &lt;option class="" value="random"&gt;tel9.com &lt;/option&gt;              &lt;option class="" value="random"&gt;funkyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;anotherproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;searchclearance.com &lt;/option&gt;              &lt;option class="" value="random"&gt;scubaplanet.de &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyeye.com &lt;/option&gt;              &lt;option class="" value="random"&gt;turboproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;x5k9u2d7j6.com &lt;/option&gt;              &lt;option class="" value="random"&gt;slashproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;howto.pro &lt;/option&gt;              &lt;option class="" value="random"&gt;gamesbyproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;publicproxy.com.ar &lt;/option&gt;              &lt;option class="" value="random"&gt;sitesneak.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy247.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fastfcuk.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxy.us &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy-browser.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;mahiru.info &lt;/option&gt;              &lt;option class="" value="random"&gt;anomisurf.co.uk &lt;/option&gt;              &lt;option class="" value="random"&gt;mushroomicecream.com &lt;/option&gt;              &lt;option class="" value="random"&gt;3jeeb4you.net &lt;/option&gt;              &lt;option class="" value="random"&gt;vroxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;ibypass.org &lt;/option&gt;              &lt;option class="" value="random"&gt;themountainwoman.com &lt;/option&gt;              &lt;option class="" value="random"&gt;fritoon.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxzero.com &lt;/option&gt;              &lt;option class="" value="random"&gt;santosis.zeeblo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;netba.be ftpz.us &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyup.net &lt;/option&gt;              &lt;option class="" value="random"&gt;uberproxy.net &lt;/option&gt;              &lt;option class="" value="random"&gt;msnvip.com radoo.com &lt;/option&gt;              &lt;option class="" value="random"&gt;pornproxy.org &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy.born.co.il &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy0.com &lt;/option&gt;              &lt;option class="" value="random"&gt;stdcgiux.cityu.edu.hk &lt;/option&gt;              &lt;option class="" value="random"&gt;proxysurfing.us &lt;/option&gt;              &lt;option class="" value="random"&gt;proxyfreaks.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsingwork.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mereed.com &lt;/option&gt;              &lt;option class="" value="random"&gt;domainrelocator.com &lt;/option&gt;              &lt;option class="" value="random"&gt;proxd.com &lt;/option&gt;              &lt;option class="" value="random"&gt;hidemyip.info &lt;/option&gt;              &lt;option class="" value="random"&gt;proxy121.com &lt;/option&gt;              &lt;option class="" value="random"&gt;mypersonalproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;freeproxyresource.com &lt;/option&gt;              &lt;option class="" value="random"&gt;theproxyvote.com &lt;/option&gt;              &lt;option class="" value="random"&gt;myproxyconnection.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browseinhiding.com &lt;/option&gt;              &lt;option class="" value="random"&gt;browsefromschool.com &lt;/option&gt;              &lt;option class="" value="random"&gt;alotofproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;nextgenproxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;2007proxy.com &lt;/option&gt;              &lt;option class="" value="random"&gt;2000proxy.com&lt;/option&gt;            &lt;/select&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;!-- &lt;small&gt;&lt;br /&gt; (Out of 1971 total proxy servers)&lt;br /&gt;&lt;br /&gt; Last updated: July 15, 2006&lt;br /&gt;&lt;br /&gt; &lt;/small&gt; --&gt;                              &lt;/div&gt;&lt;span style="font-size:78%;"&gt;&lt;br /&gt;&lt;b&gt;Anonymous Proxy Servers&lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;/form&gt;&lt;p  style="color: rgb(102, 0, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;  Anonymous proxy servers hide your IP address and  thereby prevent unauthorized access to your computer through the  Internet. They do not provide anyone with your IP address and  effectively hide any information about you and your reading interests.  Besides that, they don’t even let anyone know that you are surfing  through a proxy server. Anonymous proxy servers can be used for all  kinds of Web-services, such as Web-Mail (MSN Hot Mail, Yahoo mail),  web-chat rooms, FTP archives, etc. ProxySite.com - a place where the  huge list of public proxies is compiled. In a database you always can  find the most modern lists, the Proxy are checked every minute, and the  list is updated daily from various sources. The system uses the latest  algorithm for set and sortings of servers by proxy, servers for  anonymous access are checked. Results of Search always can be kept in  file Excel.&lt;/span&gt;&lt;/p&gt;&lt;p  style="color: rgb(102, 0, 0);font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="color: rgb(102, 0, 0);font-family:verdana;" align="justify"&gt;&lt;span style="font-size:78%;"&gt;&lt;b&gt;Why Should You Use Anonymous Proxy Servers?&lt;/b&gt;&lt;br /&gt;Any web resource you access can gather personal  information about you through your unique IP address – your ID in the  Internet. They can monitor your reading interests, spy upon you and,  according to some policies of the Internet resources, deny accessing  any information you might need. You might become a target for many  marketers and advertising agencies who, having information about your  interests and knowing your IP address as well as your e-mail, will be  able to send you regularly their spam and junk e-mails. &lt;/span&gt;&lt;/p&gt;     &lt;p  style="color: rgb(102, 0, 0);font-family:verdana;" align="justify"&gt;&lt;span style="font-size:78%;"&gt;      A web site can automatically exploit security  holes in your system using not-very-complex, ready-made, free hacking  programs. Some of such programs may just hang your machine, making you  reboot it, but other, more powerful ones, can get access to the content  of your hard drive or RAM. Everything a web site may need for that is  only your IP address and some information about your operating system.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-2169522762466077062?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/2169522762466077062/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=2169522762466077062' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2169522762466077062'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2169522762466077062'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/anonymous-proxy-surfing.html' title='Anonymous Proxy Surfing'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_HEkcbXl1SQY/Rgon_lGUPJI/AAAAAAAAABU/BuKUpwlQxTg/s72-c/pic002.jpg' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-4485275828125601778</id><published>2007-03-20T01:29:00.000-07:00</published><updated>2008-11-12T20:09:42.853-08:00</updated><title type='text'>Speed Up Firefox web browsing</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HEkcbXl1SQY/Rgor3VGUPKI/AAAAAAAAABc/4eShH11uyEk/s1600-h/pic003.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_HEkcbXl1SQY/Rgor3VGUPKI/AAAAAAAAABc/4eShH11uyEk/s320/pic003.jpg" alt="" id="BLOGGER_PHOTO_ID_5046894561978498210" border="0" /&gt;&lt;/a&gt;&lt;span style=";font-family:verdana;font-size:78%;"  &gt;&lt;span style="font-weight: bold;"&gt;I  got this code from http://www.hackaday.com/ and you can edit some  hidden configuration files in your Firefox browser in order to speed up  web browsing.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;p style="font-weight: bold;"&gt;&lt;span style=";font-family:Verdana;font-size:78%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="font-weight: bold;"&gt;&lt;span style=";font-family:Verdana;font-size:78%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="font-weight: bold;"&gt;&lt;span style=";font-family:Verdana;font-size:78%;"  &gt;If you're using a broadband connection this will be really helpful&lt;/span&gt;&lt;/p&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;&lt;span style=";font-family:Verdana;font-size:78%;"  &gt; Type "about:config" into the address bar and hit return. Scroll down and look for the following entries:&lt;br /&gt;&lt;br /&gt;network.http.pipelining network.http.proxy.pipelining network.http.pipelining.maxrequests&lt;br /&gt;&lt;br /&gt;Normally the browser will make one request to a web page at a time.  When you enable pipelining it will make several at once, which really  speeds up page loading.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;  &lt;li&gt;&lt;span style=";font-family:Verdana;font-size:78%;"  &gt; Alter the entries as follows:&lt;br /&gt;Set   "network.http.pipelining" to "true"&lt;br /&gt;Set   "network.http.proxy.pipelining" to "true"&lt;br /&gt;Set   "network.http.pipelining.maxrequests" to some number like 30. This means it will make 30 requests at once.&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;span style=";font-family:Verdana;font-size:78%;"  &gt; Lastly right-click anywhere and select New-&amp;gt; Integer. Name it  "nglayout.initialpaint.delay" and set its value to "0". This value is  the amount of time the browser waits before it acts on information it  receives.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-4485275828125601778?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/4485275828125601778/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=4485275828125601778' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/4485275828125601778'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/4485275828125601778'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/speed-up-firefox-web-browsing.html' title='Speed Up Firefox web browsing'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HEkcbXl1SQY/Rgor3VGUPKI/AAAAAAAAABc/4eShH11uyEk/s72-c/pic003.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-180259974840428245</id><published>2007-03-20T01:04:00.000-07:00</published><updated>2008-11-12T20:09:43.009-08:00</updated><title type='text'>Read active directory</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HEkcbXl1SQY/RgpRYFGUPOI/AAAAAAAAAB8/PhwqUmP6Hgs/s1600-h/pic006.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_HEkcbXl1SQY/RgpRYFGUPOI/AAAAAAAAAB8/PhwqUmP6Hgs/s320/pic006.jpg" alt="" id="BLOGGER_PHOTO_ID_5046935806549441762" border="0" /&gt;&lt;/a&gt;&lt;span style="color: rgb(102, 51, 51);font-size:78%;" &gt;Using this code you can read Active Directory of your domain. On this code segment I have retrieved some active directory properties and set them as session variables.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(153, 153, 153);font-size:78%;" &gt;&lt;span style="color: rgb(153, 0, 0);"&gt;using System.DirectoryServices;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;        DirectoryEntry entry = new DirectoryEntry("LDAP://yourdomain.com");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;        DirectorySearcher searcher = new DirectorySearcher(entry);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;        searcher.Filter = "(SAMAccountName=" +User.Identity.Name.ToString().Replace("yourdomain\\", "") + ")";&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;        SearchResult result = searcher.FindOne();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;        if (result != null)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;        {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;          Session["Surname"] = result.Properties["sn"][0];&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;         Session["Firstname"] = result.Properties["givenname"][0];&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;     Session["Email"] = result.Properties["mail"][0];&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;     Session["Title"] = result.Properties["title"][0];&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;     Response.Write(result.Properties["sn"][0] + " &lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;     Response.Write(result.Properties["givenname"][0] + " &lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;     Response.Write(result.Properties["mail"][0] + " &lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;     Response.Write(result.Properties["title"][0] + " &lt;/span&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);font-family:verdana;" &gt;        }&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-180259974840428245?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/180259974840428245/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=180259974840428245' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/180259974840428245'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/180259974840428245'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/read-active-directory.html' title='Read active directory'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HEkcbXl1SQY/RgpRYFGUPOI/AAAAAAAAAB8/PhwqUmP6Hgs/s72-c/pic006.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-2697610250264775428</id><published>2007-03-16T01:40:00.000-07:00</published><updated>2007-03-22T07:28:46.562-07:00</updated><title type='text'>What is Domain Name Service?</title><content type='html'>&lt;span style="font-family: verdana;font-size:78%;" &gt;Domain Name Service (DNS) is the service used to convert human readable names of hosts to IP addresses.&lt;br /&gt;The Domain Name System (DNS) is basically a large database which resides on various computers and it contains the names and IP addresses of various hosts on the internet and various domains.&lt;br /&gt;&lt;br /&gt;DNS names are assigned through the Internet Registries by the Internet Assigned Number Authority (IANA). The domain name is a name assigned to an internet domain.&lt;br /&gt;&lt;br /&gt;Basically we could retrieve IP addresses associated with a given hostname, Also in reverse resolve a known IP address is to lookup what the associated hostname is belonging to that IP address.&lt;br /&gt;&lt;br /&gt;Here is some useful sites that you can use to retrieve DNS details,&lt;br /&gt;&lt;/span&gt;&lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://www.dnsstuff.com/" target="_blank"&gt;&lt;b&gt;http://www.dnsstuff.com/&lt;/b&gt;&lt;/a&gt;&lt;b&gt;&lt;br /&gt;&lt;a href="http://www.whois.net/" target="_blank"&gt;http://www.whois.net/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://swhois.net/" target="_blank"&gt;http://swhois.net/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://webtools.live2support.com/nt_dig.php" target="_blank"&gt;http://webtools.live2support.com/nt_dig.php&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-2697610250264775428?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2697610250264775428'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2697610250264775428'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/wwwdnsstuffcom.html' title='What is Domain Name Service?'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-135257946812435627</id><published>2007-03-14T06:19:00.000-07:00</published><updated>2007-03-26T22:37:22.935-07:00</updated><title type='text'>Send a authenticated mail in .NET2.0(C#)</title><content type='html'>&lt;p class="MsoNormal"  style="font-family:verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;o:p&gt;Using following coding you can send an email to any mail server and if you want you could modify the code to send a automatic mail using smtp server. If your machine connected to a LAN and you have a particular Email address for your domain, normally the main mail server do not allow you to programmatically send a simple mail to other mail servers.&lt;br /&gt;In order to do that you have to authnticate with your existing mail account username and password. &lt;span style="font-weight: bold; font-style: italic;"&gt;But you can send a mail anonymously to any mail address&lt;/span&gt;.You have to specify the smtp server name(Your mail server name). This code can run on .NET2.0 framework, I have tried and its properly working.&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;div id="Layer1" style="overflow: scroll; height: 500px; width: 445px;"&gt;&lt;span style="font-size:78%;"&gt;&lt;p style="color: rgb(102, 51, 51);"&gt;using System;&lt;br /&gt;using System.Collections.Generic;&lt;br /&gt;using System.ComponentModel;&lt;br /&gt;using System.Data;&lt;br /&gt;using System.Drawing;&lt;br /&gt;using System.Text;&lt;br /&gt;using System.Windows.Forms;&lt;br /&gt;using System.Net;&lt;br /&gt;using System.Net.Mail;&lt;br /&gt;using System.Net.Mime;&lt;br /&gt;using System.Threading;&lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt;namespace test&lt;br /&gt;{&lt;br /&gt;public partial class Form2 : Form&lt;br /&gt;{&lt;br /&gt;public Form2()&lt;br /&gt;{&lt;br /&gt;InitializeComponent();&lt;br /&gt;}&lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt;  public void SendMail()&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;string strFrom = "";&lt;br /&gt;string strTo = "";&lt;br /&gt;string strMsg = "";&lt;br /&gt;string strSubjet = "";&lt;br /&gt;strFrom = t_from.Text.ToString().Trim();&lt;br /&gt;strTo = t_mobile.Text.ToString().Trim();&lt;br /&gt;strMsg = t_msg.Text.ToString().Trim();&lt;br /&gt;strSubjet = t_subject.Text.ToString().Trim(); &lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt; //Builed The MSG&lt;br /&gt;System.Net.Mail.MailMessage msg =new System.Net.Mail.MailMessage();&lt;br /&gt;// msg.To.Add("xxxxx@gmail.com");&lt;br /&gt;&lt;br /&gt;msg.To.Add(strTo);&lt;br /&gt;msg.From = new MailAddress("Anonymous_name@xxxxx.com",&lt;br /&gt;strFrom, System.Text.Encoding.UTF8);&lt;br /&gt;msg.Subject = strSubjet;&lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt;  //  msg.SubjectEncoding = System.Text.Encoding.UTF8;&lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt; msg.Body = strMsg;&lt;br /&gt;//   msg.BodyEncoding = System.Text.Encoding.UTF8;&lt;br /&gt;msg.IsBodyHtml = false;&lt;br /&gt;msg.Priority = MailPriority.High;&lt;br /&gt;&lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt;  //Add the Creddentials&lt;br /&gt;SmtpClient client = new  SmtpClient(); &lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt; client.Credentials = new System.Net.NetworkCredential("Game_XXX@xxxx.com",&lt;br /&gt;"XXXX");&lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt;  client.Port = 25;//or use 587&lt;br /&gt;client.Host = "SMTP Mail Server Name";&lt;br /&gt;&lt;br /&gt;// client.EnableSsl = true;&lt;br /&gt;client.SendCompleted += new&lt;br /&gt;SendCompletedEventHandler(client_SendCompleted);&lt;br /&gt;object userState = msg;&lt;br /&gt;&lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt;  try&lt;br /&gt;{&lt;br /&gt;//you can also call client.Send(msg)&lt;br /&gt;client.SendAsync(msg, userState);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;catch (System.Net.Mail.SmtpException ex)&lt;br /&gt;{&lt;br /&gt;MessageBox.Show(ex.Message, "Send Mail Error");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;void client_SendCompleted(object sender, AsyncCompletedEventArgs e)&lt;br /&gt;{&lt;br /&gt;MailMessage mail = (MailMessage)e.UserState;&lt;br /&gt;string subject = mail.Subject;&lt;br /&gt;&lt;br /&gt;if (e.Cancelled)&lt;br /&gt;{&lt;br /&gt;string cancelled =&lt;br /&gt;string.Format("[{0}] Send canceled.", subject);&lt;br /&gt;MessageBox.Show(cancelled);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if (e.Error != null)&lt;br /&gt;{&lt;br /&gt;string error = String.Format("[{0}] {1}", subject, e.Error.ToString());&lt;br /&gt;MessageBox.Show(error);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;MessageBox.Show("Message sent.");&lt;br /&gt;t_from.Text = "";&lt;br /&gt;t_to.Text = "";&lt;br /&gt;t_subject.Text = "";&lt;br /&gt;t_msg.Text = "";&lt;br /&gt;t_mobile.Text = "";&lt;br /&gt;}&lt;br /&gt;mailSent = true;&lt;br /&gt;} &lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt; private void button1_Click(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;this.SendMail();&lt;br /&gt;mycon.Close();&lt;br /&gt;}&lt;/p&gt;&lt;p style="color: rgb(102, 51, 51);"&gt; }&lt;br /&gt;&lt;br /&gt;}&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-135257946812435627?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/135257946812435627/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=135257946812435627' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/135257946812435627'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/135257946812435627'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/send-automatic-mail-using-smtp-server.html' title='Send a authenticated mail in .NET2.0(C#)'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-2573218303721575149</id><published>2007-03-14T06:17:00.000-07:00</published><updated>2007-03-27T00:55:15.306-07:00</updated><title type='text'>Send a simple email using smtp?</title><content type='html'>&lt;strong&gt;[ C# ]&lt;/strong&gt;  &lt;pre style="" class="csharp" onclick="copyToClipboard(this);" onmouseover="this.style.cursor='hand';" title="Click to copy to clipboard"&gt;MailMessage mail = new MailMessage();&lt;br /&gt;mail.To = "me@mycompany.com";&lt;br /&gt;mail.From = "you@yourcompany.com";&lt;br /&gt;mail.Subject = "this is a test email.";&lt;br /&gt;mail.Body = "this is my test email body";&lt;br /&gt;SmtpMail.SmtpServer = "localhost";  //your real server goes here&lt;br /&gt;SmtpMail.Send( mail );&lt;/pre&gt; &lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;strong&gt;[ VB.NET ]&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;    &lt;pre style="" class="vbnet" onclick="copyToClipboard(this);" onmouseover="this.style.cursor='hand';" title="Click to copy to clipboard"&gt;Dim mail As New MailMessage()&lt;br /&gt;mail.To = "me@mycompany.com"&lt;br /&gt;mail.From = "you@yourcompany.com"&lt;br /&gt;mail.Subject = "this is a test email."&lt;br /&gt;mail.Body = "this is my test email body"&lt;br /&gt;SmtpMail.SmtpServer = "localhost" 'your real server goes here&lt;br /&gt;SmtpMail.Send(mail)&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-2573218303721575149?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gamenuwan.blogspot.com/feeds/2573218303721575149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4270368249177761362&amp;postID=2573218303721575149' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2573218303721575149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/2573218303721575149'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/how-do-i-send-simple-email-using-smtp.html' title='Send a simple email using smtp?'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4270368249177761362.post-788271291701679460</id><published>2007-03-14T04:32:00.000-07:00</published><updated>2007-03-14T05:29:47.551-07:00</updated><title type='text'>Animate Images- Moving one by one</title><content type='html'>&lt;span style="font-family: verdana;font-family:courier new;font-size:85%;"  &gt;Create a folder called "images2" and put all pictures into that folder.&lt;br /&gt;&lt;p&gt;&amp;lt;SCRIPT&amp;gt;&lt;br /&gt;// Create a bunch of off-screen images, and get them started&lt;br /&gt;// loading the images we're going to animate.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;images = new Array(5);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;for(var i = 0; i &amp;lt;6; i++) {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;images[i] = new Image();&lt;/span&gt;//Create an Image object&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;images[i].src = "images2/" + i + ".gif";&lt;/span&gt;&lt;br /&gt;// tell it what URL to load&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;}&lt;/span&gt;&lt;br /&gt;// knowing that they've been loaded into the cache.  Note that we perform&lt;br /&gt;// the animation by assigning the URL, not the Image object itself.&lt;br /&gt;// Also note that we call the image by name, rather than as &lt;span style="font-weight: bold;"&gt;document.images[0]&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;function animate()&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;document.animation.src = images[frame].src;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;frame = (frame + 1)%6;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;timeout_id = setTimeout("animate()", 750);&lt;/span&gt;&lt;br /&gt;// display next frame later&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;var frame = 0;&lt;/span&gt;&lt;br /&gt;// keep track of what frame of the animation we're on.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;var timeout_id = null;&lt;/span&gt; // allows us to stop the animation.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&amp;lt;/SCRIPT&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; &amp;lt;IMG SRC="images2/0.gif" NAME=animation width="232" height="190"&amp;gt;&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&amp;lt;td width="7" height="21"&amp;gt; &amp;lt;/td&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;----------------------------------------------------------------------------------&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4270368249177761362-788271291701679460?l=gamenuwan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/788271291701679460'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4270368249177761362/posts/default/788271291701679460'/><link rel='alternate' type='text/html' href='http://gamenuwan.blogspot.com/2007/03/animate-images-moving-one-by-one.html' title='Animate Images- Moving one by one'/><author><name>GAME</name><uri>http://www.blogger.com/profile/11244791455973740337</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_HEkcbXl1SQY/SOjvZo_spNI/AAAAAAAAAEQ/vUbcs7e5Eu0/S220/pumpkin-scary.JPG'/></author></entry></feed>
