Skip to content

Instantly share code, notes, and snippets.

View Diefunction's full-sized avatar
😁
There is more happiness in giving than in receiving

Diefunction Diefunction

😁
There is more happiness in giving than in receiving
View GitHub Profile
@Diefunction
Diefunction / unpacker-xalz.py
Last active June 16, 2023 15:20
Xalz Unpacker for Xamarin.Android DLLs `/resources/assemblies`
# Xamarin Android
# pip install lz4
from xamarout import xalz # https://github.com/ropbear/xamarout
import os
resources = '.'
assemblies = []
for (current, directories, files) in os.walk(resources, topdown = True):
for asm in files:
asm = os.path.join(current, asm)