forked from future-architect/vuls
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(config): Auto-upgrade Windows config.toml from v1 to v2 (future-…
…architect#1726) * add: README.md * add: commands(discover,add-server,add-cpe) * add: implements(discover,add-server,add-cpe) * fix: changed os.Exit(1) in main.go to return an error * fix: lint error * delete: trivy-to-vuls stdIn * fix: Incomprehesible error logs * fix: according to review * add: function converts old config to latest one * delete: add-server * fix: lint error * fix * fix: remote scan error in Windows * fix: lint error * fix * fix: lint error * fix: lint error * add: scanner/scanner.go test normalizeHomeDirForWindows() * fix * fix * fix * fix: remove pointless assignment * fix --------- Co-authored-by: 和田皓翔 <[email protected]> Co-authored-by: 和田皓翔 <[email protected]> Co-authored-by: 和田皓翔 <[email protected]>
- Loading branch information
1 parent
80b48fc
commit f6509a5
Showing
7 changed files
with
204 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
package config | ||
|
||
import ( | ||
"bytes" | ||
"encoding/json" | ||
"fmt" | ||
"io/ioutil" | ||
"os" | ||
"strings" | ||
|
||
"github.com/BurntSushi/toml" | ||
"golang.org/x/xerrors" | ||
) | ||
|
||
// ConfV1 has old version Configuration for windows | ||
var ConfV1 V1 | ||
|
||
// V1 is Struct of Configuration | ||
type V1 struct { | ||
Version string | ||
Servers map[string]Server | ||
Proxy ProxyConfig | ||
} | ||
|
||
// Server is Configuration of the server to be scanned. | ||
type Server struct { | ||
Host string | ||
UUID string | ||
WinUpdateSrc string | ||
WinUpdateSrcInt int `json:"-" toml:"-"` // for internal used (not specified in config.toml) | ||
CabPath string | ||
IgnoredJSONKeys []string | ||
} | ||
|
||
// WinUpdateSrcVulsDefault is default value of WinUpdateSrc | ||
const WinUpdateSrcVulsDefault = 2 | ||
|
||
// Windows const | ||
const ( | ||
SystemDefault = 0 | ||
WSUS = 1 | ||
WinUpdateDirect = 2 | ||
LocalCab = 3 | ||
) | ||
|
||
// ProxyConfig is struct of Proxy configuration | ||
type ProxyConfig struct { | ||
ProxyURL string | ||
BypassList string | ||
} | ||
|
||
// Path of saas-credential.json | ||
var pathToSaasJSON = "./saas-credential.json" | ||
|
||
var vulsAuthURL = "https://auth.vuls.biz/one-time-auth" | ||
|
||
func convertToLatestConfig(pathToToml string) error { | ||
var convertedServerConfigList = make(map[string]ServerInfo) | ||
for _, server := range ConfV1.Servers { | ||
switch server.WinUpdateSrc { | ||
case "": | ||
server.WinUpdateSrcInt = WinUpdateSrcVulsDefault | ||
case "0": | ||
server.WinUpdateSrcInt = SystemDefault | ||
case "1": | ||
server.WinUpdateSrcInt = WSUS | ||
case "2": | ||
server.WinUpdateSrcInt = WinUpdateDirect | ||
case "3": | ||
server.WinUpdateSrcInt = LocalCab | ||
if server.CabPath == "" { | ||
return xerrors.Errorf("Failed to load CabPath. err: CabPath is empty") | ||
} | ||
default: | ||
return xerrors.Errorf(`Specify WindUpdateSrc in "0"|"1"|"2"|"3"`) | ||
} | ||
|
||
convertedServerConfig := ServerInfo{ | ||
Host: server.Host, | ||
Port: "local", | ||
UUIDs: map[string]string{server.Host: server.UUID}, | ||
IgnoredJSONKeys: server.IgnoredJSONKeys, | ||
Windows: &WindowsConf{ | ||
CabPath: server.CabPath, | ||
ServerSelection: server.WinUpdateSrcInt, | ||
}, | ||
} | ||
convertedServerConfigList[server.Host] = convertedServerConfig | ||
} | ||
Conf.Servers = convertedServerConfigList | ||
|
||
raw, err := ioutil.ReadFile(pathToSaasJSON) | ||
if err != nil { | ||
return xerrors.Errorf("Failed to read saas-credential.json. err: %w", err) | ||
} | ||
saasJSON := SaasConf{} | ||
if err := json.Unmarshal(raw, &saasJSON); err != nil { | ||
return xerrors.Errorf("Failed to unmarshal saas-credential.json. err: %w", err) | ||
} | ||
Conf.Saas = SaasConf{ | ||
GroupID: saasJSON.GroupID, | ||
Token: saasJSON.Token, | ||
URL: vulsAuthURL, | ||
} | ||
|
||
c := struct { | ||
Version string `toml:"version"` | ||
Saas *SaasConf `toml:"saas"` | ||
Default ServerInfo `toml:"default"` | ||
Servers map[string]ServerInfo `toml:"servers"` | ||
}{ | ||
Version: "v2", | ||
Saas: &Conf.Saas, | ||
Default: Conf.Default, | ||
Servers: Conf.Servers, | ||
} | ||
|
||
// rename the current config.toml to config.toml.bak | ||
info, err := os.Lstat(pathToToml) | ||
if err != nil { | ||
return xerrors.Errorf("Failed to lstat %s: %w", pathToToml, err) | ||
} | ||
realPath := pathToToml | ||
if info.Mode()&os.ModeSymlink == os.ModeSymlink { | ||
if realPath, err = os.Readlink(pathToToml); err != nil { | ||
return xerrors.Errorf("Failed to Read link %s: %w", pathToToml, err) | ||
} | ||
} | ||
if err := os.Rename(realPath, realPath+".bak"); err != nil { | ||
return xerrors.Errorf("Failed to rename %s: %w", pathToToml, err) | ||
} | ||
|
||
var buf bytes.Buffer | ||
if err := toml.NewEncoder(&buf).Encode(c); err != nil { | ||
return xerrors.Errorf("Failed to encode to toml: %w", err) | ||
} | ||
str := strings.Replace(buf.String(), "\n [", "\n\n [", -1) | ||
str = fmt.Sprintf("%s\n\n%s", | ||
"# See README for details: https://vuls.io/docs/en/usage-settings.html", | ||
str) | ||
|
||
return os.WriteFile(realPath, []byte(str), 0600) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters