Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.138
676 Domain
5.6.40
omxrelocation
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 /
share /
i360-php /
python-proto /
[ HOME SHELL ]
Name
Size
Permission
Action
example1.py
318
B
-rw-r--r--
example2.py
1.3
KB
-rw-r--r--
example2_old.py
1.04
KB
-rw-r--r--
message_reader.py
727
B
-rw-r--r--
message_reader_old.py
1.12
KB
-rw-r--r--
sendmessage_pb2.py
18.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : message_reader.py
import io import struct import sendmessage_pb2 import subprocess def readDataFromStream(stream_data): proto_size_rd = stream_data.read(2) if len(proto_size_rd)==0: return "" proto_size, = struct.unpack('>H', proto_size_rd) data = stream_data.read(proto_size) item = sendmessage_pb2.SendInfo() item.ParseFromString(data) return item def fillDictionary(): php_dict = {} counter = 0 proc = subprocess.Popen(['dict_util_string'],stdout=subprocess.PIPE) while True: line = proc.stdout.readline() if line != '': if counter>1: res = line.rstrip().split() if len(res)>1: php_dict[res[0]]=res[1].rstrip() else: break counter=counter+1 return php_dict
Close