@@ -49,10 +49,10 @@ import (
49
49
)
50
50
51
51
const (
52
- mainUsageMsg = "intel| enum [options]"
53
- exampleConfigFileURL = "https://github.com/ owasp-amass/amass/blob/master/examples/config.yaml "
54
- userGuideURL = "https://github.com/owasp-amass/amass/blob/master/doc/user_guide.md "
55
- tutorialURL = "https://github. com/owasp-amass/amass/blob/master/doc/tutorial.md "
52
+ mainUsageMsg = "enum [options]"
53
+ documentationURL = "https://owasp-amass.github.io/docs "
54
+ discordInvitation = "https://discord.gg/ANTyEDUXt5 "
55
+ youTubeURL = "https://www.youtube. com/@jeff_foley "
56
56
)
57
57
58
58
func commandUsage (msg string , cmdFlagSet * flag.FlagSet , errBuf * bytes.Buffer ) {
@@ -63,16 +63,13 @@ func commandUsage(msg string, cmdFlagSet *flag.FlagSet, errBuf *bytes.Buffer) {
63
63
64
64
if msg == mainUsageMsg {
65
65
afmt .G .Fprintf (color .Error , "\n Subcommands: \n \n " )
66
- afmt .G .Fprintf (color .Error , "\t %-11s - Discover targets for enumerations\n " , "amass intel" )
67
66
afmt .G .Fprintf (color .Error , "\t %-11s - Perform enumerations and network mapping\n " , "amass enum" )
68
- afmt .G .Fprintf (color .Error , "\t %-11s - Analyze subdomain information in the asset-db\n " , "amass subs" )
69
- afmt .G .Fprintf (color .Error , "\t %-11s - Analyze OAM data to identify newly discovered assets\n " , "amass track" )
70
67
}
71
68
72
69
afmt .G .Fprintln (color .Error )
73
- afmt .G .Fprintf (color .Error , "The user's guide can be found here: \n %s\n \n " , userGuideURL )
74
- afmt .G .Fprintf (color .Error , "An example configuration file can be found here: \n %s\n \n " , exampleConfigFileURL )
75
- afmt .G .Fprintf (color .Error , "The Amass tutorial can be found here: \n %s\n \n " , tutorialURL )
70
+ afmt .G .Fprintf (color .Error , "The project documentation can be found here: \n %s\n \n " , documentationURL )
71
+ afmt .G .Fprintf (color .Error , "The Amass Discord server can be found here: \n %s\n \n " , discordInvitation )
72
+ afmt .G .Fprintf (color .Error , "The Amass YouTube channel can be found here: \n %s\n \n " , youTubeURL )
76
73
}
77
74
78
75
func main () {
0 commit comments