Skip to content

Instantly share code, notes, and snippets.

@JusticeRage
JusticeRage / nop-hidder
Last active November 24, 2023 00:53 — forked from dperezmavro/nop-hidder
An IDA python script that hides long sequences of nops to make the tree more readable.
from idautils import *
from idc import *
mnemonics = dict()
hides = []
in_nop_sled = 0
curr_pos = 0
sled_len = 0
for seg_ea in Segments():