The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
45 views

Oracle Trigger created using JDBC doesnt fire

I have created triggers over JDBC that doenot fire. I have checked its validity in the user_objects table and its valid and enabled. I tried creating trigger using the sqlplus console and it ...
0
votes
0answers
19 views

what is auditing process in cloud environment?

please help for following process which was performed by me for university project in cloud auditing. At implementation stage i performed these step 1)The cloud user can upload his file on cloud ...
0
votes
1answer
33 views

How to change the “Applies To” field under folder auditing options programatically (.NET)

I am trying to set the "Applies To" field under folder auditing options programatically. In MSDN, the code example there uses the FileSystemAuditRule class to add a new audit rule to a folder. There ...
0
votes
0answers
23 views

rails paper trail using custom version subclass with multiple database

My project contains different database and each database have multiple tables. config/database.yml development: adapter: mysql2 database: mechanics timeout: 5000 development_electronics: ...
0
votes
1answer
32 views

What's the way to go when inserting values to multiple tables?

I'm inserting some values onto employees table using this in the controller: $this->Employee->create(); if ($this->CoreProgram->save($this->request->data)) { ...
1
vote
4answers
104 views

How to audit all changes in a .net application with SQL Server

I have a .net application that uses EF along with mainly SQL Server 2008 but a couple of customers use 2005. In the database there are a few hundred tables. I need to audit a selection of these ...
0
votes
0answers
23 views

Auditing procfs

I want to keep track on important system changes on GNU/Linux boxes, like disabling PaX, enabling traffic forwarding, ICMP redirects, changing printk verbosity level and so on. At general all these ...
2
votes
0answers
39 views

Auditing specific syscall parameter value

I want to deploy auditing focused on some more sophisticated scenarious on my GNU/Linux boxes, for instance execution of commands like touch -m 'faketime' somefile. I straced the exec and found out ...
0
votes
0answers
45 views

Automatic CREATED_BY, CREATED_ON, UPDATED_BY, UPDATED_ON fields in SQL SERVER 2008 table (without using triggers)

I'm looking for a way to store the date/time a row was updated, inserted, who inserted/updated it (the db user account) that does not rely on triggers in SQL Server 2008. Is this possible? Any ...
0
votes
1answer
67 views

What is the disadvantage of not auditing OneToMany relations?

I am using Hibernate Envers to log all changes to the database. I noticed that when I added an entity which had a ManyToOne relation with another entity a revision was made on the one Side entity as ...
1
vote
3answers
138 views

Auditing in Database or Application

I need to audit modification actions (create/delete/update) in an enterprise web application. Then the user may need to see history of changes of a specific entity (a Person for example) to decide to ...
0
votes
1answer
120 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
49 views

can record unc connection?

The Pc I use have an UNC file. I'm in a Network with other people. Every other can open the file by tipping in the adress line \\file. Know I want to write a c# programm in Vs2010 which watch over ...
1
vote
1answer
120 views

Getting modified properties by revision

I am using Hibernate Envers to audit my entities and properties (org.hibernate.envers.global_with_modified_flag=true). This seems to work, but now I'd like to get all properties of a specific entity ...
0
votes
1answer
52 views

Is it possible to audit the changed values using SQL Server Auditing?

Is it possible to audit the changed values using SQL Server Auditing for stored procedures? Note: I'm not talking about CDC. I've got basic auditing working, writing to the security log. If I run ...
0
votes
1answer
103 views

Auditing JPA entities in webapp : how to obtain logged-in user?

I have a simple auditing requirement for my JPA entities : keep the creation and last modification date and author. The author should be the currently logged-in user. I would like to implement this ...
0
votes
0answers
42 views

extract target server IP from active directory event log

I have a big database with Win 2003 AD event log. I need to extract the (user, target server IP) access information, such as, (user123, 10.123.7.77), where the IP can be a network printer or a ...
1
vote
3answers
236 views

Audit and data history in java

