Linux salto.nuvemidc.com 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64
LiteSpeed
: 177.73.233.61 | : 216.73.217.116
Cant Read [ /etc/named.conf ]
7.4.33
agenci18
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
/
lib /
python3.9 /
site-packages /
dns /
rdtypes /
IN /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
A.py
1.77
KB
-rw-r--r--
AAAA.py
1.78
KB
-rw-r--r--
APL.py
4.98
KB
-rw-r--r--
DHCID.py
1.81
KB
-rw-r--r--
HTTPS.py
220
B
-rw-r--r--
IPSECKEY.py
3.21
KB
-rw-r--r--
KX.py
1013
B
-rw-r--r--
NAPTR.py
3.66
KB
-rw-r--r--
NSAP.py
2.11
KB
-rw-r--r--
NSAP_PTR.py
1015
B
-rw-r--r--
PX.py
2.69
KB
-rw-r--r--
SRV.py
2.7
KB
-rw-r--r--
SVCB.py
218
B
-rw-r--r--
WKS.py
3.57
KB
-rw-r--r--
__init__.py
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DHCID.py
# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license # Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose with or without fee is hereby granted, # provided that the above copyright notice and this permission notice # appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. import base64 import dns.exception import dns.immutable import dns.rdata @dns.immutable.immutable class DHCID(dns.rdata.Rdata): """DHCID record""" # see: RFC 4701 __slots__ = ["data"] def __init__(self, rdclass, rdtype, data): super().__init__(rdclass, rdtype) self.data = self._as_bytes(data) def to_text(self, origin=None, relativize=True, **kw): return dns.rdata._base64ify(self.data, **kw) @classmethod def from_text( cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None ): b64 = tok.concatenate_remaining_identifiers().encode() data = base64.b64decode(b64) return cls(rdclass, rdtype, data) def _to_wire(self, file, compress=None, origin=None, canonicalize=False): file.write(self.data) @classmethod def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): data = parser.get_remaining() return cls(rdclass, rdtype, data)
Close