Tagged Questions

The aspect of an object which describes it as unaltered since a reference time at which a description of its state was recorded, or a description of the continued functioning of a property of the object. Examples: The MD5 hash of this file is the same as the MD5 hash I calculated yesterday; therefore the file is unaltered. Even after scraping the rocks, I knew the hull had mained its integrity since the ship took on no water.

learn more… | top users | synonyms

12
votes
2answers
2k views

On using Terracotta as a persistence solution

Would it be a good idea to use Terracotta as a persistence solution (replacing a database)? I'm specifically wondering about data integrity issues and support for transactional systems.
7
votes
3answers
395 views

Does encryption guarantee integrity?

To build a secure system can we assume my question before starting programming. Both in symmetric and public-key encryption, is my question well-proofed ? If no, what are the vulnerabilities, can ...
5
votes
2answers
58 views

How to enforce a 1 to n relationship

I'm working on an online muiltiplayer board game & have a SQL server question. Lets assume the game allows two players. When the game is created, the creator is added as the first user. At ...
5
votes
1answer
414 views

Track a Rails project on private repo on GitHub with Redmine and Integrity deployed on Heroku

Scenario Project A is a Rails application: Code hosted on GitHub on a private repo. Deployed on Heroku (which has a readonly file system). Project R that is an instance of Redmine, used to manage ...
4
votes
1answer
99 views

How does Tomcat maintain session integrity?

HttpServletRequest's getSession(boolean) method mentions session integrity. How does Tomcat maintains session integrity? What rules does it use? What method? What is happening under the hood ...
4
votes
4answers
137 views

How to make sure the GPS position sent to the server are accurate?

here is my problem : I have a mobile app, and I want to give the user some information depending on their position ( think something like FourSquare ). But how to make sure the user position is ...
4
votes
2answers
165 views

Hacking DropDownList value

I've got a DropDownList and I'm trying to prevent it from being used as an attack vector. Can I assume that the user is unable to actually change the values of the DDL and postback to the server? At ...
3
votes
1answer
123 views

Windows 8 named pipe creation

How I can create named pipe in the Windows 8 with AppContainer integrity level?
3
votes
2answers
834 views

Java + MySQL integrity violation handling

