Skip to content

Instantly share code, notes, and snippets.

@Sjord
Last active December 29, 2024 02:45
Show Gist options
  • Save Sjord/121142fe50b6b46004e0d18a304ca903 to your computer and use it in GitHub Desktop.
Save Sjord/121142fe50b6b46004e0d18a304ca903 to your computer and use it in GitHub Desktop.
const lines = $$('.description .methodsynopsis').map(m => { return {
"name": m.querySelector('.methodname').innerText,
"params": Array.from(m.querySelectorAll('.parameter')).map(p => p.innerText)
}}).filter(info => info.params.includes("$filename")).map(info => {
let pos = info.params.indexOf("$filename");
let params = info.params.slice(0, pos + 1).map(p => p.toUpperCase());
return `${info.name}(${params.join(", ")}, ...)`;
}).join("\n");
document.body.textContent = lines;
@Finito678
Copy link

Hello, how are you, hey, I wanted to tell you that a friend of mine has had photos spread on the networks, and I would like to know if you know any way to hack an Instagram account to be able to access it, could you please help me? I have no idea about hacking

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment