Questions tagged [auditing]
330 questions
0
votes
3 answers
Disable audit object on oracle 11
How can I disable audit objects on Oracle 11? I have tried
NOAUDIT ALL;
NOAUDIT NETWORK;
NOAUDIT SESSION;
NOAUDIT ALL ON DEFAULT;
NOAUDIT SELECT INSERT UPDATE DELETE EXECUTE PROCEDURE;
NOAUDIT PRIVILEGES;
But audit still generate, grows fast…

yayantritaryana
- 103
- 1
- 3
- 8
0
votes
1 answer
ASP.Net OutputCache audit page visits
I have an internal corporate web application that has a page that hosts static content (things like announcements) and I decided to implement OutputCaching on this page to reduce the ammount of processing and db calls.
The only problem is that I…

joe_coolish
- 7,201
- 13
- 64
- 111
0
votes
0 answers
Should I monitor the SQL Server tempdb for user activity?
I am currently auditing all databases on SQL Server 2008 R2 for specific events. I get alot of events generated for tempdb.
Do I need to monitor tempdb or is it alright to exclude the tempdb?
Thanks for your help.

Potta Pitot
- 175
- 1
- 5
- 15
0
votes
0 answers
Meteor Auditing Code Cost - organized (iron-router) vs one file?
I need my code audited for security holes. My partner thinks that it would be less expensive to audit one lump JS file and no directories other than what is absolutely necessary.
I think that using Iron-Router and following a standard directory…

mfr
- 149
- 3
- 11
0
votes
0 answers
How to PROVE that some Oracle Stored Procedure has been called without auditing it?
I need to PROVE that some Stored Procedure has been called.
This is a third-party database, so:
I can't ask to change SP
I can't ask to audit anything
I have no DBA access
This is what I have:
1) DO SOME THINGS ...
2) START FOO STORED PROCEDURE…

Christian
- 7,062
- 9
- 53
- 79
0
votes
1 answer
NHibernate and SetSessionAuth audit columns
We have audit columns set by triggers.
For obscure security reasons predating my tenure and out of my control, we log in with a generic user, and do a 'set session authorization' to change the user to the db user of the user who is logged in.
When…

Eric Brown - Cal
- 14,135
- 12
- 58
- 97
0
votes
1 answer
How to combine two powershell scripts for AD Reporting with Foreign Security Principals
I'm a DBA tasked with querying info from AD for a security audit. I need to create a Report that can put all AD objects into a CSV and resolve the Foreign Security Principals from another domain. I do have a trust between the domains. I have…

dbahiker
- 173
- 1
- 10
0
votes
1 answer
Find all used on a site
Is there e.g. a crawler that can find (and list the form action etc.) all pages that have forms in my site?
I'd like to log all pages with unique actions to then audit further.

Kingo
- 440
- 2
- 9
0
votes
1 answer
Entity framework audit
I'm trying to add auditing to my application. The problem that I encountered is that I can not get some old and new values from non primitive types. For example, if I have an entity Person, I can easily get name, age, but I can not get any property…

Daemon025
- 87
- 1
- 11
0
votes
1 answer
Web Application Auditing
How can I audit a web application specifically database changes, when the application is connecting to the database as a system account?
I would like to use a simple database trigger to write to an audit table but I am unsure of how I would be able…

Adonis L
- 1,679
- 4
- 20
- 23
0
votes
1 answer
Spring 4 ZoneDateTime Restful recursive output
I am new on Java 8 and Spring 4
i have tried to implement spring boot with module (Spring boot web, Spring boot jpa)
i have tried to implement JpaAuditing on my entity with the following code:
//AbstractAuditedEntity.class
@MappedSuperclass
public…

user2582794
- 153
- 9
0
votes
0 answers
Track/trace a used (invoked) package function/procedure or fire event on a particular package sub-program call
I am a newbie to Oracle. I have been assigned to find all used packages, functions and procedures used by the (client) system (legacy system). I have found a solution to that by using AUDIT. The problem is that the AUDIT does not allow us to…

ddsultan
- 2,027
- 1
- 19
- 19
0
votes
1 answer
Nhibernate Auditing
I have a question about auditing. Most auditing examples use one audit table to track changes. However, we need one audit table per "regular" table. In other words, tblCustomer would also have tblCustomer_History. I can't figure out how to use a…

CocoB
- 345
- 3
- 5
0
votes
1 answer
how to disable autocomplete on in jsp page
i have jsp page it have username and password.if we fill up username and password and click on submit button then the browser asks Remember password then click on that it stores username and password.i donot want to store username and password in…

suresh manda
- 659
- 1
- 8
- 25