malware-analysis
-
Yo everyone! Back with another write-up, Today we’re going to solve the w1seGuy room on TryHackMe. First, download the task files provided in the room and then start the machine source.py import randomimport socketserver import socket, osimport stringflag = open(‘flag.txt’,’r’).read().strip()def send_message(server, message): enc = message.encode() server.send(enc)def setup(server, key): flag = ‘THM{thisisafakeflag}’ xored = “” for i…
