Results 127 comments of Zorg

The target crashing is likely due to a defect in the debugger not being able to handle a breakpoint being hit simultaneously from different threads very well.. I'm seeing if...

Late response, but because the instruction is: ```mov [esi], edi``` I'd probably want to compare `esi` (the memory address) or `edi` (the new value) `eax` is assigned afterwards.

I had an experimental [script](http://portingteam.com/topic/10460-speed-hack-prototype-script/) and [dylib injection branch](https://github.com/zorgiepoo/Bit-Slicer/tree/dylib-injection) for this, but I didn't end up getting too far.

The error message is probably wrong and you're probably encountering [this error](https://github.com/zorgiepoo/Bit-Slicer/wiki/Security-Protections) instead.

You can currently search/cycle through symbols in the debugger window (type in a symbol name instead of a memory address). Searching by 'description' is kind of interesting because the column...

Glad you love it : ). This is kind of subjective. I personally think the latter looks nicer, and proportional-width is expected if a user wants to add or read...

The idea is similar to the current icon, but I'd prefer to have some perspective and real user identifiable objects. This mockup is lacking in detail/interest. A circular icon like...

Yeah, Bit Slicer's current icon is a tilted rectangle style like Xcode, Notes, Text Edit, Pages, Hopper Disassembler, Hex Fiend. I like that more than a circular icon for this...

Is that example supposed to search for values equal to 100 or 200 or 300? It's not currently possible but it would be do-able to add the appropriate comparison functions...

If on the other hand, what you actually want is a byte array search (with values 100 followed by 200 followed by 300 in consecutive order) then you can use...