I write Java program using JDBC (mysql database). When I violate mysql integrity (f.e. I try to insert same primary key value) I catch SQL exception. Should I write it in way it may never happen (f.e. ...
2
votes
1answer
94 views

Message Integrity Check with HTTP headers since Content-MD5 was deprecated?

Making a REST web server mainly based on large files uploads / downloads, I want to be able to check the file integrity. I believed that the proper way to do it was using Content-MD5 HTTP header [0] ...
2
votes
6answers
317 views

What's better? Countries, States and Cities on DataBase or not?

I'm developing a website with PHP & MySQL where users can sign up. In the sign up form they need to fill up country, state and city. I want to know if it's a good idea to save it on my database or ...
2
votes
1answer
228 views

Runtime integrity check of executed files

I just finished writing a linux security module which verifies the integrity of executable files at the start of their execution (using digital signatures). Now I want to dig a little bit deeper and ...
2
votes
1answer
65 views

Does .Net have any built-in controls to ensure message integrity?

I know I could go and read the source code of the Framework, but in the interests of saving time and getting something back fro mthe community, does anyone know if any .Net classes specifically ensure ...
2
votes
1answer
217 views

Cloning git private repo using Integrity Continuous Integration causing problem

I have successfully deployed Integrity on Heroku. I have been able to build script for public repo on git and the build runs successfully. But running integrity for private repo gives me error as ...
2
votes
7answers
350 views

Opening Hours Database Design

We are currently developing an application in which multiple entities have associated opening hours. Opening hours may span multiple days, or may be contained within a single day. Ex. Opens Monday at ...
2
votes
1answer
452 views

IntegrityError when saving user with username=email

I have modified my application, so that when a new user is registered, it's username and email are the same. But when a new user is created, I'm getting IntegrityError : (1062, "Duplicate entry ...
2
votes
1answer
443 views

Does RandomAccessFile.close() internally call FileChannel.force()?

I am using RandomAccessFile to perform some writes to a file as part of a transaction. Before I commit my transaction, I want to be absolutely sure that the data is written to disk. Calling ...
2
votes
2answers
95 views

How to check the integrity of the storedprocedures

We have a large database containing a lot of stored procedures. Now we are updating our database but some stored procedures still use the old structure. We've found most of them using 'sp_depends' but ...
2
votes
2answers
169 views

Maintaining conceptual integrity of the system during Maintenance

While starting a new project, we kick start it based on what is "latest" and what is "known". This includes selection of programming languages, frameworks in those languages etc. Quite a lot of time ...
2
votes
5answers
911 views

How to ensure file integrity on file write failures?

Follow up to: How to safely update a file that has many readers and one writer? In my previous questions, I figured out that you can use FileChannel's lock to ensure an ordering on reads and writes. ...
2
votes
2answers
647 views

How do I verify the integrity of a Sybase dump file, without trying to load it?

Here's the scenario - a client uploads a Sybase dump file to (gzipped) to our local FTP server. We have an automated process which picks these up and then moves them to different server within the ...
2
votes
5answers
271 views

How to salvage referential integrity with mutiple databases

I am in the middle of designing a system that will be used to feed several production sites around the country (all information is in one site) with the potential to add more. Initially I thought ...
1
vote
0answers
56 views

Better SQLite corruption detection

At first, some background: My Android app has DB table with a lot of four-column rows. It sends requests to the server and server responds only when all of these four values are "valid". A few of ...
1
vote
1answer
49 views

Elevating from low to medium integrity

This is similar to " how create medium integrity level process from low integrity level process? ", but I'm coming from a slightly different angle. (And that isn't answered anyway.) :) If a file is ...
1
vote
3answers
49 views

Can file based SVN repository support simultaneous multi-user situation?

If multiple users accesses file based SVN repository to commit many things simultaneously, can SVN guarantee data integrity? If it is, how? Or if it isn't what serving method should I use for ...
1
vote
1answer
84 views

how to do large file integrity check

I need to do integrity check for a single big file. I have read the SHA code for android,but it will need one another file for the result digest. Is there another method using a single file? I need a ...
1
vote
3answers
75 views

Is there a formal definition of session integrity regarding servlets?

This question is related to another existing SO question. HttpServletRequest's getSession(boolean) method mentions session integrity, but it does not define the concept. I could not find an offical ...
1
vote
2answers
216 views

Enable integrity checking with sqlite in django

In my django project, I use mysql db for production, and sqlite for tests. Problem is, some of my code rely on model integrity checking. It works well with mysql, but integrity errors are not thrown ...
1
vote
3answers
774 views

To check if two image files are same..Checksum or Hash?

I am doing some image processing code where in I download some images(as BufferedImage) from URLs and pass it on to a image processor. I want to avoid passing of the same image more than once to the ...
1
vote
4answers
65 views

Check Integrity of Complex JavaScript Object

What is the best way to test the integrity of a complex object in JavaScript? My object has a bunch of different variables, some optional, some required. The correct structure is vital to the code's ...
1
vote
2answers
220 views

How to go about transferring hash for file integrity check?

I have an application that downloads a file from the server. The connection is very unstable and so we are implementing a feature to check for file integrity so that we can know if the file was not ...
1
vote
2answers
440 views

Django-Postgres Integrity Error: Duplicate key — how to fix?

Im getting an Integrity Error when adding a new instance of a model, here's the traceback: Traceback: File "/home/robain/webapps/django/lib/python2.6/django/core/handlers/base.py" in get_response ...
1
vote
3answers
185 views

How to check image integrity?

I am building a web crawler, and one of its functions is to download images. The problem is that sometimes, for some reason, there are images that are downloaded with errors in them, eg: Half of the ...
1
vote
1answer
52 views

