Codebase list gobuster / run/9707c58d-c0e1-4d5a-8b4b-ac1fb74f72c9/upstream main.go
run/9707c58d-c0e1-4d5a-8b4b-ac1fb74f72c9/upstream

Tree @run/9707c58d-c0e1-4d5a-8b4b-ac1fb74f72c9/upstream (Download .tar.gz)

main.go @run/9707c58d-c0e1-4d5a-8b4b-ac1fb74f72c9/upstreamraw · 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()
}