Skip to content

Instantly share code, notes, and snippets.

query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
types {
...FullType
}
directives {
name
description
@SaeedHashem
SaeedHashem / bountyscan_setup.sh
Created May 7, 2019 17:53 — forked from ResistanceIsUseless/bountyscan_setup.sh
Bug bounty environment setup with some additional tools
#!/bin/bash
#TODO: Add ncat, keybase, bookmarks, create symlinks to path
export DEBIAN_FRONTEND=noninteractive;
echo -e "\e[92m[*] Starting Install... [*]"
echo -e "\e[92m[*] Upgrade installed packages to latest [*]"
echo -e "\e[92m\nRunning a package upgrade...\n"
apt-get -qq update && apt-get -qq dist-upgrade -y
apt full-upgrade -y
apt-get autoclean