fix getting process name

Signed-off-by: SSpirits <admin@lv5.moe>
This commit is contained in:
SSpirits 2024-01-18 16:01:02 +08:00
parent 19a157239e
commit 722aca5e1d
No known key found for this signature in database
GPG Key ID: F0D8856C50824735
1 changed files with 2 additions and 1 deletions

View File

@ -44,8 +44,9 @@ func (processAttack) Attack(options core.AttackConfig, _ Environment) error {
for _, p := range processes {
pid := int(p.Pid)
name, err := p.Name()
// If we can't get the name of the process, we just skip it.
if err != nil {
return errors.WithStack(err)
continue
}
if attack.Process == strconv.Itoa(pid) || attack.Process == name {