<?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:blogger='http://schemas.google.com/blogger/2008' 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-4629712116591497779</id><updated>2024-10-24T19:52:43.793+08:00</updated><category term="How to"/><category term="hacking"/><category term="Radiio"/><category term="Jokes"/><category term="Google"/><category term="windows XP"/><category term="Friendster"/><category term="Computer"/><category term="crack"/><category term="hosting"/><category term="photobucket"/><category term="History"/><category term="cerita lawak"/><category term="one piece"/><category term="proxy"/><category term="7"/><category term="Anime"/><category term="Apple"/><category term="Backrub"/><category term="Compressor"/><category term="Download"/><category term="Googol"/><category term="Independance Day"/><category term="Java Games"/><category term="Kaspersky"/><category term="Larry Page"/><category term="Lightbox"/><category term="Linux"/><category term="Malaysia"/><category term="Newgrounds"/><category term="Nico Robin"/><category term="OS"/><category term="PTC"/><category term="Sergey Brin"/><category term="Software"/><category term="Tamara Munzner"/><category term="Trivia"/><category term="Ubuntu"/><category term="Virus"/><category term="alert"/><category term="bootable"/><category term="bulu bebek"/><category term="captcha"/><category term="cracker"/><category term="gmail"/><category term="graphic card"/><category term="keygen"/><category term="nginx"/><category term="office 2007"/><category term="other"/><category term="php fastcgi"/><category term="rapidleech"/><category term="sitemap"/><category term="v"/><category term="vista"/><category term="window 7"/><category term="windows vista"/><category term="youtube"/><title type='text'>HeaT SeekeR</title><subtitle type='html'>make everything work as it should be</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>121</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-1149687935170886641</id><published>2020-05-22T09:10:00.000+08:00</published><updated>2020-05-22T09:10:51.974+08:00</updated><title type='text'>How to print first page of every Excel worksheet</title><content type='html'>If you have a lot of worksheet and you would like to print all of it at the same, consider using VBA module code as follows&lt;br /&gt;
&lt;code p=&quot;&quot;&gt;Sub PrintAllFirstPage()
Dim sheet As Worksheet
For Each sheet In Application.ActiveWorkbook.Worksheets
    sheet.PrintOut from:=1, To:=1
Next
End Sub&lt;/code&gt;

you can change the page range by editing the value of &lt;code&gt;from:=&lt;/code&gt; and &lt;code&gt;to:=&lt;/code&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/1149687935170886641/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2020/05/how-to-print-first-page-of-every-excel.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/1149687935170886641'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/1149687935170886641'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2020/05/how-to-print-first-page-of-every-excel.html' title='How to print first page of every Excel worksheet'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-133784103954368432</id><published>2015-09-21T15:02:00.003+08:00</published><updated>2015-09-21T15:06:42.415+08:00</updated><title type='text'>Compressing each folder with 7zip command line tool</title><content type='html'>If you have a lots of folder that you want to compressed, whether to save space or simply to upload to the web, compressing each of the folder individually can consume a lot of time.&lt;br /&gt;
However, you can simplify the process with the powerful 7zip compressor.&lt;br /&gt;
to do it,&lt;br /&gt;
step 1 - Open &#39;&lt;i&gt;Run&lt;/i&gt;&#39;, or simply press the Windows Log on your keyboard and R. (Win Key+R).&lt;br /&gt;
Step 2 - Type &lt;b&gt;CMD &lt;/b&gt;and press enter.&lt;br /&gt;
step 3 - Navigate to your folder location with the command &lt;b&gt;CD&lt;/b&gt; then press enter.&lt;br /&gt;
&lt;br /&gt;
For an easier method to directly open your folder in Command Prompt,&lt;br /&gt;
Simply presss the Shift key and right-click on your folder. A new link, &#39;&lt;i&gt;Open command window here&lt;/i&gt;&#39; will appear. Just click it, and the current directory of the CMD is that folder.&lt;br /&gt;
Next, start the compressing process with the following command;
&lt;br /&gt;
&lt;code&gt;FOR /D %d in (*.*) DO &quot;%ProgramFiles(x86)%\7-zip\7z.exe&quot; a -mx &quot;%d.7z&quot; &quot;%d&quot;&lt;/code&gt;
&lt;br /&gt;
Use the following command if it give you error about the missing 7z.exe.
&lt;br /&gt;
&lt;code&gt;FOR /D %d in (*.*) DO &quot;%ProgramFiles%\7-zip\7z.exe&quot; a -mx &quot;%d.7z&quot; &quot;%d&quot;&lt;/code&gt;
&lt;br /&gt;
It will start compressing your folder with the highest compression setting, &lt;i&gt;Ultra&lt;/i&gt;.</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/133784103954368432/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2015/09/compressing-each-folder-with-7zip.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/133784103954368432'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/133784103954368432'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2015/09/compressing-each-folder-with-7zip.html' title='Compressing each folder with 7zip command line tool'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-3352142977541970057</id><published>2014-11-24T18:31:00.000+08:00</published><updated>2014-11-24T18:31:10.819+08:00</updated><title type='text'>Its time to upgrade your travelling bag. See why!</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;//www.youtube.com/embed/tbpKhHwwtiY&quot; width=&quot;420&quot;&gt;&lt;/iframe&gt;

&lt;br /&gt;
&lt;h3&gt;
Easily open your locked bag without too much effort&lt;/h3&gt;
Most travel bag usually come with a locking mechanism but this locking thing can be &lt;b&gt;easily defeated or can be easily BYPASSED.&lt;/b&gt;&lt;br /&gt;
&lt;h3&gt;
How the bypassing works&lt;/h3&gt;
It works by peeling off the zip by using a pen, knife or whatever it is that can be use to peel the zip. Once the zip is peeled off, the perpetrator can steal any valuable things from your bag &lt;b&gt;WITHOUT BREAKING YOUR LOCK OR BAG.&lt;/b&gt;&lt;br /&gt;
And the most shocking thing about this is, you wont suspect anything until you arrive at your destination and open your bag.&lt;br /&gt;
&lt;h3&gt;
How can we avoid this?&lt;/h3&gt;
As the video suggest, you can use a hard case bag with a normal padlock to lock it to avoid the use of zip.&lt;br /&gt;
&lt;h3&gt;
I&#39;m not using this kind of lock. I&#39;m using the rotational number.&lt;/h3&gt;
This too can be easily bypassed but with a different method. AND IT IS SO EASY TOO!</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/3352142977541970057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2014/11/its-time-to-upgrade-your-travelling-bag.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/3352142977541970057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/3352142977541970057'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2014/11/its-time-to-upgrade-your-travelling-bag.html' title='Its time to upgrade your travelling bag. See why!'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-9142472748328318496</id><published>2014-11-11T13:23:00.002+08:00</published><updated>2014-11-11T13:25:49.617+08:00</updated><title type='text'>reset firefox newtab with unknown url</title><content type='html'>&lt;p&gt;Some software downloaded from the internet come bundle with crapware (crap shitty software) that does nothing but inject your browser or any software from your computer with ad-ware. A malicious code to serve you ads that you don&#39;t want to.&lt;/p&gt;

&lt;p&gt;This injection escalate to make your browser open an unknown URL and there is no setting to remove it. The only way to remove it is via the browser configuration file. Not the setting from the toolbar.&lt;/p&gt;

&lt;p&gt;&lt;i&gt;search conduit&lt;/i&gt; is one of the famous URL injected to your browser.&lt;/p&gt;

&lt;p&gt;For Firefox, type &lt;b&gt;about:config&lt;/b&gt; in the address bar. If you encounter any error, simple accept and proceed.&lt;/p&gt;
&lt;p&gt;next, in the search box, type, &lt;b&gt;browser.newtab.url&lt;/b&gt;. This will narrow down the config list. Double-click the &lt;i&gt;browser.newtab.url&lt;/i&gt; below, a dialog box will pop up, and &lt;b&gt;delete everything inside &lt;/b&gt;it then click OK. You can also set this to your preferred or favorite website.&lt;/p&gt;

