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
1 answer

Logback audit related issue

I used the Logback Audit to persist the entity object into database. It was success. But I want to add some audit information into a audit table without using a Entity class. I used the bellow code snippet to add some date into table, but it did not…
Java-Seekar
  • 1,720
  • 5
  • 30
  • 52
0
votes
1 answer

Custom Auditing vs Custom Logging - SSIS

Aren't they both the same? I was reading [this article][1] [1]: http://www.sqlmag.com/content1/topic/ssis-logging-and-data-auditing/catpath/business-intelligence-development-studio-bids/page/2 and I am still not clear about the difference between…
0
votes
2 answers

How to AuditLog in application using Asp.net and SQL Server?

I have the following columns created in my SQL Server table : Log_id Old_value New_value Module [The module for the transaction] Reference_id [unique id of the record from respective tbl to associate with transaction history] Transaction [The type…
Anuya
  • 8,082
  • 49
  • 137
  • 222
-1
votes
1 answer

Audit who deployed SQL database to Azure

Through SSMS, connecting to my on prem server, you can right click a database, select tasks and "DEPLOY DATABASE TO MICROSOFT AZURE SQL DATABASE". Is there a way to log/audit who did this from my on prem server? After doing this, I've checked the…
Scott D
  • 1
  • 1
-1
votes
2 answers

How do I securely collect logs from a front end web client?

I have a web application and I need to securely log all the user activities. I need to know when they access specific pages and take specific actions like clicking a button. If I have the frontend send this data to the backend, it would be easy for…
-1
votes
1 answer

using App script to access full google logs

I'm working on a script that audits the full google logs. Google retains 450 days (14.7 months) of logs however they only make 6 months available in console, so I'm working on a script to pull from the full 14.7 months. I reached out to google…
-1
votes
1 answer

SharePoint 2013 - Accessing Resource AuditLogs

I am looking to pull the audit logs on the below listed resource via the API. The audit logs should be turned on according to the library settings, but I can't seem to find the correct path to get the details. Suggestions are appreciated. API…
Searle
  • 341
  • 4
  • 16
-1
votes
2 answers

At an Crud (update...) events record the change in values (who,when, old value, new value...)

I want a system identical to Audit Logging Plugin (http://grails.org/plugin/audit-logging) but for Java. Hibernate envers allows to store all the data for each release. It does not know what data is changed. I would only store the changed values.…
-1
votes
1 answer

How To Get a Notification mail to wordpress admin

How To Get a Notification mail to wordpress admin when i update anything from wordpress wp-admin
-2
votes
0 answers

Database options for Audit log in .Net Core Application

Hope everyone doing good. We need to implement audit-logging in Rest API(Microservice) application which is responsible to write logs in the Database side. Mostly we need performance for write operations and and read operation happens very…
-2
votes
1 answer

How can I speed up this SQL Server CURSOR used for change tracking?

Can anyone recommend how I can speed up this code and primarily the cursor? The code is an SQL Server db query that creates a trigger on INSERT, UPDATE, or DELETE. It writes a record to a changlog table identifying the type of change (I, U, or D)…
-2
votes
1 answer

Record actions on a terminal

I want to record actions that a user performs on a terminal. This includes actions that may be performed while the user may ssh to a remote host. It means that if a user runs ssh user@192.168.1.1 user@192.168.1.1's password: ls -ltr f1 f2…
FlAm3R1D3R
  • 41
  • 5
-2
votes
1 answer

Create a Historical Auditing Table

Currently we have an AuditLog table that holds over 11M records. Regardless on the indexes and statistics any query referencing this table takes a long time. Most reports don't check for Audit records past a year but we would still like to keep…
-4
votes
1 answer

Tracing web shell attack with Linux audit system

I tried to trace web shell attack using Linux audit system. Following is the rule I appended. -a exit,always -F arch=b64 -F gid=nginx -S execve (using nginx) With this setting, I can trace commands not 'pwd', but 'ls', 'cat'. What are differences…
Francis. J
  • 13
  • 5
1 2 3
25
26