Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

w10 3.9.2.23 微信DLL注入器V1.0.3显示注入成功,python3.9运行tcpserver.py文件后没有任何消息打印 #8

Open
Yuri2 opened this issue Jul 12, 2023 · 2 comments

Comments

@Yuri2
Copy link

Yuri2 commented Jul 12, 2023

w10
微信3.9.2.23
微信DLL注入器V1.0.3显示注入成功,
python3.9运行tcpserver.py文件后没有任何消息打印,也没有报错
tcpserver.py代码内容::
`import json
import threading
import socketserver

class ReceiveMsgSocketServer(socketserver.BaseRequestHandler):
def init(self, *args, **kwargs):
super().init(*args, **kwargs)

def handle(self):
    conn = self.request
    while True:
        try:
            ptr_data = b""
            while True:
                data = conn.recv(1024)
                ptr_data += data
                if len(data) == 0 or data[-1] == 0xA:
                    break

            msg = json.loads(ptr_data)
            ReceiveMsgSocketServer.msg_callback(msg)

        except OSError:
            print(12)
            break
        except json.JSONDecodeError:
            print(34)
            pass
        conn.sendall("200 OK".encode())
    conn.close()

@staticmethod
def msg_callback(msg):
    print(56)
    print(msg)

def start_socket_server(port: int = 19099,
request_handler=ReceiveMsgSocketServer,
main_thread: bool = True) -> int or None:
ip_port = ("127.0.0.1", port)
try:
s = socketserver.ThreadingTCPServer(ip_port, request_handler)
if main_thread:
s.serve_forever()
else:
socket_server = threading.Thread(target=s.serve_forever)
socket_server.setDaemon(True)
socket_server.start()
return socket_server.ident
except KeyboardInterrupt:
print(67)
pass
except Exception as e:
print(e)
return None

if name == 'main':
start_socket_server()
`

@Yuri2
Copy link
Author

Yuri2 commented Jul 12, 2023

交流飞机群也加不了

@P3R5T7U9
Copy link

近期在Github上找PC端微信历史版本收集仓库,才翻到这个仓库,继而在Issue区看到老哥你这条Issue,不知老哥你当初提到“微信DLL注入器”是Github上还是吾爱论坛上哪位大佬制作??

麻烦老哥回复甩下你提到“微信DLL注入器”原发布地址,近期也在找相关注入器工具

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants