Skip to content

Instantly share code, notes, and snippets.

View 0x0im's full-sized avatar
☠️
working hard

0x0FFF 0x0im

☠️
working hard
  • somewherebetweenasminstructions
View GitHub Profile
@retornam
retornam / resources.md
Created March 24, 2022 19:53 — forked from muff-in/resources.md
A curated list of Assembly Language / Reversing / Malware Analysis / Game Hacking-resources
@matterpreter
matterpreter / FindTargetImports.cs
Last active December 26, 2025 14:01
Search all PE files in a directory for ones which import a specific DLL
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using PeNet;
using PeNet.Header.Pe;