Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
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 /
python3 /
dist-packages /
twisted /
pair /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
__init__.py
315
B
-rw-r--r--
ethernet.py
1.64
KB
-rw-r--r--
ip.py
2.27
KB
-rw-r--r--
raw.py
1.09
KB
-rw-r--r--
rawudp.py
1.52
KB
-rw-r--r--
testing.py
16.85
KB
-rw-r--r--
tuntap.py
12.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rawudp.py
# -*- test-case-name: twisted.pair.test.test_rawudp -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Implementation of raw packet interfaces for UDP """ import struct from zope.interface import implementer from twisted.internet import protocol from twisted.pair import raw class UDPHeader: def __init__(self, data): (self.source, self.dest, self.len, self.check) = struct.unpack( "!HHHH", data[:8] ) @implementer(raw.IRawDatagramProtocol) class RawUDPProtocol(protocol.AbstractDatagramProtocol): def __init__(self): self.udpProtos = {} def addProto(self, num, proto): if not isinstance(proto, protocol.DatagramProtocol): raise TypeError("Added protocol must be an instance of DatagramProtocol") if num < 0: raise TypeError("Added protocol must be positive or zero") if num >= 2 ** 16: raise TypeError("Added protocol must fit in 16 bits") if num not in self.udpProtos: self.udpProtos[num] = [] self.udpProtos[num].append(proto) def datagramReceived( self, data, partial, source, dest, protocol, version, ihl, tos, tot_len, fragment_id, fragment_offset, dont_fragment, more_fragments, ttl, ): header = UDPHeader(data) for proto in self.udpProtos.get(header.dest, ()): proto.datagramReceived(data[8:], (source, header.source))
Close