A web-based tool for analyzing memory scanner exports to detect bit-field patterns and boolean transitions.
- Quick Scan: Analyzes changed addresses for bit flips and boolean patterns
- Mass Change: Clusters addresses by proximity and matches expected event counts
- Color-coded results: Green for bits set (0→1), red for bits cleared (1→0), orange for bit swaps
- Direction filtering: Filter results by set/clear/mixed changes
- Non-standard booleans: Optional mode for broader boolean detection
- Open
index.htmlin a web browser - Export CSV from your memory scanner with columns:
Address, Value, InitialValue - Upload the CSV and click Analyze
- Browse pattern categories and export filtered results
- Address: Memory address (hex format preferred)
- Value: Current value (hex format)
- InitialValue: Previous/initial value (hex format)
- Single Bit Flip: Exactly one bit changed
- Nibble Boolean: 0x0 ↔ 0xF transitions
- Byte Boolean: 0x00 ↔ 0xFF transitions
- Word Boolean: 0x0000 ↔ 0xFFFF transitions
- DWord Boolean: 0x00000000 ↔ 0xFFFFFFFF transitions
Built with vanilla JavaScript, HTML5, and CSS. No external dependencies required.
See LICENSE file for details.