Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

47
votes
23answers
1k views

Detecting database tampering, is it possible?

Long time listener, first time caller. 'Say you have a database table that is responsible for logging user activity. The integrity of this log is important, so you want to be able to detect if ...
7
votes
4answers
319 views

How “tamper proof” is the $_SERVER variable in php?

Would I be taking a big security risk by trusting the content of the $_SERVER variable array to get the name of php file using $_SERVER['PHP_SELF']?
3
votes
6answers
264 views

Prevent audit table tampering

We have audit table in our database. Records to this table are done using triggers. Currently, there is nothing that prevents user to log on to database server, open table from management studio and ...
3
votes
1answer
1k views

Using Python Mechanize like “Tamper Data”

I'm writing a web testing script with python (2.6) and mechanize (0.1.11). The page I'm working with has an html form with a select field like this: <select name="field1" size="1"> ...
2
votes
1answer
290 views

Rails 3 ActiveRecordStore session_id tampering

I am co-developing a simple web app in Rails 3.0.9 and I have realized that there is a possible session_id tampering possible via malicious request. Mind the fact, that this is my first RoR ...
2
votes
1answer
152 views

Does signing an assembly or an exe with a digital certificate makes it secure against tampering attacks?

I tried creating a temporary certificate using makecert and creating a spc from the certificate using cert2spc. I signed some exe with the generated spc. I then use the binary editor in VS 2008 to ...
1
vote
1answer
66 views

Audit log (trail) tampering in databases

Lets say we have a application which has a database - MySQL, SQL Server, or Oracle, for example. And let's assume that we have multiple people, like db and audit administrators, who have admin access ...
1
vote
4answers
279 views

Cookie vs storing user data in Database

I feel sorry, if this post isn't related here. If you feel this post is useless act according to your wish My question is why don't we save the visitors(subscribers) cookie information in DB rather ...
1
vote
2answers
391 views

Tamper with first line of URL request, in Firefox

I want to change first line of header, modifying the method and/or URL. The (excellent) Tamperdata firefox plugin allows a developer to modify the headers of a request, but not the URL itself. This ...
0
votes
1answer
33 views

asp.net forms authentication ticket tampered but still works

I generate a forms auth ticket with some user data, encrypt and send it to my client all using the standard .net Api. Everything works except for one small problem. If i replace the 0 in the auth ...
0
votes
1answer
33 views

What's the Best idea to implement an Anti Connection Tampering for .Net application

what's the best way to implement an anti connection tampering for my .Net application. for example, I don't want anyone to see what my application is sending to my server.. or at least encrypt the ...
0
votes
2answers
247 views

Where is the “right” place to check if a querystring has been tampered with?

I want to add Querystring "checking" and logging in the case of any "tampered with" querystrings. Is the Page_Init event on a given page the right place to do that in the ASP.Net page lifecycle?
0
votes
3answers
369 views

prevent url tampering in php

This is a test engine application with 5 papers set by me..as 5 php pages Flow of the application Login.html check.php // to check whether credentials r right if correct then main.php //user ...
0
votes
2answers
115 views

Testing ASP.NET security in Firefox

I'm not sure whether this question belongs on StackOverflow or SuperUser, but here goes nothing... I'm trying to test out some basic security problems on my personal ASP.NET website to see exactly ...
0
votes
6answers
597 views

How to tamper with source IP address on Windows

We meet a testing scenario which needs to tamper with source IP address of a Http request to simulate clients coming from different countries. Do you know any tool help on this? Last but not least, ...
0
votes
4answers
246 views

Pass data from page to page safely

I am looking forward for a method to pass data from page to page safely and avoid as It's possible the tampering. The best way to solve it, is to save the sensitive data on db server. Or using ...
0
votes
3answers
846 views

Python: encryption as means to prevent data tampering

Many of my company's clients use our data acquisition software in a research basis. Due to the nature of research in general, some of the clients ask that data is encrypted to prevent tampering -- ...