Make variable names more toml-friendly
This commit is contained in:
parent
857f398f6b
commit
d425f455bb
@ -110,15 +110,15 @@ type Artifact struct {
|
||||
SupportedKernels []KernelMask
|
||||
|
||||
Qemu struct {
|
||||
CPUs int
|
||||
Cpus int
|
||||
Memory int
|
||||
Timeout Duration
|
||||
}
|
||||
|
||||
Mitigations struct {
|
||||
DisableSMEP bool
|
||||
DisableSMAP bool
|
||||
DisableKASLR bool
|
||||
DisableSmep bool
|
||||
DisableSmap bool
|
||||
DisableKaslr bool
|
||||
}
|
||||
}
|
||||
|
||||
|
10
pew.go
10
pew.go
@ -307,16 +307,16 @@ func whatever(swg *sizedwaitgroup.SizedWaitGroup, ka config.Artifact,
|
||||
if ka.Qemu.Timeout.Duration != 0 {
|
||||
q.Timeout = ka.Qemu.Timeout.Duration
|
||||
}
|
||||
if ka.Qemu.CPUs != 0 {
|
||||
q.Cpus = ka.Qemu.CPUs
|
||||
if ka.Qemu.Cpus != 0 {
|
||||
q.Cpus = ka.Qemu.Cpus
|
||||
}
|
||||
if ka.Qemu.Memory != 0 {
|
||||
q.Memory = ka.Qemu.Memory
|
||||
}
|
||||
|
||||
q.SetKASLR(!ka.Mitigations.DisableKASLR)
|
||||
q.SetSMEP(!ka.Mitigations.DisableSMEP)
|
||||
q.SetSMAP(!ka.Mitigations.DisableSMAP)
|
||||
q.SetKASLR(!ka.Mitigations.DisableKaslr)
|
||||
q.SetSMEP(!ka.Mitigations.DisableSmep)
|
||||
q.SetSMAP(!ka.Mitigations.DisableSmap)
|
||||
|
||||
err = q.Start()
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user