Codebase list gobuster / 89792e99-b753-44ff-88be-610dcb380252/upstream/3.4.0+git20221219.1.c49ddbf main.go
89792e99-b753-44ff-88be-610dcb380252/upstream/3.4.0+git20221219.1.c49ddbf

Tree @89792e99-b753-44ff-88be-610dcb380252/upstream/3.4.0+git20221219.1.c49ddbf (Download .tar.gz)

main.go @89792e99-b753-44ff-88be-610dcb380252/upstream/3.4.0+git20221219.1.c49ddbfraw · 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()
}