Greetings,
I had a question in regards to accessing and manipulating Splunk logs. All of my Splunk infrastructure is onsite.
For example, what would be required for someone to manually modify my Firewall logs or Active Directory logs that reside on my indexer or heavy forwarder? If possessing the right privileges, could a user modify a firewall log on in a Splunk database to change the source or destination IP (or whatever log information) in a firewall log, or delete that particular log event itself?
I was not sure what permissions and databases / files would be involved.
Hi @johann2017
There is no way that someone using Splunk can easily change data such as changing the source and destination IPs. If the user has the can_delete
capability (can be added to a role in Settings >
Access Controls >
Roles) they can specifically delete bits of to prevent them from being found. Restricting access to this capability is typically the protection that most customers require against data changes.
|delete
can be reversed if you have filesystem access. If someone has access to the filesystem, they could conceivably change the data. - But this would be a huge amount of effort. They would need to reingest the whole bucket with the altered records.
There is this blog article that might be of interest to you: https://www.splunk.com/blog/2015/10/28/data-integrity-is-back-baby.html Note data integrity is not needed for most customers.
All the best.
Hi @johann2017
There is no way that someone using Splunk can easily change data such as changing the source and destination IPs. If the user has the can_delete
capability (can be added to a role in Settings >
Access Controls >
Roles) they can specifically delete bits of to prevent them from being found. Restricting access to this capability is typically the protection that most customers require against data changes.
|delete
can be reversed if you have filesystem access. If someone has access to the filesystem, they could conceivably change the data. - But this would be a huge amount of effort. They would need to reingest the whole bucket with the altered records.
There is this blog article that might be of interest to you: https://www.splunk.com/blog/2015/10/28/data-integrity-is-back-baby.html Note data integrity is not needed for most customers.
All the best.
Thank you!