Jurriaan Bremer
Jurriaan Bremer
Fixes the following sample code. ``` python import ast import codegen import sys eval(codegen.to_source(ast.parse('sys.stdout.write(("a" + "b")[:1])'))) ``` As this currently _eval()_'s the following code. ``` python sys.stdout.write('a' + 'b'[:1]) ```...
Hi, Just stumbled upon this - looks good! Just wanted to let you know that if you add .NET header parsing to LIEF that I'll replace our current `pefile` &...
I'd like to request the ability for `yara.compile()` as well as `rules.match()` to support Unicode filepaths. For now a dirty workaround would seem to be creating a temporary symbolic link...
When adding or modifying a row which has a foreign key there's a dropdown box (which is a nice idea - although it'd be even more awesome if I can...
There's a bug where if I'm adding or modifying an integer field with the value 0, that it flashes a "No value entered" message (or something along these lines.) I...
I've been trying to get `$_GET`/`$_POST` support working for the entire day already, but I don't seem to be very lucky at this, unfortunately. It definitely doesn't seem to be...
In order to convert existing software into SSEified executables we are going to need a PE parsing library, and more importantly, a PE creation library. PE creation libraries do not...
Ability to Single-Step Debug a sequence of instructions, to see what's going wrong and/or if it's working correctly. This will take a series of lines of assembly or machine code...
Improvements on test cases and new test cases etc. A new Test Case mini-framework should be made which allows instructions that handle operations on memory.
Many instructions in the general purpose instructions set flags depending on the calculation being performed. A tracer should be made which tells us which instruction sets a certain flag which...