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';
@WeslenPy
WeslenPy / post.py
Created December 20, 2023 14:35
Post route B3
import requests
url = "https://arquivos.b3.com.br/bdi/table/SharesInvesVolum/2023-12-19/2023-12-19/1/100"
payload = {}
headers = {}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.json())