Skip to content

Instantly share code, notes, and snippets.

@kamino
kamino / find_baseaddr.py
Created October 22, 2020 18:00 — forked from rpw/find_baseaddr.py
Find base addresses of flat firmware binaries using differences between string references
# Reverse engineering tricks:
# Determine load addresses using differences between string references
# (c) 2017 Comsecuris UG
from idc import *
from idautils import *
from sets import Set
ATTEMPTS = 10
@kamino
kamino / ironhide-mmio-read.py
Created March 28, 2017 11:21
Unfinished TLP dissector for scapy
#! /usr/bin/env python2
import sys
import socket
import random
import time
from tlp import *
from scapy.all import *
def usage():