exterminate icon indicating copy to clipboard operation
exterminate copied to clipboard

A suggestion to make this even more destructive

Open spapas opened this issue 7 years ago • 2 comments

Hello, instead of always modifying the number you could instead modify it randomly (for example one out of every 100 numbers will be modified the other 99 will be the same). So the problematic behavior will only happen once in a while making debugging impossible!

spapas avatar Jan 28 '17 17:01 spapas

True = not True
False = not False

theghost7771 avatar Jan 31 '17 06:01 theghost7771

import ctypes

def deref(addr, typ):
    return ctypes.cast(addr, ctypes.POINTER(typ))

deref(id(29), ctypes.c_int)[6] = 100

seems to work, haven't managed to switch out the bool values yet.

sils avatar Mar 08 '17 20:03 sils