* refactor: logger * refactor: logging * refactor: rename func * refactor: logging * refactor: logging format
		
			
				
	
	
		
			110 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package scanner
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/future-architect/vuls/config"
 | 
						|
	"github.com/future-architect/vuls/logging"
 | 
						|
	"github.com/future-architect/vuls/models"
 | 
						|
)
 | 
						|
 | 
						|
// 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 = logging.NewNormalLogger()
 | 
						|
	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
 | 
						|
}
 |