A set of processes or functionality that tracks changes to one or more components of a system, ensuring the completeness and accuracy of transaction processing, authorization, and validity of system operations.
0
votes
0answers
14 views
We need you to run a security audit on all linux servers that run MySQL within our subnet. Is this doable and if so, how would it be done? [duplicate]
I am trying to find a way to run a security audit on all servers that use mysql within our subdomain for possible intrusions.
0
votes
0answers
14 views
(play 1.2.5-java) Hibernate Envers ValidityAuditStrategy configuration seems ignored
I'm currently working on an application using Play Framework 1.2.5 and Hibernate-envers 3.6.10-Final.
This application is suffering from very low performances due to the Default Audit Stretagy used ...
0
votes
1answer
15 views
apache(php) changes .htacces chmoding and chowning. Track down the script/hole
I have virus on my site:
It's behaviour is following:
I have .htaccess file on my site.
I set 444 to it and as owner:group site:site.
But after some time it becomes owned by apache:apache and chmod ...
-1
votes
0answers
25 views
We need you to run an audit on all linux servers that run MySQL within our subnet. Is this doable and if so, how would it be done? [closed]
Like the title says, is this doable? It is a security audit the CTO wants to have done. Sorry I'm a Help Desk Junior Sys Admin that needs to take over the duties of a Sr Sys Admin that quit without ...
-2
votes
0answers
22 views
Using Doctrine2 Loggable extension on huge dataset
Our Symfony2 (+MSSQL) application has 150+ tables, from which around 100 tables should have a revision history. Each of these tables might have hundreds of thousands records.
After installing ...
0
votes
0answers
15 views
SQL Server Trigger Performance- Is Using Trigger is a good way? [migrated]
We are using SQL Server 2008 for a j2ee web application. I need to maintains the audits for updates for each column with their previous value and new value on one of my table which is very heavy, ...
0
votes
0answers
26 views
Alternative ways to profile or audit SQL queries [closed]
I'm working with a reseller of a POS application that uses a SQL database. While I have access to make 3rd party enhancements (or, just as often, try to identify bugs in the software), the developers ...
0
votes
0answers
25 views
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 ...
-1
votes
0answers
29 views
HOW CAN audit all SQL login [closed]
I MAke Report By Access Form On SQL database
I make ODBC Connection For login To Update the data From Database
Now I want Audit All logins To know who make Update today Or who make Update Now ?
...
0
votes
0answers
32 views
bash - monitor chown (user and group) changes of folder / inotify or audit or smth. else
i'm on opensuse 12.3 and the owner of my /run/user/$UID/pulse folder gets changed to root:root every now and then resulting in pulseaudio not beeing able to start:
[autospawn] core-util.c: Failed ...
1
vote
1answer
30 views
Oracle Audit Table based on job role [closed]
I've managed to created an audit table in Oracle that audits records when they have been updated, deleted or inserted on the employees table. I have also made it so it only audits records when changes ...
0
votes
1answer
128 views
SQL Server auto audit updated column
I need to create a trigger on SQL Server to write only updated column into an audit table with table name, column name, previous/new value, date, time and user for specific tables. How can I do this ?
...
0
votes
0answers
73 views
Google Enterprise Audit Java API returns “Access denied. You are not authorized to read activity records.”
I am trying to use the Java Enterprise Audit client APIs (audit-v1r13lv1.13.2-beta) to access the audit records for my Google domain. I've used the following
code to access the audit records from a ...
1
vote
2answers
116 views
EclipseLink JPA Tracking Changes
I try to log any changes of my JPA entities. For this reason each entity inherits from an abstract entity class which has a list of LogEntry objects.
AbstractEntity class:
@Entity
...
0
votes
1answer
139 views
EclipseLink Audit / History / Track changes
i've tried to implement a way to track data changes and create a history log for my application. Because i'm using EclipseLink it should be easy and possible to get the changes like they write on the ...
2
votes
0answers
65 views
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 ...
0
votes
0answers
52 views
using envers audit for reverting entity data to previous revision
Im using envers in order to log changes made to a specific entity ,
so later on i could use the previous revision to restore the data of the entity(basically reverting the changes to the entity).
My ...
1
vote
1answer
142 views
Envers, for a ManyToOne with JoinColumn, is auditing the wrong column
When auditing a foreign key, Envers seems to be ignoring the JoinColumn annotation.
E.g. I have a simple class like this:
@Audited
@Entity
public class Address {
@Id
@GeneratedValue
...
1
vote
1answer
32 views
Users as database users or user as a row in user table, audit table.
So, I've been developing a web app and came to this issue...
I need to audit every change that's being made on database tables, but since I have just one database user but a lot of users in my user ...
0
votes
1answer
117 views
Java-EE-6 / Glassfish: How to access Entity Manager from Custom Audit Module?
I am using Glassfish 3.1.2.2 and I want to collect and store authentication information to my MySQL database attached to the Glassfish application server. So far I successfully implemented a ...
0
votes
1answer
63 views
Updating table fields not included in model Linq to Entities
So, I wanted to call this something like "Auditing Linq to Entities" or similar, but realize that doesn't quite encapsulate what I wanted to do. Simply put, our data modeler is required to put 4 ...
0
votes
1answer
140 views
SQL Server 2008 Audit trigger based on sub string
I would like to create a trigger based on a column but only for those records that end in _ess. How can I set up an audit trigger to do this?
Here is the current trigger but it just checks for all ...
3
votes
3answers
196 views
Possible ways to generate audit trail for every save of business entities
We currently have a requirement to implement audit trail generation for some of our main business entities, as usual in these cases we need to persist old and new value of every field which was ...
0
votes
1answer
110 views
Audit to a single table using spring/JPA implemented in hibernate
Envers creates a new table for each entity to support auditing.
Is there a way to write all the audit statements to a single audit table? The columns of this audit table would be logged in user, ...
0
votes
0answers
25 views
Monitor change in debugging properties - iis 7.x
We have production servers running websites in IIS 7.x. Developers sometime enable "Send errors to browsers" asp debugging property for troubleshooting purpose and forget to disable.I would like to ...
0
votes
1answer
15 views
Audit columns - join or copy?
I have seen many business systems not using joins on Users table but instead copying user name (or firstname+lastname) to a CreatedBy audit field.
I already see one issue with this approach - a user ...
0
votes
1answer
34 views
WatchService Who is making change?
I'd like to know who is making change while File WatchService's on. It's possible to extract user property by using Files.Ower(Path path) but I couldn't find the audit who made it within an internal ...
1
vote
1answer
35 views
Using WMI to get Account Secuirty polices
As a network auditor I am using WMI to query windows PC and get relevent information.
secpol.msc gives the account and local policies. Is there a way that I can read all the parameters in the policy ...
0
votes
0answers
25 views
Rails/Audited - Destroy audit after record is destroyed
I'm using audited to track changes to a few models. I only care about auditing changes to existing records. I would like the record's audits to be destroyed when the record is destroyed. I have ...
0
votes
1answer
170 views
How user could connect SysDBA?
We Start Oracle AUDIT and Onlogon Procedure Auditing on our Database.
We Confused, What SysDBA could connect to System. Is SysDBA Oracle User?
In SQL*Plus has a command for this acction?
Our On Logon ...
0
votes
0answers
178 views
How user could connect as SYSDBA and run a Grant?
In our system we run audits and are confused by a username that's showing up where it shouldn't.
OS USER USERNAME USERHOST Timestamp OWNER OBJ_NAME GRANTEE PRIV_USED
------- -------- ...
0
votes
0answers
60 views
Using Google's Audit API to monitor failed login attempts
The basis for this is simple- I am trying to find a way to use the Google audit API to retrieve information about failed login attempts (when, where, and ip address) across our user's email accounts. ...
1
vote
1answer
111 views
Why is my SQL Server auditing trigger messing up OBDC call/referesh from Access?
I've implemented an auditing trigger on one of my tables, it basically copies the old record and the new record into a table called ..._Audit, along with date and user. I'll post my script further ...
0
votes
1answer
54 views
EF4 DbContext: How to centrally audit database reads
I know, I know. Why would anyone want to do that? The application already audits changes to data but now the business wants to audit all reads as well (without a convincing user story, I have to say). ...
3
votes
2answers
60 views
How do I design my application such that audit trails cannot be edited or deleted?
I have this problem where I need audit trails (typically stored in DB) to be non-editable and deletable even for DBAs and System Admins.
1 way is to apply encryption and checksums, but this only ...
0
votes
1answer
103 views
I cannot collect audit trail in AVDF 12. What's wrong?
I installed Audit Vault Server 12 (not install firewall) in a oracle linux vmware and activated an agent for Oracle 11g release 2 in windows 7 x64 vmware
according to Oracle® Audit Vault and Database ...
1
vote
1answer
119 views
Oracle bulk insert missing audit entries
I've a Java/Hibernate/Spring application with oracle's audit (11g non-clustered) enabled, and it seems to be properly configured.
However, some entries are not being written to SYS.AUD$.
Here's my ...
3
votes
1answer
553 views
Hibernate Envers - Get Fields that have changed
I have a rather complicated DB structure that I am trying to audit. Currently I have Envers running and it audits the changes that are made to each object. This works really well!
I now want to show ...
1
vote
0answers
144 views
Audit java entities without Hibernate Envers
I'm facing a problem. I would like to audit my java entities but i use a custom e-commerce solution that i extend and i can't annoted his default entities with Envers.
Do you know an other project ...
-1
votes
2answers
121 views
How do compare Java objects and properly audit values on updates? [closed]
I have an application server that sends an array of record data to the client in response to a search. Prior to sending the data to the client, my thought is to have the server store the data in a ...
0
votes
3answers
285 views
Auditing execution of stored procedures in Sql Server
My boss and I have been trying to see what sort of auditing plan we could try for our stored procedures. Currently there're two external applications taking information from our database through ...
0
votes
1answer
85 views
Chaining methods in LinqtoSql: How to get entity context
I have an Audit library I am working with. I believe this question is more to do with generics, as I'm not sure how to write methods similar to the ones in question.
I have the following "chained" ...
0
votes
0answers
108 views
How to create lookup table method
I am having trouble configuring a lookup table method, to actually retrieve the String from the lookup table given an ID.
Code here:
public class GeneratingUnitAuditConfig : ...
2
votes
1answer
293 views
SQL Server 2012 Audit Report Generation
Trying to work out whether audit files output by one server can be read without CONTROL SERVER access on that server. The MSDN docs suggest this is possible:
Even when the Database Engine is ...
1
vote
1answer
164 views
Security Audit (CRUD) - Microsoft Access
My client has been using Microsoft Access 2010 for quite a while and they received some Security Audit Requirements. They are using a Linked Tables approach connecting to Microsoft SQL Server 2012 ...
3
votes
1answer
98 views
Rails: implement auditing of table insertions/updates
I am fairly new to ROR and am working on a cargo tracking project.
The idea is to log all changes to shipment location so that when users track their shipment with a tracking number they would see the ...
1
vote
1answer
202 views
how to get audit rule in acl object with getauditrules() on registry key in powershell?
I am trying to apply audit rules with this code
function add-acl($Right,$Access)
{
$audit = "mydomain\myaccount","$Right","containerinherit","none","$Access"
$r = new-object ...
1
vote
0answers
47 views
descriptorcustomizer historypolicy audit table to have deleted record
Using
HistoryPolicy
and
DescriptorCustomizer
How can i have a record inserted to "audit table" when data is deleted from "main table" ?
Currently, i am working on a simple user table as ...
-1
votes
3answers
253 views
Spring AOP - Database Auditing
I'm using Spring AOP trying to define a good approach to have all my tables audited with no much hassle. Example of scenario:
I have a table named Person and its respective table PersonLog, which will ...
3
votes
2answers
131 views
General database design - can I reference field names in other tables
I have a table with various fields that can be updated. Let's called it table1 and assume it has these fields:
user VARCHAR2
first_name VARCHAR2
last_name VARCHAR2
My question: I want to keep ...


