Skip to content

Instantly share code, notes, and snippets.

View thrila's full-sized avatar
👑

Thrila thrila

👑
View GitHub Profile
@thrila
thrila / bootsrap.sh
Created July 3, 2026 22:16
Auto Install
#!/usr/bin/env bash
#
# bootstrap.sh — fresh machine setup for macOS or Linux (Ubuntu/Debian, Fedora/RHEL,
# Arch, openSUSE)
# Installs: Homebrew, Chrome, VLC, OBS, WezTerm, Ghostty, Neovim (+deps), Docker, Zed
#
# Run as your normal user, NOT as root — the script calls sudo itself
# whenever it needs privileges (and only asks for your password once).
#
# Usage: chmod +x bootstrap.sh && ./bootstrap.sh
@thrila
thrila / sh
Created April 18, 2026 11:40
A web scanner that checks for secrets in the FE of a website as well as backups old compressed versions and accepts default patterns to search for.
#!/bin/sh
# deep_scan_final.sh - Fixed & Improved version (2026)
# Usage: ./deep_scan_final.sh [--fast|--full] <url|file.txt> [custom-pattern]
# -------------------------------------------------------------------
# 0. ARGUMENT PARSING (mode flag must come first)
# -------------------------------------------------------------------
SCAN_MODE="full" # default
case "$1" in