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
import struct | |
import socket | |
import ipaddress | |
import pprint | |
from typing import Optional | |
SERVER_INFO_STRUCT = struct.Struct("<I H 100s x B B B 9s I H B B") | |
SERVER_INFO_STRUCT_SIZE = SERVER_INFO_STRUCT.size |
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
import idautils | |
import ida_bytes | |
import ida_funcs | |
import ida_ida | |
import ida_kernwin | |
import ida_search | |
import ida_idp | |
import idaapi | |
import idc | |
import pprint |
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
import idautils | |
import ida_bytes | |
import ida_funcs | |
import ida_ida | |
import ida_kernwin | |
import ida_search | |
import ida_idp | |
import idaapi | |
import idc | |
import pprint |
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
#include "Detour.h" | |
BYTE Detour::TrampolineBuffer[ 200 * 20 ] = {}; | |
SIZE_T Detour::TrampolineSize = 0; |