delete paperr (#758)

This commit is contained in:
sadayuki-matsuno
2019-01-12 22:40:56 +09:00
committed by Kota Kanbe
parent ca2160264a
commit 63b7f4a8db
3 changed files with 57 additions and 63 deletions

View File

@@ -76,7 +76,7 @@ func FillWithExploit(driver db.DB, r *models.ScanResult) (nExploitCve int, err e
// ConvertToModels converts gost model to vuls model
func ConvertToModels(es []*exploitmodels.Exploit) (exploits []models.Exploit) {
for _, e := range es {
var documentURL, paperURL, shellURL *string
var documentURL, shellURL *string
if e.OffensiveSecurity != nil {
os := e.OffensiveSecurity
if os.Document != nil {
@@ -85,9 +85,6 @@ func ConvertToModels(es []*exploitmodels.Exploit) (exploits []models.Exploit) {
if os.ShellCode != nil {
shellURL = &os.ShellCode.ShellCodeURL
}
if os.Paper != nil {
paperURL = &os.Paper.PaperURL
}
}
exploit := models.Exploit{
ExploitType: e.ExploitType,
@@ -96,7 +93,6 @@ func ConvertToModels(es []*exploitmodels.Exploit) (exploits []models.Exploit) {
Description: e.Description,
DocumentURL: documentURL,
ShellCodeURL: shellURL,
PaperURL: paperURL,
}
exploits = append(exploits, exploit)
}