Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
asn1crypto /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_perf
[ DIR ]
drwxr-xr-x
__init__.py
209
B
-rw-r--r--
_elliptic_curve.py
9.2
KB
-rw-r--r--
_errors.py
967
B
-rw-r--r--
_ffi.py
738
B
-rw-r--r--
_inet.py
4.55
KB
-rw-r--r--
_int.py
4.51
KB
-rw-r--r--
_iri.py
8.43
KB
-rw-r--r--
_ordereddict.py
4.43
KB
-rw-r--r--
_teletex_codec.py
4.93
KB
-rw-r--r--
_types.py
939
B
-rw-r--r--
algos.py
33.3
KB
-rw-r--r--
cms.py
24.53
KB
-rw-r--r--
core.py
153.57
KB
-rw-r--r--
crl.py
15.73
KB
-rw-r--r--
csr.py
2.09
KB
-rw-r--r--
keys.py
34.36
KB
-rw-r--r--
ocsp.py
17.38
KB
-rw-r--r--
parser.py
8.93
KB
-rw-r--r--
pdf.py
2.2
KB
-rw-r--r--
pem.py
6
KB
-rw-r--r--
pkcs12.py
4.46
KB
-rw-r--r--
tsp.py
7.64
KB
-rw-r--r--
util.py
17.62
KB
-rw-r--r--
version.py
154
B
-rw-r--r--
x509.py
90.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pdf.py
# coding: utf-8 """ ASN.1 type classes for PDF signature structures. Adds extra oid mapping and value parsing to asn1crypto.x509.Extension() and asn1crypto.xms.CMSAttribute(). """ from __future__ import unicode_literals, division, absolute_import, print_function from .cms import CMSAttributeType, CMSAttribute from .core import ( Boolean, Integer, Null, ObjectIdentifier, OctetString, Sequence, SequenceOf, SetOf, ) from .crl import CertificateList from .ocsp import OCSPResponse from .x509 import ( Extension, ExtensionId, GeneralName, KeyPurposeId, ) class AdobeArchiveRevInfo(Sequence): _fields = [ ('version', Integer) ] class AdobeTimestamp(Sequence): _fields = [ ('version', Integer), ('location', GeneralName), ('requires_auth', Boolean, {'optional': True, 'default': False}), ] class OtherRevInfo(Sequence): _fields = [ ('type', ObjectIdentifier), ('value', OctetString), ] class SequenceOfCertificateList(SequenceOf): _child_spec = CertificateList class SequenceOfOCSPResponse(SequenceOf): _child_spec = OCSPResponse class SequenceOfOtherRevInfo(SequenceOf): _child_spec = OtherRevInfo class RevocationInfoArchival(Sequence): _fields = [ ('crl', SequenceOfCertificateList, {'explicit': 0, 'optional': True}), ('ocsp', SequenceOfOCSPResponse, {'explicit': 1, 'optional': True}), ('other_rev_info', SequenceOfOtherRevInfo, {'explicit': 2, 'optional': True}), ] class SetOfRevocationInfoArchival(SetOf): _child_spec = RevocationInfoArchival ExtensionId._map['1.2.840.113583.1.1.9.2'] = 'adobe_archive_rev_info' ExtensionId._map['1.2.840.113583.1.1.9.1'] = 'adobe_timestamp' ExtensionId._map['1.2.840.113583.1.1.10'] = 'adobe_ppklite_credential' Extension._oid_specs['adobe_archive_rev_info'] = AdobeArchiveRevInfo Extension._oid_specs['adobe_timestamp'] = AdobeTimestamp Extension._oid_specs['adobe_ppklite_credential'] = Null KeyPurposeId._map['1.2.840.113583.1.1.5'] = 'pdf_signing' CMSAttributeType._map['1.2.840.113583.1.1.8'] = 'adobe_revocation_info_archival' CMSAttribute._oid_specs['adobe_revocation_info_archival'] = SetOfRevocationInfoArchival
Close