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
// ==UserScript== | |
// @name Activate all Itch.io Bundle downloads | |
// @version 1 | |
// @include https://itch.io/bundle/download/* | |
// @include https://*.itch.io/* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js | |
// @grant none | |
// ==/UserScript== | |
$(document).ready(function() { |
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
<? | |
//Required info | |
$whmusername = "root"; | |
//Contains the hash from /etc/.accesshash | |
include_once('hash.php'); | |
//A bunch of vars, the ones listed here are required for any cp scrip. Replace or add to this as needed, can be changed to inputs as well. | |
$user = "somename"; | |
$pass = "somepass"; | |
$domain = "someurl.tld"; |