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 | : 18.219.40.177
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
/
snap /
lxd /
33246 /
lib /
python3 /
dist-packages /
crc32c /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
ext
[ DIR ]
drwxr-xr-x
__init__.py
280
B
-rw-r--r--
_crc32c.cpython-312-x86_64-lin...
67.67
KB
-rwxr-xr-x
_crc32c.pyi
237
B
-rw-r--r--
_crc32hash.py
2.56
KB
-rw-r--r--
benchmark.py
1.3
KB
-rw-r--r--
py.typed
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : benchmark.py
import argparse import time import typing from ._crc32c import crc32c DEFAULT_SIZE = 100 * 1024 * 1024 DEFAULT_ITERATIONS = 10 def run(size: int, iterations: int) -> typing.Tuple[float, int]: data = b" " * size start = time.monotonic() evaluations = 0 while True: evaluations += iterations [crc32c(data) for _ in range(iterations)] duration = time.monotonic() - start if duration > 0: break return duration, evaluations def main() -> None: parser = argparse.ArgumentParser() parser.add_argument( "-s", "--size", type=int, help=f"Amount of bytes to checksum, defaults to {DEFAULT_SIZE}", default=DEFAULT_SIZE, ) parser.add_argument( "-i", "--iterations", type=int, help=f"Number of times the checksum should we run over the data, defaults to {DEFAULT_ITERATIONS}", default=DEFAULT_ITERATIONS, ) options = parser.parse_args() duration, evaluations = run(options.size, options.iterations) size_mb = options.size / 1024 / 1024 avg_speed_gbs = size_mb / 1024 * evaluations / duration print( f"crc32c ran at {avg_speed_gbs:.3f} [GB/s] when checksuming {size_mb:.3f} [MB] {evaluations} times" ) if __name__ == "__main__": main()
Close