* refactor(report): LocalFileWriter * refactor -format-json * refacotr: -format-one-email * refactor: -format-csv * refactor: -gzip * refactor: -format-full-text * refactor: -format-one-line-text * refactor: -format-list * refacotr: remove -to-* from config * refactor: IgnoreGitHubDismissed * refactor: GitHub * refactor: IgnoreUnsocred * refactor: diff * refacotr: lang * refacotr: cacheDBPath * refactor: Remove config references * refactor: ScanResults * refacotr: constant pkg * chore: comment * refactor: scanner * refactor: scanner * refactor: serverapi.go * refactor: serverapi * refactor: change pkg structure * refactor: serverapi.go * chore: remove emtpy file * fix(scan): remove -ssh-native-insecure option * fix(scan): remove the deprecated option `keypassword`
110 lines
2.2 KiB
Go
110 lines
2.2 KiB
Go
package scanner
|
|
|
|
import (
|
|
"github.com/future-architect/vuls/config"
|
|
"github.com/future-architect/vuls/models"
|
|
"github.com/future-architect/vuls/util"
|
|
)
|
|
|
|
// inherit OsTypeInterface
|
|
type oracle struct {
|
|
redhatBase
|
|
}
|
|
|
|
// NewAmazon is constructor
|
|
func newOracle(c config.ServerInfo) *oracle {
|
|
r := &oracle{
|
|
redhatBase{
|
|
base: base{
|
|
osPackages: osPackages{
|
|
Packages: models.Packages{},
|
|
VulnInfos: models.VulnInfos{},
|
|
},
|
|
},
|
|
sudo: rootPrivOracle{},
|
|
},
|
|
}
|
|
r.log = util.NewCustomLogger(c)
|
|
r.setServerInfo(c)
|
|
return r
|
|
}
|
|
|
|
func (o *oracle) checkScanMode() error {
|
|
return nil
|
|
}
|
|
|
|
func (o *oracle) checkDeps() error {
|
|
if o.getServerInfo().Mode.IsFast() {
|
|
return o.execCheckDeps(o.depsFast())
|
|
} else if o.getServerInfo().Mode.IsFastRoot() {
|
|
return o.execCheckDeps(o.depsFastRoot())
|
|
} else {
|
|
return o.execCheckDeps(o.depsDeep())
|
|
}
|
|
}
|
|
|
|
func (o *oracle) depsFast() []string {
|
|
if o.getServerInfo().Mode.IsOffline() {
|
|
return []string{}
|
|
}
|
|
// repoquery
|
|
return []string{"yum-utils"}
|
|
}
|
|
|
|
func (o *oracle) depsFastRoot() []string {
|
|
return []string{"yum-utils"}
|
|
}
|
|
|
|
func (o *oracle) depsDeep() []string {
|
|
return o.depsFastRoot()
|
|
}
|
|
|
|
func (o *oracle) checkIfSudoNoPasswd() error {
|
|
if o.getServerInfo().Mode.IsFast() {
|
|
return o.execCheckIfSudoNoPasswd(o.sudoNoPasswdCmdsFast())
|
|
} else if o.getServerInfo().Mode.IsFastRoot() {
|
|
return o.execCheckIfSudoNoPasswd(o.sudoNoPasswdCmdsFastRoot())
|
|
} else {
|
|
return o.execCheckIfSudoNoPasswd(o.sudoNoPasswdCmdsDeep())
|
|
}
|
|
}
|
|
|
|
func (o *oracle) sudoNoPasswdCmdsFast() []cmd {
|
|
return []cmd{}
|
|
}
|
|
|
|
func (o *oracle) sudoNoPasswdCmdsFastRoot() []cmd {
|
|
if !o.ServerInfo.IsContainer() {
|
|
return []cmd{
|
|
{"repoquery -h", exitStatusZero},
|
|
{"needs-restarting", exitStatusZero},
|
|
{"which which", exitStatusZero},
|
|
{"stat /proc/1/exe", exitStatusZero},
|
|
{"ls -l /proc/1/exe", exitStatusZero},
|
|
{"cat /proc/1/maps", exitStatusZero},
|
|
}
|
|
}
|
|
return []cmd{
|
|
{"repoquery -h", exitStatusZero},
|
|
{"needs-restarting", exitStatusZero},
|
|
}
|
|
}
|
|
|
|
func (o *oracle) sudoNoPasswdCmdsDeep() []cmd {
|
|
return o.sudoNoPasswdCmdsFastRoot()
|
|
}
|
|
|
|
type rootPrivOracle struct{}
|
|
|
|
func (o rootPrivOracle) repoquery() bool {
|
|
return true
|
|
}
|
|
|
|
func (o rootPrivOracle) yumMakeCache() bool {
|
|
return true
|
|
}
|
|
|
|
func (o rootPrivOracle) yumPS() bool {
|
|
return true
|
|
}
|