This file contains 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 Youtube AdBlock ban bypass | |
// @namespace http://tampermonkey.net/ | |
// @version 0.32b | |
// @description Bypass youtubes new ad block restrictions | |
// @author Obelous | |
// @author Yani | |
// @match https://www.youtube.com/* | |
// @match https://www.youtube-nocookie.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com |
This file contains 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
<body> | |
<div class="wrapper"> | |
<div class="loading" id="_app_loader"></div> | |
</div> | |
</body> |
This file contains 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
<?php | |
/* | |
A Simple Dynamic PHP & JS obfuscation script | |
- Made by Yani | |
https://github.com/Yanikore - https://gist.github.com/Yanikore | |
*/ | |
function randomString($length = 8) { //Just a randomstring function | |
$randomString = ''; | |
$characters = implode("", array_merge(range('a', 'z'), range('A', 'Z'))); |