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

MVC 5 - Logging inserts and updates in database

I have looked for alot of different approaches to achive this. But I have yet to find a good and simple exmaple on how to do this without alot of 3 party instalations wich focuses on performance logging and debugging. I am looking for a way to…
stibay
  • 1,200
  • 6
  • 23
  • 44
3
votes
1 answer

ASP.NET Web Application Audit Log

I have a requirement where I have to put audit log feature in an existing Asp.net Web Forms application in C# using SQL Server 2008. There are various pages in this application which use from formviews, listviews, gridviews for inserting, updating…
Bat_Programmer
  • 6,717
  • 10
  • 56
  • 67
3
votes
3 answers

SQL Server Auditing Data in the Same Table

A project I'm working on requires that a record be digitally "signed" and after that any modifications would create a new "version" of the row. The "signed" record can't be modified for regulatory reasons and new versions shouldn't be modified very…
Jim Brown
  • 498
  • 1
  • 6
  • 20
2
votes
1 answer

How to get a "events per month" bar plot in R

im a newbie in R. I've got timestamps in a list in this style: [1] "2011-10-04 17:23:28 CEST" "2011-10-04 17:26:13 CEST" "2011-10-05 16:17:34 CEST" "2011-10-07 09:59:37 CEST" Now I want to plot a graph which shows me how many events occur in…
teGuy
  • 215
  • 1
  • 4
  • 9
2
votes
0 answers

How can I log process name instead of process ID when using auditctl to capture chmod activity in Linux?

I am working on creating aliases for chmod where suppose if anyone wants to change permission of certain file/folder then it should first call the alias which i created instead of bin/chmod.In my alias i am checking whether that file is allowed for…
2
votes
1 answer

Powershell Get-AzureADAuditSignInLogs not returning as many logs as expected

I'm using Powershell to grab SignInLogs from Azure AD. As far as I understand, SignInLogs are archived for a rolling period of 7 days in Azure. However, when I use this method I only get 960 individual sign in logs back. There should be a lot more…
2
votes
1 answer

Programatically Retrieve all Office 365 Unified Audit Logs

I would like to programmatically retrieve and process all logs available from the Office 365 Unified Audit Logs for the purpose of forensic investigation. From the front end, these logs are available through the Office 365 Compliance Admin Center. I…
2
votes
1 answer

GCP Log Router Sink Not Routing Logs to Topic?

Context: I am trying to store GCP Audit logs in a Pub/Sub topic via a Log Sink so I can pull those messages in a subscription (and have a 3rd party subscribe to that subscription). Attempted solution : Log Sink with inclusion filter of:…
2
votes
1 answer

Custom audit logging vs Hibernate Envers

I need to implement audit logging for a web application I build. I am using Spring Boot, MySQL and JPA (Hibernate) in development. I know there are solutions like Hibernate Envers for auditing at the Entity level. The problem is that the user (an…
sanemain
  • 139
  • 1
  • 13
2
votes
3 answers

Need to download ALL audit logs from github with lots of history

I need to download all the audit logs from my organization in GitHub. The problem is: I have dozens of repositories and 2 years of commit history, so it is a lot of data, and to request it manually would be impossible. Some one know a tool or a…
costamatrix
  • 670
  • 8
  • 17
2
votes
1 answer

Issue while using Audit.Net.MongoDB

I am using Audit.Net package for auditing requirements for my application. https://github.com/thepirat000/Audit.NET/tree/master/src/Audit.NET.MongoDB#auditnetmongodb I am facing JSON Serialization exception, when I try to use the AuditScope.Create…
2
votes
1 answer

How to audit Secret key access in Key Vault

We are using Azure Key Vault to keep our application password. All usernames and passwords are stored in the Secret at Key Vault. How can I audit who had checked in to the Secret to retrieve the password?
lonlee
  • 25
  • 3
2
votes
2 answers

Github V4 GraphQL API - audit log query

i'm trying to interact with github api v4, i want to query audit log events based on schemas available in the api. I can found a documentary about the github api here and I can see the schemas available here but there are no working examples of how…
GevAlter
  • 99
  • 10
2
votes
1 answer

Mechanism/Technique for auditing API request/ interface methods

In my Web-API, i have various methods declared at interface level. And implementation of each method is written at service level. At each method declared i have added audit Annotations, something like this CreateStackResponse…
user10144071
  • 135
  • 11
2
votes
1 answer

Configure audit logging for Application Services in ASP.NET Boilerplate

I am trying to determine if there is a way to remove the Audit Logging that is provided by default in the ASP.NET Boilerplate code. Looking at the documentation, it appears that removing the selector from the Auditing configuration with the…