HTTP File Server

A quick file-server launcher under Trigger > Pentest, for serving payloads or exfiltrated files without spinning up Apache or Nginx. Prompts for two things, each with a sensible default if left blank:

  • Directory to serve — blank defaults to your home directory
  • Port — blank defaults to 8000

Opens python3 -m http.server in a foreground terminal; closing the terminal window stops the server. Uses python3 explicitly rather than bare python, since a shimmed PATH (e.g. from a version manager like mise) can otherwise resolve python to something unexpected.