Skip to content

Instantly share code, notes, and snippets.

View ltlly's full-sized avatar

洛天琉璃依 ltlly

View GitHub Profile
@ltlly
ltlly / jni_bn.h
Last active August 20, 2023 12:58
安卓逆向&&frida
//编译选项
// --target=aarch64-pc-apple-darwin
// -isystem /System/Volumes/Data/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/
// -isystem /Library/Developer/CommandLineTools/usr/lib/clang/14.0.3/include
#include <stdio.h>
#include <stdarg.h>
typedef long jint;
typedef int64_t jlong;
typedef signed char jbyte;
@ltlly
ltlly / 16进制保存图片.py
Last active August 17, 2023 14:43
Ctf常见脚本
import binascii
out=open('2.jpg','wb')
out.write(binascii.unhexlify(s))
out.close()
@ltlly
ltlly / 1_Snippet_Instructions.txt
Created August 5, 2023 18:26 — forked from psifertex/1_Snippet_Instructions.txt
my current collection of snippets
Welcome to Jordan's grab-bag of common Binary Ninja Snippets.
These snippest are meant to run with the Binary Ninja Snippets Plugin
(http://github.com/Vector35/snippets) though they can all also be pasted
directly into the python console or turned into stand-alone plugins if needed.
To install the entire collection at once, just install the Snippets plugin via
the plugin manager (CMD/CTL-SHIFT-M), confirm the Snippet Editor works
(Tool/Snippets/Snippet Editor), and unzip this bundle (Download ZIP above) into
your Snippets folder.