Coder Social home page Coder Social logo

virtualdeobfuscator's People

Contributors

jason0x43 avatar jnraber avatar peta909 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

virtualdeobfuscator's Issues

not working with newer python

using python 3.11.2

PS C:\Users\m\Desktop> py C:\Users\mason\Desktop\fuck\VirtualDeobfuscator.py -c -d 1
Traceback (most recent call last):
File "C:\Users\m\Desktop\fuck\VirtualDeobfuscator.py", line 26, in
import utils as u
File "C:\Users\m\Desktop\fuck\utils.py", line 38
gen_ids = lambda(x): "".join(map(chr, (ord('a')+(y%26) for y in range(x))))
^^^
SyntaxError: Lambda expression parameters cannot be parenthesized

Add IDAPRO trace format

Hello. Can you add IDA PRO format ?

I have a custom code here to adapt trace format

def parse_idapro(db_file, line, etree):
	dx= line.strip().split("\t")
	if (len(dx)== 0):
		return
	register = ''
	code = ''
	va = dx[1].replace(" ","")
	thread = dx[0]	
	ox = dx[2].split(" ")
	for opcode in ox:
		if opcode == '':
			pass
		else:
			code += " " + opcode

	nmemonic = code[1:]
	if ("=" in dx[-1]):
		register = dx[-1]
	create_xml(db_file, etree, va, mnemonic, registers)

add IDAPRO = 4 in utils.py

and :
(custom end string added to trace)

elif dbgr == u.IDAPRO:
                    if line.find("end") != -1:
                        break

                    parse_idapro(db_file, line, etree)

ImportError No Module named lxml

Received during the first step on README.md

Loading packages...
Traceback (most recent call last):
File "VirtualDeobfuscator.py", line 764, in
main()
File "VirtualDeobfuscator.py", line 569, in main
etree = hdr(run_clustering, dbgr, testXML)
File "VirtualDeobfuscator.py", line 40, in hdr
etree = pre_run(isClustering, test_file)
File "VirtualDeobfuscator.py", line 82, in pre_run
from lxml import etree
ImportError: No module named lxml

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.