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
0
votes
2 answers

Using regex to match identical numbers separated by an equals

Whilst looking over server logs for SQL injection attacks it's fairly obvious what your looking for (ie. single quotes, 1=1, etc.) but it got me wondering about how 2=2 etc. is just the same to SQL. So is there a way of checking for identical…
0
votes
1 answer

In Grails, how can I override the AuditlLogEvent domain class from Audit-Logging plugin?

I tried to create a domain subclass (different package) but migration plugin returned ambiguous class exception. I tried creating a copy of that domain class (same package) but compiler returned duplicate class error. How to override the…
renz
  • 1,072
  • 3
  • 11
  • 21
0
votes
2 answers

Does audit logging plugin create audit log table in database?

I have a grails project and I'm auditing some domain classes, I want to see the information saved by the audit logging plugin but I can't find where the audit_log is created.
RuS1991
  • 1
  • 1
0
votes
0 answers

Rails, Audit Log in View

I have a Model called file.rb that handles a files data table. This was done so that I can upload excel files from a file index.html.erb, and have the file name stored, see who uploaded the file, when it was created, etc(just tracking the files).…
0
votes
0 answers

Database user logging solution that works for all versions of SQL Server

I need to log all users connecting to our productions SQL Servers (user, database) Need to implement this for a production environment with every version of SQL Server (SQL Server 2000, SQL Server 2005, SQL Server 2008, SQL Server 2008 R2, SQL…
Luis
  • 1
  • 1
0
votes
0 answers

MariaDB dumps audit data into table

Tried maria db audit plug-in in MYSQL using the reference(https://mariadb.com/blog/activating-auditing-mariadb-and-mysql-5-minutes). I didn't see option to dump audit log into database table and looking to try with some workaround to achieve…
Suresh Gautam
  • 816
  • 8
  • 21
0
votes
1 answer

Auditing: Is ALTER USER logged?

Someone went into a controlled environment and changed the default database schema for a database user. ALTER USER [sensitiveuser] WITH DEFAULT_SCHEMA=[sys] Looking for an entry in the transaction logs. Apex SQL log does not appear to scan the…
John Tamburo
  • 427
  • 4
  • 12
0
votes
1 answer

Source and time of update of a column in MySQL

I have a column Quantity in a table Inventory of MySQL which gets updated from multiple sources. I needed to maintain a track in the table on another column called QuantityLog on the last updated time of the Quantity and the source which did it.…
Kallol
  • 264
  • 1
  • 12
0
votes
1 answer

Log4j doesn't create audit log file

I want to track audit logs to separate file audit.log I have the following configuration for log4j # Root logger option log4j.rootLogger=INFO, stdout # Direct log messages to…
misco
  • 1,912
  • 4
  • 41
  • 68
0
votes
0 answers

How do I stop recurring error messages from appearing in messages and auditd.log?

On my CentOS linux machine, in my auditd.conf file, I have set my max_log_file_action=keep_logs. However, in my /var/log/messages and /var/log/auditd.log, the following message appears multiple times a second which is filling up those log files…
adeena
  • 4,027
  • 15
  • 40
  • 52
0
votes
1 answer

jbpm audit log always looking for jta transaction

Am trying to pull records from JBPM AuditLog but am getting SEVERE: Servlet.service() for servlet [dispatcher] in context with path [/dms] threw exception [Request processing failed; nested exception is java.lang.IllegalStateException: Unable to…
Saqib Javed
  • 177
  • 4
  • 17
0
votes
2 answers

Log application user name in audit table in sql server

I am working on SQL Server.I to have log some of my Table activities..so I had created an Audit Table Like this: IF NOT EXISTS (SELECT * FROM sysobjects WHERE id = OBJECT_ID(N'[dbo].[Audit]') AND OBJECTPROPERTY(id, N'IsUserTable') = 1) CREATE…
Ibs Dubai
  • 3
  • 1
  • 4
0
votes
1 answer

Enable Windows Firewall (with Advanced Security) logging

Which is the equivalent of: netsh advfirewall set currentprofile logging filename %systemroot%\system32\LogFiles\Firewall\pfirewall.log in C/C++ and VBScript ? I found nothing in official: Windows Firewall with Advanced Security Interfaces Note: I…
antonio
  • 10,629
  • 13
  • 68
  • 136
0
votes
0 answers

ModelBinder does not set correct original values

Note Solved this has been edited More information check the edits When performing a post back with an entities model in MVC. The model binder neglects to bind the original values. So if anyone is using a derivative of save changes to audit log…
johnny 5
  • 19,893
  • 50
  • 121
  • 195
0
votes
1 answer

Keep track over every action performed by users on the system (CRUD operations)

I'm working on a application where client need to keep track on every action performed by users so they can know which users made some mistake and which kind of mistake and when it does. I'm doing some research on this and found Loggable and Entity…
ReynierPM
  • 17,594
  • 53
  • 193
  • 363