Skip to content

Instantly share code, notes, and snippets.

View 3kh0's full-sized avatar
🏳️‍⚧️
Trans Rights

Echo 3kh0

🏳️‍⚧️
Trans Rights
View GitHub Profile
@3kh0
3kh0 / main.css
Last active June 20, 2024 04:49
discord-midnight
/**
* @name midnight
* @description A dark, rounded discord theme.
* @author refact0r
* @version 1.6.2
* @invite nz87hXyvcy
* @website https://github.com/refact0r/midnight-discord
* @source https://github.com/refact0r/midnight-discord/blob/master/midnight.theme.css
* @authorId 508863359777505290
* @authorLink https://www.refact0r.dev
@3kh0
3kh0 / main.js
Created May 28, 2024 12:20
CodeHS-Tool
// main.js leaks most of this info so we can just grab the headers the same way
function createReferrer() {
let protocol = window.location.protocol;
let hostname = window.location.hostname;
let port = window.location .port? ':' + window.location.port : '';
let pathname = window.location.pathname;
let search = window.location.search;
let hash = window.location.hash;
$consoleWidth = [Console]::WindowWidth
$consoleHeight = [Console]::WindowHeight
$ram = Get-CimInstance -ClassName Win32_ComputerSystem | Select-Object -ExpandProperty TotalPhysicalMemory
$cpu = Get-CimInstance -ClassName Win32_Processor | Select-Object -ExpandProperty Name
$gpuList = Get-CimInstance -ClassName Win32_VideoController | Select-Object -ExpandProperty Name
$gpu = $gpuList -join ', '
@3kh0
3kh0 / README.md
Last active June 19, 2024 23:27
Discord token grabber

THIS IS NOW PATCHED

Here is a simple Discord Token grabber that sends information in a discord webhook. It is very simple to setup, first copy the script. Then where it says WEBHOOK_URL_HERE, put a webhook url and you are good! Now send the script to a friend and tell them to run it on discord.com as a bookmarklet or pasting it into console. Both ways work!

PREVIEW:

Capture_LI

@3kh0
3kh0 / main.py
Created October 25, 2021 15:57
A python self-bot for changing your status on the Discord website. (No BetterDiscord)
import sys, os, time, requests, random
from dotenv import load_dotenv, find_dotenv
load_dotenv(find_dotenv())
class Discord:
def __init__(self, token):
self.token = token
self.headers = {
"Authorization": token,
@3kh0
3kh0 / rename-tab.js
Created October 25, 2021 14:36
A simple bookmarklet to rename any tab you wish!
javascript:(function(){/* Made by 3kh0 https://3kh0.github.io */ var title=prompt("Hello! Please enter the new title below:");document.title=title})();