Linux cpanel07wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24 01:42:00 EDT 2020 x86_64
Apache
: 163.44.198.52 | : 216.73.216.70
Cant Read [ /etc/named.conf ]
8.0.9
cp657342
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
awk /
[ HOME SHELL ]
Name
Size
Permission
Action
assert.awk
382
B
-rw-r--r--
bits2str.awk
327
B
-rw-r--r--
cliff_rand.awk
307
B
-rw-r--r--
ctime.awk
233
B
-rw-r--r--
ftrans.awk
317
B
-rw-r--r--
getopt.awk
2.19
KB
-rw-r--r--
gettime.awk
2.43
KB
-rw-r--r--
group.awk
1.77
KB
-rw-r--r--
join.awk
378
B
-rw-r--r--
libintl.awk
238
B
-rw-r--r--
nextfile.awk
386
B
-rw-r--r--
noassign.awk
422
B
-rw-r--r--
ord.awk
937
B
-rw-r--r--
passwd.awk
1.14
KB
-rw-r--r--
readable.awk
446
B
-rw-r--r--
rewind.awk
404
B
-rw-r--r--
round.awk
661
B
-rw-r--r--
strtonum.awk
1.42
KB
-rw-r--r--
zerofile.awk
424
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : round.awk
# round.awk --- do normal rounding # # Arnold Robbins, arnold@skeeve.com, Public Domain # August, 1996 function round(x, ival, aval, fraction) { ival = int(x) # integer part, int() truncates # see if fractional part if (ival == x) # no fraction return ival # ensure no decimals if (x < 0) { aval = -x # absolute value ival = int(aval) fraction = aval - ival if (fraction >= .5) return int(x) - 1 # -2.5 --> -3 else return int(x) # -2.3 --> -2 } else { fraction = x - ival if (fraction >= .5) return ival + 1 else return ival } }
Close