Skip to content

Instantly share code, notes, and snippets.

View fg0x0's full-sized avatar
πŸ΄β€β˜ οΈ
find 2025/ -name "FAILED" -exec rm -rf {} \;

fg0x0 fg0x0

πŸ΄β€β˜ οΈ
find 2025/ -name "FAILED" -exec rm -rf {} \;
View GitHub Profile
@fg0x0
fg0x0 / bash-colors.md
Created October 17, 2023 08:17 — forked from JBlond/bash-colors.md
The entire table of ANSI color codes.

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple
@fg0x0
fg0x0 / w3rmup.php
Created December 5, 2021 16:07 — forked from orangetw/w3rmup.php
<?php
if (!isset($_GET['mail']))
highlight_file(__FILE__) && exit();
$mail = filter_var($_GET['mail'], FILTER_VALIDATE_EMAIL);
$addr = filter_var($_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP);
$country = geoip_country_code_by_name($addr);
if (!$addr || strlen($addr) == 0) die('bad addr');
if (!$mail || strlen($mail) == 0) die('bad mail');

Reconnoitre.py

#!/usr/bin/python

import os
import signal
import sys

from .lib.core.input import CliArgumentParser