I have a set of domain objects and its related tables for application's configurations. Authenticated users can change these domain objects data thru a presentation layer. These domain objects have ...
0
votes
2answers
72 views

nhibernate session with custom data and event listeners

For a WCF project I'm working on, I need to implement some kind of audit log for the entities we're persisting. Basically the audit trail will consist of 4 mandatory fields CreatedDateTime ...
1
vote
1answer
157 views

Configure SVN/TFS to monitor folder and silently check in file changes (for auditing purposes)?

(also posted at ServerFault, but realised there would be more SVN/TFS users here) Bottom line question: Is it possible to create an SVN/TFS repository with an unattended service running that ...
3
votes
2answers
229 views

Oracle audit grant dba role

Running Oracle 11gR1 in an XP SP2 virtual machine. Full disclosure: This is for an assignment. I'm attempting to audit whenever a user is granted the DBA role and fire off an email when the event ...
0
votes
0answers
109 views

Custom Audit Module in Glassfish 3.0.2

I need to configure custom Audit Module in Glassfish. I've tried to configure it according to Glassfish security guide, in particular this guide: Developing a new auditing module is as easy as ...
1
vote
1answer
406 views

Spring data auditing not working in my project

I'm trying to configure spring data auditing. I use Hibernate 4.1.6, hibernate-jpa 2.0, spring-data-jpa 1.1.0, spring 3.1.2 (I've added spring-aspects to the dependecies since I got an error without ...
2
votes
1answer
763 views

TFS 2012: Correllating binaries to builds and source code

I'm starting to dive into TFS 2012 and I have a basic understanding of the tiers and how build servers, controllers and agents work and how different build scripts can have different configurations ...
0
votes
1answer
80 views

Track time spent in MSCRM

My requirement is I need to be able to track time for each sales person on activities. Also a report that administrators can run to see the amount of time each user spent working on ...
0
votes
1answer
401 views

How to log document changes on Windows Server 2008 with AD?

Ok so we have a team of developers working on files stored on a Windows Server 2008 R2, usually txt files. These developers log in remotely using their own username/password from the Active Directory ...
-1
votes
1answer
195 views

detect date changes - unix [closed]

In UNIX - Is there a date change log? That is, a log describing all changes that occurred in the date: On Monday 10th September 2012 22:22 - date changed to Sunday 9th September 2012 20:11 On ...
4
votes
3answers
156 views

When to update audit fields? DDD

I have a Meeting Object: Meeting{id, name, time, CreatedBy, UpdatedBy} and a MeetingAssignee{id, MeetingID, EmployeeId, CreatedBy, UpdatedBy) Meeting, as Aggregate root, has a method ...
0
votes
1answer
79 views

OpenJPA auditing capabilities

I have a webservice that will be persisting and deleting data to a Database. I want to track in the database which usernames touched which rows of the database. In each table there are columns for ...
0
votes
1answer
136 views

Auditing! How to implement a centralized Auditing Service for multiple app's?

We have some CRUD web apps running at a client and we'll need to implement an auditing system to track changes made by users in any of these products. Ex.: User ABC created a new Trade ...
1
vote
1answer
448 views

ObjectContext's SavingChanges: find out which columns have changed?

I'm handling ObjectContext's SavingChanges event to timestamp entries. The requirement is that, if only ColumnA has changed, I don't timestamp the entry when it changes. Is there a way that I can ...
0
votes
0answers
165 views

sqlmap detection [closed]

I use sqlmap 0.9 for my sql injection audit. I launched sqlmap with the url. I know there is a sql injection in the variable order but sqlmap does not detect it. I know the sql injection exists ...
0
votes
0answers
99 views

Handling a transaction/audit log with the least hassle? Should I use EAV, a document database, or something else?

