Skip to content

Instantly share code, notes, and snippets.

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

WeslenPy WeslenPy

🏠
Working from home
View GitHub Profile
@WeslenPy
WeslenPy / frida-spoof.js
Created January 25, 2024 16:59 — forked from jacopo-j/frida-spoof.js
Frida script to spoof and hide several Android identifiers
/* Utilities */
var RANDOM = function() {};
function _randomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function _randomHex(len) {
var hex = '0123456789abcdef';