Questions tagged [audit-logging]

Audit-logging is the practice of keeping records of system activity

Audit-logging is the practice of keeping records of system activity. Audit logging does not contain information about the technical operation of a system, like print statements, but rather keeps track of discrete events that occur within a system. Examples are "User X accessed data Y at Time T", etc.

389 questions
1
vote
1 answer

When are deleted entities written to the eclipselink UnitOfWorkChangeSet?

I am trying to obtain the list of deleted entities in a database operation, to implement a custom auditing. Unfortunately it is not enough to just override the remove method of the EntityManager, because of cascading deletes. I was able to find new…
tgr
  • 3,557
  • 4
  • 33
  • 63
1
vote
1 answer

How can I see callerIP on BigQuery's AuditLog?

I use BigQuery's AuditLog to see access from outside my company to BigQuery with callerIP in "requestMetadata" field in "protoPayload" field, but value in callerIP has disappeared somehow since 2018/9/1 on Japan time when "methodName" in…
1
vote
1 answer

I have a SQL Server file backup file (.bak) i want to get detail of each transaction

I have a SQL Server backup (.bak) file, and I want use fn_dump_dblog (undocumented function) on it to get all transaction history from it. I read this article…
1
vote
0 answers

Up-to-date example of kubernetes audit log policy

Kubernetes has a kind of up2date audit policy file in configure-helper.sh. Unfortunately, it does not include recent functionality. For example, it lacks exclusions for the CronJob controller (user=…
synapse
  • 541
  • 5
  • 6
1
vote
1 answer

Redirect Auditd.log data to rsyslog in RHEL-7

I would like to redirect the auditd log data into rsyslog instead of audit.log file. I see that by default in the "/etc/audit/auditd.conf" the following line has been included to redirect it to log_file = /var/log/audit/audit.log Is it possible to…
anish anil
  • 2,299
  • 7
  • 21
  • 41
1
vote
2 answers

Configue audit logs in JBOSS

We have a JAVA/J2EE application. We need to configure audit trail,logs in JBOSS EAP Can someone help on this? AND also what should be the format?
Giggs
  • 203
  • 1
  • 2
  • 15
1
vote
1 answer

Tracking the changed data in MS Access forms when controls of the form (ie. Text box) is blank

I am using MS Access database and for tracking the users activities, I have used the below VBA Module: In the below code every changes in the Text boxes of my Access form is inserted into a log table by the name "Audit". Option Compare Database …
Mohammad
  • 41
  • 7
1
vote
1 answer

How to remove a rule from audtictl

There is a current rule in effect: # auditctl -l -a always,exclude -F msgtype>0 I am trying to remove it with: -d always,exclude -F msgtype>0 but receive the error: -F missing operation for msgtype What is the proper way to remove this rule?
1
vote
0 answers

User Account locking\unlocking audit logs not coming in WSO2 5.3.0 audit.log

Account locking\unlocking audit logs not coming in WSO2 5.3.0 audit.log. I tried below scenarios and didn't see any corresponding log in audit.log file: 1.Make 3 incorrect login attempts 2. Wait for 5 minutes ( keep user account idle ) 3. Lock the…
Ravi Kumar
  • 71
  • 1
  • 8
1
vote
1 answer

Audit trail code not picking up combobox list changes

I have looked at this post: Saving changes to a multivalued ComboBox via AuditTrail And tried to take tidbits and put it into my code, but it just didn't work! I am not really great at SQL but I need to get this done. Here is my code and it works…
Erika
  • 29
  • 6
1
vote
1 answer

Is there a way to get Document deletion logs in Couchbase?

My app is using Couchbase Community Edition and due to the limit on the number of buckets multiple apps are sharing the same bucket. The apps are all using their own app specific key prefixes. It looks like one of the apps is misbehaving and…
Jeno Laszlo
  • 2,023
  • 18
  • 36
1
vote
2 answers

(Mysql) What is the most efficient way to store table changes?

I am developing a web application with mysql, and I have several tables including user and article. As I would like to record the user that has updated the selected article, I thought about three possibilities: Add two columns to the table article:…
Alex T.
  • 33
  • 1
  • 7
1
vote
0 answers

filter out hdfs audit logs for non-directory inodes

I am populating HDFS audit log messages into a Kafka topic using logstash. a sample message which I receive in Kafka topic has this format: allowed=true ugi={myuser} (auth:SIMPLE) ip={/x.x.x.x} cmd={listStatus, open, ...} src={src path}…
Ehsan
  • 298
  • 1
  • 3
  • 17
1
vote
1 answer

Getting logback.xml to log immutable logs

I am using my logback.xml to log to console and to an external file. I would like to use this as an auditing feature which logs when users perform certain actions i.e. log on/off etc. I was wondering if there is a way to make to log files immutable,…
Mijan
  • 21
  • 2
1
vote
1 answer

Create NLog file checksum

We are using NLog and need to implement integrity check of the logs. To make sure that it was not tampered. We are looking to create SHA-256 hash of the log file once it rolls and store it in the database for the check. Does anyone know if this is…
Farukh
  • 2,173
  • 2
  • 23
  • 38