We have an "event log" table that we use to record actions for auditing/reporting purposes. This table currently has dozens of generic columns for various data types (e.g. "GenericString1", ...
1
vote
1answer
267 views

How does Win32_Product work?

While working on an auditing project I came across different problems regarding software and licenses. My project runs on Linux with Perl and I successfully retried remote machine software via both ...
0
votes
1answer
536 views

How to create custom field when using hibernate anvers

I'm starting a new project using spring 3.1, hibernate 4 and there is a requirement to track any activity on the application. activity tracking example who changed what? from what to what? and at ...
1
vote
1answer
431 views

SQL - Concatenate all columns from any table

I'm using triggers to audit table changes. Right now I capture the individual column changes in the following: DECLARE @statement VARCHAR(MAX) SELECT @statement = 'Col1: ' + CAST(ISNULL(Col1, '') AS ...
2
votes
3answers
1k views

Logging in a Winform application

Initial situation: There is a big Winform application with many dialogs and an Oracle database in the background. Now there is the requirement to implement a audit logging feature, which logs data ...
1
vote
3answers
1k views

Nmap not retrieving MAC address and Vendor

I've found a strange behaviour in Nmap (I am using version 5.51 if that matters but I have the same issue with version 5.00), on some networks this plugin does not retrieve MAC address and, ...
0
votes
0answers
26 views

Auditing events in a software

I want to create my own auditing system, for a website, and wanted to know is there any standard build of an audit table that i can use as a model and then optimize it to specific purpose? And it ...
0
votes
2answers
83 views

Deleting git branch looses audit

If a branch has been deleted in git is it still possible to identify whether specific commits were made on that deleted branch? From what I have found so far - git branches are merely pointers so ...
0
votes
0answers
667 views

Auditing Database Changes on SaveChanges() in Entity Framework 4.0

I'm trying to implement database auditing in Entity Framework 4.0. I have searched the net and found a few helpful posts which have given me a helping hand getting started ...
0
votes
2answers
80 views

How to do bulk changes in an audited table?

I've got a system where all changes to business objects have to be audited. So an entity MyEntity has a Number property, and when you change this field, the system leaves the original record alone, ...
0
votes
1answer
321 views

CentOS/auditd: file creation at directory to trigger a script

I need to audit the directory and call a script with the file-path parameter as the file is created there. Reading the man of auditctl i can't find a way to do it. There're references in the web to ...
1
vote
0answers
62 views

Checking Integrity of Data Entry

first post so please forgive me if I get it wrong. What I am looking for is a methodology or a standard for comparing data that is stored in a database and the original field data. We have a ...
1
vote
1answer
646 views

Monitoring Bandwith on a remote machine with WMI

I am trying to monitor interfaces bandwidth on a remote Windows machine. So far I used SNMP with the Cisco Bandwidth Formula but that requires to retrieve two samples at two different times. Last but ...
1
vote
1answer
260 views

EntityAudit - Doctrine2: Using the same entity in both OneToMany and OneToOne possible

is it possible do audit entities with the simplethings / EntityAudit - https://github.com/simplethings/EntityAudit using the same entity in both OneToMany and OneToOne relation? class Address ...
1
vote
1answer
331 views

audit log for any persisted changes, without using database triggers, instead use spring/hibernate

Everytime a user makes an alteration to a record and saves it. I want an audit log for that change. Say for example we have a customer table and the gui shows customer info and sales, I also want to ...
3
votes
4answers
297 views

Using table auditing in order to have “snapshots” of table

I need a solution for the following problem: I will have a table in SQL server 2008 that will be changing daily. It's a small table with maybe 5000 rows at most and around 5 fields. The client will ...
1
vote
1answer
242 views

User login auditing - best practices

As per of login auditing, I want to store http request related informatoin in repository. One thing that comes in mind is the client IP address. Are there any other important fields from http request ...
2
votes
1answer
385 views

Retrieve Hardware Informations through SNMP

I am trying to retrieve hardware informations from a series of devices, so far I used snmpget/snmpwalk with the following OID 1.3.6.1.2.1.25.3.2.1 but it returns very few informations, for example if ...

1 2 3