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 Minecraft Wiki redirect | |
// @namespace https://rtm516.co.uk/ | |
// @version 1.1 | |
// @description Redirect old mc wiki to the new site | |
// @author rtm516 | |
// @match https://minecraft.fandom.com/wiki/* | |
// @match https://minecraft.gamepedia.com/wiki/* | |
// @icon https://minecraft.wiki/favicon.ico | |
// @grant none |
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
# Title: TAG Actor controlled sites | |
# https://blog.google/threat-analysis-group/new-campaign-targeting-security-researchers/ | |
0.0.0.0 angeldonationblog.com | |
0.0.0.0 codevexillium.org | |
0.0.0.0 investbooking.de | |
0.0.0.0 krakenfolio.com | |
0.0.0.0 opsonew3org.sg | |
0.0.0.0 transferwiser.io | |
0.0.0.0 transplugin.io | |
0.0.0.0 trophylab.com |
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
#!/sbin/sh | |
cat /system/build.prop | grep ro.build.characteristics | |
cp /system/build.prop /system/build.prop.bak | |
sed -i 's/tablet/tv/g' /system/build.prop | |
cat /system/build.prop | grep ro.build.characteristics | |
echo "Please reboot now" |
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
pkg install -y proot wget | |
mkdir ~/ubuntu_directory | |
cd ~/ubuntu_directory | |
wget https://raw.githubusercontent.com/Neo-Oli/termux-ubuntu/master/ubuntu.sh | |
sed -i 's/disco/focal/g' ubuntu.sh | |
bash ubuntu.sh | |
sed -i 's/#command+=" -b \/data/command+=" -b \/data/g' start-ubuntu.sh |
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
#!/usr/bin/python | |
# Original file: https://github.com/LionSec/katoolin | |
# Removed w3af, http-tunel, magictree | |
# Updated key server | |
import os | |
import sys, traceback |