Skip to content

Instantly share code, notes, and snippets.

View GONZOsint's full-sized avatar
🏴‍☠️
U+24B6

GOΠZO GONZOsint

🏴‍☠️
U+24B6
View GitHub Profile
// ==UserScript==
// @name AgentX
// @namespace Social Agents
// @description Enhances Twitter web interface by providing functionalities like copying profile URLs and tweet content, viewing profiles on the Wayback Machine, and highlighting specific text patterns within tweets.
// @match https://twitter.com/*
// @author GONZO
// ==/UserScript==
document.addEventListener('DOMContentLoaded', initializeExtension);
@GONZOsint
GONZOsint / instagram_user_information.py
Created September 14, 2022 20:21
Script to obtain Instagram user informaption
import requests
import re
import sys
import json
def obtain_ids(user):
response = requests.get('https://www.instagram.com/' + user)
appid = re.search('appId":"(\d*)', response.text)[1]
serverid = re.search('server_revision":(\d*)', response.text)[1]