This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python2 | |
import sys | |
import socket | |
import random | |
import time | |
from tlp import * | |
from scapy.all import * | |
def usage(): |