&lt;p&gt;Your browser will go back to normal every time you open a new tab.&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/9142472748328318496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2014/11/reset-firefox-newtab-with-unknown-url.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/9142472748328318496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/9142472748328318496'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2014/11/reset-firefox-newtab-with-unknown-url.html' title='reset firefox newtab with unknown url'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-6302581646036040123</id><published>2014-08-07T14:44:00.001+08:00</published><updated>2014-08-07T15:09:51.284+08:00</updated><title type='text'>Remove excel password without the password</title><content type='html'>Sometime we protect our Excel spreadsheet to make it easier for sharing and of course, to prevent us and anyone to make a silly mistake and delete all the formula in a cell.&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;There will be time when we need to update some formula or the format of our spreadsheet. Since this will most likely happen once in a blue moon, often, we already forgot the password to unprotect the document.&lt;br /&gt;
&lt;br /&gt;
In case this happen to you, here is some code for you to remove that password without any special software. To make this work, &lt;b&gt;Open your protected document&lt;/b&gt;, then &lt;b&gt;press ALT+F11&lt;/b&gt;, to bring the Visual Basic Application Console. On the menu above, go to &lt;b&gt;Insert &lt;/b&gt;&amp;gt; &lt;b&gt;Module&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
Copy and paste the following code to your Module&lt;br /&gt;
&lt;br /&gt;
&lt;textarea onMouseOver=&quot;this.select();document.execCommand(&#39;copy&#39;);&quot; style=&quot;border: 0; height: 380px; overflow: hidden; width: 100%;&quot;&gt;Sub unProtect()
    &#39;Remove excel protect password
    &#39;show the password hashes ONLY
    Dim i As Integer, j As Integer, k As Integer
    Dim l As Integer, m As Integer, n As Integer
    Dim i1 As Integer, i2 As Integer, i3 As Integer
    Dim i4 As Integer, i5 As Integer, i6 As Integer
    On Error Resume Next
    For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
    For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
    For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
    For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
    ActiveSheet.unProtect Chr(i) &amp; Chr(j) &amp; Chr(k) &amp; _
        Chr(l) &amp; Chr(m) &amp; Chr(i1) &amp; Chr(i2) &amp; Chr(i3) &amp; _
        Chr(i4) &amp; Chr(i5) &amp; Chr(i6) &amp; Chr(n)
    If ActiveSheet.ProtectContents = False Then
        MsgBox &quot;Password Hashes: &quot; &amp; Chr(i) &amp; Chr(j) &amp; _
            Chr(k) &amp; Chr(l) &amp; Chr(m) &amp; Chr(i1) &amp; Chr(i2) &amp; _
            Chr(i3) &amp; Chr(i4) &amp; Chr(i5) &amp; Chr(i6) &amp; Chr(n)
         Exit Sub
    End If
    Next: Next: Next: Next: Next: Next
    Next: Next: Next: Next: Next: Next
End Sub

&lt;/textarea&gt;
&lt;br /&gt;
Then press F5 to run the application.

&lt;br /&gt;
Voilla! You just remove your password!</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/6302581646036040123/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2014/08/remove-excel-password-without-password.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/6302581646036040123'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/6302581646036040123'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2014/08/remove-excel-password-without-password.html' title='Remove excel password without the password'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-5635643712592938411</id><published>2014-06-02T12:35:00.000+08:00</published><updated>2014-06-02T12:37:29.512+08:00</updated><title type='text'>Keep your IP Address to yourself - Use ULTRASURF</title><content type='html'>One of the concern for Internet users are&amp;nbsp;&lt;b&gt;Safety&lt;/b&gt;. But no matter how expensive you paid for your security suite, in the end of the day, the human element still plays the most important part for your safety. As most security expert says, &lt;i&gt;the weakest link in security are human.&lt;/i&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;All computer virus share the same characteristic, that is, to know your computer physical location, or the IP Address of your computer. As an example, Spam email. Most spam email will contain one or more links to certain website. For a &lt;i&gt;beautifully crafted spam email&lt;/i&gt;, it will contain only one link and most of are a link that you can recognize immediately. Mostly banking website or social network website.&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg82K9qh0lpu2mX3jSopczHdSxFhQtFhhfbgQUP_Xhaj5iu_eu25T7HdSacM8bxfySAOm_Xp8SYCacFqTd2uuDYYvSOl1itmG5NjoTLnXXGJVAOHtPtpdurRQLNVIGbLHrGHFWr1vTj8vA/s1600/1_spam_google.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg82K9qh0lpu2mX3jSopczHdSxFhQtFhhfbgQUP_Xhaj5iu_eu25T7HdSacM8bxfySAOm_Xp8SYCacFqTd2uuDYYvSOl1itmG5NjoTLnXXGJVAOHtPtpdurRQLNVIGbLHrGHFWr1vTj8vA/s1600/1_spam_google.jpg&quot; height=&quot;148&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;An example of pure spam email, mainly Quick Rich scheme&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
Spam email has only two main purpose, that is to phish your personal info or to know your location via IP Address. This post will not cover phising but will only cover on how to conceal your real IP Address.
&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEheEaYCmp6IbGSp9yz4e_MAEryD-5FUffsOwHeAkUvqsPYtc2Kd_hY-aBZdAMVpZ5Qe0ANbHux-F4SLsip-Rvv5TuiHKsagsPzpwScvsgFo_qwqWIr7OD0Pq6XJ9xG3GahGFj6rVJCl8ic/s1600/2_spam_malayan_banking.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEheEaYCmp6IbGSp9yz4e_MAEryD-5FUffsOwHeAkUvqsPYtc2Kd_hY-aBZdAMVpZ5Qe0ANbHux-F4SLsip-Rvv5TuiHKsagsPzpwScvsgFo_qwqWIr7OD0Pq6XJ9xG3GahGFj6rVJCl8ic/s1600/2_spam_malayan_banking.jpg&quot; height=&quot;202&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;An example of a Phishing Email&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;b&gt;Do not click any link when you receive an email&lt;/b&gt;. Be very sure that the sender are from a trusted user or sources. It is very easy to avoid your IP Address known by a third party unknown individual.&lt;br /&gt;
&lt;br /&gt;
You can choose from a variety of method.&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;
VPN (Virtual Private Network)&lt;/h2&gt;
This is the most preferred way as a mean of encrypting your traffic and also to conceal your real IP Address. Although, it does require a little bit of investment and some very little technical knowledge.
&lt;br /&gt;
&lt;h2&gt;
Proxy Server&lt;/h2&gt;
This are also a very good method and often, &lt;b&gt;this come for FREE&lt;/b&gt;. But you need to look for a high anonymity proxy server. Nowadays, this kind of server are becoming more popular as a mean to hide your real IP Address. One of the many software that I highly recommend is, &lt;a href=&quot;http://ultrasurf.us/&quot; target=&quot;_blank&quot;&gt;Ultrasurf&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://ultrasurf.us/&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://ultrasurf.us/images/logo.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;h3&gt;
What is Ultrasurf&lt;/h3&gt;
Ultrasurf are a tool created by Ultrareach Internet Corp., a small group of Silicon Valley engineers. Its main purpose are to protect your online surfing by a mean of hiding your real IP Address and being assigned to one of their private proxy address. This way, you can circumvent any censoring or blockade by your ISP or even your government and stay anonymously on the Internet.&lt;br /&gt;
&lt;h3&gt;
Why use Ultrasurf&lt;/h3&gt;
This tool, not only conceal your location (IP Address) but help you bypassed any firewall or website filtering. Plus, this tool are &lt;b&gt;FREE&lt;/b&gt;.
&lt;br /&gt;
&lt;h3&gt;
Where can I get this tool&lt;/h3&gt;
You can got to their website and download the latest version of their software or download from here, the direct download link of the latest version.
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://ultrasurf.us/download/u.zip&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://ultrasurf.us/images/closed-button-300.gif&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;h3&gt;
How to use this&lt;/h3&gt;
Simply download and extract the downloaded file, and run the file inside. It is usually named &lt;b&gt;uxxxx.exe&lt;/b&gt; where &lt;i&gt;xxxx&lt;/i&gt; is the latest version number. It will automatically connect you to their proxy server. If you watch &lt;a href=&quot;http://ultrasurf.us/&quot;&gt;the video from their website&lt;/a&gt;, the narrator will tell you only Internet Explorer will work but as the development goes on and the way how other browser set their proxy connection, you can also use this tool with other browser. To test if you are connecting through their server, &lt;i&gt;simply &lt;a href=&quot;https://premixlink.com/myip.php&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;check your IP Address&lt;/b&gt;&lt;/a&gt; and compare it to the help page, the first time you run the program.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
As a rule of thumb, when using this kind of tool, you end up putting 100% of your trust for the tool creator to not log any of your surfing activity. To gain some special privilege, you have to give up other privilege.</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/5635643712592938411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2014/06/keep-your-ip-address-to-yourself-use.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5635643712592938411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5635643712592938411'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2014/06/keep-your-ip-address-to-yourself-use.html' title='Keep your IP Address to yourself - Use ULTRASURF'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg82K9qh0lpu2mX3jSopczHdSxFhQtFhhfbgQUP_Xhaj5iu_eu25T7HdSacM8bxfySAOm_Xp8SYCacFqTd2uuDYYvSOl1itmG5NjoTLnXXGJVAOHtPtpdurRQLNVIGbLHrGHFWr1vTj8vA/s72-c/1_spam_google.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-3422800364347131533</id><published>2013-10-19T12:44:00.001+08:00</published><updated>2013-10-19T12:47:07.573+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="captcha"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><title type='text'>CAPTCHA:Drawing a line between human and machine</title><content type='html'>&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://cdn.pophangover.com/images/funny-captcha-24.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;174&quot; src=&quot;http://cdn.pophangover.com/images/funny-captcha-24.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.pophangover.com/6281/25-incredibly-unfortunate-captchas/&quot; target=&quot;_blank&quot;&gt;who the hell is Abduljabbar&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTzVmkHdhMXnMJ6r8CLlWhS8PJ7ut-URwhZw8a5s5EWKyojQB5hcn-1xJsDZZ0fPi00It0WvEYwAh5xQKOoOV8rOT9mtDBsVNIC8g0_V7EXdDt4fVY1WL0JW6Heg23hPZcLNUWCzHTKzE/s1600/fb-captcha.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;239&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTzVmkHdhMXnMJ6r8CLlWhS8PJ7ut-URwhZw8a5s5EWKyojQB5hcn-1xJsDZZ0fPi00It0WvEYwAh5xQKOoOV8rOT9mtDBsVNIC8g0_V7EXdDt4fVY1WL0JW6Heg23hPZcLNUWCzHTKzE/s320/fb-captcha.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;An example of captcha from Facebook&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
Spam(including bots), malicious script and or repeated form sending are always the main problem when you open your website for user interaction.&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
For me, this type of attack is really annoying and consume a lot of time and energy (plus coffee) to remove. For simplicity, CAPTCHA (&lt;i&gt;&lt;b&gt;C&lt;/b&gt;ompletely &lt;b&gt;A&lt;/b&gt;utomated &lt;b&gt;P&lt;/b&gt;ublic &lt;b&gt;T&lt;/b&gt;uring Test to Tell &lt;b&gt;C&lt;/b&gt;omputers and&lt;b&gt; H&lt;/b&gt;umans &lt;b&gt;A&lt;/b&gt;part&lt;/i&gt;) is devised to prevent this type of attack.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://cdn.themetapicture.com/media/funny-Nicolas-Cage-surprise-face.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://cdn.themetapicture.com/media/funny-Nicolas-Cage-surprise-face.jpg&quot; width=&quot;269&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
as the saying goes, &quot;&lt;i&gt;too much of a good thing can be harmful&lt;/i&gt;&quot;, so does the CAPTCHA. This is pointed by Stackoverflow.com user,&amp;nbsp;&lt;a href=&quot;http://stackoverflow.com/users/7439&quot; target=&quot;_blank&quot;&gt;davebug&lt;/a&gt;&amp;nbsp;in his post on Stackoverflow.com,&amp;nbsp;&lt;a href=&quot;http://stackoverflow.com/questions/450835/stopping-scripters-from-slamming-your-website-hundreds-of-times-a-second?rq=1&quot; target=&quot;_blank&quot;&gt;Stopping scripters from slamming your website hundreds of times a second&lt;/a&gt;, &lt;b&gt;&quot;&lt;span style=&quot;background-color: white; font-family: Arial, &#39;Liberation Sans&#39;, &#39;DejaVu Sans&#39;, sans-serif; font-size: 14px; line-height: 18px;&quot;&gt;CAPTCHA harms usability, and bots steal the fun&quot;.&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.theworldorbust.com/wp-content/uploads/2011/09/photo-of-the-week-9-25-captcha.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;146&quot; src=&quot;http://www.theworldorbust.com/wp-content/uploads/2011/09/photo-of-the-week-9-25-captcha.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Source:&amp;nbsp;&lt;a href=&quot;http://www.theworldorbust.com/wp-content/uploads/2011/09/photo-of-the-week-9-25-captcha.jpg&quot; target=&quot;_blank&quot;&gt;http://www.theworldorbust.com/wp-content/uploads/2011/09/photo-of-the-week-9-25-captcha.jpg&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.flickr.com/photos/ceejayoz/2674227920/&quot; style=&quot;margin-left: auto; margin-right: auto;&quot; title=&quot;Now that&#39;s a CAPTCHA! by ceejayoz, on Flickr&quot;&gt;&lt;img alt=&quot;Now that&#39;s a CAPTCHA!&quot; height=&quot;242&quot; src=&quot;http://farm4.staticflickr.com/3202/2674227920_32e5f692d3.jpg&quot; width=&quot;443&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;More CAPTCHA like at&amp;nbsp;&lt;a href=&quot;http://random.irb.hr/signup.php&quot; target=&quot;_blank&quot;&gt;http://random.irb.hr/signup.php&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
CAPTCHA requires the user from reading a squiggly text to solving a mathematics problem (more like Quantum Physic equation).&lt;br /&gt;
&lt;br /&gt;
You can opt to using CAPTCHA. You can limited public user interaction and force them to register or by using &lt;a href=&quot;http://15daysofjquery.com/safer-contact-forms-without-captchas/11/&quot; target=&quot;_blank&quot;&gt;hidden input element&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
As i don&#39;t really like giving away my email address and filling out forms just for a one time downloading (or anything in the same category), i sometime wish that all website can use the hidden input method as it is more user friendly.&lt;br /&gt;
&lt;br /&gt;
But again, there is no such thing as perfect in programming. So does the hidden input method. The hidden input method works only and only if the script kiddies (yes! script kiddies) are too lazy and a total noob. Without even bothering to check the source of the website, and rely too much on other software from other programmer.&lt;br /&gt;
&lt;br /&gt;
Some programmer also suggest using a javascript to generate value for the hidden input. This will works most of the time, but will fail if the user has javascript disabled.&lt;br /&gt;
&lt;br /&gt;
So, time and time again, we all still looking a better way to draw a line between human and machine.&lt;br /&gt;
&lt;br /&gt;
Some funny CAPTCHA for your eyes.&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://cdn.imglols.com/wp-content/uploads/lord-emostache-captcha-comic.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;309&quot; src=&quot;http://cdn.imglols.com/wp-content/uploads/lord-emostache-captcha-comic.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Source:&amp;nbsp;&lt;a href=&quot;http://www.imglols.com/lord-emostache-captcha-comic/&quot; target=&quot;_blank&quot;&gt;http://www.imglols.com/lord-emostache-captcha-comic/&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://legacy-cdn.smosh.com/smosh-pit/012011/funny-captcha-26.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;204&quot; src=&quot;http://legacy-cdn.smosh.com/smosh-pit/012011/funny-captcha-26.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Source:&amp;nbsp;&lt;a href=&quot;http://www.smosh.com/smosh-pit/photos/24-wtf-captchas&quot; target=&quot;_blank&quot;&gt;http://www.smosh.com/smosh-pit/photos/24-wtf-captchas&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.stuffmycomputersays.com/wp-content/uploads/2010/09/Screen-shot-2010-09-14-at-7.31.46-PM.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;216&quot; src=&quot;http://www.stuffmycomputersays.com/wp-content/uploads/2010/09/Screen-shot-2010-09-14-at-7.31.46-PM.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Source:&amp;nbsp;&lt;a href=&quot;http://www.stuffmycomputersays.com/2010/09/14/funny-captcha/&quot; target=&quot;_blank&quot;&gt;http://www.stuffmycomputersays.com/2010/09/14/funny-captcha/&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://techmash.co.uk/wp-content/uploads/2011/08/captcha-woman-listen-e1312867181183.jpeg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;177&quot; src=&quot;http://techmash.co.uk/wp-content/uploads/2011/08/captcha-woman-listen-e1312867181183.jpeg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://techmash.co.uk/2011/08/09/funny-captcha-fails/&quot; target=&quot;_blank&quot;&gt;Women Listen!!&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://25.media.tumblr.com/tumblr_m9s89qaW311rr3l61o1_500.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;224&quot; src=&quot;http://25.media.tumblr.com/tumblr_m9s89qaW311rr3l61o1_500.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Moar at&amp;nbsp;&lt;a href=&quot;http://rebloggy.com/post/funny-wtf-meme-robot-relatable-annoying-captcha-so-relatable-relatable-quotes-tr/30808235159&quot; target=&quot;_blank&quot;&gt;http://rebloggy.com/post/funny-wtf-meme-robot-relatable-annoying-captcha-so-relatable-relatable-quotes-tr/30808235159&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://i3.squidoocdn.com/resize_square/squidoo_images/320/draft_lens18942014module155460076photo_1_1322470857captcha.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://i3.squidoocdn.com/resize_square/squidoo_images/320/draft_lens18942014module155460076photo_1_1322470857captcha.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://media.techeblog.com/images/google_captcha_2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;187&quot; src=&quot;http://media.techeblog.com/images/google_captcha_2.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.techeblog.com/index.php/tech-gadget/funny-google-captcha-images&quot; target=&quot;_blank&quot;&gt;troll by google?&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.funnyscreenshots.com/wp-content/uploads/2009/05/impossible-captcha.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;197&quot; src=&quot;http://www.funnyscreenshots.com/wp-content/uploads/2009/05/impossible-captcha.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://picsbox.biz/key/funny%20impossible%20captcha&quot; target=&quot;_blank&quot;&gt;Really impossible for average person&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://britfitzpatrick.files.wordpress.com/2011/07/captchaart.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;209&quot; src=&quot;http://britfitzpatrick.files.wordpress.com/2011/07/captchaart.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://britfitzpatrick.com/wandering-the-web-funny-tumblr-edition/&quot; target=&quot;_blank&quot;&gt;LIke that curve&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.anorak.co.uk/wp-content/uploads/2012/01/capatcha.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;133&quot; src=&quot;http://www.anorak.co.uk/wp-content/uploads/2012/01/capatcha.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.anorak.co.uk/310083/technology/goodnight-captcha-a-bedtime-story-made-from-website-register-words.html/&quot; target=&quot;_blank&quot;&gt;former indeed&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/3422800364347131533/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2013/10/captchadrawing-line-between-human-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/3422800364347131533'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/3422800364347131533'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2013/10/captchadrawing-line-between-human-and.html' title='CAPTCHA:Drawing a line between human and machine'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTzVmkHdhMXnMJ6r8CLlWhS8PJ7ut-URwhZw8a5s5EWKyojQB5hcn-1xJsDZZ0fPi00It0WvEYwAh5xQKOoOV8rOT9mtDBsVNIC8g0_V7EXdDt4fVY1WL0JW6Heg23hPZcLNUWCzHTKzE/s72-c/fb-captcha.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-7449583592173422094</id><published>2013-05-17T21:32:00.001+08:00</published><updated>2013-12-06T11:49:33.959+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="nginx"/><category scheme="http://www.blogger.com/atom/ns#" term="php fastcgi"/><category scheme="http://www.blogger.com/atom/ns#" term="rapidleech"/><title type='text'>Rapidleech with PHP FastCGI and NginX server</title><content type='html'>&lt;b&gt;What is Rapidleech?&lt;/b&gt;&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYEOhyphenhyphen8LX1v_e21XAQF-hAAryBRPL6Q557g4M8lJekuHxcCRA1lrvi4eF5Mx32JwLj0_PabKayLsrH2Y27V5Yk_gEgGc765i_jG9fsJwQJL-trVAUO_-5-iKZ4FWL5j2ibRrGlFzOSqls/s1600/Rapidleech+v2+rev.+43-welcome.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;159&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYEOhyphenhyphen8LX1v_e21XAQF-hAAryBRPL6Q557g4M8lJekuHxcCRA1lrvi4eF5Mx32JwLj0_PabKayLsrH2Y27V5Yk_gEgGc765i_jG9fsJwQJL-trVAUO_-5-iKZ4FWL5j2ibRrGlFzOSqls/s320/Rapidleech+v2+rev.+43-welcome.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Rapidleech welcome page&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
taken from their website (&lt;a href=&quot;http://rapidleech.com/&quot; target=&quot;_blank&quot; title=&quot;Rapidleech official website&quot;&gt;http://rapidleech.com&lt;/a&gt;),

&lt;br /&gt;
&lt;blockquote class=&quot;code&quot;&gt;
Rapid Leech is a free server transfer script for use on various popular upload/download sites such as megaupload.com, Rapidshare.com and more than 45 others. The famous Rapidleech script transfers files from Rapidshare, Megaupload, Depositfiles.com, Easy-share.com, etc, via your fast servers connection speed and dumps the file on your server. You may then download these files from your server anytime later.
&lt;/blockquote&gt;
not only it allow you to transfer files from other file-sharing host or from another FTP server, you also use it to upload a file to another file-sharing host or FTP server. You don&#39;t even need to worry about database plus, it&#39;s &lt;b&gt;free &lt;/b&gt;with a very helpful community too.&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;b&gt;What is PHP FastCgi?&lt;/b&gt;&lt;br /&gt;
taken from their website (&lt;a href=&quot;http://php-fpm.org/&quot; target=&quot;_blank&quot;&gt;http://php-fpm.org/&lt;/a&gt;),

&lt;br /&gt;
&lt;blockquote class=&quot;code&quot;&gt;
PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites.

These features include:

&lt;br /&gt;
Adaptive process spawning (NEW!)&lt;br /&gt;
Basic statistics (ala Apache&#39;s mod_status) (NEW!)&lt;br /&gt;
Advanced process management with graceful stop/start&lt;br /&gt;
Ability to start workers with different uid/gid/chroot/environment and different php.ini (replaces safe_mode)&lt;br /&gt;
Stdout &amp;amp; stderr logging&lt;br /&gt;
Emergency restart in case of accidental opcode cache destruction&lt;br /&gt;
Accelerated upload support&lt;br /&gt;
Support for a &quot;slowlog&quot;&lt;br /&gt;
Enhancements to FastCGI, such as fastcgi_finish_request() - a special function to finish request &amp;amp; flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)&lt;/blockquote&gt;
Pretty cool eh? with this, you can serve many people at the same time without killing the server a.k.a overload with too much request from the visitor.&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;What is NginX&lt;/b&gt;&lt;br /&gt;
taken from their website (&lt;a href=&quot;http://nginx.org/en/&quot; target=&quot;_blank&quot;&gt;http://nginx.org/en/&lt;/a&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;code&quot;&gt;
nginx [engine x] is an HTTP and reverse proxy server, as well as a mail proxy server, written by Igor Sysoev. For a long time, it has been running on many heavily loaded Russian sites including Yandex, Mail.Ru, VKontakte, and Rambler. According to Netcraft nginx served or proxied 13.54% busiest sites in May 2013. Here are some of the success stories: Netflix, Wordpress.com, FastMail.FM.&lt;/blockquote&gt;
&lt;b&gt;The Tutorial&lt;/b&gt;&lt;br /&gt;
i assume that you already have your own server and had install PHP FastCGI and NginX as the server. I&#39;ll cover the installation of this two later on.&lt;br /&gt;
&lt;br /&gt;
when i first use NginX as the server, i notice that rapidleech had a lot of troublesome problem.&lt;br /&gt;
The most notably problem is, when transloading, whether from a file-sharing host or an FTP, the progress bar will not shown and the percentage will stay at zero.&lt;br /&gt;
&lt;br /&gt;
Only after the file is downloaded successfully that the progress bar is shown in FULL and the percentage straight to 100%.&lt;br /&gt;
&lt;br /&gt;
This is not a BUG with the rapidleech. I repeat, &lt;b&gt;NOT A BUG!&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
The problem is within the NginX and PHP FastCGI configuration. To solve this, You can use my configuration here.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;PHP FastCGI Configuration&lt;/b&gt;&lt;br /&gt;
edit your &lt;i&gt;php.ini&lt;/i&gt; to match the following setting

&lt;br /&gt;
&lt;div class=&quot;code&quot;&gt;
output_buffering =&lt;span style=&quot;color: red;&quot;&gt; off&lt;/span&gt;&lt;br /&gt;
zlib.output_compression =&lt;span style=&quot;color: red;&quot;&gt; off
&lt;/span&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;Nginx Configuration&lt;/b&gt;&lt;br /&gt;
edit your NginX Configuration file to have or match this setting. it should be at &lt;i&gt;/etc/nginx/nginx.conf&lt;/i&gt;&lt;br /&gt;
&lt;div class=&quot;code&quot;&gt;
gzip &lt;span style=&quot;color: red;&quot;&gt;off&lt;/span&gt;;&lt;br /&gt;
proxy_buffering&lt;span style=&quot;color: red;&quot;&gt; off&lt;/span&gt;;&lt;br /&gt;
gzip_comp_level &lt;span style=&quot;color: red;&quot;&gt;6&lt;/span&gt;;&lt;br /&gt;
gzip_types&lt;span style=&quot;color: red;&quot;&gt; text/plain text/css application/json application/x-javascript application/xml application/xml+rss text/javascript&lt;/span&gt;;&lt;br /&gt;
fastcgi_keep_conn &lt;span style=&quot;color: red;&quot;&gt;on&lt;/span&gt;;
&lt;/div&gt;
&lt;br /&gt;
With this configuration, your rapidleech should work as it should be. The transloading process will proceed normally.&lt;br /&gt;
&lt;br /&gt;
Plus, with that configuration, every of your PHP script that flushing data to the browser should work correctly. You dont have to wait until the execution of your php script end to see the flushed result.&lt;br /&gt;
&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBCjZXR0oophQM8mOiCD7xjHRyLZdakEWL9mElkoqGzr9r_Zf4UB560ysJhhV7h6V7JWVCOkkrGOwsEVbvNot0pMFi_Sy4FeXlV80KDAHKs09h45uwSV23MQFTR4E8-2oIjRv45NLFD9k/s1600/Rapidleech+v2+rev.+43-downloading.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;159&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBCjZXR0oophQM8mOiCD7xjHRyLZdakEWL9mElkoqGzr9r_Zf4UB560ysJhhV7h6V7JWVCOkkrGOwsEVbvNot0pMFi_Sy4FeXlV80KDAHKs09h45uwSV23MQFTR4E8-2oIjRv45NLFD9k/s320/Rapidleech+v2+rev.+43-downloading.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Downloading in progress&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEif_-y_JipBU5EE_FcXW4M91Ij-LHvpABL5hIFwEIrxDZKCA74Pani3olNV90hksFxIxzJrLDQ1L9K0SSqD5C7twL-Uek8VU_muAiHA7_4YkH_2RTuMK6NrwWcKH3nM8FMX5_gKlzblfVA/s1600/Rapidleech+v2+rev.+43-done.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;156&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEif_-y_JipBU5EE_FcXW4M91Ij-LHvpABL5hIFwEIrxDZKCA74Pani3olNV90hksFxIxzJrLDQ1L9K0SSqD5C7twL-Uek8VU_muAiHA7_4YkH_2RTuMK6NrwWcKH3nM8FMX5_gKlzblfVA/s320/Rapidleech+v2+rev.+43-done.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Download finished!&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
hope this help to solve those problem using NginX powered Rapidleech.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://premixlink.com/&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;An example of Rapidleech server using Nginx.&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/7449583592173422094/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2013/05/rapidleech-with-php-fastcgi-and-nginx.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/7449583592173422094'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/7449583592173422094'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2013/05/rapidleech-with-php-fastcgi-and-nginx.html' title='Rapidleech with PHP FastCGI and NginX server'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYEOhyphenhyphen8LX1v_e21XAQF-hAAryBRPL6Q557g4M8lJekuHxcCRA1lrvi4eF5Mx32JwLj0_PabKayLsrH2Y27V5Yk_gEgGc765i_jG9fsJwQJL-trVAUO_-5-iKZ4FWL5j2ibRrGlFzOSqls/s72-c/Rapidleech+v2+rev.+43-welcome.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-2285727887491320349</id><published>2013-01-23T13:39:00.001+08:00</published><updated>2013-01-23T13:39:04.814+08:00</updated><title type='text'>connect to a wireless network using terminal in UNIX system</title><content type='html'>connecting to a wireless network is easy when a GUI program does all the hectic work to us. But how do one connect to a wireless network using the terminal?

This tutorial is applicable to ALL UNIX-based computer. It&#39;s not limited to Backtrack only.&lt;br /&gt;
Before we begin, please familiar yourself with some of this term or command-line code.&lt;br /&gt;
&amp;nbsp;
&lt;strong&gt;wireless key&lt;/strong&gt; - &lt;em&gt;your network password or the network security key&lt;/em&gt;&lt;br /&gt;
&amp;nbsp;
&lt;strong&gt;essid&lt;/strong&gt; - &lt;em&gt;the wireless network name&lt;/em&gt;&lt;br /&gt;
&amp;nbsp;
&lt;strong&gt;ifconfig&lt;/strong&gt; - &lt;em&gt;Enables your wireless device to communicate with the wireless network&lt;/em&gt;&lt;br /&gt;
&amp;nbsp;
&lt;strong&gt;iwlist&lt;/strong&gt; -&lt;em&gt; List all available access point, or the wireless network that in range.&lt;/em&gt;&lt;br /&gt;
&amp;nbsp;
&lt;strong&gt;iwconfig&lt;/strong&gt; - &lt;em&gt;to list all network card attach to your computer/laptop&lt;/em&gt;&lt;br /&gt;
&amp;nbsp;
&lt;strong&gt;dhclient&lt;/strong&gt; - &lt;em&gt;get an IP Address via DHCP from the connected wireless network&lt;/em&gt;&amp;nbsp;
&lt;br /&gt;
&lt;br /&gt;
Lets get the working

First, fire up your terminal. We need to know what is the name of our wireless device. To get your wireless device name, type &lt;em&gt;&lt;strong&gt;iwconfig&lt;/strong&gt; &lt;/em&gt;then press enter. it will list all available network card whether a wired or a wireless one.

next, we will tell our wireless card to wake up. To do this, type &lt;strong&gt;ifconfig wlan0 up&lt;/strong&gt; then press enter. In this post, &lt;em&gt;wlan0&lt;/em&gt; is the name of my wireless card. yours could be different.&lt;br /&gt;
&lt;br /&gt;
We now need to scan if there is a wireless network nearby with a &lt;em&gt;known security key&lt;/em&gt;. Now type,&lt;em&gt;&lt;strong&gt; iwlist wlan0 scan&lt;/strong&gt;&lt;/em&gt;, again, my &lt;em&gt;wlan0&lt;/em&gt; is the name of my wireless card. A list of available network will be printed out on the terminal.

Then, we start a handshake with the network. to do this, type&lt;em&gt;&lt;strong&gt; iwconfig wlan0 essid wifi key 5405507cd1&lt;/strong&gt;&lt;/em&gt; then press enter. Lets breakdown the command, &lt;em&gt;&lt;strong&gt;iwconfig &lt;wireless card=&quot;&quot;&gt; essid &lt;the name=&quot;&quot; network=&quot;&quot;&gt; key &lt;wireless key=&quot;&quot;&gt;.&lt;/wireless&gt;&lt;/the&gt;&lt;/wireless&gt;&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
That is the syntax to use the command of iwconfig. Beware though, if your network contain a spaces in their name, you need to wrap the network name with a quote or this, &quot;&quot;. &amp;nbsp;For an example, suppose your network name is &lt;em&gt;&lt;strong&gt;wifi net&lt;/strong&gt;&lt;/em&gt;, you need to type the syntax like this, &lt;strong&gt;&lt;em&gt;iwconfig wlan0 essid &quot;wifi net&quot; key 5405507cd1&lt;/em&gt;&lt;/strong&gt;. Again, that syntax is for wireless network that use a &lt;em&gt;HEX key&lt;/em&gt;.&lt;br /&gt;
&lt;br /&gt;
To use an ASCII key, &lt;em&gt;&lt;strong&gt;s:&lt;/strong&gt;&lt;/em&gt; has to be put after the&lt;em&gt;&lt;strong&gt; key&lt;/strong&gt;&lt;/em&gt; command. If you are using ASCII key to connect, use it like this,&amp;nbsp;&lt;em&gt;&lt;strong&gt;iwconfig wlan0 essid &quot;wifi net&quot; key s: abc0134567892&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
After a&amp;nbsp;successful&amp;nbsp;connection, in order for us to connect to the internet, we need to have an IP Address. To get an IP Address, type in &lt;em&gt;&lt;strong&gt;dhclient wlan0&lt;/strong&gt;&lt;/em&gt;.

you should now be fully connected and have your own IP Address.</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/2285727887491320349/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2013/01/connect-to-wireless-network-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/2285727887491320349'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/2285727887491320349'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2013/01/connect-to-wireless-network-using.html' title='connect to a wireless network using terminal in UNIX system'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-5425920491155190731</id><published>2012-12-13T20:41:00.000+08:00</published><updated>2012-12-27T10:40:21.376+08:00</updated><title type='text'>how to convert FLV video to MP4 using FFMPEG</title><content type='html'>converting videos from FLV to MP4 can be done easily using FFMPEG with this little command.

&lt;p class=&quot;code&quot;&gt;ffmpeg -i &lt;b&gt;video_source.FLV&lt;/b&gt; -vcodec libx264 -ar 22050 &lt;b&gt;video_output.mp4&lt;/b&gt;&lt;/p&gt;


FFMPEG is a nice little tool to do anything that want with your multimedia files.

have fun!</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/5425920491155190731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2012/12/how-to-convert-flv-video-to-mp4-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5425920491155190731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5425920491155190731'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2012/12/how-to-convert-flv-video-to-mp4-using.html' title='how to convert FLV video to MP4 using FFMPEG'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-9091897288518081631</id><published>2012-09-04T19:10:00.001+08:00</published><updated>2012-09-04T19:12:19.830+08:00</updated><title type='text'>Encode any text using WS_FTP encryption</title><content type='html'>WS_FTP is supposedly help you to encrypt you FTP password so that nobody can know about your password. But the encryption is so poor that anybody/anyone who knew about programming and is able to convert from hexadecimal to decimal and vice versa can easily decrypt the password.

this post will help you to encrypt you own text using encryption method used by WS_FTP.

&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
  function kuyau_enx(){ 
    var e = document.getElementById(&#39;toEncode&#39;).value;
 var enx = document.getElementById(&#39;encoded&#39;);
    var ciphertext = &quot;PWD=V&quot;; 
    var salt = &quot;&quot;; 
    var hex = &quot;0123456789ABCDEF&quot;; 
    var rand;
    var cipherchar;
    for (var i=0; i &lt; 32; i++) {
      rand = Math.round (Math.random()*15);   // Pick a random number between 0 and 15
      salt = salt + hex.substring (rand,rand+1) ;  // Convert to hex and append
    }
    ciphertext = ciphertext + salt;
    for (i=0; i &lt; e.length; i++) { 
      cipherchar = e.charCodeAt(i) + i + 1 + (47 + parseInt (salt.substring (i,i+1),16))%57; // Decimal
      ciphertext = ciphertext + cipherchar.toString(16).toUpperCase(); // Convert to hex and append
    } 
   enx.innerHTML = ciphertext; 
  }
//--&gt;
&lt;/script&gt;
&lt;style type=&quot;text/css&quot;&gt;
&lt;!--
.decex {
 display: inline-block;
 outline: none;
 cursor: pointer;
 text-align: center;
 text-decoration: none;
 font: 14px/100% Arial, Helvetica, sans-serif;
 padding: .5em 2em .55em;
 text-shadow: 0 1px 1px rgba(0,0,0,.3);
 -webkit-border-radius: .5em; 
 -moz-border-radius: .5em;
 border-radius: .5em;
 -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
 -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
 box-shadow: 0 1px 2px rgba(0,0,0,.2);
 
 color: #fef4e9;
 border: solid 1px #da7c0c;
 background: #f78d1d;
 background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
 background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&#39;#faa51a&#39;, endColorstr=&#39;#f47a20&#39;);

}
.decex:hover {
 text-decoration: none;
 background: #f47c20;
 background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
 background: -moz-linear-gradient(top,  #f88e11,  #f06015);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&#39;#f88e11&#39;, endColorstr=&#39;#f06015&#39;);
}
.decex:active {
 position: relative;
 top: 1px;
 color: #fcd3a5;
 background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
 background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&#39;#f47a20&#39;, endColorstr=&#39;#faa51a&#39;);
}
#dexo {margin-top: 10px;}
#dexo input {
 border: 1px solid #EDEDED;
 padding: 5px 10px;
 background: whitesmoke;
 -webkit-box-shadow: 0px 0px 1px #333;
 -moz-box-shadow: 0px 0px 1px #333;
 -ms-box-shadow: 0px 0px 1px #333;
 -o-box-shadow: 0px 0px 1px #333;
 -khtml-box-shadow: 0px 0px 1px #333;
 box-shadow: 0px 0px 1px #333;
 }
#dexo input:hover{
 background: #fff;
 cursor: pointer;
 border: 1px solid whitesmoke;
 }
#dexo input:focus{
 background: #fff;
 cursor: pointer;
 border: 1px solid whitesmoke;
 outline: 0;
 }
#encoded,#decoded {
 font-family: arial;
 font-weight: bold;
 color: whitesmoke;
 text-shadow: 0px 0px 2px #333;
 margin: 10px 0;
 padding: 20px;
 background: #f47c20;
 border: solid 1px #da7c0c;
 background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
 background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&#39;#faa51a&#39;, endColorstr=&#39;#f47a20&#39;);
 -webkit-box-shadow: inset 0px 1px 0px #fff;
 -moz-box-shadow: inset 0px 1px 0px #fff;
 -ms-box-shadow: inset 0px 1px 0px #fff;
 -o-box-shadow: inset 0px 1px 0px #fff;
 -khtml-box-shadow: inset 0px 1px 0px #fff;
 box-shadow: inset 0px 1px 0px #fff;
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 -o-border-radius: 5px;
 -ms-border-radius: 5px;
 -khtml-border-radius: 5px;
 border-radius: 5px;
 }
#warning {
 border-top: 2px solid whitesmoke;
 margin-top: 10px;
 color: #963030;
 text-transform: uppercase;
 padding-top: 5px;
 }
//--&gt;
&lt;/style&gt;
&lt;div id=&quot;dexo&quot;&gt;
&lt;form name=&quot;PWDEncode&quot;&gt;
  &lt;label for=&quot;toDecode&quot;&gt;Text to Encode:&lt;input type=&quot;text&quot; name=&quot;toEncode&quot; id=&quot;toEncode&quot; size=&quot;50&quot; placeholder=&quot;Anything as you wish :D&quot;/&gt;&lt;/label&gt;
 &lt;a href=&quot;javascript:void(0);&quot; onClick=&quot;kuyau_enx();&quot; id=&quot;decipher&quot; class=&quot;decex&quot;&gt;Encode&lt;/a&gt;
 &lt;div id=&quot;encoded&quot;&gt;
  Your ENCODED WS_FTP will be shown here
 &lt;div id=&quot;warning&quot;&gt;
  this is strictly for educational purpose ONLY!
 &lt;/div&gt;
 &lt;/div&gt;
&lt;/form&gt;
&lt;/div&gt;
Thats it! You now have a text that is encrypted in the same way as WS_FTP encrypt your password.

you may decrypt your password using &lt;a href=&quot;http://kuyau.blogspot.com/2009/05/decipher-ftp-password.html&quot; target=&quot;_blank&quot; title=&quot;WS_FTP password decrypter&quot;&gt;WS_FTP password decrypter&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/9091897288518081631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2012/09/encode-any-text-using-wsftp-encryption.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/9091897288518081631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/9091897288518081631'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2012/09/encode-any-text-using-wsftp-encryption.html' title='Encode any text using WS_FTP encryption'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-1971594377827496085</id><published>2011-02-18T11:55:00.001+08:00</published><updated>2011-02-18T12:01:08.017+08:00</updated><title type='text'>Report about the Morris Worm</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;A REPORT ON THE INTERNET WORM&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Bob Page&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;University of Lowell&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Computer Science Department&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;November 7, 1988&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: bold;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;[Because of the many misquotes the media have been giving,&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;this report is Copyright (c) Bob Page, all rights reserved.&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;Permission is granted to republish this ONLY if you republish&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;it in its entirety.]&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Here&#39;s the scoop on the &quot;Internet Worm&quot;.  Actually it&#39;s not a virus -&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;a virus is a piece of code that adds itself to other programs,&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;including operating systems.  It cannot run independently, but rather&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;requires that its &quot;host&quot; program be run to activate it.  As such, it&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;has a clear analog to biologic viruses -- those viruses are not&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;considered live, but they invade host cells and take them over, making&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;them produce new viruses.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;A worm is a program that can run by itself and can propagate a fully&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;working version of itself to other machines.  As such, what was loosed&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;on the Internet was clearly a worm.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;This data was collected through an emergency mailing list set up by&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Gene Spafford at Purdue University, for administrators of major&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Internet sites - some of the text is included verbatim from that list.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Mail was heavy since the formation of the list; it continues to be on&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Monday afternoon - I get at least 2-3 messages every hour.  It&#39;s&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;possible that some of this information is incomplete, but I thought&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;you&#39;d like to know what I know so far.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The basic object of the worm is to get a shell on another machine so&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;it can reproduce further.  There are three ways it attacks: sendmail,&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;fingerd, and rsh/rexec.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;THE SENDMAIL ATTACK:&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;In the sendmail attack, the worm opens a TCP connection to another&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;machine&#39;s sendmail (the SMTP port), invokes debug mode, and sends a&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;RCPT TO that requests its data be piped through a shell.  That data, a&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;shell script (first-stage bootstrap) creates a temporary second-stage&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;bootstrap file called x$$,l1.c (where &#39;$$&#39; is the current process ID).&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;This is a small (40-line) C program.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The first-stage bootstrap compiles this program with the local cc and&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;executes it with arguments giving the Internet hostid/socket/password&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;of where it just came from.  The second-stage bootstrap (the compiled&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;C program) sucks over two object files, x$$,vax.o and x$$,sun3.o from&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;the attacking host.  It has an array for 20 file names (presumably for&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;20 different machines), but only two (vax and sun) were compiled in to&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;this code.  It then figures out whether it&#39;s running under BSD or&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;SunOS and links the appropriate file against the C library to produce&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;an executable program called /usr/tmp/sh - so it looks like the Bourne&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;shell to anyone who looked there.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;THE FINGERD ATTACK:&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;In the fingerd attack, it tries to infiltrate systems via a bug in&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;fingerd, the finger daemon.  Apparently this is where most of its&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;success was (not in sendmail, as was originally reported).  When&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;fingerd is connected to, it reads its arguments from a pipe, but&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;doesn&#39;t limit how much it reads.  If it reads more than the internal&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;512-byte buffer allowed, it writes past the end of its stack.  After&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;the stack is a command to be executed (&quot;/usr/ucb/finger&quot;) that&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;actually does the work.  On a VAX, the worm knew how much further from&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;the stack it had to clobber to get to this command, which it replaced&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;with the command &quot;/bin/sh&quot; (the bourne shell).  So instead of the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;finger command being executed, a shell was started with no arguments.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Since this is run in the context of the finger daemon, stdin and&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;stdout are connected to the network socket, and all the files were&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;sucked over just like the shell that sendmail provided.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;THE RSH/REXEC ATTACK:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The third way it tried to get into systems was via the .rhosts and&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;/etc/hosts.equiv files to determine &#39;trusted&#39; hosts where it might be&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;able to migrate to.  To use the .rhosts feature, it needed to actually&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;get into people&#39;s accounts - since the worm was not running as root&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;(it was running as daemon) it had to figure out people&#39;s passwords.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;To do this, it went through the /etc/passwd file, trying to guess&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;passwords.  It tried combinations of: the username, the last, first,&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;last+first, nick names (from the GECOS field), and a list of special&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&quot;popular&quot; passwords:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;aaa           cornelius     guntis      noxious      simon&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;academia      couscous      hacker      nutrition    simple&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;aerobics      creation      hamlet      nyquist      singer&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;airplane      creosote      handily     oceanography single&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;albany        cretin        happening   ocelot       smile&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;albatross     daemon        harmony     olivetti     smiles&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;albert        dancer        harold      olivia       smooch&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;alex          daniel        harvey      oracle       smother&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;alexander     danny         hebrides    orca         snatch&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;algebra       dave          heinlein    orwell       snoopy&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;aliases       december      hello       osiris       soap&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;alphabet      defoe         help        outlaw       socrates&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;ama           deluge        herbert     oxford       sossina&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;amorphous     desperate     hiawatha    pacific      sparrows&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;analog        develop       hibernia    painless     spit&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;anchor        dieter        honey       pakistan     spring&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;andromache    digital       horse       pam          springer&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;animals       discovery     horus       papers       squires&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;answer        disney        hutchins    password     strangle&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;anthropogenic dog           imbroglio   patricia     stratford&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;anvils        drought       imperial    penguin      stuttgart&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;anything      duncan        include     peoria       subway&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;aria          eager         ingres      percolate    success&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;ariadne       easier        inna        persimmon    summer&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;arrow         edges         innocuous   persona      super&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;arthur        edinburgh     irishman    pete         superstage&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;athena        edwin         isis        peter        support&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;atmosphere    edwina        japan       philip       supported&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;aztecs        egghead       jessica     phoenix      surfer&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;azure         eiderdown     jester      pierre       suzanne&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bacchus       eileen        jixian      pizza        swearer&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bailey        einstein      johnny      plover       symmetry&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;banana        elephant      joseph      plymouth     tangerine&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bananas       elizabeth     joshua      polynomial   tape&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bandit        ellen         judith      pondering    target&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;banks         emerald       juggle      pork         tarragon&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;barber        engine        julia       poster       taylor&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;baritone      engineer      kathleen    praise       telephone&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bass          enterprise    kermit      precious     temptation&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bassoon       enzyme        kernel      prelude      thailand&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;batman        ersatz        kirkland    prince       tiger&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;beater        establish     knight      princeton    toggle&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;beauty        estate        ladle       protect      tomato&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;beethoven     euclid        lambda      protozoa     topography&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;beloved       evelyn        lamination  pumpkin      tortoise&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;benz          extension     larkin      puneet       toyota&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;beowulf       fairway       larry       puppet       trails&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;berkeley      felicia       lazarus     rabbit       trivial&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;berliner      fender        lebesgue    rachmaninoff trombone&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;beryl         fermat        lee         rainbow      tubas&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;beverly       fidelity      leland      raindrop     tuttle&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bicameral     finite        leroy       raleigh      umesh&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bob           fishers       lewis       random       unhappy&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;brenda        flakes        light       rascal       unicorn&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;brian         float         lisa        really       unknown&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bridget       flower        louis       rebecca      urchin&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;broadway      flowers       lynne       remote       utility&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;bumbling      foolproof     macintosh   rick         vasant&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;burgess       football      mack        ripple       vertigo&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;campanile     foresight     maggot      robotics     vicky&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cantor        format        magic       rochester    village&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cardinal      forsythe      malcolm     rolex        virginia&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;carmen        fourier       mark        romano       warren&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;carolina      fred          markus      ronald       water&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;caroline      friend        marty       rosebud      weenie&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cascades      frighten      marvin      rosemary     whatnot&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;castle        fun           master      roses        whiting&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cat           fungible      maurice     ruben        whitney&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cayuga        gabriel       mellon      rules        will&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;celtics       gardner       merlin      ruth         william&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cerulean      garfield      mets        sal          williamsburg&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;change        gauss         michael     saxon        willie&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;charles       george        michelle    scamper      winston&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;charming      gertrude      mike        scheme       wisconsin&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;charon        ginger        minimum     scott        wizard&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;chester       glacier       minsky      scotty       wombat&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cigar         gnu           moguls      secret       woodwind&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;classic       golfer        moose       sensor       wormwood&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;clusters      gorgeous      morley      serenity     yaco&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;coffee        gorges        mozart      sharks       yang&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;coke          gosling       nancy       sharon       yellowstone&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;collins       gouge         napoleon    sheffield    yosemite&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;commrades     graham        nepenthe    sheldon      zap&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;computer      gryphon       ness        shiva        zimmerman&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;condo         guest         network     shivers&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cookie        guitar        newton      shuttle&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;cooper        gumption      next        signature&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;[I wouldn&#39;t have picked some of these as &quot;popular&quot; passwords, but&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;then again, I&#39;m not a worm writer.  What do I know?]&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;When everything else fails, it opens /usr/dict/words and tries every&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;word in the dictionary.  It is pretty successful in finding passwords,&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;as most people don&#39;t choose them very well.  Once it gets into&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;someone&#39;s account, it looks for a .rhosts file and does an &#39;rsh&#39;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;and/or &#39;rexec&#39; to another host, it sucks over the necessary files into&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;/usr/tmp and runs /usr/tmp/sh to start all over again.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Between these three methods of attack (sendmail, fingerd, .rhosts)&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;it was able to spread very quickly.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;THE WORM ITSELF:&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The &#39;sh&#39; program is the actual worm.  When it starts up it clobbers&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;its argv array so a &#39;ps&#39; will not show its name.  It opens all its&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;necessary files, then unlinks (deletes) them so they can&#39;t be found&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;(since it has them open, however, it can still access the contents).&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;It then tries to infect as many other hosts as possible - when it&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;sucessfully connects to one host, it forks a child to continue the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;infection while the parent keeps on trying new hosts.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;One of the things it does before it attacks a host is connect to the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;telnet port and immediately close it.  Thus, &quot;telnetd: ttloop: peer&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;died&quot; in /usr/adm/messages means the worm attempted an attack.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The worm&#39;s role in life is to reproduce - nothing more.  To do that it&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;needs to find other hosts.  It does a &#39;netstat -r -n&#39; to find local&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;routes to other hosts &amp;amp; networks, looks in /etc/hosts, and uses the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;yellow pages distributed hosts file if it&#39;s available.  Any time it&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;finds a host, it tries to infect it through one of the three methods,&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;see above.  Once it finds a local network (like 129.63.nn.nn for&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;ulowell) it sequentially tries every address in that range.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;If the system crashes or is rebooted, most system boot procedures&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;clear /tmp and /usr/tmp as a matter of course, erasing any evidence.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;However, sendmail log files show mail coming in from user /dev/null&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;for user /bin/sed, which is a tipoff that the worm entered.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Each time the worm is started, there is a 1/15 chance (it calls&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;random()) that it sends a single byte to ernie.berkeley.edu on some&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;magic port, apparently to act as some kind of monitoring mechanism.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;THE CRACKDOWN:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Three main &#39;swat&#39; teams from Berkeley, MIT and Purdue found copies of&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;the VAX code (the .o files had all the symbols intact with somewhat&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;meaningful names) and disassembled it into about 3000 lines of C.  The&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;BSD development team poked fun at the code, even going so far to point&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;out bugs in the code and supplying source patches for it!  They have&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;not released the actual source code, however, and refuse to do so.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;That could change - there are a number of people who want to see the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;code.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Portions of the code appear incomplete, as if the program development&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;was not yet finished.  For example, it knows the offset needed to&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;break the BSD fingerd, but doesn&#39;t know the correct offset for Sun&#39;s&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;fingerd (which causes it to dump core); it also doesn&#39;t erase its&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;tracks as cleverly as it might; and so on.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The worm uses a variable called &#39;pleasequit&#39; but doesn&#39;t correctly&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;initialize it, so some folks added a module called _worm.o to the C&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;library, which is produced from:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;int pleasequit = -1;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;the fact that this value is set to -1 will cause it to exit after one&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;iteration.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The close scrutiny of the code also turned up comments on the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;programmer&#39;s style.  Verbatim from someone at MIT:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;From disassembling the code, it looks like the programmer&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;is really anally retentive about checking return codes,&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;and, in addition, prefers to use array indexing instead of&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;pointers to walk through arrays.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Anyone who looks at the binary will not see any embedded strings -&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;they are XOR&#39;ed with 81 (hex).  That&#39;s how the shell commands are&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;imbedded.  The &quot;obvious&quot; passwords are stored with their high bit set.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Although it spreads very fast, it is somewhat slowed down by the fact&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;that it drives the load average up on the machine - this is due to all&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;the encryptions going on, and the large number of incoming worms from&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;other machines.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;[Initially, the fastest defense against the worm is is to create a&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;directory called /usr/tmp/sh.  The script that creates /usr/tmp/sh&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;from one of the .o files checks to see if /usr/tmp/sh exists, but not&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;to see if it&#39;s a directory.  This fix is known as &#39;the condom&#39;.]&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;NOW WHAT?&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;None of the ULowell machines were hit by the worm.  When BBN staffers&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;found their systems infected, they cut themselves off from all other&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;hosts.  Since our connection to the Internet is through BBN, we were&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;cut off as well.  Before we were cut off, I received mail about the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;sendmail problem and installed a patch to disable the feature the worm&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;uses to get in through sendmail.  I had made local modifications to&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;fingerd which changed the offsets, so any attempt to scribble over the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;stack would probably have ended up in a core dump.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Most Internet systems running 4.3BSD or SunOS have installed the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;necessary patches to close the holes and have rejoined the Internet.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;As you would expect, there is a renewed interest in system/network&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;security, finding and plugging holes, and speculation over what&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;will happen to the worm&#39;s creator.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;If you haven&#39;t read or watched the news, various log files have named&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;the responsible person as Robert Morris Jr., a 23-year old doctoral&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;student at Cornell.  His father is head of the National Computer&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Security Center, the NSA&#39;s public effort in computer security, and has&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;lectured widely on security aspects of UNIX.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Associates of the student claim the worm was a &#39;mistake&#39; - that he&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;intended to unleash it but it was not supposed to move so quickly or&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;spread so much.  His goal (from what I understand) was to have a&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;program &#39;live&#39; within the Internet.  If the reports that he intended&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;it to spread slowly are true, then it&#39;s possible that the bytes sent&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;to ernie.berkeley.edu were intended to monitor the spread of the&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;worm.  Some news reports mentioned that he panicked when, via some&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&quot;monitoring mechanism&quot; he saw how fast it had propagated.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;A source inside DEC reports that although the worm didn&#39;t make much&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;progress there, it was sighted on several machines that wouldn&#39;t be&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;on its normal propagation path, i.e. not gateways and not on the same&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;subnet.  These machines are not reachable from the outside.  Morris&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;was a summer intern at DEC in &#39;87.  He might have included names or&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;addresses he remembered as targets for infesting hidden internal&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;networks.  Most of the DEC machines in question belong to the group he&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;worked in.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The final word has not been written - I don&#39;t think the FBI have even&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;met with this guy yet.  It will be interesting to see what happens.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;ftp://coast.cs.purdue.edu/pub/doc/morris_worm/worm.paper&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;ftp://coast.cs.purdue.edu/pub/doc/morris_worm/worm.paper&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/1971594377827496085/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2011/02/report-about-morris-worm.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/1971594377827496085'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/1971594377827496085'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2011/02/report-about-morris-worm.html' title='Report about the Morris Worm'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-7577517735338422734</id><published>2011-02-18T11:52:00.000+08:00</published><updated>2011-02-18T11:52:27.676+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="v"/><title type='text'>Robert Thomas Morris</title><content type='html'>&lt;b&gt;Robert T. Morris&lt;/b&gt;, the author of the &lt;b&gt;Internet Worm&lt;/b&gt; program, was&lt;br /&gt;
convicted of a Federal felony in the case.  The law involved was &lt;i&gt;18 USC&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;1030 (A)(5)(a), the Computer Crime and Abuse Act of 1986&lt;/i&gt;.  He was found&lt;br /&gt;
guilty in &lt;b&gt;February of 1990&lt;/b&gt; in US District Court in Syracuse, NY.&lt;br /&gt;
&lt;br /&gt;
In May of 1990, he was sentenced -- outside of Federal sentencing&lt;br /&gt;
guidelines -- to &lt;i&gt;3 years of probation&lt;/i&gt;, &lt;i&gt;400 hours of community service&lt;/i&gt;,&lt;br /&gt;
and &lt;i&gt;$10,050 in fines plus probation costs&lt;/i&gt;.  His lawyers appealed the&lt;br /&gt;
conviction to the Circuit Court of Appeals, and the conviction was&lt;br /&gt;
upheld.  His lawyers then appealed to the Supreme Court, but the Court&lt;br /&gt;
declined to hear the case -- leaving the conviction intact.&lt;br /&gt;
&lt;br /&gt;
For a while, Robert was (allegedly) working as a programmer&lt;br /&gt;
(non-security related) for &lt;b&gt;CenterLine Software&lt;/b&gt; (makers of CodeCenter,&lt;br /&gt;
et. al.).  More recently, Robert has been working on his Ph.D. under&lt;br /&gt;
the direction of H.T. Kung at Harvard University.  He is also involved&lt;br /&gt;
with the ViaWeb company: &lt;http: company.html=&quot;&quot; www.viaweb.com=&quot;&quot;&gt;.&lt;br /&gt;
&lt;br /&gt;
To the best of my knowledge, he has not spoken publicly about the&lt;br /&gt;
incident, nor has he attempted to work in computer security.&lt;br /&gt;
&lt;br /&gt;
--gene spafford&lt;br /&gt;
Feb 1996&lt;br /&gt;
&lt;br /&gt;
Here&#39;s a [slightly edited] news article summarizing references to the&lt;br /&gt;
Internet Worm:&lt;br /&gt;
&lt;br /&gt;
From: rgasch@nl.oracle.com (Robert Gasch)&lt;br /&gt;
Newsgroups: comp.virus&lt;br /&gt;
Subject: Internet Worm SUMMARY (UNIX)&lt;br /&gt;
Date: 23 Sep 92 11:33:51 GMT&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A while back I requested references regarding papers about the&lt;br /&gt;
internet worm of November 88. Here is the promised summary of articles&lt;br /&gt;
which I have collected. These seem to be the major reports covering&lt;br /&gt;
the incident. There are doubtless a million other newspaper clippings&lt;br /&gt;
one could add to this list but I doubt that most of those would be&lt;br /&gt;
very informative as the articles below cover the subject in depth.&lt;br /&gt;
&lt;br /&gt;
The number after the authors name indicates the source I&lt;br /&gt;
obtained the particular article from. All of these articles are&lt;br /&gt;
availible from numerous sources so don&#39;t be surprised when you stuble&lt;br /&gt;
across these articles somewhere else.&lt;br /&gt;
&lt;br /&gt;
I&#39;d like to apologize that it took me so long to compile this&lt;br /&gt;
list but I do not have direct FTP access and have to work via an FTP&lt;br /&gt;
server which slows things down. Lastly I&#39;d want to thank all the&lt;br /&gt;
people who responded to my query and to all the kind souls that&lt;br /&gt;
actually sent me articles.&lt;br /&gt;
&lt;br /&gt;
The archives which I obtained the articles from are a good&lt;br /&gt;
place to nose around for other interesting things regarding security&lt;br /&gt;
and viruses. I found some worthwhile reading there.&lt;br /&gt;
&lt;br /&gt;
If anybody has any other articles which I did not catch then&lt;br /&gt;
please let me know as I&#39;d like to read them myself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here&#39;s the list:&lt;br /&gt;
Eugene Spafford: &lt;br /&gt;
The Internet Worm Program: an Analysis (Purdue CS Technical&lt;br /&gt;
Report TR-CSD-823) (1)&lt;br /&gt;
The Internet Worm Incident (Purdue CS Technical Report&lt;br /&gt;
TR-CSD-933) (1)&lt;br /&gt;
The Internet Worm: Crisis and Aftermath (2)&lt;br /&gt;
ACM, June 1989, vol 32, number 6 &lt;br /&gt;
&lt;br /&gt;
Donn Seeley:&lt;br /&gt;
A Tour of the Worm (1)&lt;br /&gt;
- needs some hacking around before it will print on&lt;br /&gt;
a non-laserwriter&lt;br /&gt;
&lt;br /&gt;
Mark Eichin and Jon Rochlins:&lt;br /&gt;
With a Microscope and Tweezers: An Analysis of the Internet Virus&lt;br /&gt;
of November 1988 (also knows as the MIT paper) (1)&lt;br /&gt;
&lt;br /&gt;
The Cornell Commission (Ted Eisenberg, David Gries and others):&lt;br /&gt;
The Computer Worm (3)&lt;br /&gt;
Availible from Cornell (call 607-255-3324)&lt;br /&gt;
&lt;br /&gt;
United States Court of Appeals (1)&lt;br /&gt;
Document 928 F2D 504 - Court statement on Morris&#39; appeal&lt;br /&gt;
&lt;br /&gt;
Denning&lt;br /&gt;
Computers Under Attack: Intruders, Worms and Viruses&lt;br /&gt;
Addison Wesley Pub Co Inc. (ISBN: 0-201-53067-8)&lt;br /&gt;
I&#39;ve never seen this one so I can&#39;t judge if it&#39;s any decent&lt;br /&gt;
but I&#39;ve included it for sake of completeness.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
(1) - coast.cs.purdue.edu (/pub/doc/morris_worm)&lt;br /&gt;
(2) - any good technical library&lt;br /&gt;
(3) - call or write cornell technical publications (607-255-3324)&lt;br /&gt;
&lt;br /&gt;
&lt;/http:&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/7577517735338422734/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2011/02/robert-thomas-morris.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/7577517735338422734'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/7577517735338422734'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2011/02/robert-thomas-morris.html' title='Robert Thomas Morris'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-332659317333121290</id><published>2011-01-07T14:40:00.001+08:00</published><updated>2011-01-07T14:50:28.288+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cerita lawak"/><category scheme="http://www.blogger.com/atom/ns#" term="Computer"/><title type='text'>Things about computer you can learn from movie</title><content type='html'>Funny things you see in every movie that has a computer scene. If you have more, please link it in the comment form.&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;b&gt;Word&lt;/b&gt; processors never display a cursor.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;You &lt;/b&gt;never have to use the spacebar when typing long sentences.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;All &lt;/b&gt;monitors display 2 inch high letters.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;High-tech&lt;/b&gt; computers, such as those used by NASA, the CIA, or some such governmental institution, have easy-to-understand graphical interfaces.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Those&lt;/b&gt; that don&#39;t will have incredibly powerful text-based command shells that can correctly understand and execute commands typed in plain English.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Corollary&lt;/b&gt;: You can gain access to any information you want by simply typing &quot;ACCESS ALL OF THE SECRET FILES&quot; on any keyboard.&lt;br /&gt;
&lt;br /&gt;
&lt;b id=&quot;smoke&quot;&gt; Likewise&lt;/b&gt;, you can infect a computer with a destructive virus by simply typing &quot;UPLOAD VIRUS.&quot; Viruses cause temperatures in computers, just like they do in humans. After a while, smoke billows out of disk drives and monitors.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; All &lt;/b&gt;computers are connected. You can access the information on the villain&#39;s desktop computer, even if it&#39;s turned off.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Powerful &lt;/b&gt;computers beep whenever you press a key or whenever the screen changes. Some computers also slow down the output on the screen so that it doesn&#39;t go faster than you can read. The *really* advanced ones also emulate the sound of a dot-matrix printer as the characters come across the screen.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; All &lt;/b&gt;computer panels have thousands of volts and flash pots just underneath the surface. Malfunctions are indicated by a bright flash, a puff of smoke, a shower of sparks, and an explosion that forces you backward. (See &lt;a href=&quot;http://kuyau.blogspot.com/2011/01/things-about-computer-you-can-learn.html#smoke&quot;&gt;above&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; People &lt;/b&gt;typing away on a computer will turn it off without saving the data.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; A hacker&lt;/b&gt; can get into the most sensitive computer in the world before intermission and guess the secret password in two tries.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Any &lt;/b&gt;PERMISSION DENIED has an OVERRIDE function.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Complex &lt;/b&gt;calculations and loading of huge amounts of data will be accomplished in under three seconds. In the movies, modems transmit data at two gigabytes per second.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; When &lt;/b&gt;the power plant/missile site/whatever overheats, all the control panels will explode, as will the entire building.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; If you&lt;/b&gt; display a file on the screen and someone deletes the file, it also disappears from the screen. There are no ways to copy a backup file -- and there are no undelete utilities.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; If a disk&lt;/b&gt; has got encrypted files, you are automatically asked for a password when you try to access it.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; No matter&lt;/b&gt; what kind of computer disk it is, it&#39;ll be readable by any system you put it into. All application software is usable by all computer platforms.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; The more high-tech&lt;/b&gt; the equipment, the more buttons it has. However, everyone must have been highly trained, because the buttons aren&#39;t labelled.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Most computers&lt;/b&gt;, no matter how small, have reality-defying three-dimensional, real-time, photo-realistic animated graphics capability.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Laptops&lt;/b&gt;, for some strange reason, always seem to have amazing real-time video phone capabilities and the performance of a CRAY-MP.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Whenever &lt;/b&gt;a character looks at a VDU, the image is so bright that it projects itself onto his/her face.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Computers &lt;/b&gt;never crash during key, high-intensity activities. Humans operating computers never make mistakes under stress.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt; Programs &lt;/b&gt;are fiendishly perfect and never have bugs that slow down users.</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/332659317333121290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2011/01/things-about-computer-you-can-learn.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/332659317333121290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/332659317333121290'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2011/01/things-about-computer-you-can-learn.html' title='Things about computer you can learn from movie'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-7701620356403470327</id><published>2010-12-16T13:03:00.002+08:00</published><updated>2011-01-05T10:18:54.071+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="7"/><category scheme="http://www.blogger.com/atom/ns#" term="vista"/><category scheme="http://www.blogger.com/atom/ns#" term="window 7"/><category scheme="http://www.blogger.com/atom/ns#" term="windows vista"/><category scheme="http://www.blogger.com/atom/ns#" term="windows XP"/><title type='text'>USB unsuccessful installed in windows 7 vista</title><content type='html'>Installing USB driver seems to face a lot of problem in Windows 7 and Windows Vista. Even when you try to install your &lt;b&gt;broadband&lt;/b&gt; driver, these two windows will give an error like, &quot;&lt;i&gt;Device driver software was not successfully installed&lt;/i&gt;&quot;. This problem is likely because some of your registry key is &lt;b&gt;missing&lt;/b&gt;. This problem never appear on Windows XP machine. (i guess)&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
Here is a simple solution for this problem.&lt;br /&gt;
&lt;br /&gt;
1- Click the &lt;b&gt;windows&lt;/b&gt; logo in your taskbar and type &lt;b&gt;regedit&lt;/b&gt; then press enter!&lt;br /&gt;
2- If the User Control (or whatever it is) appear, click &lt;b&gt;yes&lt;/b&gt; and voilla!! the registry window will appear.&lt;br /&gt;
3- Now, navigate to &lt;b&gt;HKEY_LOCAL_MACHINE&lt;/b&gt;, click the small plus sign. Then, click again the small plus sign next to &lt;b&gt;SOFTWARE&lt;/b&gt;, after that the small plus sign next to &lt;b&gt;microsoft&lt;/b&gt;, then finally, the small plus sign next to &lt;b&gt;windows&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
the full location will be &amp;gt;&amp;gt;&lt;br /&gt;
&lt;b style=&quot;background-color: yellow; color: blue;&quot;&gt;HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows&lt;/b&gt;&lt;br /&gt;
4- On the &lt;b&gt;windows&lt;/b&gt; tree, click the &lt;b&gt;current version&lt;/b&gt; folder. DO NOT click the plus sign!!!&lt;br /&gt;
5- Look for &lt;b&gt;DevicePath&lt;/b&gt; on left column. If you DONT see any &lt;b&gt;DevicePath&lt;/b&gt;, you have to create it manually.&lt;br /&gt;
&lt;br /&gt;
To create the registry key manually, simply right-click on any white space and a menu will appear. Click &lt;b&gt;new&lt;/b&gt; and select &lt;b&gt;Expandable String Value&lt;/b&gt;. Name the new key as &lt;b&gt;DevicePath&lt;/b&gt; then press Enter.&lt;br /&gt;
&lt;br /&gt;
Double-click your newly created key and type this &amp;gt;&amp;gt; &lt;b style=&quot;color: blue;&quot;&gt;%systemroot%\inf;%systemroot%\system32&lt;/b&gt; (or, you can copy and paste this)&lt;br /&gt;
&lt;br /&gt;
Finally, restart your computer and re-install your USB. Your installation will progress sucessfully!&lt;br /&gt;
&lt;br /&gt;
(i will add image, maybe a video later)&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/7701620356403470327/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2010/12/usb-unsuccessful-installed-in-windows-7.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/7701620356403470327'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/7701620356403470327'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2010/12/usb-unsuccessful-installed-in-windows-7.html' title='USB unsuccessful installed in windows 7 vista'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-5187992199613071758</id><published>2010-03-08T10:05:00.001+08:00</published><updated>2011-01-05T10:19:58.486+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="alert"/><title type='text'>Dangers of Car Air-Conditioning</title><content type='html'>Danger of Car air-conditioning. I get this post from my friend through e-mail. Read CAREFULLY and please re-think of using car air-conditioning too much.&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
No wonder more folks are dying from cancer than ever before.  We wonder where this stuff comes from but here is an example that explains a lot of the cancer causing incidents.  Hmmm.  Many people are in their cars first thing in the morning and the last thing at night, 7 days a week.   As I read this, it makes me feel guilty and ill.  &lt;b&gt;Please pass this on to as many people as possible&lt;/b&gt;. Guess its not too late to make some changes&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;PRECAUTION&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
1. Please do NOT turn on A/C as soon as you enter the car. &lt;br /&gt;
&lt;br /&gt;
2. Open the  windows after you enter your car&lt;br /&gt;
&lt;br /&gt;
3. Turn ON the AC after a couple of minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;WHY&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
According to a research,&lt;br /&gt;
&lt;br /&gt;
the &lt;i&gt;car dashboard&lt;/i&gt;, &lt;i&gt;sofa&lt;/i&gt;, &lt;i&gt;air freshener&lt;/i&gt; &lt;span style=&quot;color: red;&quot;&gt;emit Benzene&lt;/span&gt;,&lt;br /&gt;
&lt;br /&gt;
a Cancer causing toxin &lt;br /&gt;
(&lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;carcinogen &lt;/span&gt;&lt;/b&gt;- take time to observe the smell of heated plastic in your car).&lt;br /&gt;
&lt;br /&gt;
In addition to causing cancer, Benzene&lt;span style=&quot;color: red;&quot;&gt; &lt;b&gt;poisons your bones&lt;/b&gt;&lt;/span&gt;, &lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;causes anemia&lt;/span&gt;&lt;/b&gt; and &lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;reduces white blood cells&lt;/span&gt;&lt;/b&gt;. Prolonged exposure will cause &lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;Leukemia&lt;/span&gt;&lt;/b&gt;,&amp;nbsp; increasing the risk of cancer. Can also cause &lt;b&gt;&lt;span style=&quot;color: red;&quot;&gt;miscarriage&lt;/span&gt;&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
Acceptable Benzene level indoors&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;pre&gt;&lt;span class=&quot;fullpost&quot;&gt;50mg per sq.ft.&lt;/span&gt;&lt;/pre&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
A &lt;span style=&quot;color: blue;&quot;&gt;car parked indoors with windows closed&lt;/span&gt; will contain &lt;span style=&quot;color: red;&quot;&gt;400-800 mg&lt;/span&gt; of Benzene.&lt;br /&gt;
&lt;br /&gt;
If &lt;span style=&quot;color: blue;&quot;&gt;parked outdoors under the sun at a temperature above 60 degrees F&lt;/span&gt;, the Benzene level goes up to &lt;span style=&quot;color: red;&quot;&gt;2000-4000 mg&lt;/span&gt;, 40 times the acceptable level.&lt;br /&gt;
&lt;br /&gt;
People who get into the car, keeping windows closed will inevitably &lt;span style=&quot;color: red;&quot;&gt;inhale&lt;/span&gt;, in quick succession, excessive amounts of the toxin.&lt;br /&gt;
&lt;br /&gt;
Benzene is a toxin that affects your &lt;b&gt;kidney and liver&lt;/b&gt;.. What&#39;s worse, it is extremely &lt;b&gt;difficult &lt;/b&gt;for your body to expel this toxic stuff.&lt;br /&gt;
&lt;br /&gt;
So friends, &lt;u&gt;please open the windows and door of your car - give time for interior to air out -dispel the deadly stuff - before you enter&lt;/u&gt;.&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/5187992199613071758/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2010/03/dangers-of-car-air-conditioning.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5187992199613071758'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5187992199613071758'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2010/03/dangers-of-car-air-conditioning.html' title='Dangers of Car Air-Conditioning'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-4580183917501854662</id><published>2010-02-13T18:34:00.002+08:00</published><updated>2010-08-23T07:24:54.115+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="crack"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="hacking"/><title type='text'>moviexplayer - A scam software</title><content type='html'>Recently, i download some preview movie using p2p program specifically ARES. It took a few days to finish and eat some of my internet bandwidth.&lt;br /&gt;
&lt;br /&gt;
When the download complete, i try to open it but the movie is not playing correctly. All it display is the stupid advertisement to download some software in order to play the movie.&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Go to their website and you will be presented with this stupid ads!&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy7JKq5NPYfndDpkFa4VqLYrCJQLfC8qgRuLfT6IKYhuvW2vRQCbKepBje9OgpESaF9KOLfBz_13TbiKHqJsZaqsyZc1G7v7wf8jANZsjJnHeNyPZwkrcSK5Ohzk1cakLqkVofWkZU3mA/s1600/moviex_hp.jpg&quot; rel=&quot;lightbox[1]&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijiPkBK5puOUKdmiT9F51jSuGhIGqPoUfAZ2xLW2lo-Hpzhho60j2segcf7l3vz2l1vJwAfy9KJbFnrH_Z6alxInlXir3Nb9YNDLG1QoMpKogD0eVQ6RLigeZ-n4yo3yt6O-iLfhhpjA4/s320/moviex_hp_th.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Guess what, this &#39;software&#39; has it&#39;s own fans, see the pic below.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdyzD_ETDG9depTW15n3CROgKeT_NAy2vSt-2AGMpdckno-Cr_KxPbdsXVWg2mWWcNqqHmXj7jRJrMeqymULpof-tBUWplpX4ddLW0mPtfmJU8NctAVuTOepFjTMPuwbG4iEtf3I5TXvw/s1600/testi.jpg&quot; rel=&quot;lightbox[1]&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;moviexplayer&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiveBxeQk-p0uYkhJakEF9AD_JQmeQbdyvwhagOT5tv8e1oZ-bEoHKMmLc3_UUIqxp1A6RmU3BQ_wVYhQft5plkm1ruD0vTKryDK4a6fFceQ0mNvu5R-2CqlDOUj4EOftK6E5RYjoiw6I4/s320/testi_th.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
ALL THESE TESTIMONIAL ARE FAKE!!&lt;br /&gt;
&lt;br /&gt;
Please, do not buy or pay for this shitty software. They will only plant a spyware or some stupid virus in your computer to STEAL your personal info such as CREDIT CARD or banking info.&lt;br /&gt;
&lt;br /&gt;
For those who already installed this software, use YourUninstaller to get rid of this stupid software. Update you antivirus and full scan your computer.&lt;br /&gt;
&lt;br /&gt;
** If you had pay the money using paypal, simply put make a &#39;dispute&#39; with your transaction. It will cancel their account and force them to give back your money.&lt;br /&gt;
&lt;br /&gt;
** Never use p2p software such as ARES to download movie from p2p site. I recommend you go to fenopy, thePirateBay, or ISOhunt to download some movie&lt;br /&gt;
&lt;br /&gt;
** DO read the comments before downloading the movie.&lt;br /&gt;
&lt;br /&gt;
** These scammer will use famous ripper name/group such as aXXo, klaXXon, FXG, and other famous ripper group. But i think aXXo will not rip movie anymore. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ONCE again, never pay for this sofware. It is advisable for you to use the money to buy original DVD than buying this crap software.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;If you are reading this, please spread it to your friend or family to avoid them getting scam by this fool.&lt;/b&gt;&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/4580183917501854662/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2010/02/moviexplayer-scam-software.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/4580183917501854662'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/4580183917501854662'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2010/02/moviexplayer-scam-software.html' title='moviexplayer - A scam software'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijiPkBK5puOUKdmiT9F51jSuGhIGqPoUfAZ2xLW2lo-Hpzhho60j2segcf7l3vz2l1vJwAfy9KJbFnrH_Z6alxInlXir3Nb9YNDLG1QoMpKogD0eVQ6RLigeZ-n4yo3yt6O-iLfhhpjA4/s72-c/moviex_hp_th.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-2194870327560714404</id><published>2010-01-30T11:53:00.000+08:00</published><updated>2010-01-30T11:53:19.772+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="hacking"/><title type='text'>worldwide handphone provider codes</title><content type='html'>A full-list of worldwide service provider for handset.&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
41220 = Telephone Development Co,Afghanistan&lt;br /&gt;
41201 = Telephone Systems Int Inc - Afghanistan&lt;br /&gt;
27601 = Albanian Mobile Comms - Albania&lt;br /&gt;
27602 = Vodafone - Albania&lt;br /&gt;
60301 = Algerian Telecom AMN - Algeria&lt;br /&gt;
60302 = Orascom Telecom Algerie Spa - algeria&lt;br /&gt;
54411 = Blue Sky - American Samoa&lt;br /&gt;
21303 = S.T.A. MobilAnd - Andorra&lt;br /&gt;
63102 = Unitel - Angola&lt;br /&gt;
34403 = APUA PCS - Antigua &amp; Barbuda&lt;br /&gt;
72235 = PORT HABLE - Argentina&lt;br /&gt;
72234 = Telecom Personal SA - Argentina&lt;br /&gt;
72207 = UNIFON - Argentina&lt;br /&gt;
28301 = ArmenTel - Armenia&lt;br /&gt;
36301 = SETAR - Aruba&lt;br /&gt;
50506 = Hutchinson 3G - Australia&lt;br /&gt;
50501 = Telstra Mobile Comms - Australia&lt;br /&gt;
50503 = Vodafone - Australia&lt;br /&gt;
50502 = Singtel Optus - Australia&lt;br /&gt;
23205 = Connect Austria One - Austria&lt;br /&gt;
23210 = 3 AT - Austria&lt;br /&gt;
23201 = MobilKom Austria A1 - Austria&lt;br /&gt;
23203 = T-Mobile - Austria&lt;br /&gt;
23207 = Tele.ring - Austria&lt;br /&gt;
40001 = Azercell Telekom B.M. - Azerbaijan&lt;br /&gt;
40002 = J.V.Bakcell GSM 2000 - Azerbaijan&lt;br /&gt;
36439 = Bahamas Telcom Co - Bahamas&lt;br /&gt;
42601 = Batelco - Bahrain&lt;br /&gt;
47001 = Grameen Phone - Bangladesh&lt;br /&gt;
47003 = Sheba Telecom - Bangladesh&lt;br /&gt;
47002 = TM Int&#39;l AKTEL - Bangladesh&lt;br /&gt;
342600 = Cable &amp; Wireless - Barbados&lt;br /&gt;
342??? = Sunbeach Comms - Barbados&lt;br /&gt;
25702 = MTS - Belarus Republic&lt;br /&gt;
25701 = VELCOM - Belarus Republic&lt;br /&gt;
20620 = BASE - Belium&lt;br /&gt;
20601 = Belgacom Mobile Proximus - Belgium&lt;br /&gt;
20610 = Mobistar - Belgium&lt;br /&gt;
70267 = Belize Telecom - Belize&lt;br /&gt;
70268 = Int Telecom INTELCO - Belize&lt;br /&gt;
616004 = BBCOM - Benin&lt;br /&gt;
61601 = LIBERCOM - Benin&lt;br /&gt;
61603 = BeninCell - Benin&lt;br /&gt;
61602 = TELECEL BENIN - Benin&lt;br /&gt;
35002 = BTC MOBILITY - Bermuda&lt;br /&gt;
40211 = BpMobile - Bhutan&lt;br /&gt;
73602 = Entel SA - Bolivia&lt;br /&gt;
73601 = Nuevatel PCS - Bolivia&lt;br /&gt;
21803 = Eronet Mobile Comms - Bosnia Herzegovina&lt;br /&gt;
21805 = Mobilna Srpske - Bosnia Herzegovina&lt;br /&gt;
21890 = Public Enterprise GSMBIH - Bosnia Herzegovina&lt;br /&gt;
65201 = Mascom Wireless - Botswana&lt;br /&gt;
65202 = Orange - Botswana&lt;br /&gt;
724 03,02,04 = TIM Celular - Brazil&lt;br /&gt;
72431 = TNL PCS - Brazil&lt;br /&gt;
52811 = DST Communications - Brunei Darussalam&lt;br /&gt;
28405 = GLOBUL - Bulgaria&lt;br /&gt;
28401 = MobilTel AD M-TEL - Bulgaria&lt;br /&gt;
61302 = CELTEL - Burkina Faso&lt;br /&gt;
61303 = TELECEL Faso SA - Burkina Faso&lt;br /&gt;
64202 = SAFARIS Africell PLC - Burundi&lt;br /&gt;
64201 = Spacetel Burundi - Burndi&lt;br /&gt;
45601 = CamGSM - Cambodia&lt;br /&gt;
45602 = Cambodia Samart Comms - Cambodia&lt;br /&gt;
45618 = Cambodia Shinawatra - Cambodia&lt;br /&gt;
62401 = MTN Cameroon - Cameroon&lt;br /&gt;
64202-OrangelCameroon&lt;br /&gt;
30237 = Microcell Connexions Inc FIDO - Canada&lt;br /&gt;
302-00001 = Fido - Canada&lt;br /&gt;
30272 = Rogers AT&amp;T - Canada&lt;br /&gt;
62501 = Cabo Verde Telecom CVMOVEL - Cape Verde&lt;br /&gt;
346140 = Cable &amp; Wireless - Cavman Islands&lt;br /&gt;
623  = Telecel - Central African Republic&lt;br /&gt;
62201 = Celtel Tchad SA - Chad&lt;br /&gt;
62202 = LIBERTIS Tchad Mobile SA - Chad&lt;br /&gt;
73010 = Entel PCS Telecom. - Chile&lt;br /&gt;
73001 = Entel Telefonia Movil - Chile&lt;br /&gt;
73002 = Telefonica Movil de Chile - Chile&lt;br /&gt;
46000 = China MobileComms Corp - China&lt;br /&gt;
46001 = China Unicom CU-GSM - China&lt;br /&gt;
732103 = Colombia Movil SA - Colombia&lt;br /&gt;
62901 = CelTel Congo - Congo&lt;br /&gt;
62910 = LIBERTIS Telecom - Congo&lt;br /&gt;
63004 = CELLCO - Congo Republic&lt;br /&gt;
63002 = CelTel - Congo Republic&lt;br /&gt;
63089 = OASIS, SAIT Telecom - Congo Republic&lt;br /&gt;
63001 = Vodacom CONGO-GSM - Congo Republic&lt;br /&gt;
71201 = ICE - Costa Rica&lt;br /&gt;
61201 = Comstar Cellular Network - Cote d&#39;Ivoire&lt;br /&gt;
61205 = Loteny Telecom Telecel - Cote d&#39;Ivoire&lt;br /&gt;
61203 = Orange - Cote d&#39;Ivoire&lt;br /&gt;
21901 = HTmobile - Croatia&lt;br /&gt;
21910 = VIPnet - Croatia&lt;br /&gt;
36801 = C_Com - Cuba&lt;br /&gt;
28001 = CYTA GSM - Cyprus&lt;br /&gt;
23003 = Cesky Mobil OSKAR MOBILE - Czech Republic&lt;br /&gt;
23002 = EuroTel Praha - Czech Republic&lt;br /&gt;
23001 = T-Mobile - Czech Republic&lt;br /&gt;
23800 = Debitel - Denmark&lt;br /&gt;
238-00001 = Debitel 3510i  - Denmark&lt;br /&gt;
23830 = Orange - Denmark&lt;br /&gt;
23802 = Sonofon - Denmark&lt;br /&gt;
23801 = TDC Mobil - Denmark&lt;br /&gt;
23820 = Telia Denmark - Denmark&lt;br /&gt;
37001 = Orange - Dominican Republic&lt;br /&gt;
74001 = Conecel - Equador&lt;br /&gt;
60201 = MobiNil - Egypt&lt;br /&gt;
60202 = Vodafone - Egypt&lt;br /&gt;
70601 = CTE Telecom - El Salvador&lt;br /&gt;
62701 = GETESA - Equatorial Guinea&lt;br /&gt;
24801 = AS EMT Estonian Mobile Telephone - Estonia&lt;br /&gt;
24802 = Radiolinja Eesti - Estonia&lt;br /&gt;
24803 = TELE2 - Estonia&lt;br /&gt;
63601 = Ethiopian Telecoms Auth. - Ethiopia&lt;br /&gt;
28801 = Faroese Telecom - Faroe Islands&lt;br /&gt;
28802 = KALL-GSM - Faroe Islands&lt;br /&gt;
54201 = Vodafone Fiji - Fiji&lt;br /&gt;
24414 = Alands Mobiltelefon - Finland&lt;br /&gt;
24409 = Finnet Group - Finland&lt;br /&gt;
24405 = Radiolinja - Finland&lt;br /&gt;
24491 = Sonera Corporation - Finland&lt;br /&gt;
24412 = Suomen 2G Oy - Finland&lt;br /&gt;
24403 = Telia Finland - Finland&lt;br /&gt;
20820 = Bouygues Telecom - France&lt;br /&gt;
20801 = Orange - France&lt;br /&gt;
20810 = SFR - France&lt;br /&gt;
54720 = Tikiphone - French Polynesia&lt;br /&gt;
34020 = Bouygues Telecom - French West Indies&lt;br /&gt;
34001 = Orange Caraibe - French West Indies&lt;br /&gt;
34003 = Saint Martin - French West Indies&lt;br /&gt;
62803 = CelTel Gabon - Gabon Republic&lt;br /&gt;
62801 = Libertis - Gabon Republic&lt;br /&gt;
62802 = Telecel Gabon - Gabon Republic&lt;br /&gt;
60702 = AFricell - Gambia&lt;br /&gt;
60701 = GAMCELL - Gambia&lt;br /&gt;
28201 = Geocell Limited - Georgia&lt;br /&gt;
28202 = Magti GSM - Georgia&lt;br /&gt;
26203 = E-Plus Mobilfunk - Germany&lt;br /&gt;
26213 = Mobilcom Multimedia - Germany&lt;br /&gt;
26207 = O2 - Germany&lt;br /&gt;
26201 = T-Mobile - Germany&lt;br /&gt;
26202 = Vodafone - Germany&lt;br /&gt;
62002 = Ghana Telecom Mobile - Ghana&lt;br /&gt;
62003 = Millicom MOBITEL - Ghana&lt;br /&gt;
62001 = ScanCom SPACEFON - Ghana&lt;br /&gt;
26601 = Gibraltar Telecoms Gibtel - Gibraltar&lt;br /&gt;
20201 = Cosmote - Greece&lt;br /&gt;
20209 = Info Quest - Greece&lt;br /&gt;
20209 = Q-Telecom - Greece&lt;br /&gt;
20210 = Telestet - Greece&lt;br /&gt;
20205 = Vodafone Panafon - Greece&lt;br /&gt;
29001 = Tele Greenland - Greenland&lt;br /&gt;
35213 = Trans-World Telecom - Grenada&lt;br /&gt;
23455 = Cable &amp; Wireless - Guernsey&lt;br /&gt;
61102 = Sotelgui Lagui - Guinea&lt;br /&gt;
61101 = Mobilis Guinea - Guinea&lt;br /&gt;
45400 = Hong Kong Telecom CSL - Hong Kong&lt;br /&gt;
45404 = Hutchison Telecom Orange Dual Band - Hong Kong&lt;br /&gt;
45403 = Hutchinson Telecom - Hong Kong&lt;br /&gt;
45410 = New World PCS - Hong Kong&lt;br /&gt;
45412 = Peoples Telephone - Hong Kong&lt;br /&gt;
45406 = SmarTone Mobile Comms - Hong Kong&lt;br /&gt;
45416 = Sunday Comms - Hong Kong&lt;br /&gt;
21601 = Pannon GSM - Hungary&lt;br /&gt;
21670 = Vodaphone - Hungary&lt;br /&gt;
21630 = Westel 900 GSM Mobile - Hungary&lt;br /&gt;
27404 = Viking Wireless - Iceland&lt;br /&gt;
27401 = Iceland Telecom Siminn - Iceland&lt;br /&gt;
27403 = Islandssimi - Iceland&lt;br /&gt;
27402 = TAL hf - Iceland&lt;br /&gt;
40415 = Aircel Digilink - India&lt;br /&gt;
40460 = Aircell Digilink Rajathan:India&lt;br /&gt;
40401 = Aircell Digilink Haryana - India&lt;br /&gt;
40442 = Aircell - India&lt;br /&gt;
40427 = BPL Mobile Maharashtra/Goa - India&lt;br /&gt;
40443 = BPL Mobile Nadu/Pondicherry - India&lt;br /&gt;
40446 = BPL Mobile Kerala - India&lt;br /&gt;
40421 = BPL Mobile Mumbai - India&lt;br /&gt;
404 34,38,51,53,54,55,57,58,59,62,64,66,71,72,73,74,75,76,77,79,80 = CellOne - India&lt;br /&gt;
40410 = Airtel - Delhi - India&lt;br /&gt;
40431 = AirTel - Kolkata - India&lt;br /&gt;
40496 = AirTel - Haryana - India&lt;br /&gt;
40495 = AirTel - Kerala - India&lt;br /&gt;
40494 = AirTel - Tamilnadu - India&lt;br /&gt;
40497 = AirTel - Uttar Pradesh (West) - India&lt;br /&gt;
40492 = AirTel - Mumbai Metro - India&lt;br /&gt;
40498 = AirTel - Gujarat - India&lt;br /&gt;
40490 = AirTel - Maharashtra - India&lt;br /&gt;
40493 = AirTel - Madhya Pradesh - India&lt;br /&gt;
40445 = AirTel - Karnataka - India&lt;br /&gt;
40449 = AirTel - Andhra Pradesh - India&lt;br /&gt;
40402 = AirTel - Punjab - India&lt;br /&gt;
40440 = AirTel - City Of Madras - India&lt;br /&gt;
40403 = AirTel - Himachai Pradesh Circle - India&lt;br /&gt;
40412 = ESCOTEL Haryana - India&lt;br /&gt;
40456 = ESCOTEL UP(W) - India&lt;br /&gt;
40419 = ESCOTEL Kerala - India&lt;br /&gt;
40405 = HUTCH - India&lt;br /&gt;
40470 = Oasis Cellular - India&lt;br /&gt;
40413 = HESL - Andhra Pradesh - India&lt;br /&gt;
40484 = HESL - Chennai - India&lt;br /&gt;
40486 = HESL - Karnataka - India&lt;br /&gt;
40411 = HUTCH - India&lt;br /&gt;
40420 = Orange - India&lt;br /&gt;
404030 = HUTCH - City of Calcutta - India&lt;br /&gt;
40422 = IDEA - Maharashtra Circle - India&lt;br /&gt;
40407 = IDEA - Andhra Pradesh Circle - India&lt;br /&gt;
40424 = IDEA - Gujarat Circle - India&lt;br /&gt;
40404 = IDEA - Delhi Circle - India&lt;br /&gt;
40478 = IDEA - Madhya Pradesh - India&lt;br /&gt;
40468 = Mahanagar Telephone Nigam Ltd Delhi - India&lt;br /&gt;
40469 = Mahanagar Telephone Nigam Ltd Mumbai - India&lt;br /&gt;
40441 = RPG MAA - India&lt;br /&gt;
404 09,18,36,50,52,67,85 = Reliance Telecom Private:India&lt;br /&gt;
40414 = SPICE - Punjab - India&lt;br /&gt;
40444 = SPICE - Karnataka - India&lt;br /&gt;
50521 = INDOSAT-M3 - Indonesia&lt;br /&gt;
50508 = Lippo Telecom - Indonesia&lt;br /&gt;
51001 = PT. Satelindo IND SATELINDOCEL - Indonesia&lt;br /&gt;
51010 = Telkomsel - Indonesia&lt;br /&gt;
51011 = PT. Excelcomindo Excelcom - Indonesia&lt;br /&gt;
43214 = Payam Kish - Iran&lt;br /&gt;
43211 = TCI - Iran&lt;br /&gt;
41801 = Iraq Telecom - Iraq&lt;br /&gt;
27203 = Meteor - Ireland&lt;br /&gt;
27202 = O2 Comms - Ireland&lt;br /&gt;
27201 = Vodaphone (was Eirecell) - Ireland&lt;br /&gt;
23458 = PRonto GSM - Isle Of Man&lt;br /&gt;
42502 = Cellcom - Israel&lt;br /&gt;
42501 = Partner Communications ORANGE - Israel&lt;br /&gt;
22299 = H3G - Italy&lt;br /&gt;
22201 = Telecom Italia Mobile TIM - Italy&lt;br /&gt;
22210 = Vodafone Omnitel - Italy&lt;br /&gt;
22288 = Wind Telecomunicazioni - Italy&lt;br /&gt;
338180 = Cable &amp; Wireless Jamaica - Jamaica&lt;br /&gt;
33805 = Mossel DIGICEL - Jamaica&lt;br /&gt;
44020 = J-Phone - Japan&lt;br /&gt;
44010 = NTT DoCoMo - Japan&lt;br /&gt;
42505 = JAWWAL&lt;br /&gt;
23450 = Jersey Telecom JT GSM - Jersey&lt;br /&gt;
41601 = J.M.T.S Fastlink - Jordan&lt;br /&gt;
41677 = Petra Jordanian Mobile MOBILECOM - Jordan&lt;br /&gt;
40102 = K&#39;Cell - Kazakhstan&lt;br /&gt;
40101 = K-Mobile - Kazakhstan&lt;br /&gt;
63903 = Kencell - Kenya&lt;br /&gt;
63902 = Safaricom - Kenya&lt;br /&gt;
54509 = Kiribati Frigate - Kiribati&lt;br /&gt;
41902 = Mobile Telecoms MTCNet - Kuwait&lt;br /&gt;
41903 = Wataniya Telecom - Kuwait&lt;br /&gt;
43701 = Bitel - Kyrgyz Republic&lt;br /&gt;
45702 = ETL Mobile - Lao&lt;br /&gt;
45703 = LAT Mobile - Lao&lt;br /&gt;
45701 = Lao Telecoms - Lao&lt;br /&gt;
45708 = Millicom Lao Co - Lao&lt;br /&gt;
24701 = Latvian Mobile Tel. - Latvia&lt;br /&gt;
24702 = TELE2 BALTCOM GSM - Latvia&lt;br /&gt;
41501 = FTML Cellis - Lebanon&lt;br /&gt;
41503 = LibanCell - Lebanon&lt;br /&gt;
65102 = Econet Ezi-Cel - Lesotho&lt;br /&gt;
65101 = Vodacom - Lesotho&lt;br /&gt;
61801 = Lonestar Cell Communications - Liberia&lt;br /&gt;
29505 = FL1 Mobilkom - Liechtenstein&lt;br /&gt;
29502 = Orange FL - Liechtenstein&lt;br /&gt;
29577 = Tele 2 AG - Liechtenstein&lt;br /&gt;
29501 = Telecom FL AG - Liechtenstein&lt;br /&gt;
24601 = Omnitel - Lithuania&lt;br /&gt;
24602 = UAB Bite GSM - Lithuania&lt;br /&gt;
24603 = TELE2 - Lithuania&lt;br /&gt;
27001 = P+T LUXGSM - Luxembourg&lt;br /&gt;
27077 = Millicom Tango GSM - Luxembourg&lt;br /&gt;
45501 = C.T.M. TELEMOVEL+ - Macau&lt;br /&gt;
45503 = Hutchinson Telecom - Macau&lt;br /&gt;
45500 = SMC Maca Smartone Mobile Comms - Macau&lt;br /&gt;
29401 = Macedonian Tel. MobiMak  - Macedonia&lt;br /&gt;
29402 = MTS AD - Macedonia&lt;br /&gt;
64601 = Madacom - Madagascar&lt;br /&gt;
64602 = SMM Antaris - Madagascar&lt;br /&gt;
64603 = Sacel - Madagascar&lt;br /&gt;
65010 = CelTel - Malawi&lt;br /&gt;
65001 = Telekom Network Callpoint - Malawi&lt;br /&gt;
50219 = Celcom - Malaysia&lt;br /&gt;
50216 = DiGi Telecommunications - Malaysia&lt;br /&gt;
50212 = Maxis Mobile - Malaysia&lt;br /&gt;
50217 = TIMECel - Malaysia&lt;br /&gt;
50213 = Telekom Cellular TM Touch - Malaysia&lt;br /&gt;
50202 = My BSB - Malaysia&lt;br /&gt;
50203 = Binariang - Malaysia&lt;br /&gt;
47201 = DhiMobile GSM - Maldives&lt;br /&gt;
61002 = IKATEL - Mali&lt;br /&gt;
61001 = Malitel - Mali&lt;br /&gt;
27821 = go Mobile - Malta&lt;br /&gt;
27801 = Vodafone - Malta&lt;br /&gt;
60901 = MATTEL - Mauritania&lt;br /&gt;
60910 = MAURITEL - Mauritania&lt;br /&gt;
61701 = Cellplus Mobile Comms - Mauritius&lt;br /&gt;
61710 = EMTEL - Mauritius&lt;br /&gt;
33403 = MOVISTAR GSM - Mexico&lt;br /&gt;
334020 = TELCEL GSM - Mexico&lt;br /&gt;
55001 = FSM Telecoms - Micronesia&lt;br /&gt;
25902 = Moldcell - Moldova&lt;br /&gt;
25901 = Voxtel - Moldova&lt;br /&gt;
42899 = MobiCom - Mongolia&lt;br /&gt;
22001 = MOBTEL - Montenegro&lt;br /&gt;
22004 = MONET - Monenegro&lt;br /&gt;
22002 = YU O2 - Montenegro&lt;br /&gt;
22003 = Mobilna Telefonija Srbiji - Montenegro&lt;br /&gt;
60401 = Itissalat Al-Maghrib IAM - Morocco&lt;br /&gt;
60400 = Meditel - Morocco&lt;br /&gt;
64301 = T D M Mcel - Mozambique&lt;br /&gt;
41401 = MPT GAM Network - Myanmar&lt;br /&gt;
64901 = MTC - Namibia&lt;br /&gt;
42901 = Nepal Mobile - Nepal&lt;br /&gt;
20408 = KPN Telecom - Netherlands&lt;br /&gt;
20412 = O2 - Netherlands&lt;br /&gt;
20420 = Orange - Netherlands&lt;br /&gt;
20416 = T-Molbile - Netherlands&lt;br /&gt;
20404 = Vodafone Libertel - Netherlands&lt;br /&gt;
36269 = Curaco Telecom CF GSM - Netherlands Antilles&lt;br /&gt;
36291 = UTS Wireless Curacao - Netherlands Antilles&lt;br /&gt;
36251 = Telcell N.V. - Netherlands Antilles&lt;br /&gt;
54601 = OPT Mobilis - New Caledonia&lt;br /&gt;
53001 = Vodafone - New Zealand&lt;br /&gt;
53003 = Telecom NZ - New Zealand&lt;br /&gt;
53004 = Telstra - New Zealand&lt;br /&gt;
71021 = ENITEL - Nicaragua&lt;br /&gt;
71073 = SERCOM SA - Nicaragua&lt;br /&gt;
61402 = CelTEL Niger - Niger&lt;br /&gt;
62120 = Econet Wireless Nigeria - Nigeria&lt;br /&gt;
62150 = Glo Mobile - Nigeria&lt;br /&gt;
62130 = MTN Nigeria - Nigeria&lt;br /&gt;
62140 = NITEL GSM - Nigeria&lt;br /&gt;
193  = NEAT &amp; T - North Korea&lt;br /&gt;
24202 = NetCom GSM - Norway&lt;br /&gt;
24201 = Telenor Mobil - Norway&lt;br /&gt;
42202 = OMAN MOBILE Oman Telecoms - Oman&lt;br /&gt;
41001 = Mobilink - Pakistan&lt;br /&gt;
41003 = Ufone - Pakistan&lt;br /&gt;
42505 = Palestine Telecomms Co - Palestinian Authority&lt;br /&gt;
71401 = Cable &amp; Wireless - Panama&lt;br /&gt;
53701 = Bee Mobile Comms - Papua New Guinea&lt;br /&gt;
74401 = VOX - Paraguay&lt;br /&gt;
74402Hutchinson - Paraguay&lt;br /&gt;
71610 = TIM Peru - Peru&lt;br /&gt;
51505 = Digitel Mobile/Sun Cellular&lt;br /&gt;
51502 = Globe Telecom - Philippines&lt;br /&gt;
51501 = Isla Comms - Philippines&lt;br /&gt;
51503 = Smart Gold GSM - Philippines&lt;br /&gt;
26003 = IDEA Centertel - Poland&lt;br /&gt;
26001 = Polkomtel PLUS GSM - Poland&lt;br /&gt;
26002 = ERA GSM - Poland&lt;br /&gt;
26803 = Optimus Telecom. - Portugal&lt;br /&gt;
26806 = Telecom Moveis Nac. TMN - Portugal&lt;br /&gt;
26801 = Vodafone Telecel - Portugal&lt;br /&gt;
42701 = Q-Tel QATARNET - Qatar&lt;br /&gt;
64700 = Orange Reunion - Reunion(LA)&lt;br /&gt;
64702 = Outremer Telecom - Reunion (LA)&lt;br /&gt;
64710 = Societe Reunionnaise SFR REUNION - Reunion&lt;br /&gt;
22603 = Cosmorom - Romania&lt;br /&gt;
22601 = MobiFon CONNEX GSM - Romania&lt;br /&gt;
22610 = Orange - Romania&lt;br /&gt;
25007 = BM Telecom - Russia&lt;br /&gt;
25012 = BaykalWestCom - Russia&lt;br /&gt;
25019 = INDIGO CJSC Novgorod - Russia&lt;br /&gt;
25099 = BeeLine - Russia&lt;br /&gt;
25019 = INDIGO CJSC Volgograd - Russia&lt;br /&gt;
25020 = Cellular Comms Udmurtia - Russia&lt;br /&gt;
25001 = Tambov RUS - Russia&lt;br /&gt;
25020 = TELE2 - Russia&lt;br /&gt;
25019 = Dal Telecom Int - Russia&lt;br /&gt;
25010 = Don Telecom - Russia&lt;br /&gt;
25017 = Ermak RMS - Russia&lt;br /&gt;
25012 = Far Eastern Cellular - Russia&lt;br /&gt;
25002 = MegaFon Moscow - Russia&lt;br /&gt;
25012 = ULAN-UDE CELLULAR NETWORK - Russia&lt;br /&gt;
25028 = Extel - Russia&lt;br /&gt;
25012 = Sakhalin GSM - Russia&lt;br /&gt;
25039 = JSC Uralsvyazinform - Russia&lt;br /&gt;
25011 = Orensot - Russia&lt;br /&gt;
25099 = Bee Line GSM - Russia&lt;br /&gt;
25013 = Kuban GSM - Russia&lt;br /&gt;
25020 = ECC - Russia&lt;br /&gt;
25002 = MegaFon - Russia&lt;br /&gt;
25005 = Mibile Comms Systems - Russia&lt;br /&gt;
25001 = Mobile Telesystems - Russia&lt;br /&gt;
25016 = New Telphone Co - Russia&lt;br /&gt;
25003 = NCC - Russia&lt;br /&gt;
25019 = INDIGO - Russia&lt;br /&gt;
25092 = Primetelefon - Russia&lt;br /&gt;
25020 = TELE2 - Russia&lt;br /&gt;
25004 = SIBCHALLENGE - Russia&lt;br /&gt;
25005 = Sayantelecom LLC - Russia&lt;br /&gt;
25020 = TELE2-OMSK - Russia&lt;br /&gt;
25005 = SCS-900 - Russia&lt;br /&gt;
25012 = Sibintertelecom - Russia&lt;br /&gt;
25039 = South Ural Cellular Telephone - Russia&lt;br /&gt;
25020 = St Peterburg TELE2 - Russia&lt;br /&gt;
25044 = North Caucasian GSM - Russia&lt;br /&gt;
25001 = SANTEL - Russia&lt;br /&gt;
25005 = Tomsk Cellular Comm - Russia&lt;br /&gt;
25039 = Uratel - Russia&lt;br /&gt;
25005 = Yeniseitelecom - Russia&lt;br /&gt;
25007 = ZAO SMARTS - Russia&lt;br /&gt;
25015 = ZAO SMARTS-Ufa - Russia&lt;br /&gt;
25002 = ZAO Ural GSM MegaFon - Russia&lt;br /&gt;
63510 = MTN Rwandacell - Rwanda&lt;br /&gt;
62601 = CSTmovel - Sao Tome &amp; Principe&lt;br /&gt;
42001 = Saudi Telecom Co. Al Jawal - Saudi Arabia&lt;br /&gt;
42007 = Electronics App&#39; Est. EAE - Saudi Arabia&lt;br /&gt;
60802 = Sentel GSM - Senegal&lt;br /&gt;
60801 = Sonatel ALIZE - Senegal&lt;br /&gt;
22001 = MOBTEL - Serbia&lt;br /&gt;
22004 = MONET - Serbia&lt;br /&gt;
22002 = YU O2 - Serbia&lt;br /&gt;
22003 = Mobilna Telefonija Srbiji - Serbia&lt;br /&gt;
63301 = Cable &amp; Wireless Seychelles - Seychelles&lt;br /&gt;
63310 = AIRTEL - Seychelles&lt;br /&gt;
61901 = Celtel SL - Sierra Leone&lt;br /&gt;
61900 = LINTEL - Sierra Leone&lt;br /&gt;
52503 = MobileOne - Singapore&lt;br /&gt;
52501 = SingTel. ST-GSM 900 - Singapore&lt;br /&gt;
52502 = SingTel. ST-GSM 1800 - Singapore&lt;br /&gt;
53505 = StarHub - Singapore&lt;br /&gt;
23102 = EuroTel GSM - Slovak Republic&lt;br /&gt;
23101 = Orange SK - Slovak Republic&lt;br /&gt;
29341 = Mobitel - Slovenia&lt;br /&gt;
29340 = Si.mobil - Slovenia&lt;br /&gt;
29370 = Vega - Slovenia&lt;br /&gt;
63701 = BARAKAAT - Somalia&lt;br /&gt;
63710 = Nationlink - Somalia&lt;br /&gt;
63782 = Telsom Mobile - Somalia&lt;br /&gt;
65507 = Cell C (Pty) - South Africa&lt;br /&gt;
65510 = MTN - South Africa&lt;br /&gt;
65501 = Vodacom - South Africa&lt;br /&gt;
450 02,08 = KT ICOM - South Korea&lt;br /&gt;
21401 = VODAFONE Airtel Movil - Spain&lt;br /&gt;
21403 = AMENA Retevision Movil - Spain&lt;br /&gt;
21407 = MOVISTAR Telefonica Moviles - Spain&lt;br /&gt;
21402 = MOVISTAR Nokia 6100 - Spain&lt;br /&gt;
21404 = XFERA Xfera Moviles - Spain&lt;br /&gt;
41303 = CellTel Infiniti - Sri Lanka&lt;br /&gt;
41302 = MTN Networks Dialog GSM - Sri Lanka&lt;br /&gt;
413071 = Mobitel (Pvt)ltd - Sri Lanka&lt;br /&gt;
63401 = MobiTel - Sudan&lt;br /&gt;
74601 = ICMS - Suriname&lt;br /&gt;
74602 = TELESUR GSM - Suriname&lt;br /&gt;
65310 = Swazi MTN - Swaziland&lt;br /&gt;
24002 = 3 HI3G Sccess - Sweden&lt;br /&gt;
24007 = Comviq GSM - Sweden&lt;br /&gt;
24001 = Telia Mobile - Sweden&lt;br /&gt;
24008 = Vodafone - Sweden&lt;br /&gt;
22803 = Orange - Switzerland&lt;br /&gt;
22801 = SWISS GSM Swisscom - Switzerland&lt;br /&gt;
22802 = Sunrise - Switzerland&lt;br /&gt;
41702 = Spacetel Syria 94 - Syria&lt;br /&gt;
41709 = Syrian Telecom Est. MOBILE SYRIA - Syria&lt;br /&gt;
411701 = SYRIATEL - Syria&lt;br /&gt;
46692 = LDTA GSM Chunghwa Telecom - Taiwan&lt;br /&gt;
46601 = Far EasTone GSM 900/1800 Telecoms - Taiwan&lt;br /&gt;
46688 = KG Telecom - Taiwan&lt;br /&gt;
46693 = Mobitai Communications - Taiwan&lt;br /&gt;
46689 = T3G - Taiwan&lt;br /&gt;
46697 = Pacific Cellular GSM 1800 - Taiwan&lt;br /&gt;
46606 = TUNTEX Telecom - Taiwan&lt;br /&gt;
46699 = TransAsia Telecoms - Taiwan&lt;br /&gt;
43602 = Indigo Tajikistan - Tajikistan&lt;br /&gt;
43601 = JSC Somonsom - Tajikistan&lt;br /&gt;
43603 = Mobile Lines of Tajikistan - Tajikistan&lt;br /&gt;
43605 = Tajik Tel - Tajikistan&lt;br /&gt;
64005 = Celtel Tanzania - Tanzania&lt;br /&gt;
64002 = Mobitel - Tanzania&lt;br /&gt;
64004 = Vodacom Tanzania - Tanzania&lt;br /&gt;
64003 = ZANTEL - Tanzania&lt;br /&gt;
64001 = Tritel - Tanzania&lt;br /&gt;
52015 = ACT Mobile - Thailand&lt;br /&gt;
52001 = Advanced Info Service AIS - Thailand&lt;br /&gt;
52023 = Digital Phone GSM 1800 - Thailand&lt;br /&gt;
52099 = TA Orange - Thailand&lt;br /&gt;
52018 = Total Access Worldphone DTAC - Thailand&lt;br /&gt;
52010 = WCS IQ - Thailand&lt;br /&gt;
61501 = Togo Telecom TOGO CELL - Togo&lt;br /&gt;
53943 = Shoreline Comms - Tonga&lt;br /&gt;
53901 = U-CALL - Tonga&lt;br /&gt;
37412 = TSTT - Trinidad &amp; Tobago&lt;br /&gt;
60503 = TUNISIANA - Tunisia&lt;br /&gt;
60502 = Tunisie Telecom TUNTEL - Tunisia&lt;br /&gt;
28604 = AYCELL - Turkey&lt;br /&gt;
28603 = ARIA - Turkey&lt;br /&gt;
28602 = TELSIM Mobil Telekom. - Turkey&lt;br /&gt;
28601 = Turk Telekom Turkcell - Turkey&lt;br /&gt;
310 27,58,66,80 = T-Mobile - U.S.A.&lt;br /&gt;
310-26 T-Mobile phasing out to this - U.S.A.&lt;br /&gt;
310-16 T-Mobile U.S.A.&lt;br /&gt;
310-20 T-Mobile Idaho U.S.A.&lt;br /&gt;
310-20 T-Mobile Oregon U.S.A.&lt;br /&gt;
310-20 T-Mobile Washington State U.S.A.&lt;br /&gt;
310-21 T-Mobile Iowa U.S.A.&lt;br /&gt;
310-22 T-Mobile Kansas U.S.A.&lt;br /&gt;
310-22 T-Mobile Oklahoma U.S.A.&lt;br /&gt;
310-23 T-Mobile Utah U.S.A.&lt;br /&gt;
310-24 T-Mobile New Mexico U.S.A.&lt;br /&gt;
310-24 T-Mobile Texas U.S.A.&lt;br /&gt;
310-24 T-Mobile Arizona U.S.A.&lt;br /&gt;
310-25 T-Mobile Hawaii U.S.A.&lt;br /&gt;
310-26 T-Mobile Colorado U.S.A.&lt;br /&gt;
310-26 Western Wireless Voicestream U.S.A.&lt;br /&gt;
310-31 T-Mobile Florida U.S.A.&lt;br /&gt;
31038 = AT&amp;T - U.S.A. New Phones&lt;br /&gt;
31064 = Airadigm Comms - U.S.A.&lt;br /&gt;
31019 = Alaska Wireless DUTCH HARBOUR - U.S.A.&lt;br /&gt;
31000 = Alaska Digital - U.S.A.&lt;br /&gt;
31063 = Choice Wireless - U.S.A.&lt;br /&gt;
31000 = Cincinnati Bell Wireless - U.S.A.&lt;br /&gt;
310 150,170,410 = Cingular Wireless - U.S.A.&lt;br /&gt;
31069 = Conestoga - U.S.A.&lt;br /&gt;
31026 = Cook Inlet T-Mobile - U.S.A.&lt;br /&gt;
31000 = Corr Wireless Comms - U.S.A.&lt;br /&gt;
31056 = Dobson - U.S.A.&lt;br /&gt;
31010 = Plateau Wireless - U.S.A.&lt;br /&gt;
31090 = Edge Wireless - U.S.A.&lt;br /&gt;
31034 = Westlink Comms - U.S.A.&lt;br /&gt;
31007 = Highland - U.S.A.&lt;br /&gt;
31077 = Iowa Wireless Services - U.S.A.&lt;br /&gt;
31053 = West Virginia Wireless - U.S.A.&lt;br /&gt;
31068 = NPI Wireless - U.S.A.&lt;br /&gt;
31010 = Platau Wireless New Mexico - U.S.A.&lt;br /&gt;
31045 = North East Colorado Cellular - U.S.A.&lt;br /&gt;
31079 = PinPoint Wireless - U.S.A.&lt;br /&gt;
31050 = Public Service Cellular - U.S.A.&lt;br /&gt;
31020 = Smith Bagley - U.S.A.&lt;br /&gt;
31046 = TMP Corp - U.S.A.&lt;br /&gt;
31010 = Plateau Wireless Texas - U.S.A.&lt;br /&gt;
31011 = Wireless 2000 Telephone - U.S.A.&lt;br /&gt;
24407 U.S.A. 3650 ATT 351102500 - U.S.A.&lt;br /&gt;
31038 U.S.A. 3650 ATT 351102501 - U.S.A.&lt;br /&gt;
31038 U.S.A. 3650 ATT 351102502 - U.S.A.&lt;br /&gt;
31059 = Cellular One - U.S.A.&lt;br /&gt;
31002 = APC Sprint Spectrum - U.S.A.&lt;br /&gt;
31000 = Yorkville Telephone Co - U.S.A.&lt;br /&gt;
31015 = BellSouth Mobility DCS - U.S.A.&lt;br /&gt;
31016 = Omnipoint Communications - U.S.A.&lt;br /&gt;
31017 = Pacific Bell Wireless - Cingular - U.S.A.&lt;br /&gt;
31026 = Western Wireless Voicestream - T-Mobile - U.S.A.&lt;br /&gt;
24407 U.S.A. 3650 T-Mobile 351102500 - U.S.A.&lt;br /&gt;
31038 U.S.A. 3650 T-Mobile 351102501 - U.S.A.&lt;br /&gt;
31038 U.S.A. 3650 T-Mobile 351102502 - U.S.A.&lt;br /&gt;
31027 = Powertel - U.S.A.&lt;br /&gt;
31031 = Aerial Communications - U.S.A.&lt;br /&gt;
64101 = Celtel Cellular - Uganda&lt;br /&gt;
64110 = MTN Uganda - Uganda&lt;br /&gt;
64111 = UTL Telecel - Uganda&lt;br /&gt;
25505 = Golden Telecom - Ukraine&lt;br /&gt;
25503 = Kyivstar GSM - Ukraine&lt;br /&gt;
25501 = Ukrainian Mobile Comms - Ukraine&lt;br /&gt;
25502 = Ukrainian Radio Systems WellCOM - Ukraine&lt;br /&gt;
42402 = UAE ETISALAT-G2 - United Arab Emirates&lt;br /&gt;
42401 = UAE ETISALAT-G1 - United Arab Emirates&lt;br /&gt;
43405 = Coscom - Uzbekistan&lt;br /&gt;
43404 = Daewoo Unitel - Uzbekistan&lt;br /&gt;
43407 = Uzdunrobita GSM - Uzbekistan&lt;br /&gt;
43402 = Uzmacom - Uzbekistan&lt;br /&gt;
43401 = Buztel - Uzbekistan&lt;br /&gt;
54101 = SMILE - Vanuatu&lt;br /&gt;
73402 = DIGITEL - Venezuela&lt;br /&gt;
73403 = DIGITEL C.A. - Venezuela&lt;br /&gt;
73401 = Infonet - Venezuela&lt;br /&gt;
45202 = Vinaphone GPC - Vietnam&lt;br /&gt;
45201 = MOBIFONE - Vietnam&lt;br /&gt;
42102 = Spacetel-Yemen - Yemen&lt;br /&gt;
42101 = Yemen Mobile Phone Co SABAFON - Yemen&lt;br /&gt;
22001 = MOBTEL - Yugoslavia&lt;br /&gt;
22002 = ProMonte GSM - Yugoslavia&lt;br /&gt;
64501 = CELTEL - Zambia&lt;br /&gt;
64502 = Telecel Zambia Ltd - Zambia&lt;br /&gt;
64501 = Zamcell - Zambia&lt;br /&gt;
64804 = Econet - Zombabwe&lt;br /&gt;
64801 = NET*ONE - Zimbabwe&lt;br /&gt;
64803 = Telecel - Zimbabwe&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/2194870327560714404/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2010/01/worldwide-handphone-provider-codes.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/2194870327560714404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/2194870327560714404'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2010/01/worldwide-handphone-provider-codes.html' title='worldwide handphone provider codes'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-4885094294377082498</id><published>2010-01-23T10:32:00.001+08:00</published><updated>2010-01-23T10:39:22.082+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="hacking"/><category scheme="http://www.blogger.com/atom/ns#" term="How to"/><title type='text'>How to cheat in Tumblebugs games</title><content type='html'>&lt;b&gt;Tumblebugs&lt;/b&gt; is a game created by Wildfire Studio. A fun game to play where you shoot some color-ball to match the color of the other color-ball. When you have enough color-ball, the ball will explode and you earn points by exploding the ball. This game is very addicting especially for the youngster. &lt;br /&gt;
&lt;span class=&quot;fullpost&quot;/&gt;&lt;br /&gt;
This tutorial will teach you how to cheat in this game.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;CHEAT 1: INFINITY LIFE&lt;/b&gt;&lt;br /&gt;
To make your life infinity, simply play the as usual and complete one or two level (one level is enough).&lt;br /&gt;
&lt;br /&gt;
when you advanced to the next level, leave the game and quit it. The game will save your current game for you.&lt;br /&gt;
&lt;br /&gt;
Now, here how the magic work.&lt;br /&gt;
I assume that your home drive letter is &lt;b&gt;C:&lt;/b&gt;. &lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;This Tutorial is intended for Windows XP machine. 
But the step is the same with other 
machine running Windows Vista or Windows 7.&lt;/pre&gt;1. In &lt;b&gt;My Computer&lt;/b&gt;, go to &lt;b&gt;Tools&lt;/b&gt; &amp;gt; &lt;b&gt;Folder Options&lt;/b&gt;.&lt;br /&gt;
2. Click the &lt;b&gt;View&lt;/b&gt; tabs and scroll down until you see something like &lt;b&gt;Hidden files and folders&lt;/b&gt;. check the radio button where it says &quot;&lt;b&gt;Show hidden files and folders&lt;/b&gt;&quot;.&lt;br /&gt;
3. Scroll down again and see if there&#39;s a check where it say&#39;s &quot;&lt;b&gt;Hide protected operating system files (recommended)&lt;/b&gt;&quot;. if there&#39;s a check, un-check it by clicking on the check box.&lt;br /&gt;
4. Now, click the ok button.&lt;br /&gt;
&lt;br /&gt;
now, navigate to &lt;b&gt;C:\Documents and Settings\%username%\Application Data\Wildfire&lt;/b&gt;. (ps: just copy paste this link).&lt;br /&gt;
&lt;br /&gt;
right now, you should be at the &lt;b&gt;Wildfire&lt;/b&gt; root data folder.&lt;br /&gt;
in this folder, you will see some xml and text files. We only interested on those xml files. those xml file is your save game. to edit this files, press &lt;b&gt;windows logo + r&lt;/b&gt; to bring the &lt;b&gt;run&lt;/b&gt; windows. or you can go to start and click run.&lt;br /&gt;
&lt;br /&gt;
type &lt;b&gt;notepad&lt;/b&gt; in the &lt;b&gt;run&lt;/b&gt; text box and hit enter. Notepad windows will appear.&lt;br /&gt;
&lt;br /&gt;
locate your Tumblebugs save game. to locate your own save game, see the name of the xml file. it will be something like &lt;b&gt;&lt;u&gt;xenoMorf&lt;/u&gt;Arcade&lt;/b&gt; where &lt;b&gt;xenoMorf&lt;/b&gt; is your in-game name.&lt;br /&gt;
&lt;br /&gt;
Drag the file to notepad windows and a lot of rubbish will appear. we are only interested in a few lines.&lt;br /&gt;
&lt;br /&gt;
go to line where it say&lt;br /&gt;
&lt;pre&gt;&amp;lt;lives value=&quot;xx&quot;/&amp;gt;&lt;/pre&gt;&lt;br /&gt;
where &lt;b&gt;xx&lt;/b&gt; is current lives in the game. simply put any number you like here and save file.&lt;br /&gt;
&lt;br /&gt;
The next time you play the, you can see that your number of life has changed to whatever you put in that line.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;CHEAT 2: A-MILLION-SCORE&lt;/b&gt;&lt;br /&gt;
to make a million score, locate the line (in your xml save game) where it say&lt;br /&gt;
&lt;pre&gt;&amp;lt;score value=&amp;quot;XXXXX&amp;quot;/&amp;gt;&lt;/pre&gt;&lt;br /&gt;
where XXXXX is your current in-game score. Now, just change this to whatever number you like and you can see the magic happen in the game.&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/4885094294377082498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2010/01/how-to-cheat-in-tumblebugs-games.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/4885094294377082498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/4885094294377082498'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2010/01/how-to-cheat-in-tumblebugs-games.html' title='How to cheat in Tumblebugs games'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-5132561382963899572</id><published>2009-12-25T11:01:00.000+08:00</published><updated>2009-12-25T11:01:38.192+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="How to"/><title type='text'>Javascript Color Picker</title><content type='html'>this nice javascript will show the hex code for all color. This script is a MUST if you are a webdesigner.&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;function showColor(val){document.myForm.colorbg.value=val;}&lt;/script&gt;&lt;center&gt;&lt;form name=&quot;myForm&quot;&gt;&lt;map name=&quot;colmap&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;1,1,7,10&quot; href=&quot;javascript:showColor(&#39;#00FF00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;9,1,15,10&quot; href=&quot;javascript:showColor(&#39;#00FF33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;17,1,23,10&quot; href=&quot;javascript:showColor(&#39;#00FF66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;25,1,31,10&quot; href=&quot;javascript:showColor(&#39;#00FF99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;33,1,39,10&quot; href=&quot;javascript:showColor(&#39;#00FFCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;41,1,47,10&quot; href=&quot;javascript:showColor(&#39;#00FFFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;49,1,55,10&quot; href=&quot;javascript:showColor(&#39;#33FF00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;57,1,63,10&quot; href=&quot;javascript:showColor(&#39;#33FF33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;65,1,71,10&quot; href=&quot;javascript:showColor(&#39;#33FF66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;73,1,79,10&quot; href=&quot;javascript:showColor(&#39;#33FF99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;81,1,87,10&quot; href=&quot;javascript:showColor(&#39;#33FFCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;89,1,95,10&quot; href=&quot;javascript:showColor(&#39;#33FFFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;97,1,103,10&quot; href=&quot;javascript:showColor(&#39;#66FF00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;105,1,111,10&quot; href=&quot;javascript:showColor(&#39;#66FF33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;113,1,119,10&quot; href=&quot;javascript:showColor(&#39;#66FF66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;121,1,127,10&quot; href=&quot;javascript:showColor(&#39;#66FF99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;129,1,135,10&quot; href=&quot;javascript:showColor(&#39;#66FFCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;137,1,143,10&quot; href=&quot;javascript:showColor(&#39;#66FFFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;145,1,151,10&quot; href=&quot;javascript:showColor(&#39;#99FF00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;153,1,159,10&quot; href=&quot;javascript:showColor(&#39;#99FF33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;161,1,167,10&quot; href=&quot;javascript:showColor(&#39;#99FF66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;169,1,175,10&quot; href=&quot;javascript:showColor(&#39;#99FF99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;177,1,183,10&quot; href=&quot;javascript:showColor(&#39;#99FFCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;185,1,191,10&quot; href=&quot;javascript:showColor(&#39;#99FFFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;193,1,199,10&quot; href=&quot;javascript:showColor(&#39;#CCFF00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;201,1,207,10&quot; href=&quot;javascript:showColor(&#39;#CCFF33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;209,1,215,10&quot; href=&quot;javascript:showColor(&#39;#CCFF66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;217,1,223,10&quot; href=&quot;javascript:showColor(&#39;#CCFF99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;225,1,231,10&quot; href=&quot;javascript:showColor(&#39;#CCFFCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;233,1,239,10&quot; href=&quot;javascript:showColor(&#39;#CCFFFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;241,1,247,10&quot; href=&quot;javascript:showColor(&#39;#FFFF00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;249,1,255,10&quot; href=&quot;javascript:showColor(&#39;#FFFF33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;257,1,263,10&quot; href=&quot;javascript:showColor(&#39;#FFFF66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;265,1,271,10&quot; href=&quot;javascript:showColor(&#39;#FFFF99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;273,1,279,10&quot; href=&quot;javascript:showColor(&#39;#FFFFCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;281,1,287,10&quot; href=&quot;javascript:showColor(&#39;#FFFFFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;1,12,7,21&quot; href=&quot;javascript:showColor(&#39;#00CC00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;9,12,15,21&quot; href=&quot;javascript:showColor(&#39;#00CC33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;17,12,23,21&quot; href=&quot;javascript:showColor(&#39;#00CC66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;25,12,31,21&quot; href=&quot;javascript:showColor(&#39;#00CC99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;33,12,39,21&quot; href=&quot;javascript:showColor(&#39;#00CCCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;41,12,47,21&quot; href=&quot;javascript:showColor(&#39;#00CCFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;49,12,55,21&quot; href=&quot;javascript:showColor(&#39;#33CC00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;57,12,63,21&quot; href=&quot;javascript:showColor(&#39;#33CC33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;65,12,71,21&quot; href=&quot;javascript:showColor(&#39;#33CC66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;73,12,79,21&quot; href=&quot;javascript:showColor(&#39;#33CC99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;81,12,87,21&quot; href=&quot;javascript:showColor(&#39;#33CCCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;89,12,95,21&quot; href=&quot;javascript:showColor(&#39;#33CCFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;97,12,103,21&quot; href=&quot;javascript:showColor(&#39;#66CC00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;105,12,111,21&quot; href=&quot;javascript:showColor(&#39;#66CC33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;113,12,119,21&quot; href=&quot;javascript:showColor(&#39;#66CC66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;121,12,127,21&quot; href=&quot;javascript:showColor(&#39;#66CC99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;129,12,135,21&quot; href=&quot;javascript:showColor(&#39;#66CCCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;137,12,143,21&quot; href=&quot;javascript:showColor(&#39;#66CCFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;145,12,151,21&quot; href=&quot;javascript:showColor(&#39;#99CC00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;153,12,159,21&quot; href=&quot;javascript:showColor(&#39;#99CC33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;161,12,167,21&quot; href=&quot;javascript:showColor(&#39;#99CC66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;169,12,175,21&quot; href=&quot;javascript:showColor(&#39;#99CC99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;177,12,183,21&quot; href=&quot;javascript:showColor(&#39;#99CCCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;185,12,191,21&quot; href=&quot;javascript:showColor(&#39;#99CCFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;193,12,199,21&quot; href=&quot;javascript:showColor(&#39;#CCCC00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;201,12,207,21&quot; href=&quot;javascript:showColor(&#39;#CCCC33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;209,12,215,21&quot; href=&quot;javascript:showColor(&#39;#CCCC66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;217,12,223,21&quot; href=&quot;javascript:showColor(&#39;#CCCC99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;225,12,231,21&quot; href=&quot;javascript:showColor(&#39;#CCCCCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;233,12,239,21&quot; href=&quot;javascript:showColor(&#39;#CCCCFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;241,12,247,21&quot; href=&quot;javascript:showColor(&#39;#FFCC00&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;249,12,255,21&quot; href=&quot;javascript:showColor(&#39;#FFCC33&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;257,12,263,21&quot; href=&quot;javascript:showColor(&#39;#FFCC66&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;265,12,271,21&quot; href=&quot;javascript:showColor(&#39;#FFCC99&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;273,12,279,21&quot; href=&quot;javascript:showColor(&#39;#FFCCCC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;281,12,287,21&quot; href=&quot;javascript:showColor(&#39;#FFCCFF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;1,23,7,32&quot; href=&quot;javascript:showColor(&#39;#009900&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;9,23,15,32&quot; href=&quot;javascript:showColor(&#39;#009933&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;17,23,23,32&quot; href=&quot;javascript:showColor(&#39;#009966&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;25,23,31,32&quot; href=&quot;javascript:showColor(&#39;#009999&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;33,23,39,32&quot; href=&quot;javascript:showColor(&#39;#0099CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;41,23,47,32&quot; href=&quot;javascript:showColor(&#39;#0099FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;49,23,55,32&quot; href=&quot;javascript:showColor(&#39;#339900&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;57,23,63,32&quot; href=&quot;javascript:showColor(&#39;#339933&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;65,23,71,32&quot; href=&quot;javascript:showColor(&#39;#339966&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;73,23,79,32&quot; href=&quot;javascript:showColor(&#39;#339999&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;81,23,87,32&quot; href=&quot;javascript:showColor(&#39;#3399CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;89,23,95,32&quot; href=&quot;javascript:showColor(&#39;#3399FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;97,23,103,32&quot; href=&quot;javascript:showColor(&#39;#669900&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;105,23,111,32&quot; href=&quot;javascript:showColor(&#39;#669933&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;113,23,119,32&quot; href=&quot;javascript:showColor(&#39;#669966&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;121,23,127,32&quot; href=&quot;javascript:showColor(&#39;#669999&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;129,23,135,32&quot; href=&quot;javascript:showColor(&#39;#6699CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;137,23,143,32&quot; href=&quot;javascript:showColor(&#39;#6699FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;145,23,151,32&quot; href=&quot;javascript:showColor(&#39;#999900&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;153,23,159,32&quot; href=&quot;javascript:showColor(&#39;#999933&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;161,23,167,32&quot; href=&quot;javascript:showColor(&#39;#999966&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;169,23,175,32&quot; href=&quot;javascript:showColor(&#39;#999999&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;177,23,183,32&quot; href=&quot;javascript:showColor(&#39;#9999CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;185,23,191,32&quot; href=&quot;javascript:showColor(&#39;#9999FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;193,23,199,32&quot; href=&quot;javascript:showColor(&#39;#CC9900&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;201,23,207,32&quot; href=&quot;javascript:showColor(&#39;#CC9933&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;209,23,215,32&quot; href=&quot;javascript:showColor(&#39;#CC9966&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;217,23,223,32&quot; href=&quot;javascript:showColor(&#39;#CC9999&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;225,23,231,32&quot; href=&quot;javascript:showColor(&#39;#CC99CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;233,23,239,32&quot; href=&quot;javascript:showColor(&#39;#CC99FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;241,23,247,32&quot; href=&quot;javascript:showColor(&#39;#FF9900&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;249,23,255,32&quot; href=&quot;javascript:showColor(&#39;#FF9933&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;257,23,263,32&quot; href=&quot;javascript:showColor(&#39;#FF9966&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;265,23,271,32&quot; href=&quot;javascript:showColor(&#39;#FF9999&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;273,23,279,32&quot; href=&quot;javascript:showColor(&#39;#FF99CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;281,23,287,32&quot; href=&quot;javascript:showColor(&#39;#FF99FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;1,34,7,43&quot; href=&quot;javascript:showColor(&#39;#006600&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;9,34,15,43&quot; href=&quot;javascript:showColor(&#39;#006633&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;17,34,23,43&quot; href=&quot;javascript:showColor(&#39;#006666&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;25,34,31,43&quot; href=&quot;javascript:showColor(&#39;#006699&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;33,34,39,43&quot; href=&quot;javascript:showColor(&#39;#0066CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;41,34,47,43&quot; href=&quot;javascript:showColor(&#39;#0066FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;49,34,55,43&quot; href=&quot;javascript:showColor(&#39;#336600&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;57,34,63,43&quot; href=&quot;javascript:showColor(&#39;#336633&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;65,34,71,43&quot; href=&quot;javascript:showColor(&#39;#336666&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;73,34,79,43&quot; href=&quot;javascript:showColor(&#39;#336699&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;81,34,87,43&quot; href=&quot;javascript:showColor(&#39;#3366CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;89,34,95,43&quot; href=&quot;javascript:showColor(&#39;#3366FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;97,34,103,43&quot; href=&quot;javascript:showColor(&#39;#666600&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;105,34,111,43&quot; href=&quot;javascript:showColor(&#39;#666633&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;113,34,119,43&quot; href=&quot;javascript:showColor(&#39;#666666&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;121,34,127,43&quot; href=&quot;javascript:showColor(&#39;#666699&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;129,34,135,43&quot; href=&quot;javascript:showColor(&#39;#6666CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;137,34,143,43&quot; href=&quot;javascript:showColor(&#39;#6666FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;145,34,151,43&quot; href=&quot;javascript:showColor(&#39;#996600&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;153,34,159,43&quot; href=&quot;javascript:showColor(&#39;#996633&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;161,34,167,43&quot; href=&quot;javascript:showColor(&#39;#996666&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;169,34,175,43&quot; href=&quot;javascript:showColor(&#39;#996699&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;177,34,183,43&quot; href=&quot;javascript:showColor(&#39;#9966CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;185,34,191,43&quot; href=&quot;javascript:showColor(&#39;#9966FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;193,34,199,43&quot; href=&quot;javascript:showColor(&#39;#CC6600&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;201,34,207,43&quot; href=&quot;javascript:showColor(&#39;#CC6633&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;209,34,215,43&quot; href=&quot;javascript:showColor(&#39;#CC6666&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;217,34,223,43&quot; href=&quot;javascript:showColor(&#39;#CC6699&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;225,34,231,43&quot; href=&quot;javascript:showColor(&#39;#CC66CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;233,34,239,43&quot; href=&quot;javascript:showColor(&#39;#CC66FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;241,34,247,43&quot; href=&quot;javascript:showColor(&#39;#FF6600&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;249,34,255,43&quot; href=&quot;javascript:showColor(&#39;#FF6633&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;257,34,263,43&quot; href=&quot;javascript:showColor(&#39;#FF6666&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;265,34,271,43&quot; href=&quot;javascript:showColor(&#39;#FF6699&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;273,34,279,43&quot; href=&quot;javascript:showColor(&#39;#FF66CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;281,34,287,43&quot; href=&quot;javascript:showColor(&#39;#FF66FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;1,45,7,54&quot; href=&quot;javascript:showColor(&#39;#003300&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;9,45,15,54&quot; href=&quot;javascript:showColor(&#39;#003333&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;17,45,23,54&quot; href=&quot;javascript:showColor(&#39;#003366&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;25,45,31,54&quot; href=&quot;javascript:showColor(&#39;#003399&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;33,45,39,54&quot; href=&quot;javascript:showColor(&#39;#0033CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;41,45,47,54&quot; href=&quot;javascript:showColor(&#39;#0033FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;49,45,55,54&quot; href=&quot;javascript:showColor(&#39;#333300&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;57,45,63,54&quot; href=&quot;javascript:showColor(&#39;#333333&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;65,45,71,54&quot; href=&quot;javascript:showColor(&#39;#333366&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;73,45,79,54&quot; href=&quot;javascript:showColor(&#39;#333399&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;81,45,87,54&quot; href=&quot;javascript:showColor(&#39;#3333CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;89,45,95,54&quot; href=&quot;javascript:showColor(&#39;#3333FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;97,45,103,54&quot; href=&quot;javascript:showColor(&#39;#663300&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;105,45,111,54&quot; href=&quot;javascript:showColor(&#39;#663333&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;113,45,119,54&quot; href=&quot;javascript:showColor(&#39;#663366&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;121,45,127,54&quot; href=&quot;javascript:showColor(&#39;#663399&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;129,45,135,54&quot; href=&quot;javascript:showColor(&#39;#6633CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;137,45,143,54&quot; href=&quot;javascript:showColor(&#39;#6633FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;145,45,151,54&quot; href=&quot;javascript:showColor(&#39;#993300&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;153,45,159,54&quot; href=&quot;javascript:showColor(&#39;#993333&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;161,45,167,54&quot; href=&quot;javascript:showColor(&#39;#993366&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;169,45,175,54&quot; href=&quot;javascript:showColor(&#39;#993399&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;177,45,183,54&quot; href=&quot;javascript:showColor(&#39;#9933CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;185,45,191,54&quot; href=&quot;javascript:showColor(&#39;#9933FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;193,45,199,54&quot; href=&quot;javascript:showColor(&#39;#CC3300&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;201,45,207,54&quot; href=&quot;javascript:showColor(&#39;#CC3333&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;209,45,215,54&quot; href=&quot;javascript:showColor(&#39;#CC3366&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;217,45,223,54&quot; href=&quot;javascript:showColor(&#39;#CC3399&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;225,45,231,54&quot; href=&quot;javascript:showColor(&#39;#CC33CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;233,45,239,54&quot; href=&quot;javascript:showColor(&#39;#CC33FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;241,45,247,54&quot; href=&quot;javascript:showColor(&#39;#FF3300&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;249,45,255,54&quot; href=&quot;javascript:showColor(&#39;#FF3333&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;257,45,263,54&quot; href=&quot;javascript:showColor(&#39;#FF3366&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;265,45,271,54&quot; href=&quot;javascript:showColor(&#39;#FF3399&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;273,45,279,54&quot; href=&quot;javascript:showColor(&#39;#FF33CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;281,45,287,54&quot; href=&quot;javascript:showColor(&#39;#FF33FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;1,56,7,65&quot; href=&quot;javascript:showColor(&#39;#000000&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;9,56,15,65&quot; href=&quot;javascript:showColor(&#39;#000033&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;17,56,23,65&quot; href=&quot;javascript:showColor(&#39;#000066&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;25,56,31,65&quot; href=&quot;javascript:showColor(&#39;#000099&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;33,56,39,65&quot; href=&quot;javascript:showColor(&#39;#0000CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;41,56,47,65&quot; href=&quot;javascript:showColor(&#39;#0000FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;49,56,55,65&quot; href=&quot;javascript:showColor(&#39;#330000&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;57,56,63,65&quot; href=&quot;javascript:showColor(&#39;#330033&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;65,56,71,65&quot; href=&quot;javascript:showColor(&#39;#330066&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;73,56,79,65&quot; href=&quot;javascript:showColor(&#39;#330099&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;81,56,87,65&quot; href=&quot;javascript:showColor(&#39;#3300CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;89,56,95,65&quot; href=&quot;javascript:showColor(&#39;#3300FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;97,56,103,65&quot; href=&quot;javascript:showColor(&#39;#660000&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;105,56,111,65&quot; href=&quot;javascript:showColor(&#39;#660033&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;113,56,119,65&quot; href=&quot;javascript:showColor(&#39;#660066&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;121,56,127,65&quot; href=&quot;javascript:showColor(&#39;#660099&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;129,56,135,65&quot; href=&quot;javascript:showColor(&#39;#6600CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;137,56,143,65&quot; href=&quot;javascript:showColor(&#39;#6600FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;145,56,151,65&quot; href=&quot;javascript:showColor(&#39;#990000&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;153,56,159,65&quot; href=&quot;javascript:showColor(&#39;#990033&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;161,56,167,65&quot; href=&quot;javascript:showColor(&#39;#990066&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;169,56,175,65&quot; href=&quot;javascript:showColor(&#39;#990099&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;177,56,183,65&quot; href=&quot;javascript:showColor(&#39;#9900CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;185,56,191,65&quot; href=&quot;javascript:showColor(&#39;#9900FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;193,56,199,65&quot; href=&quot;javascript:showColor(&#39;#CC0000&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;201,56,207,65&quot; href=&quot;javascript:showColor(&#39;#CC0033&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;209,56,215,65&quot; href=&quot;javascript:showColor(&#39;#CC0066&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;217,56,223,65&quot; href=&quot;javascript:showColor(&#39;#CC0099&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;225,56,231,65&quot; href=&quot;javascript:showColor(&#39;#CC00CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;233,56,239,65&quot; href=&quot;javascript:showColor(&#39;#CC00FF&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;241,56,247,65&quot; href=&quot;javascript:showColor(&#39;#FF0000&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;249,56,255,65&quot; href=&quot;javascript:showColor(&#39;#FF0033&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;257,56,263,65&quot; href=&quot;javascript:showColor(&#39;#FF0066&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;265,56,271,65&quot; href=&quot;javascript:showColor(&#39;#FF0099&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;273,56,279,65&quot; href=&quot;javascript:showColor(&#39;#FF00CC&#39;)&quot;&gt;&lt;area shape=&quot;rect&quot; coords=&quot;281,56,287,65&quot; href=&quot;javascript:showColor(&#39;#FF00FF&#39;)&quot;&gt;&lt;/map&gt;&lt;img usemap=&quot;#colmap&quot; src=&quot;http://ilovethecode.com/images/colortable.gif&quot; border=&quot;0&quot; height=&quot;67&quot; width=&quot;289&quot;&gt;&lt;br&gt;&lt;br /&gt;
&lt;input size=&quot;10&quot; name=&quot;colorbg&quot; onclick=&quot;select()&quot; type=&quot;text&quot;&gt;&lt;/form&gt;&lt;/center&gt;&lt;br&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/5132561382963899572/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2009/12/javascript-color-picker.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5132561382963899572'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5132561382963899572'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2009/12/javascript-color-picker.html' title='Javascript Color Picker'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-2793033886936099844</id><published>2009-12-24T17:58:00.006+08:00</published><updated>2009-12-24T18:11:33.344+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="How to"/><category scheme="http://www.blogger.com/atom/ns#" term="windows XP"/><title type='text'>How to configure cron job in windows</title><content type='html'>&lt;b&gt;cron&lt;/b&gt; job can make your life easier than you ever thought. even though, cron job is not much popular in most web hosting that running windows as their platform. Most people that have a script to automate their website (i.e backup) tend to choose web hosting that run in Linux because setting up cron in Linux is far more easier than in windows.&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
SOME NOTE&lt;br /&gt;
&lt;b&gt;This tutorial is based on Windows XP SP2 build 2.6. But, the step should be the same with all windows version&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;STEP 1&lt;/b&gt;&lt;br /&gt;
open &lt;b&gt;Scheduled Task&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;start &amp;gt; Accessories &amp;gt; System Tools &amp;gt; Scheduled Tasks&lt;/pre&gt;&lt;br /&gt;
You should now have this nice windows appear on the screen.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrxd-vyXCkp67qnkdiDOrai_F3MsqmurIywjN3A1artoz6Ht2B_XvL70YzccVXSD0v5szdOkY9CoA9J7lltKyBEgx7oJyDQZCgOEFiwAM6k7cVnz1odzp1CKpLhvR2FpOjE6cvs2cguI8/s1600/scheduled_task.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEir1IYdfyqhINlTOh_QOvVIJtmYmdKk1B1Jf10fo3VqkqmF2_q_dE9dRCSttGzY-1kvWPBPVP_fEAmBfo_VloQyZklZTc7RULYg1hLXq8vqBFcKnnLAzB_j8H8xDxeuQ0bgP8EepMeMVPk/s320/scheduled_task_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;STEP 2&lt;/b&gt;&lt;br /&gt;
double click on &lt;b&gt;Add Scheduled Task&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEipBKdtrb1cBz2_9aa7Wp9uwXFjiOXI6FmZ7FgKsS8IUj1caTE3nV8v1ZLugo-y5yBorlCl8cX5Fp4a3lpNHhTTftZK7gAKWSKl2nXylglq3_Wax3jJUIqG13qeXsOf5U-BFXWMjuWjvzM/s1600/scheduled_task_wiz_1.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEja_2rnP5WA-427GEnd8FcMmL3U2HPgWY5lkb0pRI8za2odIdLz4qQ131I3RRi8Ft7ULu7uX8cWamnxS3591p1SQg1kZpqTUxdZ4rEEslDYkJCHANtKcSCSkoRC7vJjS0CLIagHo9N4-Ow/s320/scheduled_task_wiz_1_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Press &lt;b&gt;Next&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
Choose your favourite Browser. In this tutorial, i choose &lt;b&gt;Mozilla firefox&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0MAIeEDwN6aqbl91cYyj_qXWG2Y2Lb80EoMTZR9tp38OMnvJPQzoPgQa_97ESWZA9ZZHkl74hau9VWqiTOj-k6sJUF1OTKHCGdjEMKRXKmPp4zr9clIT9e8TgY0PhRyXq_FfqJ9_NMJ4/s1600/scheduled_task_wiz_2.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdi-dsKAGVVVt0hicsEhBHJ8De2VMZbsp-4viTJjsLg64StolHW3lLYATiJ7WrEiD-WhF7EkwCUV9cpHq-x0RmRyReYxySCrZyxqz2JuLIBJLEPFSAOIbwRgSUy1t2V4pnOWA1zvsDzrc/s320/scheduled_task_wiz_2_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Press &lt;b&gt;Next&lt;/b&gt; when you done.&lt;br /&gt;
&lt;br /&gt;
Now, put the name of cron Job. Here, you can see that i put &lt;b&gt;Cron Tutorial&lt;/b&gt;, and of course you can put whatever you like.&lt;br /&gt;
&lt;br /&gt;
In This step also, you must choose the time when Windows executed the cron job. Here i choose &lt;b&gt;Daily&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUERjAAMDMRHhY2h4K7_Mu6Fm1kCjkhJzBTgI9BBkAlyWn423wFmUK8hHLmHx9af4AHsKr40R-NPHYd6zrqveOhyphenhyphenupyWY6LsXOx-zAJXpsVhQpB0_U7ULKNy4kisDfbGJn97XHExPFlA8/s1600/scheduled_task_wiz_3.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf1eAbP2-I2SCuxu1um0Id5eX9nMgWdRc2-U5TXb0WzuFmUAj2Q61SBQ7yO6zJhAo_d0Y1EgUrGBy4C2XS0YMYD1ZKUW0Uer7HxWS88MutusBGhvWQeDphB9iXFRB9cs4RdzlwINznJss/s320/scheduled_task_wiz_3_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Press &lt;b&gt;Next&lt;/b&gt; when you satisfied.&lt;br /&gt;
&lt;br /&gt;
Choose the time for the cron job to start. By default, current time will be shown in the input boxes.&lt;br /&gt;
&lt;br /&gt;
the next option is to tell the scheduler to run your cron job.&lt;br /&gt;
&lt;br /&gt;
The dropdown boxes is to tell the scheduler when to start your cron job. By default, current date will be shown.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhe8ePnATJWQvu5LJ4UvtWDq3s7YYO5c5CW72naHgBN55_PZoOxINk1hm0h1kpkFqcVVbd_-vKH3Gc4ESuIy8T6fRgAv-319YeNEgPV3MFEX9gyIljSKpX99rmTnnnygTrmLe0qzt993fo/s1600/scheduled_task_wiz_4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; rel=&quot;lightbox[wiz]&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgX9KNCAGp2ZIwzzqwrnt_861WJUIP5XA6qJp1ZE4gvK9qNxF8Dh3ezMPrTLcQ3zfJ84NDzcmT93BdU5r4w2cCcCoRjCAxgb1ZDWHPIHOtLIA2SPq8ywao32gzIwEWzGvd9KbdYr7o1MTk/s320/scheduled_task_wiz_4_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Press &lt;b&gt;Next&lt;/b&gt; when you done.&lt;br /&gt;
&lt;br /&gt;
This screen is the tricky part. If you only have &lt;b&gt;ONE&lt;/b&gt; user in your computer, it is advisable to create one more user with any privilages (i.e any privilages can be use &lt;b&gt;Admin&lt;/b&gt; or &lt;b&gt;Limited&lt;/b&gt;) plus you MUST provide a password for the newly created user.&lt;br /&gt;
&lt;br /&gt;
If do not wish to create another user, and your current user already password enable then you can use your current user in the next screen.&lt;br /&gt;
&lt;br /&gt;
If your current user do not have password, then you must create password for it or you can choose to create another user with password enable.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmIErcIVzZ-Xi1UQ7bZQwrB031E_ffycGNevC8U-G44bugMkeIbNS3rC5_RAVXV5ZEPc1hTS2KKeRlSUCNuRx8FdS7-ltK6cb2kceaYVaAos8GK4_V8WVdmkxhIb7X3AlAqhyphenhyphenn4rFA3GM/s1600/scheduled_task_wiz_5.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFuhCHNoW9Q_8qzf3Km0G5W1Zpb5MXTvbaF1SoOQ5WIf5fCcJY-iQ1l9nmSF_905rz7IBu3hVkirp1aQ9LdBCucvhyzeFn92gHLgC8MBasHXa_6yzLnaXg7YKyEPIS5dbYwR0-S6o6GBY/s320/scheduled_task_wiz_5_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Press &lt;b&gt;Next&lt;/b&gt; when you done.&lt;br /&gt;
&lt;br /&gt;
On the next screen, before you press &lt;b&gt;Finish&lt;/b&gt; make sure you check the check box that say &quot;&lt;b&gt;Open advanced task when i click finish&lt;/b&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOY6RIx4nOXbt05I01zjcxSvyYRM5zQUp6LUFa1EOx41S1TuZ0hPgj3t88cpaJAxzH3LiqQho2g4IiSNNfv_vJXCJEhi4-upBtEVR3nlZwHrheUB2FhtMtn7geXRJhGMuecdioTHoDssg/s1600/scheduled_task_wiz_6.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjM5CCg1lLw5gTcHsd5VIPsh6B26OQjH16fkN0yCpzmSbNd_PF8BTWE5N1dcdvbP-uSOQnGFFsC9HPMm3nx4fRKxG1bi1RjF5cXC-SQzQ4Tgw64Hl0AKOqWo1-0yFhRD_4EQmzi0W3sQfo/s320/scheduled_task_wiz_6_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Now We finish setting up the cron job. Next step is to tweak your cron job a little bit.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;STEP 3&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjL9XPUuHqvqrZ5T_MtuCb9rSajmRMU-VmizenWWXGbZbZz9jLcHQvCM398MP2lRgUPRarkr1jIkyEAQ-MlVbFelVTtjjnKD2Z_Kjl8_Z7MIWSwYelhRt9ZJLFZQx_b_8ODdtsJi_8L1so/s1600/scheduled_task_wiz_7.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcpVN7wXwPn4SvlYX7T0iiAjk3b9Mh7-CNyVHS9aEIc3sVoIAGwbFIkKbQUrAbEbPXuhBCnWD0vDB0hIPNRwocqu5jwMpC2UJcaDGQ732-8gVxKd_1x6vBUr4YrBymKC-iC-xEvvAnmXY/s320/scheduled_task_wiz_7_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
This will be on your screen right now.&lt;br /&gt;
&lt;br /&gt;
To make sure that your cron job running correctly, you must provide the full path of your script. in this example, our script will be located in this location;&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;D:/xampp/htdocs/path/to/cron/script.php&lt;/pre&gt;&lt;br /&gt;
Please see the path carefully. Normal path in windows will be like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;D:\xampp\htdocs\path\to\cron\script.php&lt;/pre&gt;&lt;br /&gt;
on the above screen, put the full path to your script next to &lt;b&gt;C:\PROGRA~1\MOZILL~1\firefox.exe&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
so, the screen will look like this:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvsWC_TTS-gZN8WlN6hlbbPsTzZWcklu5Nni_kd-pbqDBrE90Xq4C1UK4qSqmXARxPQlGZAUBDrqNAXgM76rAy0_g4P4SsiXqCUHStsvCfIEpv_bjpBJxgx4YIA67MEuw_U587aN6Zais/s1600/scheduled_task_wiz_7_run.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgn0WVIiJNNITSknp-Nxw7z6euoqo2zis6eUNm_NO-xqyWGGQHv0AOMlaYBg_JrgRnxeGSaxO04mXzyfAY1dUkc0IOZQ6QFJhbPbCIqd3wJqiZQ3tp1HjKa1Zycj7v_tH70Vu1GwhLFEpE/s320/scheduled_task_wiz_7_run_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
the value in &lt;b&gt;Run&lt;/b&gt; textboxes will be like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;C:\PROGRA~1\MOZILL~1\firefox.exe D:/xampp/htdocs/path/to/cron/script.php&lt;/pre&gt;&lt;br /&gt;
there is a space in between &lt;b&gt;C:\PROGRA~1\MOZILL~1\firefox.exe&lt;/b&gt; and &lt;b&gt;D:/xampp/htdocs/path/to/cron/script.php&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Next, go to &lt;b&gt;Schedule&lt;/b&gt; tab and click the &lt;b&gt;Advanced&lt;/b&gt; button.&lt;br /&gt;
Here will be the screen that you should see.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaz5vMlnSpmdipM0eZg3Fg_Td9KVT-sCAIACJPLId-Mn5ZmNvxHxTFx1d13r6o-JT96AyWnTS23tCB4zfE7sob-J_H-apTeFbelrVuS_s7rEr_CxHkJ0MsXBHj7ksfUZDHqednbQYmWsw/s1600/scheduled_task_wiz_8.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuMer56dy0PMjzcUdFKnalZvVQKycr6EsPQlbk5SP8wYyicvV7qeAiNSNKXSJCKHUwWkcaxz_4oAHPC7_FW25gs0PHPOh8MP4yYWsAC5Soam0Y26bUbSmAJkQbED-nEAuwVvq_Ok3GQ2E/s320/scheduled_task_wiz_8_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
when you click &lt;b&gt;advanced&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbCXlTkvUNgZl_-t9JVPOPGCDyUNy6Y4M25qco0TeBEuKemdRsPaiwAxzJe43gcGYLeDqPjJ-r9RcQwglX-pNH4aY8JYh9bQ6pCVTIDy5zGt7Ikm-K8eHRtBNB4LS8j3eZdfbyPXY5IU0/s1600/scheduled_task_wiz_9.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYlAwtALeB75TkzajIXeKFv59fbftVbWwmmJdhEwDfR2i8M3GQTwJD2kHWX2Tx9sbWxZ7UV1kH2XzE91mvhc_6Wi2exCYqNFQr1uQiIqoBotQ9-9iKOebSHGFmiyv46b1fl0wCRa351ew/s320/scheduled_task_wiz_9_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
check the check box next to &lt;b&gt;Repeat task&lt;/b&gt; and fill the content to your like.&lt;br /&gt;
here is my setting(i.e you may tweak it to suit your need)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzWLS3Q26FCc2BxV8sRA419oFXT4A9snFnA15dcZRvDQmc_xCdd4hRKVUHn-mPfn5AGJGqQAfi_CkMmIPL1MyUNYMkiebdMqhwrBwfjyj_C9F7ZmsGwv9YNbjIIJjAxT3fNJ6QJ5iNhFg/s1600/scheduled_task_wiz_10.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjucOQH1pNRZmlsJqOv-ZeUAerq7uMKtCm-wYFCcwvzK_ykb4MX8J4LG960udwL9eNJS_P_3kolMsIXYbDMaT07nJFKbCRA7OSyne318BtPnwyZQMB-Ks3cYvwH6y6aH6P-GF9-MZARUhk/s320/scheduled_task_wiz_10_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;My reason:&lt;br /&gt;
&lt;b&gt;1&lt;/b&gt; : i want the cron job to run every 1 hour&lt;br /&gt;
&lt;b&gt;2&lt;/b&gt; : the cron job will run for 23 hours a day continuously&lt;br /&gt;
&lt;b&gt;3&lt;/b&gt; : the cron job will be terminated if it still running when the time to run the cron job come again.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;STEP 4&lt;/b&gt;&lt;br /&gt;
to check whether your cron job is running as you wanted, you can change the time  by double-clicking your cron job and go to &lt;b&gt;scheduled&lt;/b&gt; tab. Alter the &lt;b&gt;run time&lt;/b&gt; to past 5 minute or less with your current time.&lt;br /&gt;
&lt;br /&gt;
After that, you can read some other article in this blog while waiting for that 5 minutes. hee~~&lt;br /&gt;
&lt;br /&gt;
When the time come, you might expect your browser to pop-up and start executing your script. Well, you are wrong!! You will not see the browser to pop-up as you expected because it will run in the background silently.&lt;br /&gt;
&lt;br /&gt;
you can open &lt;b&gt;Task Manger&lt;/b&gt; to see if it working or not. Press &lt;b&gt;CTRL+ALT+DEL&lt;/b&gt; simultaneously to bring your Task Manager.&lt;br /&gt;
&lt;br /&gt;
Go to &lt;b&gt;Processes&lt;/b&gt; tab and look for &lt;b&gt;firefox&lt;/b&gt;. p/s: please close your browser (firefox) before hand.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdHxfb1tf1gGd8GLeCr8G3PZ_bIbd4n_0sVmW96d9qiG0mh7jmjmdhDzzE8kEu7kufaZCgbKdHBgdOPHvRpNXTT_VNohG85eHBI6Zw9ObP0BoZarLkROFmVQ5FSDBYhPlwgn5aXShYWlY/s1600/scheduled_task_wiz_11.png&quot; imageanchor=&quot;1&quot; rel=&quot;lightbox[wiz]&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwE1iADpQRI_-VrFMkxy6TiKoOs-rDj-rcnut-63Zc8aVH0x8c0_fXTPZpoFV5hlJBGVfjEGzRMOYfauXgY1j2dtnJzjy6xXjQX9M7HWbw2HKOGznAX1UzUR-V2AM3vdZ8gmIqadTvc2I/s320/scheduled_task_wiz_11_th.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;b&gt;UserXP&lt;/b&gt; : My current log-on user&lt;br /&gt;
&lt;b&gt;cron&lt;/b&gt;   : Username for the cron job&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/2793033886936099844/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2009/12/how-to-configure-cron-job-in-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/2793033886936099844'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/2793033886936099844'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2009/12/how-to-configure-cron-job-in-windows.html' title='How to configure cron job in windows'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEir1IYdfyqhINlTOh_QOvVIJtmYmdKk1B1Jf10fo3VqkqmF2_q_dE9dRCSttGzY-1kvWPBPVP_fEAmBfo_VloQyZklZTc7RULYg1hLXq8vqBFcKnnLAzB_j8H8xDxeuQ0bgP8EepMeMVPk/s72-c/scheduled_task_th.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-5050239342630898789</id><published>2009-12-05T23:01:00.013+08:00</published><updated>2009-12-12T16:04:48.437+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="How to"/><category scheme="http://www.blogger.com/atom/ns#" term="photobucket"/><title type='text'>How to place image side by side</title><content type='html'>If you are a Blogger or MySpace user, you might have a thought like &quot;How do i put two picture&#39;s side by side horizontally instead of stack up and down vertically?&quot;. Well, i do have the thought so here i&#39;m sharing you this little trick to do the job.&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
There two ways you can do this.&lt;br /&gt;
1. Using the TABLE tag and&lt;br /&gt;
2. Simply put your IMG tag next to each other&lt;br /&gt;
&lt;br /&gt;
I&#39;m going to use this picture as an example.&lt;br /&gt;
&lt;a href=&quot;http://th08.deviantart.net/fs27/300W/f/2008/156/2/9/Sexy_Bee_Girl_by_Chr1st0ph3r.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img alt=&quot;Manga girl&quot; height=&quot;110&quot; src=&quot;http://th08.deviantart.net/fs27/300W/f/2008/156/2/9/Sexy_Bee_Girl_by_Chr1st0ph3r.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://th08.deviantart.net/fs45/300W/f/2009/139/3/5/Beach_Volley_Girl_quickie_by_HitmanN.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img alt=&quot;Manga sexy girl&quot; height=&quot;110&quot; src=&quot;http://th08.deviantart.net/fs45/300W/f/2009/139/3/5/Beach_Volley_Girl_quickie_by_HitmanN.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://ui01.gamespot.com/96/playstation2nightshade13_2.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img alt=&quot;Ninja girl&quot; height=&quot;110&quot; src=&quot;http://ui01.gamespot.com/96/playstation2nightshade13_2.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
As you can see, the picture is already side by side even when i didn&#39;t put any format.&lt;br /&gt;
&lt;br /&gt;
I just simply put the link side by side like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&amp;lt;img src=&quot;#1&quot; /&amp;gt; &amp;lt;img src=&quot;#2&quot; /&amp;gt;
&lt;/pre&gt;Or you also can add the ALIGN tag in your IMG code&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&amp;lt;img align=&quot;left&quot; src=&quot;#1&quot; /&amp;gt; &amp;lt;img align=&quot;left&quot; src=&quot;#2&quot; /&amp;gt;

&lt;/pre&gt;So, the picture will align themselves like this&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://th08.deviantart.net/fs27/300W/f/2008/156/2/9/Sexy_Bee_Girl_by_Chr1st0ph3r.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img align=&quot;left&quot; alt=&quot;Manga girl&quot; height=&quot;110&quot; src=&quot;http://th08.deviantart.net/fs27/300W/f/2008/156/2/9/Sexy_Bee_Girl_by_Chr1st0ph3r.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://th08.deviantart.net/fs45/300W/f/2009/139/3/5/Beach_Volley_Girl_quickie_by_HitmanN.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img align=&quot;left&quot; alt=&quot;Manga sexy girl&quot; height=&quot;110&quot; src=&quot;http://th08.deviantart.net/fs45/300W/f/2009/139/3/5/Beach_Volley_Girl_quickie_by_HitmanN.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://ui01.gamespot.com/96/playstation2nightshade13_2.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img align=&quot;left&quot; alt=&quot;Ninja girl&quot; height=&quot;110&quot; src=&quot;http://ui01.gamespot.com/96/playstation2nightshade13_2.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
But, this is only applicable if your is in a small width and height. It will not work if your picture has greate height and width&lt;br /&gt;
&lt;br /&gt;
Plus, your source code/HTML code will too complicated for you to read for future reference.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Using TABLE&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
To use TABLE to format your picture, simply use this following code:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&amp;lt;table border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;2&quot;&amp;gt;&amp;lt;tbody&amp;gt;
&amp;lt;tr&amp;gt; 
&amp;lt;img src=&quot;IMAGE URL 01&quot; /&amp;gt; 
&amp;lt;img src=&quot;IMAGE URL 2&quot; /&amp;gt; 
&amp;lt;/tr&amp;gt;
&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;
&lt;/pre&gt;Where &lt;b&gt;IMAGE URL&lt;/b&gt; is your image link.&lt;br /&gt;
&lt;br /&gt;
This is the outcome of the code:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;5&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;a href=&quot;http://th08.deviantart.net/fs27/300W/f/2008/156/2javascript:void%280%29/9/Sexy_Bee_Girl_by_Chr1st0ph3r.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img alt=&quot;Manga girl&quot; height=&quot;110&quot; src=&quot;http://th08.deviantart.net/fs27/300W/f/2008/156/2/9/Sexy_Bee_Girl_by_Chr1st0ph3r.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;  &lt;a href=&quot;http://th08.deviantart.net/fs45/300W/f/2009/139/3/5/Beach_Volley_Girl_quickie_by_HitmanN.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img alt=&quot;Manga sexy girl&quot; height=&quot;110&quot; src=&quot;http://th08.deviantart.net/fs45/300W/f/2009/139/3/5/Beach_Volley_Girl_quickie_by_HitmanN.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;  &lt;a href=&quot;http://ui01.gamespot.com/96/playstation2nightshade13_2.jpg&quot; rel=&quot;lightbox[side2side]&quot;&gt;&lt;img alt=&quot;Ninja girl&quot; height=&quot;110&quot; src=&quot;http://ui01.gamespot.com/96/playstation2nightshade13_2.jpg&quot; width=&quot;100&quot; /&gt;&lt;/a&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
That&#39;s it, now you can make your picture go side by side&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/5050239342630898789/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2009/12/how-to-place-image-side-by-side.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5050239342630898789'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/5050239342630898789'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2009/12/how-to-place-image-side-by-side.html' title='How to place image side by side'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-3424545616003341790</id><published>2009-11-24T11:54:00.001+08:00</published><updated>2009-11-24T12:04:03.771+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="hacking"/><category scheme="http://www.blogger.com/atom/ns#" term="PTC"/><title type='text'>BUX TO - autoclicker and multiclicker</title><content type='html'>&lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt; is a PTC (Paid To Click) program where they offer you $0.01 for every click you make. &lt;br /&gt;
&lt;br /&gt;
A lot of people have claim that this site is a scam but a lot of people too claim that they had been paid a few time. But i just request my payment ($450) and i&#39;m still waiting for it because i know they take a lot of time to processed every payment.&lt;br /&gt;
&lt;br /&gt;
This post will teach you how to make easy money with &lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt; without CHEATING.&lt;br /&gt;
&lt;br /&gt;
before you begin, you need a &lt;b&gt;real account&lt;/b&gt; with &lt;a href=&quot;http://www.alertpay.com&quot; onclick=&quot;this.href=&#39;https://www.alertpay.com/?wAk6byV6E1uFy6tCIVVFLA%3d%3d&#39;&quot; target=&quot;_blank&quot;&gt;ALERTPAY&lt;/a&gt;. What i mean a real account is, you must provide your real name, real address, and some banking info. Because if don&#39;t provide this information, you can&#39;t withdraw your money from &lt;a href=&quot;http://www.alertpay.com&quot; onclick=&quot;this.href=&#39;https://www.alertpay.com/?wAk6byV6E1uFy6tCIVVFLA%3d%3d&#39;&quot; target=&quot;_blank&quot;&gt;Alertpay&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Sign-up a free account from alertpay &lt;a href=&quot;http://www.alertpay.com&quot; onclick=&quot;this.href=&#39;https://www.alertpay.com/?wAk6byV6E1uFy6tCIVVFLA%3d%3d&#39;&quot; target=&quot;_blank&quot;&gt;http://www.alertpay.com&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;b&gt;step 1&lt;/b&gt;&lt;br /&gt;
go to &lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt; and register for &lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt; account. put &lt;b&gt;kuyau&lt;/b&gt; in the referral field and read the rest of this post to know why.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;step 2&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;THIS TRICK IS FOR MOZILLA FIREFOX USER&lt;/b&gt;&lt;br /&gt;
In firefox, navigate to &lt;b&gt;tools&lt;/b&gt; and click &lt;b&gt;Add-ons&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
when the Add-ons windows appear, go to &lt;b&gt;Get add-ons&lt;/b&gt; tab and search for &lt;b&gt;greasemonkey&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
Install this add-on and you are ready for the next step.&lt;br /&gt;
&lt;br /&gt;
When you finish installing the add-ons, go to userscript.org and get the &lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt; autoclicker. it&#39;s located here &gt;&gt; &lt;a href=&quot;http://userscripts.org/scripts/show/38267&quot; target=&quot;_blank&quot;&gt;http://userscripts.org/scripts/show/38267&lt;/a&gt;. Click the green button that say &lt;b&gt;install&lt;/b&gt;. Greasemonkey will automatically fetch the script.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;step 3&lt;/b&gt;&lt;br /&gt;
Now, login to your &lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt; account and watch the magic happen.&lt;br /&gt;
&lt;br /&gt;
when you login, the script that you get from userscript.org should automatically take you to the surf page. if it&#39;s not, then you can go there manually. click the &lt;b&gt;surf ads&lt;/b&gt; and you can see that a timer appear and the script do all the clicking for you.&lt;br /&gt;
&lt;br /&gt;
oh, you MUST allow pop-up from &lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt; in order to use the script.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;FOR INTERNET EXPLORER, NETSCAPE, OPERA AND OTHER BROWSER USER&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;step 1&lt;/b&gt;&lt;br /&gt;
same as above, register an account at &lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt;. put &lt;b&gt;kuyau&lt;/b&gt; in the referral field. you won&#39;t lose any of your income but increase a little.&lt;br /&gt;
&lt;br /&gt;
A normal payout for every click you made is $0.01. but when you sign with that referral, every click you made worth $0.015.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;step 2&lt;/b&gt;&lt;br /&gt;
ok, here&#39;s the trick.&lt;br /&gt;
&lt;br /&gt;
login to your account as usual and go to &lt;b&gt;surf ads&lt;/b&gt;&lt;br /&gt;
click on of the link and wait for to timer to expire (30 seconds). when the time expired, wait for the confirmation to appear. it will say &lt;b&gt;done&lt;/b&gt; with a green check.&lt;br /&gt;
&lt;br /&gt;
Now the fun part, in address bar, you&#39;ll see the link of the ads. like this &lt;br /&gt;
&lt;pre&gt;http://www.bux.to/view.php?ad=110714&lt;/pre&gt;&lt;br /&gt;
now, add 0 (zero) in front of the number. (like this)&lt;br /&gt;
&lt;pre&gt;http://www.bux.to/view.php?ad=&lt;b&gt;0&lt;/b&gt;110714&lt;/pre&gt;&lt;br /&gt;
the time start is ticking again! :D. now, wait again until expired and wait for the confirmation to appear. &lt;br /&gt;
&lt;br /&gt;
When it appear, add 0 again in the address bar like this.&lt;br /&gt;
&lt;pre&gt;http://www.bux.to/view.php?ad=&lt;b&gt;00&lt;/b&gt;110714&lt;/pre&gt;&lt;br /&gt;
do this until you satisfied and move to the next ads.&lt;br /&gt;
&lt;br /&gt;
ok, let&#39;s do some math.&lt;br /&gt;
&lt;br /&gt;
if your &lt;b&gt;current ad&lt;/b&gt; count is 10, your income is $0.10.&lt;br /&gt;
but, if you put 10 zero in front of every of your current ad count, one ad is worth $0.15&lt;br /&gt;
and you have 10 ads that means,&lt;br /&gt;
&lt;pre&gt;10 ads * 10 zero = 100 ads
100 ads * $0.015 = $1.50
your income for one week is $1.50 * 7 days = $10.50
your income for one month is $10.50 * 30 days = $315 &lt;/pre&gt;W&lt;br /&gt;
ow.. in just a month, you are ready to cash out your FREE MONEY!!!!&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://bux.to/&quot; onclick=&quot;this.href=&#39;http://bux.to/?r=kuyau&#39;&quot; target=&quot;_blank&quot;&gt;Bux.to&lt;/a&gt; is not that cheap. Everyday, they will give you 26 to 32 (max) ads for to click.&lt;br /&gt;
&lt;br /&gt;
if you add 10 zero for 20 ads, that means your income for 25 ads is $3.75!!&lt;br /&gt;
&lt;br /&gt;
That&#39;s a lot of money you get for just clicking and ads.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/3424545616003341790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2009/11/bux-to-autoclicker-and-multiclicker.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/3424545616003341790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/3424545616003341790'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2009/11/bux-to-autoclicker-and-multiclicker.html' title='BUX TO - autoclicker and multiclicker'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-7548075181153338149</id><published>2009-11-06T17:54:00.002+08:00</published><updated>2009-11-16T05:10:31.972+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Computer"/><category scheme="http://www.blogger.com/atom/ns#" term="windows XP"/><title type='text'>Computer Accronym</title><content type='html'>A simple dictionary about short-senteces in computer world.&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;a href=&quot;#A&quot;&gt;A&lt;/a&gt; | &lt;a href=&quot;#B&quot;&gt;B&lt;/a&gt; | &lt;a href=&quot;#C&quot;&gt;C&lt;/a&gt; | &lt;a href=&quot;#D&quot;&gt;D&lt;/a&gt; | &lt;a href=&quot;#E&quot;&gt;E&lt;/a&gt; | &lt;a href=&quot;#F&quot;&gt;F&lt;/a&gt; | &lt;a href=&quot;#G&quot;&gt;G&lt;/a&gt; | &lt;a href=&quot;#H&quot;&gt;H&lt;/a&gt; | &lt;a href=&quot;#I&quot;&gt;I&lt;/a&gt; | &lt;a href=&quot;#J&quot;&gt;J&lt;/a&gt; | &lt;a href=&quot;#K&quot;&gt;K&lt;/a&gt; | &lt;a href=&quot;#L&quot;&gt;L&lt;/a&gt; | &lt;a href=&quot;#M&quot;&gt;M&lt;/a&gt; | &lt;a href=&quot;#N&quot;&gt;N&lt;/a&gt; | &lt;a href=&quot;#O&quot;&gt;O&lt;/a&gt; | &lt;a href=&quot;#P&quot;&gt;P&lt;/a&gt; | &lt;a href=&quot;#Q&quot;&gt;Q&lt;/a&gt; | &lt;a href=&quot;#R&quot;&gt;R&lt;/a&gt; | &lt;a href=&quot;#S&quot;&gt;S&lt;/a&gt; | &lt;a href=&quot;#T&quot;&gt;T&lt;/a&gt; | &lt;a href=&quot;#U&quot;&gt;U&lt;/a&gt; | &lt;a href=&quot;#V&quot;&gt;V&lt;/a&gt; | &lt;a href=&quot;#W&quot;&gt;W&lt;/a&gt; | &lt;a href=&quot;#X&quot;&gt;X&lt;/a&gt; | Y | Z |&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a name=&quot;A&quot;&gt;A&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;ADSL&lt;/b&gt;  
Asymmetric Digital Subscriber Line

&lt;b&gt;AGP&lt;/b&gt;  
Accelerated Graphics Port

&lt;b&gt;ALI&lt;/b&gt;  
Acer Labs, Incorporated

&lt;b&gt;ALU&lt;/b&gt;  
Arithmetic Logic Unit

&lt;b&gt;AMD&lt;/b&gt;  
Advanced Micro Devices

&lt;b&gt;APC&lt;/b&gt;  
American Power Conversion

&lt;b&gt;ASCII&lt;/b&gt; 
American Standard Code for Information Interchange

&lt;b&gt;ASIC&lt;/b&gt;  
Application Specific Integrated Circuit

&lt;b&gt;ASPI&lt;/b&gt;  
Advanced SCSI Programming Interface

&lt;b&gt;AT&lt;/b&gt;
Advanced Technology

&lt;b&gt;ATIATI &lt;/b&gt;
Technologies Inc.

&lt;b&gt;ATX&lt;/b&gt;
Advanced Technology Extended&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;B&quot;&gt;B&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;BFG&lt;/b&gt;
BFG Technologies

&lt;b&gt;BIOS&lt;/b&gt;
Basic Input Output System

&lt;b&gt;BNC&lt;/b&gt;
Barrel Nut Connector&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;C&quot;&gt;C&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;CAS&lt;/b&gt;
Column Address Signal

&lt;b&gt;CD&lt;/b&gt;
Compact Disk

&lt;b&gt;CDR&lt;/b&gt;
Compact Disk Recorder
&lt;b&gt;
CDRW&lt;/b&gt;
Compact Disk Re-Writer

&lt;b&gt;CD-ROM&lt;/b&gt;
Compact Disk - Read Only Memory
&lt;b&gt;
CFM&lt;/b&gt;
Cubic Feet per Minute (ft/min)

&lt;b&gt;CMOS&lt;/b&gt;
Complementary Metal Oxide Semiconductor

&lt;b&gt;CPU&lt;/b&gt;
Central Processing Unit

&lt;b&gt;CTX &lt;/b&gt;
CTX Technology Corporation (Commited to Excellence)&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;D&quot;&gt;D&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;DDR &lt;/b&gt;
Double Data Rate

&lt;b&gt;DDR-SDRAM &lt;/b&gt;
Double Data Rate - Synchronous Dynamic Random Access Memory

&lt;b&gt;DFI &lt;/b&gt;
DFI Inc. (Design for Innovation)

&lt;b&gt;DIMM &lt;/b&gt;
Dual Inline Memory Module

&lt;b&gt;DRAM &lt;/b&gt;
Dynamic Random Access Memory

&lt;b&gt;DPI &lt;/b&gt;
Dots Per Inch

&lt;b&gt;DSL &lt;/b&gt;
See &lt;a href=&quot;#A&quot;&gt;ASDL&lt;/a&gt;

&lt;b&gt;DVD &lt;/b&gt;
Digital Versatile Disc

&lt;b&gt;DVD-RAM &lt;/b&gt;
Digital Versatile Disk - Random Access Memory&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;E&quot;&gt;E&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;ECC &lt;/b&gt;
Error Correction Code

&lt;b&gt;ECS &lt;/b&gt;
Elitegroup Computer Systems

&lt;b&gt;EDO &lt;/b&gt;
Extended Data Out

&lt;b&gt;EEPROM &lt;/b&gt;
Electrically Erasable Programmable Read-Only Memory

&lt;b&gt;EPROM&lt;/b&gt;
Erasable Programmable Read-Only Memory

&lt;b&gt;EVGA&lt;/b&gt;
EVGA Corporation&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;F&quot;&gt;F&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;FC-PGA &lt;/b&gt;
Flip Chip Pin Grid Array

&lt;b&gt;FDC &lt;/b&gt;
Floppy Disk Controller

&lt;b&gt;FDD &lt;/b&gt;
Floppy Disk Drive

&lt;b&gt;FPS &lt;/b&gt;
Frame Per Second

&lt;b&gt;FPU &lt;/b&gt;
Floating Point Unit

&lt;b&gt;FSAA &lt;/b&gt;
Full Screen Anti-Aliasing

&lt;b&gt;FS &lt;/b&gt;
For Sale

&lt;b&gt;FSB &lt;/b&gt;
Front Side Bus&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;G&quot;&gt;G&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;GB &lt;/b&gt;
Gigabytes

&lt;b&gt;GBps &lt;/b&gt;
Gigabytes per second or Gigabits per second

&lt;b&gt;GDI  &lt;/b&gt;
Graphical Device Interface

&lt;b&gt;GHz &lt;/b&gt;
GigaHertz&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;H&quot;&gt;H&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;HDD &lt;/b&gt;
Hard Disk Drive

&lt;b&gt;HIS &lt;/b&gt;
Hightech Information System Limited

&lt;b&gt;HP &lt;/b&gt;
Hewlett-Packard Development Company

&lt;b&gt;HSF&lt;/b&gt;
Heatsink-Fan&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;I&quot;&gt;I&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;IBM &lt;/b&gt;
International Business Machines Corporation

&lt;b&gt;IC 
&lt;/b&gt;Integrated Circuit

&lt;b&gt;IDE &lt;/b&gt;
Integrated Drive Electronics

&lt;b&gt;IFS&lt;/b&gt;
Item for Sale

&lt;b&gt;IRQ &lt;/b&gt;
Interrupt Request

&lt;b&gt;ISA &lt;/b&gt;
Industry Standard Architecture

&lt;b&gt;ISO &lt;/b&gt;
International Standards Organization&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;J&quot;&gt;J&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;JBL &lt;/b&gt;
JBL (Jame B. Lansing) Speakers

&lt;b&gt;JVC &lt;/b&gt;
JVC Company of America&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; k=&quot;&quot; name=&quot;&quot;&gt;K&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;Kbps &lt;/b&gt;
Kilobits Per Second

&lt;b&gt;KBps &lt;/b&gt;
KiloBytes per second&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;L&quot;&gt;L&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;LG &lt;/b&gt;
LG Electronics

&lt;b&gt;LAN &lt;/b&gt;
Local Area Network

&lt;b&gt;LCD &lt;/b&gt;
Liquid Crystal Display

&lt;b&gt;LDT &lt;/b&gt;
Lightning Data Transport

&lt;b&gt;LED &lt;/b&gt;
Light Emitting Diode&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;M&quot;&gt;M&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;MAC &lt;/b&gt;
Media Access Control

&lt;b&gt;MB &lt;/b&gt;
MotherBoard or Megabyte

&lt;b&gt;MBps &lt;/b&gt;
Megabytes Per Second

&lt;b&gt;Mbps &lt;/b&gt;
Megabits Per Second or Megabits Per Second

&lt;b&gt;MHz &lt;/b&gt;
MegaHertz

&lt;b&gt;MIPS &lt;/b&gt;
Million Instructions Per Second

&lt;b&gt;MMX &lt;/b&gt;
Multi-Media Extensions

&lt;b&gt;MSI &lt;/b&gt;
Micro Star International&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;N&quot;&gt;N&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;NAS &lt;/b&gt;
Network Attached Storage

&lt;b&gt;NAT &lt;/b&gt;
Network Address Translation

&lt;b&gt;NEC &lt;/b&gt;
NEC Corporation

&lt;b&gt;NIC &lt;/b&gt;
Network Interface Card&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;O&quot;&gt;O&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;OC &lt;/b&gt;
Overclock (Over Clock)

&lt;b&gt;OCZ &lt;/b&gt;
OCZ Technology

&lt;b&gt;OEM &lt;/b&gt;
Original Equipment Manufacturer&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;P&quot;&gt;P&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;PC &lt;/b&gt;
Personal Computer

&lt;b&gt;PCB &lt;/b&gt;
Printed Circuit Board

&lt;b&gt;PCI &lt;/b&gt;
Peripheral Component Interconnect

&lt;b&gt;PDA &lt;/b&gt;
Personal Digital Assistant

&lt;b&gt;PCMCIA &lt;/b&gt;
Peripheral Component Microchannel Interconnect Architecture

&lt;b&gt;PGA &lt;/b&gt;
Professional Graphics Array

&lt;b&gt;PLD &lt;/b&gt;
Programmable Logic Device

&lt;b&gt;PM &lt;/b&gt;
Private Message / Private Messaging

&lt;b&gt;PnP &lt;/b&gt;
Plug &#39;n Play

&lt;b&gt;PNY &lt;/b&gt;
PNY Technology

&lt;b&gt;POST &lt;/b&gt;
Power On Self Test

&lt;b&gt;PPPoA &lt;/b&gt;
Point-to-Point Protocol over ATM

&lt;b&gt;PPPoE &lt;/b&gt;
Point-to-Point Protocol over Ethernet

&lt;b&gt;PQI &lt;/b&gt;
PQI Corporation

&lt;b&gt;PSU &lt;/b&gt;
Power Supply Unit&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;&quot; name=&quot;R&quot;&gt;R&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;RAID &lt;/b&gt;
Redundant Array of Inexpensive Disks

&lt;b&gt;RAM &lt;/b&gt;
Random Access Memory

&lt;b&gt;RAMDAC &lt;/b&gt;
Random Access Memory Digital Analog Convertor

&lt;b&gt;RDRAM &lt;/b&gt;
Rambus Dynamic Random Access Memory

&lt;b&gt;ROM &lt;/b&gt;
Read Only Memory

&lt;b&gt;RPM &lt;/b&gt;
Revolutions Per Minute&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;S&quot;&gt;S&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;SASID &lt;/b&gt;
Self-scanned Amorphous Silicon Integrated Display

&lt;b&gt;SCA &lt;/b&gt;
SCSI Configured Automatically

&lt;b&gt;SCSI &lt;/b&gt;
Small Computer System Interface

&lt;b&gt;SDRAM &lt;/b&gt;
Synchronous Dynamic Random Access Memory
&lt;b&gt;
SECC&lt;/b&gt;
Single Edge Contact Connector

&lt;b&gt;SODIMM &lt;/b&gt;
Small Outline Dual Inline Memory Module
&lt;b&gt;
SPARC &lt;/b&gt;
Scalable Processor ArChitecture
&lt;b&gt;
SOHO &lt;/b&gt;
Small Office Home Office

&lt;b&gt;SRAM &lt;/b&gt;
Static Random Access Memory
&lt;b&gt;
SSE &lt;/b&gt;
Streaming SIMD Extensions

&lt;b&gt;SVGA &lt;/b&gt;
Super Video Graphics Array

&lt;b&gt;S/PDIF &lt;/b&gt;
Sony/Philips Digital Interface&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;T&quot;&gt;&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;TB&lt;/b&gt;
Terabytes

&lt;b&gt;TBps &lt;/b&gt;
Terabytes per second

&lt;b&gt;Tbps &lt;/b&gt;
Terabits per second

&lt;b&gt;TDK &lt;/b&gt;
TDK Electronics

&lt;b&gt;TEC &lt;/b&gt;
Thermoelectric Cooler

&lt;b&gt;TPC &lt;/b&gt;
TipidPC

&lt;b&gt;TWAIN &lt;/b&gt;
Technology Without An Important Name&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;U&quot;&gt;U&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;UART&lt;/b&gt;
Universal Asynchronous Receiver/Transmitter

&lt;b&gt;USB &lt;/b&gt;
Universal Serial Bus

&lt;b&gt;UTP &lt;/b&gt;
Unshieled Twisted Pair&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;V&quot;&gt;V&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;pre&gt;&lt;b&gt;VCD &lt;/b&gt;
Video CD

&lt;b&gt;VPN &lt;/b&gt;
Virtual Private Network&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;W&quot;&gt;W&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;pre&gt;&lt;b&gt;WAN &lt;/b&gt;
Wide Area Network

&lt;b&gt;WTB &lt;/b&gt;
Want to Buy

&lt;b&gt;WYSIWYG &lt;/b&gt;
What You See Is What You Get
&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;a href=&quot;&quot; name=&quot;X&quot;&gt;X&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;pre&gt;&lt;b&gt;XGA&lt;/b&gt;
Extended Graphics Array

&lt;b&gt;XFX&lt;/b&gt;
XFX Graphics, a Division of Pine

&lt;b&gt;XMS&lt;/b&gt;
Extended Memory Specification

&lt;b&gt;XT &lt;/b&gt;
Extended Technology&lt;/pre&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/7548075181153338149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2009/11/computer-accronym.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/7548075181153338149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/7548075181153338149'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2009/11/computer-accronym.html' title='Computer Accronym'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4629712116591497779.post-969019635287657684</id><published>2009-11-06T17:41:00.000+08:00</published><updated>2009-11-06T17:41:10.234+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="How to"/><category scheme="http://www.blogger.com/atom/ns#" term="windows XP"/><title type='text'>How to add your own windows tips</title><content type='html'>Seeing the same tips every time you logon in windows might make you to puke because you see it almost every day, every minute, or even every second (because you reboot every second :D). Here&#39;s a little tips you can do to make you own tips&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Open your registry and find the key below.&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Explorer\ Tips&lt;/pre&gt;&lt;br /&gt;
Create a new string valued named by incrementing the existing value names and set it to the required tip text.&lt;br /&gt;
&lt;br /&gt;
That&#39;s it, you are done!&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://kuyau.blogspot.com/feeds/969019635287657684/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://kuyau.blogspot.com/2009/11/how-to-add-your-own-windows-tips.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/969019635287657684'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4629712116591497779/posts/default/969019635287657684'/><link rel='alternate' type='text/html' href='http://kuyau.blogspot.com/2009/11/how-to-add-your-own-windows-tips.html' title='How to add your own windows tips'/><author><name>xenoMorf</name><uri>http://www.blogger.com/profile/10962093283489798747</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnoc_WsCriCB1ljKqg0DRKLm4ymW3k8but98QcHyYhss49qi5nh4LYQx5ICxujN2SpogXef42kK6fHN8xVIPTWgNa45TlT6ZnRqqSJ-LQ-MfmuCMcuXV7M5UJvIBm60zA/s220/LiZKY.jpg'/></author><thr:total>0</thr:total></entry></feed>