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 KickNoSub | |
| // @version 2.3.0 | |
| // @description Replaces Kick's native VOD player with a custom hls.js-based player | |
| // @author LasCC | |
| // @match https://kick.com/* | |
| // @icon https://kick.com/favicon.ico | |
| // @require https://cdn.jsdelivr.net/npm/hls.js@latest/dist/hls.min.js | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_setClipboard |
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
| #!/bin/bash | |
| # curl -s https://gist.githubusercontent.com/LasCC/6f3838dc02f46b14e9dbc9bc0972407e/raw/a0d9e015ee942aa5b124c4bcdbe487b40ac6ac4e/misconfiguration.sh | bash | |
| # Kernel and distribution release details | |
| echo -e "\033[1;31m[+] Kernel and distribution release details\033[0m" | |
| uname -a | |
| cat /etc/*-release | |
| echo |
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
| #/bin/bash | |
| # echo the banner bellow in orange color | |
| echo -e "\e[0;33m###############################################################################\033[0m" | |
| echo -e "\e[0;33m## ##\033[0m" | |
| echo -e "\e[0;33m## LasCC - https://github.com/LasCC ##\033[0m" | |
| echo -e "\e[0;33m## V1 ##\033[0m" | |
| echo -e "\e[0;33m## ##\033[0m" | |
| echo -e "\e[0;33m###############################################################################\033[0m" | |
| echo -e "\033[34mVolatility script for memory dumps (Tested with Volatility Framework 2.6.1)\033[0m" |