Make variable names more toml-friendly
This commit is contained in:
parent
857f398f6b
commit
d425f455bb
@ -110,15 +110,15 @@ type Artifact struct {
|
|||||||
SupportedKernels []KernelMask
|
SupportedKernels []KernelMask
|
||||||
|
|
||||||
Qemu struct {
|
Qemu struct {
|
||||||
CPUs int
|
Cpus int
|
||||||
Memory int
|
Memory int
|
||||||
Timeout Duration
|
Timeout Duration
|
||||||
}
|
}
|
||||||
|
|
||||||
Mitigations struct {
|
Mitigations struct {
|
||||||
DisableSMEP bool
|
DisableSmep bool
|
||||||
DisableSMAP bool
|
DisableSmap bool
|
||||||
DisableKASLR 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 {
|
if ka.Qemu.Timeout.Duration != 0 {
|
||||||
q.Timeout = ka.Qemu.Timeout.Duration
|
q.Timeout = ka.Qemu.Timeout.Duration
|
||||||
}
|
}
|
||||||
if ka.Qemu.CPUs != 0 {
|
if ka.Qemu.Cpus != 0 {
|
||||||
q.Cpus = ka.Qemu.CPUs
|
q.Cpus = ka.Qemu.Cpus
|
||||||
}
|
}
|
||||||
if ka.Qemu.Memory != 0 {
|
if ka.Qemu.Memory != 0 {
|
||||||
q.Memory = ka.Qemu.Memory
|
q.Memory = ka.Qemu.Memory
|
||||||
}
|
}
|
||||||
|
|
||||||
q.SetKASLR(!ka.Mitigations.DisableKASLR)
|
q.SetKASLR(!ka.Mitigations.DisableKaslr)
|
||||||
q.SetSMEP(!ka.Mitigations.DisableSMEP)
|
q.SetSMEP(!ka.Mitigations.DisableSmep)
|
||||||
q.SetSMAP(!ka.Mitigations.DisableSMAP)
|
q.SetSMAP(!ka.Mitigations.DisableSmap)
|
||||||
|
|
||||||
err = q.Start()
|
err = q.Start()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user