Linux biogene 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
Apache
: 46.101.124.208 | : 18.219.58.157
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
www-data
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 /
python2.7 /
dist-packages /
pyasn1 /
type /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
59
B
-rw-r--r--
__init__.pyc
143
B
-rw-r--r--
base.py
9.28
KB
-rw-r--r--
base.pyc
12.8
KB
-rw-r--r--
char.py
1.92
KB
-rw-r--r--
char.pyc
3.35
KB
-rw-r--r--
constraint.py
7.11
KB
-rw-r--r--
constraint.pyc
11.24
KB
-rw-r--r--
error.py
84
B
-rw-r--r--
error.pyc
415
B
-rw-r--r--
namedtype.py
4.68
KB
-rw-r--r--
namedtype.pyc
6.99
KB
-rw-r--r--
namedval.py
1.57
KB
-rw-r--r--
namedval.pyc
2.51
KB
-rw-r--r--
tag.py
4.21
KB
-rw-r--r--
tag.pyc
7.33
KB
-rw-r--r--
tagmap.py
1.73
KB
-rw-r--r--
tagmap.pyc
2.63
KB
-rw-r--r--
univ.py
38.8
KB
-rw-r--r--
univ.pyc
46.97
KB
-rw-r--r--
useful.py
393
B
-rw-r--r--
useful.pyc
860
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tagmap.py
from pyasn1 import error class TagMap: def __init__(self, posMap={}, negMap={}, defType=None): self.__posMap = posMap.copy() self.__negMap = negMap.copy() self.__defType = defType def __contains__(self, tagSet): return tagSet in self.__posMap or \ self.__defType is not None and tagSet not in self.__negMap def __getitem__(self, tagSet): if tagSet in self.__posMap: return self.__posMap[tagSet] elif tagSet in self.__negMap: raise error.PyAsn1Error('Key in negative map') elif self.__defType is not None: return self.__defType else: raise KeyError() def __repr__(self): s = '%r/%r' % (self.__posMap, self.__negMap) if self.__defType is not None: s = s + '/%r' % (self.__defType,) return s def clone(self, parentType, tagMap, uniq=False): if self.__defType is not None and tagMap.getDef() is not None: raise error.PyAsn1Error('Duplicate default value at %s' % (self,)) if tagMap.getDef() is not None: defType = tagMap.getDef() else: defType = self.__defType posMap = self.__posMap.copy() for k in tagMap.getPosMap(): if uniq and k in posMap: raise error.PyAsn1Error('Duplicate positive key %s' % (k,)) posMap[k] = parentType negMap = self.__negMap.copy() negMap.update(tagMap.getNegMap()) return self.__class__( posMap, negMap, defType, ) def getPosMap(self): return self.__posMap.copy() def getNegMap(self): return self.__negMap.copy() def getDef(self): return self.__defType
Close