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
5
votes
2 answers

Windows 8 named pipe creation

How I can create named pipe in the Windows 8 with AppContainer integrity level?
bajlepa
  • 51
  • 1
  • 3
5
votes
0 answers

How to have Artifactory provide the same artifact checksums as registry.npmjs.org?

When switching to Artifactory the npm install produces the package-lock.json file with only SHA1 digests for artifacts checksums. Without Artifactory (i.e. using registry.npmjs.org) npm combines SHA1 and SHA512 (latter is used for packages published…
5
votes
1 answer

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 want to check the files' integrity during run-time…
Chris
  • 2,030
  • 1
  • 16
  • 22
5
votes
1 answer

When does git actually verify the integrity of the commit chain?

I have read multiple times about the integrity mechanism in git based on SHA-1 hashes and links to parent commits, which ensures that no changes are made to the committed data in the git repository. My question is: During which operations does git…
Jeff S.
  • 888
  • 12
  • 17
5
votes
0 answers

Verify authenticity of Java Card applet codebase without trusting the applet itself

We are developing a JavaCard-based security sensitive application. Our goal is to allow client code communicating with a GlobaPlatform 2.2+ based JavaCard applet to convince itself that it's actually talking to a specific (and verifiable) version of…
5
votes
3 answers

NodeJS hash files recursively in a directory

I am able to achieve recursive file traversal in a directory (i.e to explore all the subdirectories and files in a directory). For that I have used an answer from a respective post on stack overflow. The snippet of that is below: var fs =…
v01d
  • 327
  • 3
  • 11
5
votes
0 answers

gpg signing seems to "remove" integrity

The Google is not answering this question because The Google results are flooded with a question similar to mine in form but quite different in meaning. I'm mentioning this because I already know that there is common issue with a complaint about…
hft
  • 1,245
  • 10
  • 29
5
votes
1 answer

Checking code integrity in iOS

How could I guarantee the integrity of the code of an iOS app? I've been taking a look to Apple's Security Overview document, would code signing be enough? Is there any other recommended mechanism to guarantee the code integrity? Thanks in advance
AppsDev
  • 12,319
  • 23
  • 93
  • 186
5
votes
2 answers

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 the moment, I get this ASP.NET error message…
XSL
  • 2,965
  • 7
  • 38
  • 61
5
votes
3 answers

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. at first boolean function checking whether…
Michal
  • 53
  • 1
  • 3
4
votes
3 answers

Magento Order saving error: Integrity constraint violation

I am getting the following error when I make an order with a credit/debit card in Magento: Order saving error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '282-189' for key 2 I could not get an exact trace, as it just…
GManz
  • 1,548
  • 2
  • 21
  • 42
4
votes
2 answers

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 saved as low integrity (typically from a low…
Miral
  • 12,637
  • 4
  • 53
  • 93
4
votes
0 answers

How to decode Play Integrity response for a debug app (not released)

like many other devs, I have a debug version of my Android application : not released on the Play Store. I am implementing Play Integrity API (migrating from Safety Net). After getting a valid response from the Play Integrity API, I should decode…
Ben-J
  • 1,084
  • 8
  • 24
4
votes
2 answers

Random Blazor "Failed to find a valid digest in the 'integrity' attribute for resource" on iis

I am facing an issue when loading a site built and published using blazor. I get the following error message: " Failed to find a valid digest in the 'integrity' attribute for resource 'https://MYWEBSITEURL.com/_framework/System.Private.CoreLib.dll'…
S.Michaelides
  • 87
  • 1
  • 9
4
votes
3 answers

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 all these tables. I was thinking of a design…
Matthijs
  • 71
  • 5
1 2
3
19 20