@@ -92,7 +92,6 @@ func commandUsage(msg string, cmdFlagSet *flag.FlagSet, errBuf *bytes.Buffer) {
9292 g .Fprintf (color .Error , "\t %-11s - Discover targets for enumerations\n " , "amass intel" )
9393 g .Fprintf (color .Error , "\t %-11s - Perform enumerations and network mapping\n " , "amass enum" )
9494 g .Fprintf (color .Error , "\t %-11s - Analyze subdomain information in the asset-db\n " , "amass subs" )
95- g .Fprintf (color .Error , "\t %-11s - Analyze OAM data to generate graph visualizations\n " , "amass viz" )
9695 g .Fprintf (color .Error , "\t %-11s - Analyze OAM data to identify newly discovered assets\n " , "amass track" )
9796 }
9897
@@ -137,10 +136,6 @@ func main() {
137136 runSubsCommand (os .Args [2 :])
138137 case "emails" :
139138 runEmailsCommand (os .Args [2 :])
140- case "viz" :
141- runVizCommand (os .Args [2 :])
142- case "track" :
143- runTrackCommand (os .Args [2 :])
144139 case "help" :
145140 runHelpCommand (os .Args [2 :])
146141 default :
@@ -338,7 +333,7 @@ func convertScopeToAssets(scope *config.Scope) []*et.Asset {
338333 }
339334
340335 // Create an asset from the CIDR and append it to the assets slice.
341- asset := oamnet.Netblock {Cidr : prefix , Type : ipType }
336+ asset := oamnet.Netblock {CIDR : prefix , Type : ipType }
342337 data := et.AssetData {
343338 OAMAsset : asset ,
344339 OAMType : asset .AssetType (),
0 commit comments