Skip to content

Instantly share code, notes, and snippets.

View gamozolabs's full-sized avatar
🎯
Writing some very cool data structures

gamozolabs

🎯
Writing some very cool data structures
View GitHub Profile
@gamozolabs
gamozolabs / download-android-ndks-direct-links.sh
Created November 11, 2020 19:52 — forked from roscopecoltran/download-android-ndks-direct-links.sh
Download Android NDK Tools / Direct Links
@gamozolabs
gamozolabs / proc_mem.py
Last active June 19, 2024 07:09
IDA Python loader for /proc/pid/mem without debugging a process
import re, subprocess, idaapi, ida_segment, ida_kernwin
# To install this, simply put it in your ida_install/loaders folder and open
# a `/proc/<pid>/mem` file!
#
# You might need to set `echo 0 > /proc/sys/kernel/yama/ptrace_scope` if you
# want to be able to dump processes depending on your system configuration.
# Check if the file is supported by our loader
def accept_file(li, filename):