bugfix sql 注入
This commit is contained in:
parent
d355393074
commit
28d311e759
|
@ -271,7 +271,12 @@ func v1HostRegister(c *gin.Context) {
|
|||
oldFields[k] = v
|
||||
}
|
||||
|
||||
uniqValue := f.SN
|
||||
uniqValue := ""
|
||||
|
||||
if f.UniqKey == "sn" {
|
||||
uniqValue = f.SN
|
||||
}
|
||||
|
||||
if f.UniqKey == "ip" {
|
||||
uniqValue = f.IP
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue