We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
salt-call
When running something like sudo salt-call state.apply test=True falco parsed the command and program name wrong.
sudo salt-call state.apply test=True
command
program
The output I get is the following:
Warning Sensitive file opened for reading by non-trusted program (user=root user_loginuid=1001 program=run command=run call state.apply test=True pid=2123116 file=/etc/sudoers.d/[REDACTED] parent=sudo gparent=bash ggparent=sshd gggparent=sshd container_id=host image=<NA>)
As you can see, the command field looks wrong; it interprets salt-call as run call while program is seen as run.
run call
run
Unfortunately this needs salt installed but it might be enough to just use an alias like alias echo=salt-call.
alias echo=salt-call
I expect program=salt-call and command=salt-call state.apply test=True
program=salt-call
command=salt-call state.apply test=True
Environment
Thu Apr 13 16:29:08 2023: Falco version: 0.34.1 (x86_64) Thu Apr 13 16:29:08 2023: Falco initialized with configuration file: /etc/falco/falco.yaml Thu Apr 13 16:29:08 2023: Loading rules from file /etc/falco/falco_rules.yaml Thu Apr 13 16:29:08 2023: Loading rules from file /etc/falco/falco_rules.local.yaml { "machine": "x86_64", "nodename": "[REDACTED]", "release": "5.15.0-60-generic", "sysname": "Linux", "version": "#66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023" }
5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered:
Hi! Thanks for opening this issue! This issue is well known and is being tracked:
proc.name
setproctitle
And a couple of related PRs:
This is actively being worked on :)
Sorry, something went wrong.
Thanks @FedeDP, then I'd close this one!
Feel free to comment on other issues if you feel :) every feedback is appreciated!
No branches or pull requests
When running something like
sudo salt-call state.apply test=True
falco parsed thecommand
andprogram
name wrong.The output I get is the following:
As you can see, the
command
field looks wrong; it interpretssalt-call
asrun call
whileprogram
is seen asrun
.sudo salt-call state.apply test=True
Unfortunately this needs salt installed but it might be enough to just use an alias like
alias echo=salt-call
.I expect
program=salt-call
andcommand=salt-call state.apply test=True
Environment
5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered: