Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
lib /
python3 /
dist-packages /
numpy /
random /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_examples
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
__init__.pxd
431
B
-rw-r--r--
__init__.py
7.33
KB
-rw-r--r--
__init__.pyi
1.95
KB
-rw-r--r--
_bounded_integers.cpython-310-...
342.36
KB
-rw-r--r--
_bounded_integers.pxd
1.63
KB
-rw-r--r--
_common.cpython-310-x86_64-lin...
225.55
KB
-rw-r--r--
_common.pxd
4.64
KB
-rw-r--r--
_generator.cpython-310-x86_64-...
803.23
KB
-rw-r--r--
_generator.pyi
21.69
KB
-rw-r--r--
_mt19937.cpython-310-x86_64-li...
92.2
KB
-rw-r--r--
_mt19937.pyi
850
B
-rw-r--r--
_pcg64.cpython-310-x86_64-linu...
94.07
KB
-rw-r--r--
_pcg64.pyi
1.19
KB
-rw-r--r--
_philox.cpython-310-x86_64-lin...
79.55
KB
-rw-r--r--
_philox.pyi
1.09
KB
-rw-r--r--
_pickle.py
2.25
KB
-rw-r--r--
_sfc64.cpython-310-x86_64-linu...
53.09
KB
-rw-r--r--
_sfc64.pyi
835
B
-rw-r--r--
bit_generator.cpython-310-x86_...
166.84
KB
-rw-r--r--
bit_generator.pxd
1007
B
-rw-r--r--
bit_generator.pyi
3.51
KB
-rw-r--r--
c_distributions.pxd
5.89
KB
-rw-r--r--
mtrand.cpython-310-x86_64-linu...
678.04
KB
-rw-r--r--
mtrand.pyi
19.65
KB
-rw-r--r--
setup.py
6.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _pickle.py
from .mtrand import RandomState from ._philox import Philox from ._pcg64 import PCG64, PCG64DXSM from ._sfc64 import SFC64 from ._generator import Generator from ._mt19937 import MT19937 BitGenerators = {'MT19937': MT19937, 'PCG64': PCG64, 'PCG64DXSM': PCG64DXSM, 'Philox': Philox, 'SFC64': SFC64, } def __generator_ctor(bit_generator_name='MT19937'): """ Pickling helper function that returns a Generator object Parameters ---------- bit_generator_name : str String containing the core BitGenerator Returns ------- rg: Generator Generator using the named core BitGenerator """ if bit_generator_name in BitGenerators: bit_generator = BitGenerators[bit_generator_name] else: raise ValueError(str(bit_generator_name) + ' is not a known ' 'BitGenerator module.') return Generator(bit_generator()) def __bit_generator_ctor(bit_generator_name='MT19937'): """ Pickling helper function that returns a bit generator object Parameters ---------- bit_generator_name : str String containing the name of the BitGenerator Returns ------- bit_generator: BitGenerator BitGenerator instance """ if bit_generator_name in BitGenerators: bit_generator = BitGenerators[bit_generator_name] else: raise ValueError(str(bit_generator_name) + ' is not a known ' 'BitGenerator module.') return bit_generator() def __randomstate_ctor(bit_generator_name='MT19937'): """ Pickling helper function that returns a legacy RandomState-like object Parameters ---------- bit_generator_name : str String containing the core BitGenerator Returns ------- rs: RandomState Legacy RandomState using the named core BitGenerator """ if bit_generator_name in BitGenerators: bit_generator = BitGenerators[bit_generator_name] else: raise ValueError(str(bit_generator_name) + ' is not a known ' 'BitGenerator module.') return RandomState(bit_generator())
Close