Skip to content

Instantly share code, notes, and snippets.

View MaxAsif's full-sized avatar

Md Asif Iqbal MaxAsif

View GitHub Profile
@MaxAsif
MaxAsif / frida-spoof.js
Created March 14, 2023 15:31 — 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';