Declarative integrity constraint between rows without pivot

I have a situation like the following join table: A_ID B_ID 1 27 1 314 1 5 I need to put a constraint on the table that will prevent a duplicate group from being entered. In other ...
1
vote
3answers
88 views

How to design a media table with references to multiple (at least 4) tables?

I am designing a database for my cookbooks. I have created multiple tables in my design: books, authors, recipes, ingredients and for all these items I want to link media (images or video) to items in ...
1
vote
1answer
15 views

Transactional Integrity guarantee on Oracle

I have a oracle table with 7 columns, which has 2 triggers on it. First one generates a unique identifier (incrementing sequence) The second trigger than uses utl_tcp to poke a remote server and ...
1
vote
1answer
276 views

Is there a tool to check database integrity in Django?

The MySQL database powering our Django site has developed some integrity problems; e.g. foreign keys that refer to nonexistent rows. I won't go into how we got into this mess, but I'm now looking at ...
1
vote
3answers
311 views

about MD5 checksum for Http big file downloading

MD5 checksum is widely used for integrity checking for Http downloading big files. My question is, since TCP itself provides reliable mechanism (i.e. checksum for each TCP package to ensure its ...
1
vote
1answer
500 views

no such file to load — .bundle/environment

I installed integrity app these days. and found some issues. I follow this. $ gem install bundler $ git clone git://github.com/integrity/integrity $ cd integrity $ git checkout -b deploy ...
1
vote
2answers
143 views

Strange behavior for X.cpp/X.hpp files in Integrity

I'm having a project which compiles perfectly with gcc, but fails to compile under Greenhills Integrity environment. The problem boils down to this three files: MyVector.cpp // contains function ...
1
vote
3answers
58 views

can sql functions such as min() or max() destroy record integrity

Can functions such as Min() or Max() possibly destroy the integrity of a record? Take the case of the query I recently crafted: SELECT account, MIN(phone), MIN(chargeid), MIN(locationid) FROM import1 ...
1
vote
1answer
106 views

Windows 7 x64: low IL process msdn example does not work

I want to create process with low integrity level from process with medium integrity level. I found msdn example: Designing Applications to Run at a Low Integrity Level But it does not work on my ...
1
vote
2answers
114 views

django forms from two tables referencial integrity

i have a class named cv,and a class named university, and each user that completes his cv, should choose a University he studyes at. My problem is: one student can study at one or 2 or three ...
1
vote
4answers
166 views

Prevent two users from editing the same data

I have seen a feature in different web applications including Wordpress (not sure?) that warns a user if he/she opens an article/post/page/whatever from the database, while someone else is editing the ...
1
vote
1answer
376 views

GreenHills - small data area overflow

I'm hoping maybe someone has a quick answer for this but essentially when I turn on optimizations, I get the following error: [elxr] (error) small data area overflow: 0xfff9f6fc (signed) didn't ...
1
vote
2answers
692 views

Sharepoint: Integrity of lookup fields after a list import

I got a question about the behavior of lookup fields when importing data. I wonder how the lookup fields behave when the list they point to is being replaced/imported. To explain the issue, I will ...
1
vote
1answer
54 views

Avoiding problem of overwriting files which are in use

For example on a high traffic web server. To reduce problems when switching a file I usually rename the old file out and then rename in the new file. I was told some time ago that renaming a file ...
1
vote
0answers
62 views

Data integrity in concurrency environment

We know that DBMS harness many technique to ensure the data integrity and satisfying the ACID properties when there are many transactions running simultaneously in a concurrency environment. Apart ...
1
vote
4answers
129 views

Integrity and Authenticity

Sorry to keep asking so many questions, but you guys always seem to be so nice and helpful... I need to do some application that imports data from a file. For instance, user selects one file and the ...
1
vote
1answer
509 views

MD5 file processing

Good morning all, I'm working on an MD5 file integrity check tool in C#. How long should it take for a file to be given an MD5 checksum value? For example, if I try to get a 2gb .mpg file, it is ...

1 2