Skip to content

Instantly share code, notes, and snippets.

@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
@ariankordi
ariankordi / cronch.patch
Last active September 11, 2020 21:12
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",
#!/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.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;
@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 {
<?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,
@ariankordi
ariankordi / realtime-chat-noextlibs.php
Last active February 15, 2019 03:24
A REAL-TIME (no AJAX polling), database-less, no-setup chat room in PHP, using SSE and shmop
<?php
// This chat thing uses nothing but shmop, but it requires SSE (Server-Sent Events) to work on your server.
// If this chat just does nothing, i.e. you post a message and literally nothing else happens, SSE probably doesn't work.
// Note that this file continuously reads a shared memory block and detects a difference, in order to get live messages.
// This might not be all that efficient, and can be intensive on your server. Don't leave this up for a long period of time.
// This will also not work with PHP's built-in server, due to it being single-threaded. Oh yeah, since this uses SSE, this will use a separate thread for every client that is connected.
// Have fun. This should work right away with no config.
// set the size of these shared memory blocks, "message buffers" here
@ariankordi
ariankordi / sh-cgi-term.cgi
Last active February 6, 2019 02:15
A super simple command line in shell CGI, this is useful for executing commands on a cPanel/Apache shared hosting account LOL
#!/bin/sh
if [ $REQUEST_METHOD = "POST" ]; then
echo
$(cat) 2>&1
exit
fi
printf "Content-type: text/html\n\n"
#echo