Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.15.187.205
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
php /
80 /
src /
ext /
hash /
[ HOME SHELL ]
Name
Size
Permission
Action
sha3
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
CREDITS
85
B
-rw-r--r--
bench.php
2.19
KB
-rw-r--r--
config.m4
1.65
KB
-rw-r--r--
config.w32
1.2
KB
-rw-r--r--
hash.c
47.18
KB
-rw-r--r--
hash.stub.php
1.83
KB
-rw-r--r--
hash_adler32.c
2.46
KB
-rw-r--r--
hash_arginfo.h
7.43
KB
-rw-r--r--
hash_crc32.c
4.31
KB
-rw-r--r--
hash_fnv.c
5.91
KB
-rw-r--r--
hash_gost.c
11.45
KB
-rw-r--r--
hash_haval.c
18.79
KB
-rw-r--r--
hash_joaat.c
2.52
KB
-rw-r--r--
hash_md.c
10.66
KB
-rw-r--r--
hash_ripemd.c
24.21
KB
-rw-r--r--
hash_sha.c
26.1
KB
-rw-r--r--
hash_sha3.c
10.26
KB
-rw-r--r--
hash_snefru.c
6.07
KB
-rw-r--r--
hash_tiger.c
7.81
KB
-rw-r--r--
hash_whirlpool.c
16.05
KB
-rw-r--r--
php_hash.h
6.16
KB
-rw-r--r--
php_hash_adler32.h
1.52
KB
-rw-r--r--
php_hash_crc32.h
1.78
KB
-rw-r--r--
php_hash_crc32_tables.h
10.27
KB
-rw-r--r--
php_hash_fnv.h
2.67
KB
-rw-r--r--
php_hash_gost.h
1.47
KB
-rw-r--r--
php_hash_gost_tables.h
28.76
KB
-rw-r--r--
php_hash_haval.h
2.05
KB
-rw-r--r--
php_hash_joaat.h
1.4
KB
-rw-r--r--
php_hash_md.h
1.84
KB
-rw-r--r--
php_hash_ripemd.h
2.91
KB
-rw-r--r--
php_hash_sha.h
3.25
KB
-rw-r--r--
php_hash_sha3.h
2.3
KB
-rw-r--r--
php_hash_snefru.h
1.55
KB
-rw-r--r--
php_hash_snefru_tables.h
58.12
KB
-rw-r--r--
php_hash_tiger.h
1.68
KB
-rw-r--r--
php_hash_tiger_tables.h
41.16
KB
-rw-r--r--
php_hash_whirlpool.h
1.48
KB
-rw-r--r--
php_hash_whirlpool_tables.h
53.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bench.php
#!/usr/bin/env php <?php /* This gives rather interesting results :) Measures on a Notebook P4M-1.7 256MB Windows 2000: sha1 0.556691 tiger160,3 0.774469 tiger192,3 0.776314 tiger128,3 0.777004 ripemd128 0.896674 sha256 1.011164 md5 1.016032 tiger160,4 1.056617 tiger128,4 1.063101 tiger192,4 1.069258 haval160,3 1.125099 haval128,3 1.125679 haval224,3 1.128017 haval192,3 1.130026 haval256,3 1.134846 ripemd160 1.150693 haval128,4 1.686261 haval192,4 1.687274 haval160,4 1.693091 haval256,4 1.699323 haval224,4 1.743094 haval160,5 2.003452 haval192,5 2.008341 haval256,5 2.009048 haval128,5 2.009555 haval224,5 2.015539 sha384 3.370734 sha512 3.381121 whirlpool 6.912327 snefru 9.268168 Measures on a Desktop P4-2.4 512MB Debian (Linux-2.4): md5 0.147739 haval128,3 0.317006 haval192,3 0.317524 haval256,3 0.317526 haval160,3 0.323035 haval224,3 0.333318 ripemd128 0.353447 sha1 0.376200 ripemd160 0.413758 sha256 0.435957 haval160,4 0.452357 haval224,4 0.454531 haval128,4 0.458026 haval256,4 0.459051 haval192,4 0.468094 haval128,5 0.524262 haval160,5 0.529573 haval224,5 0.533655 haval256,5 0.534446 haval192,5 0.543726 tiger128,3 0.577975 tiger160,3 0.579951 tiger192,3 0.597111 tiger192,4 0.781408 tiger160,4 0.801243 tiger128,4 0.812239 sha512 1.298627 sha384 1.313607 whirlpool 1.556159 snefru 5.703742 */ error_reporting(E_ALL&~E_NOTICE); $data = file_get_contents(__FILE__); $time = array(); foreach (hash_algos() as $algo) { $time[$algo] = 0; } for ($j = 0; $j < 10; $j++) { foreach (hash_algos() as $algo) { $start = microtime(true); for ($i = 0; $i < 1000; $i++) { hash($algo, $data); } $time[$algo] += microtime(true)-$start; } } asort($time, SORT_NUMERIC); foreach ($time as $a => $t) { printf("%-12s %02.6f\n", $a, $t); } ?>
Close