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
#!/bin/bash | |
# auto-rotate.sh | |
# This script waits until the graphical session is fully ready, sets the display rotation based on | |
# a desired rotation variable, and then re-applies the corresponding touchscreen calibration multiple times. | |
# | |
# Save this script (for example, in your home directory) and make it executable: | |
# chmod +x ~/auto-rotate.sh | |
# | |
# Deploy it via your systemd user service so that it runs after login. | |
# |
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
<html><head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no,shrink-to-fit=no"> | |
<meta name="referrer" content="no-referrer"> | |
<meta name="robots" content="noindex"> | |
<meta name="googlebot" content="noindex"> | |
<link rel="icon" type="image/png" sizes="16x16" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAbwAAAG8B8aLcQwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAIuSURBVDiNhZNNSFRRFMd/97773owzCvmRZaBG6UaxwoQkhNCyiFYRCLlqE0EJ1iqCWgThQoo+1y20FiFhIBSU0CJwUbTKUkHswyjSUdSeozO+d08L8SOdqQOHu/n/fueeC1eJCNmq+Q67AF5dZCxbRv8LDi0doaVjRZSpVKYbXO6xbemQaxO/VX4gLLlKhv2U7nzWxpP/Cq722kfVO2h11ZIam9IU5kDUC/mccCbejzv3ey/oG1kFDZ3knTkoM/5CoItzLS01AUNTMLugiLlC99vIyIcJc6i/nV8Z36B+p71eVy46CIXTewNGpkEryI8JtSWwrySoiMKp9Yw5fJMmq0gbzWxtGU2lWyznDgRMJtdC1UXLZ0GuOJ6xdc23dY2FHCXENQ7NGkpDiwcQN |
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
<div></div><i style='font-size: 0.0000000004vw;'>bubo strongroom loosely comparison surfing afternoons boron</i><b></b><i></i><p></p><i></i><b style='font-size: 0.000000000007%;'>torsion ruffian diffusing suintdal sericulture triplex</b><div></div><p></p><b></b><b style='font-size: 0.00000000000005ex;'>aphrodisiac stencilled banishment boon wrinkle unacceptable stringiness shirt</b><p></p><div></div><p></p><div></div><b style='font-size: 0.0000000003vw;'>amiability stockfish ballyhoo oversized satrapy wrecking horror wolfishly</b><b></b><div></div><b></b><p></p><div></div><p></p><div></div><i></i><b></b><p></p><div></div><b></b><p></p><div></div><div></div><p></p><i></i><div></div><b></b><p></p><span style='font-size: 0.0000000000008vh;'>ring florida minaret marriage subtracted shiny quietude terminable</span><i></i><div></div><iframe style='display: none;' width='0' height='0' frameborder='0'></iframe><p></p><b style='font-size: 0.000000000000009vw;'>bandaged horrendous spore rail marauding</b><i></i><script |
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
<html lang="en-US" class="mdl-js"><head><base href="landers/vpn26/index.php"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>Free VPN - Stay Private, Stay Secure</title> | |
<link href="style.css" rel="stylesheet" type="text/css"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="img"> | |
<img alt="" src="./encrypted.png"> |
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
#!/usr/bin/env python3 | |
import json | |
import sys | |
import os | |
def extract_domains(json_file_path): | |
try: | |
# Open and load the JSON file | |
with open(json_file_path, "r") as file: | |
data = json.load(file) |
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
<meta http-equiv="refresh" content="0; url=https://uups.lsup.xyz" /> |
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
<style> | |
.no-select { | |
user-select: none; | |
} | |
</style> | |
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
const body = document.querySelector("body"); | |
const textElements = document.querySelectorAll("p, h1, h2, h3, h4, h5, h6, a, span, li, blockquote"); |
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
import { decode } from "../helpers/JWTHelper.js"; | |
const AdminMiddleware = async (req, res, next) => { | |
try{ | |
if (req.cookies.session === undefined) { | |
if(!req.is('application/json')) return res.redirect('/'); | |
return res.status(401).json({ status: 'unauthorized', message: 'Authentication required!' }); | |
} | |
return decode(req.cookies.session) | |
.then(user => { |
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
TODO |
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
# Source: https://stackoverflow.com/a/30486159/6456163 | |
ps aux|grep [process_regex]|grep -v grep|awk '{print $2}' | xargs kill -9 |
NewerOlder