<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gaara de laros</title>
	<atom:link href="http://laros.web.id/feed/" rel="self" type="application/rss+xml" />
	<link>http://laros.web.id</link>
	<description></description>
	<lastBuildDate>Wed, 16 Jun 2010 14:34:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to mass chmod file and folder ?</title>
		<link>http://laros.web.id/2010/06/16/how-to-mass-chmod-file-and-folder/</link>
		<comments>http://laros.web.id/2010/06/16/how-to-mass-chmod-file-and-folder/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 14:14:40 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Tips and Trick]]></category>
		<category><![CDATA[Webserver]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=426</guid>
		<description><![CDATA[Mass chmod folder : find /home/*/public_html -type d -exec chmod 755 {} \; Mass chmod file : find /home/*/public_html -type f -exec chmod 644 {} \; Tested with freebsd server and working 100% :D source Related Posts:Find r57 and c99 Shells Hidden Inside PHP and TXT Files (0)Mencari file inject di webserver (1)]]></description>
			<content:encoded><![CDATA[<p>Mass chmod folder :</p>
<pre class="brush: bash;">find /home/*/public_html -type d -exec chmod 755 {} \;</pre>
<p>Mass chmod file :</p>
<pre class="brush: bash;">find /home/*/public_html -type f -exec chmod 644 {} \;</pre>
<p>Tested with freebsd server and working 100% :D</p>
<p><span id="more-426"></span> <a href="http://www.diskusiwebhosting.com/">source</a></p>
<h3  class="related_post_title">Related Posts:</h3><ul class="related_post"><li><a href="http://laros.web.id/2010/06/16/find-r57-and-c99-shells-hidden-inside-php-and-txt-files/" title="Find r57 and c99 Shells Hidden Inside PHP and TXT Files">Find r57 and c99 Shells Hidden Inside PHP and TXT Files</a> (0)</li><li><a href="http://laros.web.id/2010/02/22/mencari-file-inject-di-webserver/" title="Mencari file inject di webserver">Mencari file inject di webserver</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/06/16/how-to-mass-chmod-file-and-folder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Find r57 and c99 Shells Hidden Inside PHP and TXT Files</title>
		<link>http://laros.web.id/2010/06/16/find-r57-and-c99-shells-hidden-inside-php-and-txt-files/</link>
		<comments>http://laros.web.id/2010/06/16/find-r57-and-c99-shells-hidden-inside-php-and-txt-files/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 07:27:47 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Tips and Trick]]></category>
		<category><![CDATA[Webserver]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=412</guid>
		<description><![CDATA[When malicious intruders compromise a web server, there&#8217;s an excellent chance a famous Russian PHP script, r57shell, will follow. The r57shell PHP script gives the intruder a number of capabilities, including, but not limited to: downloading files, uploading files, creating backdoors, setting up a spam relay, forging email, bouncing a connection to decrease the risk [...]]]></description>
			<content:encoded><![CDATA[<p>When malicious intruders compromise a web server, there&#8217;s an  excellent chance a famous Russian PHP script, r57shell, will follow. The  r57shell PHP script gives the intruder a number of capabilities,  including, but not limited to: downloading files, uploading files,  creating backdoors, setting up a spam relay, forging email, bouncing a  connection to decrease the risk of being caught, and even taking control  of SQL databases. All these functions become readily available through  an easy to use web interface, but now you can fight back.</p>
<p>A Turkish member on a forum I participate in released this nifty  little bash command, but first, make sure you execute <em>updatedb</em> so <em>find</em> has an up to date image to search:</p>
<pre class="brush: bash;">find /var/www/ -name &quot;*&quot;.php -type f -print0 | xargs -0 grep r57 | uniq -c | sort -u | cut -d&quot;:&quot; -f1 | awk '{print &quot;rm -rf &quot; $2}' | uniq</pre>
<p>You can also search regular text (.txt) files:</p>
<p><span id="more-412"></span></p>
<pre class="brush: bash;">find /var/www/  -name &quot;*&quot;.txt  -type f -print0  | xargs -0 grep r57 | uniq -c  | sort -u  | cut -d&quot;:&quot; -f1  | awk '{print &quot;rm -rf &quot; $2}' | uniq</pre>
<p>Or even cleverly disguised GIF image files:</p>
<pre class="brush: bash;">find /var/www/  -name &quot;*&quot;.gif  -type f -print0  | xargs -0 grep r57 | uniq -c  | sort -u  | cut -d&quot;:&quot; -f1  | awk '{print &quot;rm -rf &quot; $2}' | uniq</pre>
<p>The command might appear scary, or even malicious to an inexperienced  Linux admin, but here&#8217;s the break down.</p>
<pre class="brush: bash;">find /var/www/</pre>
<p><em>find</em> is a must know command when dealing with Linux. <em>Find</em> is what&#8217;s used to perform command line file searches. The path <em>/var/www</em> is the directory <em>find</em> will search, in addition to all  directories contained within <em>www</em>, but nothing above. For  example, <em>/var/mail</em> is not searched. If your publicly accessible  files are not contained in <em>/var/www</em>, then you&#8217;ll obviously  need to replace <em>/var/www</em> with the correct path.</p>
<pre class="brush: bash;">-name &quot;*&quot;.php  -type f -print0</pre>
<p>This portion of the command tells <em>find</em> to search file names  (not directories) ending in .php. Anything else is ignored.</p>
<pre class="brush: bash;">| xargs -0 grep r57</pre>
<p>The pipe symbol ( | ) tells Linux to take the results of the first  command (the PHP files we searched for), and pass them along to the  second command, <em>xargs</em>. At this point, all located files are  searched for any mention of r57, not just the file names, but the actual  content within the files.</p>
<pre class="brush: bash;">| uniq -c  | sort -u</pre>
<p><em>uniq</em> will prevent duplicate results from displaying. The  command is smart enough to know when multiple instances are found in a  single file, resulting in a single mention instead of potentially  hundreds, flooding your console with repeated messages. The <em>-c</em> parameter tells <em>uniq</em> to count the number of consecutive lines  that were combined. <em>sort</em> will take the unordered results, and  display them in some type of orderly fashion.</p>
<pre class="brush: bash;">| cut -d&quot;:&quot; -f1</pre>
<p><em>cut</em> will prevent the line of code that contains r57 from  showing up in the results. The output is just a simple mention of the  filename or names, and how many occurrences. There&#8217;s no need to display  the actual code if your intentions are to remove the malicious files.</p>
<pre class="brush: bash;">| awk '{print &quot;rm -rf &quot; $2}'</pre>
<p><em>awk</em>, a programming language in itself, is a very powerful  command with many beneficial uses. In this command, <em>awk</em> is  instructed to print <em>rm -rf</em> with the file path and file name  appended. Here&#8217;s an example output:</p>
<pre class="brush: bash;">rm -rf  /var/www/users/domain.com/images/uploads/r57shell.php</pre>
<p><em>rm -rf</em> is used to delete files without asking questions.  The, &#8220;<em>are you sure you want to delete &#8230;</em>&#8221; is skipped, so be  careful when using the <em>-rf</em> switch, it&#8217;s very destructive if  used without care. Notice the <em>print</em> portion &#8211; this means the  command is only printed, not carried out. Once you&#8217;ve confirmed all the  found files are malicious, you can easily dumb the results into a file,  make the file executable, and delete the plague in one shot instead of  manually deleting individual files one by one.</p>
<p>Another popular tool is the c99shell, which I also recommend  searching for. Just change three characters:</p>
<pre class="brush: bash;">find /var/www/  -name &quot;*&quot;.php  -type f -print0  | xargs -0 grep c99 | uniq -c  | sort -u  | cut -d&quot;:&quot; -f1  | awk '{print &quot;rm -rf &quot; $2}' | uniq</pre>
<p>If you&#8217;re interested in seeing an example of the c99shell interface,  here&#8217;s a rooted site:</p>
<p>http://www.iett.gov.tr/en/kitap/</p>
<p><a href="http://webcache.googleusercontent.com/search?q=cache:wNIbBzc71v0J:www.nullamatix.com/find-r57-and-c99-shells-hidden-inside-php-and-txt-files/+http://www.nullamatix.com/find-r57-and-c99-shells-hidden-inside-php-and-txt-files/&amp;cd=1&amp;hl=en&amp;ct=clnk&amp;gl=us&amp;client=firefox-a">source</a></p>
<h3  class="related_post_title">Related Posts:</h3><ul class="related_post"><li><a href="http://laros.web.id/2010/06/16/how-to-mass-chmod-file-and-folder/" title="How to mass chmod file and folder ?">How to mass chmod file and folder ?</a> (1)</li><li><a href="http://laros.web.id/2010/02/22/mencari-file-inject-di-webserver/" title="Mencari file inject di webserver">Mencari file inject di webserver</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/06/16/find-r57-and-c99-shells-hidden-inside-php-and-txt-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Believe</title>
		<link>http://laros.web.id/2010/05/26/i-believe/</link>
		<comments>http://laros.web.id/2010/05/26/i-believe/#comments</comments>
		<pubDate>Wed, 26 May 2010 15:57:28 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Lyrics]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=409</guid>
		<description><![CDATA[I believe… When you are not with me there are no stars in the sky. I believe… The way back to you will feel a little far. I’ll carry all those memories deep inside me. I’ll feel pain, it’ll make tears fall. When I won’t cry you will leave me With no change and no [...]]]></description>
			<content:encoded><![CDATA[<p>I believe… When you are not with me there are no stars in the sky.<br />
I believe… The way back to you will feel a little far.<br />
I’ll carry all those memories deep inside me.<br />
I’ll feel pain, it’ll make tears fall.<br />
When I won’t cry you will leave me<br />
With no change and no tears.<br />
Someday again the tears will come around<br />
You know it<br />
I’ll believe that you are waiting.<br />
I do it for you.<br />
I believe… It’ll hurt me to see, you can’t cry.<br />
I believe… My tears will fall, you should turn back to me again.<br />
Again I’ll glimpse you come into my sight<br />
And it’ll make my tears fall.<br />
When I won’t cry you will leave me<br />
With no change and no tears.<br />
Someday again the tears will come around<br />
You know it<br />
I’ll believe that you are waiting.<br />
I do it for you.<br />
Before I knew you, the world was dazzling.<br />
From that sky I got left with tears.<br />
I will care for that person.<br />
You are the only reason…<br />
To me the wait gives me enough happiness.<br />
Love is the only reason…<br />
As days pass by,<br />
If you forget the way, I’ll be waiting<br />
I do it for you.<br />
I do it for you.</p>
<h3  class="related_post_title">Most Commented:</h3><ul class="related_post"><li><a href="http://laros.web.id/2008/11/06/cheat-tantra-online/" title="Cheat Tantra Online">Cheat Tantra Online</a> (55)</li><li><a href="http://laros.web.id/2008/12/21/selamat-hari-ibu/" title="Selamat Hari Ibu">Selamat Hari Ibu</a> (25)</li><li><a href="http://laros.web.id/about/" title="About">About</a> (24)</li><li><a href="http://laros.web.id/2008/12/24/begitu-mudahnya-blogger-mengadili-perusahaan-webhosting-2/" title="Begitu Mudahnya Blogger Mengadili Penyedia Webhost">Begitu Mudahnya Blogger Mengadili Penyedia Webhost</a> (19)</li><li><a href="http://laros.web.id/2009/01/15/hati-hati-penipuan-berkedok-pt-penyalur-tenaga-kerja/" title="Hati-Hati: Penipuan Berkedok PT Penyalur Tenaga Kerja">Hati-Hati: Penipuan Berkedok PT Penyalur Tenaga Kerja</a> (19)</li><li><a href="http://laros.web.id/2009/01/06/israel-memakai-senjata-kimia-di-gaza/" title="Israel Memakai Senjata Kimia di Gaza">Israel Memakai Senjata Kimia di Gaza</a> (18)</li><li><a href="http://laros.web.id/2008/12/27/plugins-top-komentator-hadiah-untuk-teman-2/" title="Plugins Top Komentator Hadiah Untuk Teman">Plugins Top Komentator Hadiah Untuk Teman</a> (17)</li><li><a href="http://laros.web.id/2008/06/15/ujian-nasional-sma-menyedihkan/" title="Ujian Nasional SMA Menyedihkan">Ujian Nasional SMA Menyedihkan</a> (16)</li><li><a href="http://laros.web.id/2008/12/19/alexa-widget-error/" title="Alexa Widget Error?">Alexa Widget Error?</a> (16)</li><li><a href="http://laros.web.id/2008/12/18/tingkatkan-trafik-dengan-keyword-pornografi/" title="Tingkatkan Trafik Dengan Keyword Pornografi">Tingkatkan Trafik Dengan Keyword Pornografi</a> (13)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/05/26/i-believe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Terbakar Cemburu</title>
		<link>http://laros.web.id/2010/05/18/terbakar-cemburu/</link>
		<comments>http://laros.web.id/2010/05/18/terbakar-cemburu/#comments</comments>
		<pubDate>Tue, 18 May 2010 03:15:31 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Lyrics]]></category>
		<category><![CDATA[cheat 1 hit tantra]]></category>
		<category><![CDATA[cheat rupee tantra online indonesia]]></category>
		<category><![CDATA[cheat tantra online]]></category>
		<category><![CDATA[cheat tantra online indonesia]]></category>
		<category><![CDATA[cheat wanted gung4nt3ng]]></category>
		<category><![CDATA[download cheat tantra online indonesia]]></category>
		<category><![CDATA[padi]]></category>
		<category><![CDATA[tantra online cheat]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=406</guid>
		<description><![CDATA[aku terbakar cemburu cemburu buta tak bisa ku padamkan amarah dihatiku sakit menahan sakit hati menyimpan perih tak bisa ku terima apa yang ku alami ibaratnya jantung hati tersayat oedang tajam betapa sakitnya ku rasakan itu dan kini aku tahu ku sangat begitu dalamnya aku sungguh mencintaimu mungkin selama ini ku salah tak pernah pedulikanmu [...]]]></description>
			<content:encoded><![CDATA[<p>aku terbakar cemburu<br />
cemburu buta<br />
tak bisa ku padamkan amarah dihatiku<br />
sakit menahan sakit hati<br />
menyimpan perih<br />
tak bisa ku terima apa yang ku alami</p>
<p>ibaratnya jantung hati<br />
tersayat oedang tajam<br />
betapa sakitnya<br />
ku rasakan itu</p>
<p>dan kini aku tahu ku sangat<br />
begitu dalamnya aku sungguh mencintaimu<br />
mungkin selama ini ku salah<br />
tak pernah pedulikanmu setulusnya hatiku</p>
<p>ku akui ternyata<br />
sakitnya membakar hati<br />
sudah membuatmu pergi<br />
kini hanya tinggalkan luka</p>
<p>begitu dalamnya aku sungguh mencintaimu<br />
mungkin selama ini aku salah<br />
tak pernah pedulikanmu setulusnya hatiku</p>
<p>mungkin selama ini ku salah</p>
<h3  class="related_post_title">Related Posts:</h3><ul class="related_post"><li><a href="http://laros.web.id/2008/11/06/cheat-tantra-online/" title="Cheat Tantra Online">Cheat Tantra Online</a> (55)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/05/18/terbakar-cemburu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalasi Cinta Kasih</title>
		<link>http://laros.web.id/2010/05/15/instalasi-cinta-kasih/</link>
		<comments>http://laros.web.id/2010/05/15/instalasi-cinta-kasih/#comments</comments>
		<pubDate>Sat, 15 May 2010 09:40:52 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=402</guid>
		<description><![CDATA[Customer Service (CS) : Ya, ada yang bisa saya bantu? Pelanggan (P) : Baik, setelah saya pertimbangkan, saya ingin menginstal cinta kasih. Bisakah anda memandu saya menyelesaikan prosesnya? CS : Ya, saya dapat membantu anda. Anda siap melakukannya? P : Baik, saya tidak mengerti secara teknis, tetapi saya siap untuk menginstalnya sekarang. Apa yang harus [...]]]></description>
			<content:encoded><![CDATA[<p>Customer Service (CS) : Ya, ada yang bisa saya bantu?</p>
<p>Pelanggan (P) : Baik, setelah saya pertimbangkan, saya ingin  menginstal cinta kasih. Bisakah anda memandu saya menyelesaikan  prosesnya?</p>
<p>CS : Ya, saya dapat membantu anda. Anda siap melakukannya?</p>
<p>P : Baik, saya tidak mengerti secara teknis, tetapi saya siap untuk  menginstalnya sekarang. Apa yang harus saya lakukan dahulu?</p>
<p>CS : Langkah pertama adalah membuka HATI anda. Tahukan anda di mana  HATI anda?</p>
<p>P : Ya, tapi ada banyak program yang sedang aktif. Apakah saya tetap  bisa menginstalnya sementara program-program tersebut aktif?</p>
<p>CS : Program apa saja yang sedang aktif?</p>
<p>P : Sebentar, saya lihat dulu, Program yang sedang aktif adalah  SAKITHATI.EXE, MINDER.EXE, DENDAM.EXE dan BENCI.COM.</p>
<p><span id="more-402"></span>CS : Tidak apa-apa. CINTA-KASIH akan menghapus SAKITHATI.EXE dari  system operasi Anda. Program tersebut akan tetap ada dalam memori anda,  tetapi tidak lama karena akan tertimpa program lain. CINTA-KASIH akan  menimpa MINDER.EXE dengan modul yang disebut PERCAYADIRI.EXE. Tetapi  anda harus mematikan BENCI.COM dan DENDAM.EXE. Program tersebut akan  menyebabkan CINTA-KASIH tidak terinstal secara sempurna. Dapatkah anda  mematikannya?</p>
<p>P : Saya tidak tahu cara mematikannya. Dapatkah anda memandu saya?</p>
<p>CS : Dengan senang hati. Gunakan Start menu dan aktifkan  MEMAAFKAN.EXE. Aktifkan program ini sesering mungkin sampai BENCI.COM  dan DENDAM.EXE terhapus.</p>
<p>P : OK, sudah. CINTA-KASIH mulai terinstal secara otomatis. Apakah  ini wajar?</p>
<p>CS : Ya, anda akan menerima pesan bahwa CINTA-KASIH akan terus  diinstal kembali dalam HATI anda. Apakah anda melihat pesan tersebut?</p>
<p>P : Ya. Apakah sudah selesai terinstal?</p>
<p>CS : Ya, tapi ingat bahwa anda hanya punya program dasarnya saja.  Anda perlu mulai menghubungkan HATI yang lain agar untuk mengupgradenya.</p>
<p>P : Oops. Saya mendapat pesan error. Apa yang harus saya lakukan?</p>
<p>CS : Apa pesannya?</p>
<p>P : “ERROR 412 &#8211; PROGRAM NOT RUN ON INTERNAL COMPONENT”. apa artinya?</p>
<p>CS : Jangan kuatir, itu masalah biasa. Artinya, program CINTA-KASIH  diset untuk aktif di HATI eksternal tetapi belum bisa aktif dalam HATI  internal anda. Ini adalah salah satu kerumitan pemrograman, tetapi dalam  istilah non-teknis ini berarti anda harus men-”CINTA-KASIH”-i mesin  anda sendiri sebelum men-”CINTA-KASIH”-i orang lain.</p>
<p>P : Lalu apa yang harus saya lakukan?</p>
<p>CS : Dapatkan anda klik pulldown direktori yang disebut “PASRAH”?</p>
<p>P : Ya, sudah.</p>
<p>CS : Bagus. Pilih file-file berikut dan salin ke direktori “MYHEART”  MEMAAFKAN-DIRI-SENDIRI.DOC, dan MENYADARI-KEKURANGAN.TXT. sistem akan  menimpa file-file konflik dan mulai memperbaiki program-program yang  salah. Anda juga perlu mengosongkan Recycle Bin untuk memastikan  program-program yang salah tidak muncul kembali.</p>
<p>P : Sudah. Hei! HATI saya terisi file-file baru. SENYUM.MPG aktif di  monitor saya dan menandakan bahwa DAMAI.EXE dan KEPUASAN.COM dikopi ke  HATI. Apakah ini wajar?</p>
<p>CS : Kadang-kadang. Orang lain mungkin perlu waktu untuk  mendownloadnya. Jadi CINTA-KASIH telah terinstal dan aktif. Anda harus  bisa menanganinya dari sini. Ada satu lagi hal yang penting.</p>
<p>P : Apa?</p>
<p>CS : CINTA-KASIH adalah freeware. Pastikan untuk memberikannya kepada  orang lain yang anda temui. Mereka akan share ke orang lain dan  seterusnya sampai anda akan menerimanya kembali.</p>
<p><em>sumber:  myquran</em></p>
<h3  class="related_post_title">Most Commented:</h3><ul class="related_post"><li><a href="http://laros.web.id/2008/11/06/cheat-tantra-online/" title="Cheat Tantra Online">Cheat Tantra Online</a> (55)</li><li><a href="http://laros.web.id/2008/12/21/selamat-hari-ibu/" title="Selamat Hari Ibu">Selamat Hari Ibu</a> (25)</li><li><a href="http://laros.web.id/about/" title="About">About</a> (24)</li><li><a href="http://laros.web.id/2008/12/24/begitu-mudahnya-blogger-mengadili-perusahaan-webhosting-2/" title="Begitu Mudahnya Blogger Mengadili Penyedia Webhost">Begitu Mudahnya Blogger Mengadili Penyedia Webhost</a> (19)</li><li><a href="http://laros.web.id/2009/01/15/hati-hati-penipuan-berkedok-pt-penyalur-tenaga-kerja/" title="Hati-Hati: Penipuan Berkedok PT Penyalur Tenaga Kerja">Hati-Hati: Penipuan Berkedok PT Penyalur Tenaga Kerja</a> (19)</li><li><a href="http://laros.web.id/2009/01/06/israel-memakai-senjata-kimia-di-gaza/" title="Israel Memakai Senjata Kimia di Gaza">Israel Memakai Senjata Kimia di Gaza</a> (18)</li><li><a href="http://laros.web.id/2008/12/27/plugins-top-komentator-hadiah-untuk-teman-2/" title="Plugins Top Komentator Hadiah Untuk Teman">Plugins Top Komentator Hadiah Untuk Teman</a> (17)</li><li><a href="http://laros.web.id/2008/06/15/ujian-nasional-sma-menyedihkan/" title="Ujian Nasional SMA Menyedihkan">Ujian Nasional SMA Menyedihkan</a> (16)</li><li><a href="http://laros.web.id/2008/12/19/alexa-widget-error/" title="Alexa Widget Error?">Alexa Widget Error?</a> (16)</li><li><a href="http://laros.web.id/2008/12/18/tingkatkan-trafik-dengan-keyword-pornografi/" title="Tingkatkan Trafik Dengan Keyword Pornografi">Tingkatkan Trafik Dengan Keyword Pornografi</a> (13)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/05/15/instalasi-cinta-kasih/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh Carol</title>
		<link>http://laros.web.id/2010/03/09/oh-carol/</link>
		<comments>http://laros.web.id/2010/03/09/oh-carol/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 05:42:09 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Lyrics]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=399</guid>
		<description><![CDATA[Oh! Carol, I am but a fool, Darling I love you tho&#8217; you treat me cruel, You hurt me and you made me cry But if you leave me I will surely die. Darling there will never be another Cause I love you so, don&#8217;t ever leave me, Say you&#8217;ll never go I will always [...]]]></description>
			<content:encoded><![CDATA[<p>Oh! Carol, I am but a fool,<br />
Darling I love you tho&#8217; you treat me cruel,<br />
You hurt me and you made me cry<br />
But if you leave me I will surely die.</p>
<p>Darling there will never be another<br />
Cause I love you so,<br />
don&#8217;t ever leave me,<br />
Say you&#8217;ll never go<br />
I will always want you for my sweetheart<br />
No matter what you do<br />
Oh! Carol, I&#8217;m so in love with you.</p>
<p>Oh! Carol, I am but a fool,<br />
Darling I love you tho&#8217; you treat me cruel,<br />
You hurt me and you made me cry</p>
<p>But if you leave me I will surely die.<br />
<span id="more-399"></span>Darling there will never be another<br />
Cause I love you so,<br />
don&#8217;t ever leave me,<br />
Say you&#8217;ll never go<br />
I will always want you for my sweetheart<br />
No matter what you do<br />
Oh! Carol, I&#8217;m so in love with you.</p>
<h3  class="related_post_title">Related Posts:</h3><ul class="related_post"><li><a href="http://laros.web.id/2010/01/07/jangan-tuduh-aku/" title="Jangan Tuduh Aku">Jangan Tuduh Aku</a> (6)</li><li><a href="http://laros.web.id/2009/12/28/right-now-na-na-na/" title="Right Now (Na Na Na) ">Right Now (Na Na Na) </a> (1)</li><li><a href="http://laros.web.id/2009/12/10/i-love-you/" title="I Love You">I Love You</a> (4)</li><li><a href="http://laros.web.id/2009/08/18/st12-skj-saat-kau-jauh/" title="ST12 &#8211; SKJ (Saat Kau Jauh) ">ST12 &#8211; SKJ (Saat Kau Jauh) </a> (0)</li><li><a href="http://laros.web.id/2009/08/04/kapten-malaikat-cinta/" title="Kapten-malaikat-cinta">Kapten-malaikat-cinta</a> (0)</li><li><a href="http://laros.web.id/2009/08/04/angkasa-jangan-pernah-selingkuh/" title="Angkasa &#8211; Jangan Pernah Selingkuh">Angkasa &#8211; Jangan Pernah Selingkuh</a> (0)</li><li><a href="http://laros.web.id/2008/11/04/sifat-lelaki-versi-doel-sumbang/" title="Sifat Lelaki Versi Doel Sumbang">Sifat Lelaki Versi Doel Sumbang</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/03/09/oh-carol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kalau benar kenapa harus bohong?</title>
		<link>http://laros.web.id/2010/03/01/kalau-benar-kenapa-harus-bohong/</link>
		<comments>http://laros.web.id/2010/03/01/kalau-benar-kenapa-harus-bohong/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 16:58:18 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[motivasi]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=397</guid>
		<description><![CDATA[Ada seorang bapak2 di tuduh mencuri hp di kantornya, tapi beliau dengan sangat keras membantahnya. Ketika di minta membuka isi tas, beliau juga sangat keras menolaknya. Karena terlalu ngotot mempertahankan tasnya sampai2 terjadi kontak fisik dengan si pemilik hp. Kenapa bapak2 itu ngotot tidak mau menunjukkan isi tasnya? dari sini semua orang bisa tahu mungkin [...]]]></description>
			<content:encoded><![CDATA[<p>Ada seorang bapak2 di tuduh mencuri hp di kantornya, tapi beliau dengan  sangat keras membantahnya. Ketika di minta membuka isi tas, beliau juga  sangat keras menolaknya.<br />
Karena terlalu ngotot mempertahankan tasnya  sampai2 terjadi kontak fisik dengan si pemilik hp.<br />
Kenapa bapak2 itu  ngotot tidak mau menunjukkan isi tasnya? dari sini semua orang bisa  tahu mungkin saja hp yang hilang ada di tas tersebut..</p>
<p>Kalau  tidak salah kenapa takut??<br />
Hanya karena hp fleksi akhirnya bapak2 itu  keluar dari pekerjaannya.. sungguh sangat di sayangkan&#8230;</p>
<p><span id="more-397"></span>Kebohongan  sekecil apapun itu tidak akan membawa kebaikan kepada kita. Memang  sulit untuk belajar jujur, jujur kepada diri sendiri dan orang lain,  tapi ada satu kata2 bijak untuk hal ini..<br />
&#8220;Keberhasilan bukan di  nilai dari HASIL, melainkan dari USAHA kita.&#8221;</p>
<h3  class="related_post_title">Related Posts:</h3><ul class="related_post"><li><a href="http://laros.web.id/2010/01/31/tips-mengurangi-pikiran-negatif/" title="Tips Mengurangi Pikiran Negatif">Tips Mengurangi Pikiran Negatif</a> (1)</li><li><a href="http://laros.web.id/2010/01/27/kanan-dan-kiri/" title="Kanan dan Kiri">Kanan dan Kiri</a> (0)</li><li><a href="http://laros.web.id/2009/09/16/doesnt-really-matter-what-the-eyes-is-seeing/" title="Doesn&#8217;t Really Matter what The eyes is seeing">Doesn&#8217;t Really Matter what The eyes is seeing</a> (0)</li><li><a href="http://laros.web.id/2008/11/16/cinta-sejati-tak-bersyarat-dan-berkorban/" title="Cinta Sejati tak Bersyarat dan Berkorban">Cinta Sejati tak Bersyarat dan Berkorban</a> (8)</li><li><a href="http://laros.web.id/2008/10/28/dementor-ada-di-dunia-nyata/" title="Dementor Ada di Dunia Nyata">Dementor Ada di Dunia Nyata</a> (5)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/03/01/kalau-benar-kenapa-harus-bohong/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mencari file inject di webserver</title>
		<link>http://laros.web.id/2010/02/22/mencari-file-inject-di-webserver/</link>
		<comments>http://laros.web.id/2010/02/22/mencari-file-inject-di-webserver/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 07:18:15 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Tips and Trick]]></category>
		<category><![CDATA[Webserver]]></category>
		<category><![CDATA[tips n trick]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=375</guid>
		<description><![CDATA[OK langsung saja, command berikut adalah yang biasa saya pakai untuk scanning php file inject di webserver FreeBSD. Saya catat di sini biar gak lupa. :D 1. Scanning php files dalam path si username dan mencari 1 kata / strings dalam files php sesuai dengan kata yang kita cari: server2# find /home/username/ -name &#34;*&#34;.php -type [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_392" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-392" title="scan" src="http://laros.web.id/wp-content/uploads//2010/02/Clipboard03-300x147.jpg" alt="" width="300" height="147" /><p class="wp-caption-text">scanning</p></div>
<p>OK langsung saja, command berikut adalah yang biasa saya pakai untuk scanning php file inject di webserver FreeBSD. Saya catat di sini biar gak lupa. :D<br />
1. Scanning php files dalam path si username dan mencari 1 kata / strings dalam files php sesuai dengan kata yang kita cari:</p>
<pre class="brush: bash;">server2# find /home/username/ -name &quot;*&quot;.php -type f -print0| xargs -0 grep &quot;powered by rapidleech&quot; | uniq -c | sort -u | cut -d&quot;:&quot; -f1 | awk '{print &quot;Warning - please check this files &quot; $2}' | uniq</pre>
<p>2. Scanning php files dalam path si username dan beberapa kata / strings dalam files php:</p>
<pre class="brush: bash;">server2# find /home/username/ -name &quot;*&quot;.php -type f -print0| xargs -0 egrep &quot;rapidleech|c99|r57&quot; | uniq -c | sort -u | cut -d&quot;:&quot; -f1 | awk '{print &quot;Warning - please check this files &quot; $2}' | uniq</pre>
<p>Tambahan&#8230;</p>
<p><span id="more-375"></span>3. Kill multiple process di FreeBSD</p>
<pre class="brush: bash;">server2# ps -aux | grep &quot;/usr/sbin/httpd&quot; | awk '{print $2}' | xargs kill</pre>
<p><em>Bash command tutorial di dapat dari diskusiwebhosting.com dan giest.org</em></p>
<h3  class="related_post_title">Related Posts:</h3><ul class="related_post"><li><a href="http://laros.web.id/2010/06/16/find-r57-and-c99-shells-hidden-inside-php-and-txt-files/" title="Find r57 and c99 Shells Hidden Inside PHP and TXT Files">Find r57 and c99 Shells Hidden Inside PHP and TXT Files</a> (0)</li><li><a href="http://laros.web.id/2010/06/16/how-to-mass-chmod-file-and-folder/" title="How to mass chmod file and folder ?">How to mass chmod file and folder ?</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/02/22/mencari-file-inject-di-webserver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aku sudah sembuh</title>
		<link>http://laros.web.id/2010/02/20/aku-sudah-sembuh/</link>
		<comments>http://laros.web.id/2010/02/20/aku-sudah-sembuh/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 11:54:28 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=371</guid>
		<description><![CDATA[Gak nyangka kemaren nginep di rumah sakit gara-gara demam berdarah. Ternyata sakit itu gak enak, baru kali ini ngrasain nginep di rumah sakit. :fuck3: :fuck3: Semoga aja kemarin itu yang terakhir, sudah gak pengen nyusahin teman-teman lagi. Untuk keluargaku di rumah maaf ya gak bisa ngasih kabar kalau anakmu ini sakit, gak pengen bikin keluarga [...]]]></description>
			<content:encoded><![CDATA[<p>Gak nyangka kemaren nginep di rumah sakit gara-gara demam berdarah. Ternyata sakit itu gak enak, baru kali ini ngrasain nginep di rumah sakit.  :fuck3:  :fuck3:<br />
Semoga aja kemarin itu yang terakhir, sudah gak pengen nyusahin teman-teman lagi. Untuk keluargaku di rumah maaf ya gak bisa ngasih kabar kalau anakmu ini sakit, gak pengen bikin keluarga di rumah khawatir.<br />
Terima kasih kepada temans yang sudah jenguk, seneng rasanya ada yang jenguk, thanks banget.  :Peace:<br />
Makasih juga untuk <a href="http://www.facebook.com/maria.upink">kekasih</a> yang udah sabar ngrawat love you beb hehe &#8230;  :peluk </p>
<h3  class="related_post_title">Related Posts:</h3><ul class="related_post"><li><a href="http://laros.web.id/2009/12/28/plis-deh-html/" title="Plis Deh!!">Plis Deh!!</a> (3)</li><li><a href="http://laros.web.id/2009/12/04/aku-tidak-ingin-menjadi/" title="Aku tidak ingin menjadi&#8230;">Aku tidak ingin menjadi&#8230;</a> (0)</li><li><a href="http://laros.web.id/2009/04/11/happy-birthday-my-lovely/" title="Happy Birthday My Lovely">Happy Birthday My Lovely</a> (3)</li><li><a href="http://laros.web.id/2009/03/14/tidak-ada-orang-yang-sempurna-di-mata-ego-kita/" title="Tidak Ada Orang Yang Sempurna di Mata Ego Kita">Tidak Ada Orang Yang Sempurna di Mata Ego Kita</a> (3)</li><li><a href="http://laros.web.id/2008/12/21/selamat-hari-ibu/" title="Selamat Hari Ibu">Selamat Hari Ibu</a> (25)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/02/20/aku-sudah-sembuh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Update Spoof irc.cyberplus.net.id</title>
		<link>http://laros.web.id/2010/02/05/update-spoof-irc-cyberplus-net-id/</link>
		<comments>http://laros.web.id/2010/02/05/update-spoof-irc-cyberplus-net-id/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 03:43:27 +0000</pubDate>
		<dc:creator>De LarOs</dc:creator>
				<category><![CDATA[Allnetwork]]></category>
		<category><![CDATA[daftar spoof irc]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[paulus oliver yoesoef]]></category>
		<category><![CDATA[spoof]]></category>

		<guid isPermaLink="false">http://laros.web.id/?p=358</guid>
		<description><![CDATA[Karena terlalu banyak request personal spoof yang hanya berbentuk satu huruf saja, maka daftar spoof irc.cyberplus.net.id saya tambah lagi sesuai permintaan Chatter Allnetwork yang tercinta :D Berikut adalah tambahannya,  silahkan di coba: List Spoof irc.cyberplus.net.id SPOOF PASSWORD Spoof Abjad A cyber95 B cyber96 C cyber97 D cyber98 E cyber99 F cyber100 G cyber101 H cyber102 [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_389" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-389 " title="allnet2" src="http://laros.web.id/wp-content/uploads//2010/02/allnet2-300x50.png" alt="" width="300" height="50" /><p class="wp-caption-text">Allnetwork</p></div>
<p>Karena terlalu banyak request personal spoof yang hanya berbentuk satu huruf saja, maka daftar spoof irc.cyberplus.net.id saya tambah lagi sesuai permintaan Chatter Allnetwork yang tercinta :D<br />
Berikut adalah tambahannya,  silahkan di coba:</p>
<table border="0" cellspacing="1" cellpadding="5" width="500" bgcolor="#666666">
<tbody>
<tr bgcolor="#4888f7">
<td colspan="10"><strong>List Spoof irc.cyberplus.net.id</strong></td>
</tr>
<tr bgcolor="#e8efff">
<td width="350" align="center"><strong>SPOOF</strong></td>
<td width="50" align="center"><strong>PASSWORD</strong></td>
</tr>
<tr bgcolor="white">
<td colspan="2" bgcolor="#0099ff">
<div><strong>Spoof Abjad </strong></div>
</td>
</tr>
<tr bgcolor="white">
<td>A</td>
<td>cyber95</td>
</tr>
<tr bgcolor="white">
<td>B</td>
<td>cyber96</td>
</tr>
<tr bgcolor="white">
<td>C</td>
<td>cyber97</td>
</tr>
<tr bgcolor="white">
<td>D</td>
<td>cyber98</td>
</tr>
<tr bgcolor="white">
<td>E</td>
<td>cyber99</td>
</tr>
<tr bgcolor="white">
<td>F</td>
<td>cyber100</td>
</tr>
<tr bgcolor="white">
<td>G</td>
<td>cyber101</td>
</tr>
<tr bgcolor="white">
<td>H</td>
<td>cyber102</td>
</tr>
<tr bgcolor="white">
<td>I</td>
<td>cyber103</td>
</tr>
<tr bgcolor="white">
<td>J</td>
<td>cyber104</td>
</tr>
<tr bgcolor="white">
<td>K</td>
<td>cyber105</td>
</tr>
<tr bgcolor="white">
<td>L</td>
<td>cyber106</td>
</tr>
<tr bgcolor="white">
<td>M</td>
<td>cyber107</td>
</tr>
<tr bgcolor="white">
<td>N</td>
<td>cyber108</td>
</tr>
<tr bgcolor="white">
<td>O</td>
<td>cyber109</td>
</tr>
<tr bgcolor="white">
<td>P</td>
<td>cyber110</td>
</tr>
<tr bgcolor="white">
<td>Q</td>
<td>cyber111</td>
</tr>
<tr bgcolor="white">
<td>R</td>
<td>cyber112</td>
</tr>
<tr bgcolor="white">
<td>S</td>
<td>cyber113</td>
</tr>
<tr bgcolor="white">
<td>T</td>
<td>cyber114</td>
</tr>
<tr bgcolor="white">
<td>U</td>
<td>cyber115</td>
</tr>
<tr bgcolor="white">
<td>V</td>
<td>cyber116</td>
</tr>
<tr bgcolor="white">
<td>W</td>
<td>cyber117</td>
</tr>
<tr bgcolor="white">
<td>X</td>
<td>cyber118</td>
</tr>
<tr bgcolor="white">
<td>Y</td>
<td>cyber119</td>
</tr>
<tr bgcolor="white">
<td>Z</td>
<td>cyber120</td>
</tr>
</tbody>
</table>
<p>Daftar lengkap spoof Cyberplus <a href="http://laros.web.id/spoof/">ada disini.</a> :Peace:</p>
<h3  class="related_post_title">Related Posts:</h3><ul class="related_post"><li><a href="http://laros.web.id/2010/02/04/spoof-irc-cyberplus-net-id/" title="Spoof irc.cyberplus.net.id">Spoof irc.cyberplus.net.id</a> (1)</li><li><a href="http://laros.web.id/2009/03/15/perkumpulan-allnetwork-indonesia/" title="Perkumpulan Allnetwork Indonesia">Perkumpulan Allnetwork Indonesia</a> (4)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://laros.web.id/2010/02/05/update-spoof-irc-cyberplus-net-id/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
