Skip to content

Instantly share code, notes, and snippets.

View samicrusader's full-sized avatar
💊
POP A PERC

samicrusader

💊
POP A PERC
View GitHub Profile
@samicrusader
samicrusader / PSX_rel.cpp
Last active April 29, 2024 09:27 — forked from balika011/PSX_rel.cpp
This tool can be used to decrypt PSX package binaries, like main.rel.
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <openssl/aes.h>
#include <openssl/rsa.h>
#include <algorithm>
#include <openssl/sha.h>
#pragma pack(push, 1)
struct npCoreKey
@samicrusader
samicrusader / acropalypse_wikileaks_check.py
Last active April 16, 2023 09:58 — forked from DavidBuchanan314/acropalypse_matching_sha256.py
check if a folder of screenshot got wikileaked by Android 10's undocumented API bullshit
import zlib
import os
import sys
import io
if len(sys.argv) != 4:
print(f"USAGE: {sys.argv[0]} phone_width phone_height wikileaks/")
exit()
print('this tool gonna take a bit depending on how big and girthy your screenshots( folder) is')