Skip to content

Instantly share code, notes, and snippets.

View yogikortisa's full-sized avatar
🎯
Focusing

Yogi Kortisa yogikortisa

🎯
Focusing
View GitHub Profile
@yogikortisa
yogikortisa / setup-recon.sh
Last active November 3, 2025 06:07
This script automates installation of Go, configures Go environment paths, removes legacy httpx, installs ProjectDiscovery’s Tool Manager (pdtm), and installs a full suite of recon tools for bug bounty automation. It will automatically reload your shell at the end so the new environment variables take effect immediately.
#!/bin/bash
# setup-recon.sh — Simple setup for recon automation tools
#
# Usage:
# chmod +x setup-recon.sh
# ./setup-recon.sh
#
# Description:
# This script automates installation of Go, configures Go environment paths,
# removes legacy httpx, installs ProjectDiscovery’s Tool Manager (pdtm),
@yogikortisa
yogikortisa / sync-history.sh
Created June 27, 2023 19:12 — forked from jan-warchol/sync-history.sh
Synchronize history across bash sessions
# Synchronize history between bash sessions
#
# Make history from other terminals available to the current one. However,
# don't mix all histories together - make sure that *all* commands from the
# current session are on top of its history, so that pressing up arrow will
# give you most recent command from this session, not from any session.
#
# Since history is saved on each prompt, this additionally protects it from
# terminal crashes.