⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
lib
/
python2.7
/
site-packages
/
dns
/
View File Name :
opcode.pyc
� m!|Uc @ s� d Z d d l Z d Z d Z d Z d Z d Z i e d 6e d 6e d 6e d 6e d 6Z e g e j � D] \ Z Z e e f ^ qi � Z d e j j f d � � YZ d � Z d � Z d � Z d � Z d � Z d S( s DNS Opcodes.i����Ni i i i i t QUERYt IQUERYt STATUSt NOTIFYt UPDATEt UnknownOpcodec B s e Z d Z RS( s An DNS opcode is unknown.( t __name__t __module__t __doc__( ( ( s. /usr/lib/python2.7/site-packages/dns/opcode.pyR ) s c C se | j � r7 t | � } | d k r7 | d k r7 | Sn t j | j � � } | d k ra t � n | S( s� Convert text into an opcode. @param text: the textual opcode @type text: string @raises UnknownOpcode: the opcode is unknown @rtype: int i i N( t isdigitt intt _by_textt gett uppert NoneR ( t textt value( ( s. /usr/lib/python2.7/site-packages/dns/opcode.pyt from_text, s c C s | d @d ?S( sU Extract an opcode from DNS message flags. @param flags: int @rtype: int i x i ( ( t flags( ( s. /usr/lib/python2.7/site-packages/dns/opcode.pyt from_flags>