Skip to content

Instantly share code, notes, and snippets.

View thinhbuzz's full-sized avatar
🏠
Working from home

Thinh Buzz thinhbuzz

🏠
Working from home
View GitHub Profile
@thinhbuzz
thinhbuzz / discord.js
Last active January 23, 2024 08:13
get discord message by date range
const serverId = '1012618482094968903';
const channelId = '1193845566204035092';
const authorization = 'token string';
const startTime = 1704672000000;
const endTime = 1705190400000;
function pick(obj, keys) {
const result = {};
keys.forEach((key) => {
result[key] = obj[key];
@thinhbuzz
thinhbuzz / GUIDE.md
Created January 8, 2026 02:08
The simplest way to customize frida-java-bridge when building Frida

The simplest method is to use Verdaccio.

Step 1: Install Verdaccio npm install -g verdaccio

Step 2: Run it with the command verdaccio

Step 3: Configure npm to use Verdaccio

npm set registry http://localhost:4873/
@thinhbuzz
thinhbuzz / GUIDE.md
Created January 8, 2026 03:47
Build Frida with Frida's latest SELinux

You can build Frida with Frida's latest SELinux update by following these steps:

Step 1: Clean the build and deps directories

rm -rf build deps

Step 2: Update the SELinux configuration in the releng/deps.toml file

[selinux]