Codebase list gobuster / 1b8f4a52-545e-4c57-b05c-2bbe57598b0a/upstream/3.3.0+git20221029.1.af6af44 main.go
1b8f4a52-545e-4c57-b05c-2bbe57598b0a/upstream/3.3.0+git20221029.1.af6af44

Tree @1b8f4a52-545e-4c57-b05c-2bbe57598b0a/upstream/3.3.0+git20221029.1.af6af44 (Download .tar.gz)

main.go @1b8f4a52-545e-4c57-b05c-2bbe57598b0a/upstream/3.3.0+git20221029.1.af6af44raw · history · blame

package main

import "github.com/OJ/gobuster/v3/cli/cmd"

//----------------------------------------------------
// Gobuster -- by OJ Reeves
//
// A crap attempt at building something that resembles
// dirbuster or dirb using Go. The goal was to build
// a tool that would help learn Go and to actually do
// something useful. The idea of having this compile
// to native code is also appealing.
//
// Run: gobuster -h
//
// Please see THANKS file for contributors.
// Please see LICENSE file for license details.
//
//----------------------------------------------------

func main() {
	cmd.Execute()
}