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

How do I enable audit logging for Google Container Engine?

Running a GKE cluster with 1.8.1 - when I look at /logs/kube-apiserver-audit.log, it's completely empty. I've taken actions like creating deployments and deleting pods that have been visible in audit logs for clusters I've provisioned outside of…
2
votes
1 answer

Identfy os command injection with auditctl

How to identify which PHP script that executed the exec or shell_exec command. x.php :-
Aayush
  • 220
  • 1
  • 11
2
votes
1 answer

Unable to get Namespace from ObjectStateEntry when saving from a ViewController

I'm attempting to create an Audit Log for my MVC, Entity Framework website project. I've been able to subscribe to SaveChanges() in my DBContext (and save to my database through another DBContext but same database). My two questions in the end…
Derek
  • 653
  • 7
  • 20
2
votes
1 answer

How does Hibernate Envers work?

I am using Hibernate envers in one of my projects. It works really good and does that job. I am trying to understand the internal working mechanism of envers. How does envers work internally? What happens when the actual transaction is succeeded…
zeagord
  • 2,257
  • 3
  • 17
  • 24
2
votes
0 answers

Samba Audit no filename appear

I'm using samba to provide shares to users. The sometimes claim their files have mysteriously disappeared so I am keen to track deletions. Thus I set up full audit. Everything works, except the audit log is often missing the file name or has some…
Keir
  • 557
  • 1
  • 6
  • 17
2
votes
0 answers

Manage Audit Triggers in PostgreSQL 9.3

We have implemented a browser-based system that is run from a PostgreSQL 9.3 database. We have hit a snag in addressing auditing. Is there a way to record if an audit trigger has been turned off. This question is directly related to having checks…
2
votes
2 answers

How to analyze, what happend while updating rows

I have a table like this: | id | address | name | oid | state | event_id | ctrl | ------------------------------------------------------------------- | 1 | test_addr_1 | test_1 | 25.345.17 | 1 | 0 | 15 | I need to get…
txid
  • 66
  • 7
2
votes
1 answer

How to filter mysql audit log by user account

My issue is even i disable the root user from audit logging but still logging for these user. Anyone please help. Here is i did step by step. [Setp -1] Check the audit log variable. mysql> SHOW VARIABLES LIKE…
Jar Yit
  • 955
  • 11
  • 22
2
votes
1 answer

Entity Framework, generic way to track changes to an entity including navigation properties?

I've seen all the questions out there for tracking changes to an entity, but none of those solutions included navigation properties. Is this even possible? I don't need some SUPER generic solution that just logs everything. I only want things…
SventoryMang
  • 10,275
  • 15
  • 70
  • 113
2
votes
1 answer

Postgresql create a log schema

So my problem is simple. I have a schema prod with many tables, and another one log with the exact same tables and structure (primary keys change that's it). When I do UPDATE or DELETE in the schema prod, I want to record old data in the log…
2
votes
1 answer

Event audit logging in OrientDB using time series

I have an application that use OrientDB as the persistence layer with great success and I have arrived at a cross roads while looking at implementing an audit trail. IMO an audit should consist of 4 core properties: Timestamp (When the action…
tarka
  • 5,289
  • 10
  • 51
  • 75
2
votes
0 answers

2008 R2 Domain EvtSubscribe delays

I use the Windows EvtSubscribe API in my program that runs as a service, generally on Windows Server 2008 R2 Domain Controllers. It is registered for kerberos logon events and it's purpose is to provide single sign on for my application on the…
2
votes
1 answer

UTC timestamps for NHibernate Envers revision info

I'm using NHibernate Envers 1.6.0 and need to use UTC timestamps instead of local for the REVTSTMP column in REVINFO. I know the bug has been reported (NHE-122) and fixed for future version 2.0 Is there any way I can change the…
Mike737
  • 836
  • 5
  • 16
2
votes
0 answers

Designing an audit trail for billing purposes

We're working on Rails apps with a pricing model similar to that of Amazon DynamoDB (i.e., flexibly provision what you'll need). For the sake of simplicity, let's say you can configure: Number of users Number of documents you're allowed to…
awendt
  • 13,195
  • 5
  • 48
  • 66
2
votes
3 answers

access id of added entity before SaveChanges() is called

i'm using EF 4.3.1, I've overridden the SaveChanges() on the context so that I can get a list of the objects and their states and create entries in my audit log table. I need to store the id of the record in the audit log table so i have a reference…
newbie_86
  • 4,520
  • 17
  • 58
  • 89