Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
vos /
Delete
Unzip
Name
Size
Permission
Date
Action
Changes
4.45
KB
-r--r--r--
2014-12-27 11:49
compile_full_perl.cm
1.14
KB
-r--r--r--
2014-12-27 11:49
configure_full_perl.sh
575
B
-r--r--r--
2014-12-27 11:49
make_full_perl.sh
72
B
-r--r--r--
2014-12-27 11:49
vos.c
1.47
KB
-r--r--r--
2014-12-27 11:49
vosish.h
319
B
-r--r--r--
2014-12-27 11:49
Save
Rename
/* Beginning of modification history */ /* Written 02-01-02 by Nick Ing-Simmons (nick@ing-simmons.net) */ /* Modified 02-03-27 by Paul Green (Paul.Green@stratus.com) to add socketpair() dummy. */ /* Modified 02-04-24 by Paul Green (Paul.Green@stratus.com) to have pow(0,0) return 1, avoiding c-1471. */ /* Modified 06-09-25 by Paul Green (Paul.Green@stratus.com) to add syslog entries. */ /* Modified 08-02-04 by Paul Green (Paul.Green@stratus.com) to open the syslog file in the working dir. */ /* Modified 11-10-17 by Paul Green to remove the dummy copies of socketpair() and the syslog functions. */ /* End of modification history */ #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <unistd.h> /* VOS doesn't supply a truncate function, so we build one up from the available POSIX functions. */ int truncate(const char *path, off_t len) { int fd = open(path,O_WRONLY); int code = -1; if (fd >= 0) { code = ftruncate(fd,len); close(fd); } return code; } /* Supply a private version of the power function that returns 1 for x**0. This avoids c-1471. Abigail's Japh tests depend on this fix. We leave all the other cases to the VOS C runtime. */ double s_crt_pow(double *x, double *y); double pow(x,y) double x, y; { if (y == 0e0) /* c-1471 */ { errno = EDOM; return (1e0); } return(s_crt_pow(&x,&y)); }