Open MagpieRYL opened 1 year ago
anyone notice this request ?
Ei @MagpieRYL yes we noticed it, sorry for not answering! In this release, we will try to tackle the symlink resolution issue https://github.com/falcosecurity/libs/issues/1111...unfortunately we have no many developers working on our drivers so we cannot implement many features in parallel BTW we really appreciate all your feature suggestions, they are really valuable! Looking at all the issues you seem to have a deep knowledge of security/detection...could you be interested in helping us develop some of these features? Someone with your skills would really benefit the project and would allow us to accelerate the development of new security features
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
Provide feedback via https://github.com/falcosecurity/community.
/lifecycle stale
/remove-lifecycle stale
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
Provide feedback via https://github.com/falcosecurity/community.
/lifecycle stale
/remove-lifecycle stale
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
Provide feedback via https://github.com/falcosecurity/community.
/lifecycle stale
/remove-lifecycle stale
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
Provide feedback via https://github.com/falcosecurity/community.
/lifecycle stale
/remove-lifecycle stale
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
Provide feedback via https://github.com/falcosecurity/community.
/lifecycle stale
Motivation
There are so many attacking tricks overwriting sensitive files for gaining control, like
~/.ssh/authorized_keys
,/etc/crontab
,~/.bashrc
, etc.Sometimes, getting the content buffer written to files is helpful for threaten detection, but the content buffer cannot be observed by Falco when overwriting file by
mv
command, becausemv
actually works based on therename
syscall without any buffer arg.So, if any attacker overwrites sensitive files using
mv
command, Falco just lost the observation ability on the written content.Feature
Supports observation ability on the file content of
(rename and renameat).oldpath
.