Skip to content

Instantly share code, notes, and snippets.

@ariankordi
ariankordi / ForwardNotifierServer.go
Last active November 15, 2021 17:33
rewrite of ForwardNotifierServer for this iphone tweak https://github.com/Greg0109/ForwardNotifier
package main
import (
"github.com/valyala/fasthttp"
"github.com/gen2brain/beeep"
"encoding/json"
"encoding/base64"
// to create a reader for the base64 image
"strings"
@ariankordi
ariankordi / funny-pranke.py
Last active December 13, 2020 22:45
thi this mitmproxy script kinda make me go thonking
# mitmproxy ctx for logging and http for making responses
from mitmproxy import http, ctx
# status code constants
from mitmproxy.net.http import status_codes
# http requests are made for getting and sending back user config
import urllib.request, urllib.parse
# used for making cookie expire date
@ariankordi
ariankordi / smd-master-9000.py
Last active December 13, 2020 22:43
mitmproxy script for cheating on my tests LMAOOOOO
from mitmproxy import ctx
from notifypy import Notify
import json
# represents items but only with answers, populated in response method
current_assessment_items = []
# temporary
#!/bin/sh
# should only need to depend on: any shell (hopefully), curl, sed, date, expr
# shamelessly stolen from here n modified
# https://web.archive.org/web/20200813201515/https://unix.stackexchange.com/questions/364776/how-to-output-a-date-time-as-20-minutes-ago-or-9-days-ago-etc/364784#364784
relative() {
local last_unix=$(date -u --date="$1" +%s) # convert date to unix timestamp
local now_unix=$(date +'%s')
@ariankordi
ariankordi / grouppe.php
Last active June 7, 2020 05:19
simple php script for a discord application that adds a user to an already existing bot group via oauth2, resolves a code (((made this two days ago))
<?php
//ini_set('display_errors', true);
define('CLIENT_ID', '');
define('CLIENT_SECRET', '');
// token for a bot, needs to be prefixed with Bot
define('TOKEN', '');
// group channel that you have already created, lol,
define('CHANNEL_ID', '');
@ariankordi
ariankordi / cronch.patch
Last active November 8, 2025 23:50
insanele stupid hack that i spent hours on that lets you watch crunchyroll on cytube, worked on calzoneman/sync commit 88365612dab2351b297c895952fa98b105894b4d
diff --git a/index.js b/index.js
old mode 100755
new mode 100644
diff --git a/package.json b/package.json
index a003e77..caee25a 100644
--- a/package.json
+++ b/package.json
@@ -13,17 +13,19 @@
"bcrypt": "^3.0.6",
"bluebird": "^3.5.1",
@ariankordi
ariankordi / README.txt
Last active September 12, 2022 01:40
my stupid hack for using nooklink for animal crossing: new horizons on pc involving mitmproxy which i have had to repost sorry
hi. this app is a reverse proxy, meaning that when it launches, it runs a server that connects to the official server, like a proxy (except that it only supports one site) and it modifies some requests and responses along the way.
now here is a terrible guide
first: the "iksm.py" file and its functions is copied and modified from splatnet2statink, retrieved from https://github.com/frozenpandaman/splatnet2statink at least at commit a971a21fafdbd026aa8b44d7514119d3ff6073a2. this information should be added in the file itself but it's worth mentioning here
when running any of these files like bruh.py or mitmproxy with bruhx.py, if you see that there's a module missing, just install it (notably requests and hashlib is required)
the main magic script which is the mitmproxy addon and gets tokens from splatnet2statink functions is bruhx.py. execute bruh.py, (without the x), follow the instructions, and then the value it gives you needs to be placed into the "codee" variable in bruhx.py.
bruh.sh starts mitmproxy.
@ariankordi
ariankordi / olvclient.php
Created December 26, 2019 04:47
olvclient. this is stupid and dumb. i've had this on my github profile for 2 years and i've always been ashamed of this. it's literally useless by now and it's served little purpose being on my github page being that it's not a fully featured thicc project and stuff. i know i have like unfinished projects and stuf but they're stuff and they're l…
<?php
/*
OlvClient by Arian Kordi
https://github.com/ariankordi
Licensed under GNU AGPLv3: https://choosealicense.com/licenses/agpl-3.0/
*/
class OlvClient {
@ariankordi
ariankordi / cronch.css
Last active May 1, 2020 08:51
please don't use this because it doesn't handle a lot of cases, my F*CK do not even think about incorporating this into your creation
html, textarea {
background-color: #3d3d3d;
color: white;
font-family: sans-serif;
}
textarea {
border-color: darkgray;
font-family: monospace;
display: block;
height: 100px;
<?php
//ini_set('display_errors', 1);
$db = new SQLite3('cheapvps-comparison.db');
/*
CREATE TABLE "offers" (
"created_at" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
"url" text NOT NULL,
"post_type" integer NOT NULL,