Skip to content

Instantly share code, notes, and snippets.

View OutRite's full-sized avatar

534 OutRite

View GitHub Profile
@OutRite
OutRite / part.py
Created September 26, 2025 10:05
gplay build f.req for batchexecute app dl count
import urllib.parse
import json
package_name = "com.google.android.gms"
response_filter = [14] # 14 contains the download count data. we don't care about anything else so we're only filtering for that
dl_rpc_name = "Ws7gDc" # this is the specific RPC that contains the download count info
dl_rpc_body = [None, None, [response_filter], None, None, [[package_name, 7]]]
final_built_rpc = [[[dl_rpc_name, json.dumps(dl_rpc_body), None, '9']]]
built_rpc_text = urllib.parse.quote(json.dumps(final_built_rpc))
final_payload = f"f.req={built_rpc_text}"
Mozilla/5.0 (GLaDOS 3.11) Cobalt/16.123456-gold (unlike Gecko) V8/6.5.254.28 Starboard/6 ApertureScienceInnovators_OTT_PbodyOrangeAtlasBlue_2013/001 (Aperture Science Labs, GLaDOS)
@OutRite
OutRite / gist:d05ecb5b32ba64a206c339c4cb62439b
Created August 24, 2025 12:05
yt comment test sample incomplete
cid,name,unique_videos_commented_on
UC0tGDVk5Qa_y-RmsQxRFhmw,San Remo,464
UCD3s9Wl76bFZDZ1eux2jTBQ,Antonio Otero,257
UC9gFTWQPXI0QG24QGUgpNwA,SeegalMasterPlayz,205
UC3VTwny56QY0nTaMYLgglZQ,rybalan,194
UCOGuPQ9ukCJVQ6Wq58bNu2Q,antonio o,182
UChKxcwK1anyKtJwcTJtGdew,Mao Ryu,171
UCoTpWKRqF-QRDUt7o-itVdw,maoryu2030,165
UCxscDETKI-RGT0bkWZ6DeWA,๐Ÿ”Š๐‘ป๐’†๐’๐’“๐’•๐’†๐’ˆ๐’‚๐Ÿ”Š,149
UCtu6zqjnk7BAmjfvHQLKDXA,DefLeppard247,139
142.250.179.175,ams15s41-in-f15.1e100.net
142.250.74.47,arn09s22-in-f15.1e100.net
142.250.177.15,atl14s08-in-f15.1e100.net
142.250.180.79,ber07s03-in-f15.1e100.net
142.250.78.111,bog02s17-in-f15.1e100.net
142.250.183.111,bom12s13-in-f15.1e100.net
142.250.180.239,bud02s34-in-f15.1e100.net
142.250.194.79,del12s03-in-f15.1e100.net
142.250.72.47,den16s08-in-f15.1e100.net
142.250.68.175,dfw25s41-in-f15.1e100.net
@OutRite
OutRite / ytarchive.user.js
Last active May 26, 2025 07:54
YouTube Archive++
// ==UserScript==
// @name YouTube Archive++
// @namespace 534
// @match https://web.archive.org/web/*
// @grant none
// @version 1.3
// @author 534
// @description Improves Wayback Machine YouTube archives. View legacy CIDs, disable themeRefresh, and make das_captcha less annoying.
// @run-at document-body
// ==/UserScript==
@OutRite
OutRite / pcd.user.js
Last active December 25, 2024 04:31
Bluesky Profile Creation Date
// ==UserScript==
// @name Profile Creation Date
// @namespace 534
// @match https://bsky.app/*
// @grant GM_addStyle
// @version 1.2
// @author 534
// @description Adds a creation date to profiles on bluesky.
// ==/UserScript==
@OutRite
OutRite / featuregatekey.user.js
Last active December 19, 2024 02:29
Feature Gate Key
// ==UserScript==
// @name Feature Gate Key
// @namespace 534
// @match https://bsky.app/*
// @match https://main.bsky.dev/*
// @match https://*.onrender.com/*
// @grant GM_getValue
// @grant GM_setValue
// @version 1.1
// @author 534
# CLIpclops
import requests
import json
import sys
import base64
import getpass
pds = 'put the DM endpoint domain here'
handle_cache = {}