parent
d2828471cd
commit
24eb9f287c
|
@ -603,7 +603,8 @@ var agentMapEnum = map[string]int{
|
|||
"suspicious": 29,
|
||||
"semrush": 30,
|
||||
"dotbot": 31,
|
||||
"zgrab": 32,
|
||||
"aspiegel": 32,
|
||||
"zgrab": 33,
|
||||
}
|
||||
var reverseAgentMapEnum = map[int]string{
|
||||
0: "unknown",
|
||||
|
@ -638,7 +639,8 @@ var reverseAgentMapEnum = map[int]string{
|
|||
29: "suspicious",
|
||||
30: "semrush",
|
||||
31: "dotbot",
|
||||
32: "zgrab",
|
||||
32: "aspiegel",
|
||||
33: "zgrab",
|
||||
}
|
||||
var markToAgent = map[string]string{
|
||||
"OPR": "opera",
|
||||
|
|
|
@ -215,7 +215,8 @@
|
|||
|
||||
"semrush":"SemrushBot",
|
||||
"dotbot":"DotBot",
|
||||
"zgrab":"Zgrab Application Scanner",
|
||||
"aspiegel":"AspiegelBot",
|
||||
"zgrab":"Zgrab App Scanner",
|
||||
"suspicious":"Suspicious",
|
||||
"unknown":"Unknown",
|
||||
"blank":"Blank",
|
||||
|
|
|
@ -262,6 +262,7 @@ func main() {
|
|||
"suspicious",
|
||||
"semrush",
|
||||
"dotbot",
|
||||
"aspiegel",
|
||||
"zgrab",
|
||||
}
|
||||
|
||||
|
@ -333,9 +334,10 @@ func main() {
|
|||
"Applebot": "apple",
|
||||
"Discourse": "discourse",
|
||||
|
||||
"SemrushBot": "semrush",
|
||||
"DotBot": "dotbot",
|
||||
"zgrab": "zgrab",
|
||||
"SemrushBot": "semrush",
|
||||
"DotBot": "dotbot",
|
||||
"AspiegelBot": "aspiegel",
|
||||
"zgrab": "zgrab",
|
||||
}
|
||||
|
||||
fileData := `// Code generated by Gosora's Router Generator. DO NOT EDIT.
|
||||
|
|
Loading…
Reference in New Issue