!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/bin/X11/./../../share/doc/glibc-common-2.3.6/examples.threads/   drwxr-xr-x
Free 5.22 GB of 27.03 GB (19.33%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ex15.c (951 B)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <pthread.h>
#include <unistd.h>

static void *worker (void *dummy) __attribute__ ((__noreturn__));

static void *
worker (void *dummy)
{
  exit (26);
}

#define TEST_FUNCTION do_test ()
#define TIMEOUT 10
static int
do_test (void)
{
  pthread_t th;
  pid_t pid;
  int status;

  switch ((pid = fork ()))
    {
    case -1:
      puts ("Could not fork");
      exit (1);
    case 0:
      if (pthread_create(&th, NULL, worker, NULL) != 0)
    {
      puts ("Failed to start thread");
      exit (1);
    }
      for (;;);
      exit (1);
    default:
      break;
    }

  if (waitpid (pid, &status, 0) != pid)
    {
      puts ("waitpid failed");
      exit (1);
    }

  if (!WIFEXITED (status) || WEXITSTATUS (status) != 26)
    {
      printf ("Wrong exit code %d\n", status);
      exit (1);
    }

  puts ("All OK");
  return 0;
}

#include "../../test-skeleton.c"

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0035 ]--