Questions tagged [integrity]

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. An example of this is checking whether the MD5 hash of this file is the same as the MD5 hash that was calculated yesterday, to ensure the file was unaltered.

300 questions
3
votes
3 answers

Checking integrity of javascript, user code=server code

Is there a way to verify that the user changed the jQuery/JavaScript with Firebug during the use of client-side page?
FredB
  • 53
  • 5
3
votes
5 answers

Check encryption key correctness in JAVA

I'm using BouncyCastle to encrypt/decrypt some files using AES and PKCS5 padding in CBC mode : Cipher c = Cipher.getInstance("AES/CBC/PKCS5Padding", "BC"); Now two questions: How can I check that the provided key for decrypting data is correct…
Ariyan
  • 14,760
  • 31
  • 112
  • 175
3
votes
2 answers

How do I detect whether a table has had rows added or removed outside my application?

This is a specific scenario. What I need to achieve is this: If someone insert or delete one or more rows in a specified table outside my application's UI, then it should detect that the table was modified. It should not use triggers. This is what…
EMBarbosa
  • 1,473
  • 1
  • 22
  • 76
2
votes
1 answer

Django-page-cms deployment insert error

and thanks for taking the time to read my question. I am using django 1.3 with postgresql. I have django-page-cms 1.4.5 installed. I added pages to my installed apps, run manage.py syncdb, and manage.py migrate. On my remote dev server, I can…
hgolov
  • 650
  • 1
  • 11
  • 28
2
votes
2 answers

AES encryption and the need for Integrity

I did some research on the topic but could not find anything similar to my question. So I hope some of you great guys may help me out. I want to use AES128 encryption (CFB-Mode) for the networking in my application between two individual clients.…
Fenriswolf
  • 45
  • 1
  • 4
2
votes
0 answers

How to guarantee the integrity of a PDF generated with pdfmake?

I have a Node.js service that creates a PDF file for download using pdfmake. It works perfectly, but I need to find a way to guarantee the intergrity of the generated file, so that any changes in that file could make it invalid. I do not save the…
2
votes
1 answer

how I can use integrity api instead of safetyNet Api in phone login Fragment

how I can use Integrity Api instead of safetyNet Api in phone login Fragment.. I try to upload my App to Google play and my phone login fragment depend on SafetyNet Api which is Deprecated and when Google play team warn me I add this to my geadle to…
engmms
  • 347
  • 1
  • 4
  • 16
2
votes
1 answer

Linux kernel module to check memory integrity

I'm writing a kernel module that checks the integrity of code segments for running tasks by controlling checksums. I ran into a few hurdles: How can I get the module_list variable if it isn't exported by the kernel (there is no such symbol in…
max bushlya
  • 63
  • 1
  • 6
2
votes
0 answers

Understanding Firebase App Check rejection

My project use Firebase App check on iOS using DeviceCheck & App Test, cloud functions have enforcement checking wether auth context.app is undefined or not, simply like: if (appCheckEnabled == true && appCheckFunctions[functionName] == true) { …
2
votes
0 answers

How bypass integrity error during OTA install of an IPA file?

I am currently working on a project allowing me to upload IPA (iOS) files to s3 bucket in order to install them on my iPhone using Over The Air (OTA). The index.html file include the following link:
RegisS
  • 21
  • 2
2
votes
1 answer

How can I ensure the integrity of my iOS app?

I have the requirement that the signature of my Swift iOS app has to be checked. I think it is only relevant for jailbroken devices as iOS checks the integrity by itself. I couldn't find much on the web - most libraries/snippets have not been…
netshark1000
  • 7,245
  • 9
  • 59
  • 116
2
votes
1 answer

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 messages are delivered correctly, or if the…
cjk
  • 45,739
  • 9
  • 81
  • 112
2
votes
0 answers

Inconsistent bundles integrity in Karaf between deployments

Background I am using Karaf 4.2.0 on RHEL 6 with the latest available Oracle JDK 1.8.x. For security reasons, I am trying to find the best way to validate the integrity of the bundles served by Karaf. The current approach I am using is to calculate…
Steven
  • 21
  • 2
2
votes
2 answers

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 100. response =…
HdN8
  • 2,953
  • 3
  • 24
  • 26
2
votes
3 answers

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 image is plain gray or white, like it stopped…
HappyDeveloper
  • 12,480
  • 22
  • 82
  • 117