Skip to content

Instantly share code, notes, and snippets.

View BlueCannonBall's full-sized avatar
🔵

BlueCannonBall BlueCannonBall

🔵
View GitHub Profile
@BlueCannonBall
BlueCannonBall / proxy.pac
Created October 3, 2022 02:16
Proxy + Adblocker (for private use, requires password)
function FindProxyForURL(url, host) { if ( shExpMatch(host, "1-1ads.com") || shExpMatch(host, "*.1-1ads.com") || shExpMatch(host, "101com.com") || shExpMatch(host, "*.101com.com") || shExpMatch(host, "101order.com") || shExpMatch(host, "*.101order.com") || shExpMatch(host, "123freeavatars.com") || shExpMatch(host, "*.123freeavatars.com") || shExpMatch(host, "180hits.de") || shExpMatch(host, "*.180hits.de") || shExpMatch(host, "180searchassistant.com") || shExpMatch(host, "*.180searchassistant.com") || shExpMatch(host, "1link2020.com") || shExpMatch(host, "*.1link2020.com") || shExpMatch(host, "1rx.io") || shExpMatch(host, "*.1rx.io") || shExpMatch(host, "207.net") || shExpMatch(host, "*.207.net") || shExpMatch(host, "247media.com") || shExpMatch(host, "*.247media.com") || shExpMatch(host, "24log.com") || shExpMatch(host, "*.24log.com") || shExpMatch(host, "24log.de") || shExpMatch(host, "*.24log.de") || shExpMatch(host, "24pm-affiliation.com") || shExpMatch(host, "*.24pm-affiliation.com") || shExpMatch(host,
@BlueCannonBall
BlueCannonBall / gunnalag.js
Last active July 13, 2020 02:28
Gunna.io Lagbots
// This code is under the CC0 Creative Commons license. Read more at https://creativecommons.org/share-your-work/public-domain/cc0/
// Execute the code below in a browser javascript console to start spawning infinite lagbots in gunna.io
setInterval(() => {let lagws = new WebSocket("ws://167.99.174.211:8080"); lagws.onopen = function () {lagws.send(JSON.stringify({ name: "Lagbot" })); var lft = Math.random() >= 0.5; var upp = Math.random() >= 0.5; var rgt = Math.random() >= 0.5; var dwn = Math.random() >= 0.5; dat = {
x: (lft ? -1 : 0) + (rgt ? 1 : 0),
y: (upp ? -1 : 0) + (dwn ? 1 : 0),
time: (new Date()).getTime()
};
lagws.send(JSON.stringify(dat));}}, 1);