Skip to content

Aliases

Unless specified, aliases are zsh compatible

Showsploit

searchsploit is useful for getting exploits, use showsploit to cat the file

Usage

showsploit linux/remote/19503.txt

Definition

function showsploit {
  exploit_path="/usr/share/exploitdb/exploits/${1}"
  echo "Showing: ${exploit_path}"
  echo "=============="
  cat $exploit_path
}

Last update: 2021-09-01