Skip to content

Instantly share code, notes, and snippets.

@jpgninja
Last active January 3, 2024 23:13
Show Gist options
  • Save jpgninja/f388141a93c0ef85ffef2ab1fa5adac5 to your computer and use it in GitHub Desktop.
Save jpgninja/f388141a93c0ef85ffef2ab1fa5adac5 to your computer and use it in GitHub Desktop.
Common apps, bins & packages to use spinning up a new box.

Common apps, bins & packages

This gist is maintained for whenever I start fresh on a new OS. It's comprised of one-liners that I can copy-paste into a terminal and rapidly spin up my needed apps.

Fresh Install

  • Casks: brew install --cask slack sublime-text transmission dropbox cyberghost-vpn spotify vlc signal whatsapp telegram google-chrome exodus skype sequel-pro brave-browser screaming-frog-seo-spider lulu mamp discord iterm2 omnidisksweeper visual-studio-code megasync yacreader transmit disk-inventory-x notion
  • Bottles: brew install nvm node weechat tor wget git wp-cli mysql composer yt-dlp ffmpeg rar mpv aria2c tree
  • Global npm packages: npm install -g peerflix js-beautify

Infosec & Pentesting

  • Casks: brew install --cask burp-suite
  • Bottles: brew install nmap wpscan sqlmap
  • Go packages:
    declare -a tmpGoApps=(
    "github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest"
    "github.com/tomnomnom/gf@latest"
    "github.com/tomnomnom/meg@latest"
    "github.com/tomnomnom/assetfinder@latest"
    "github.com/tomnomnom/waybackurls@latest"
    "github.com/tomnomnom/httprobe@latest"
    "github.com/tomnomnom/fff@latest"
    );for tmpGoApp in ${tmpGoApps[@]}; do; go install $tmpGoApp; done;
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment