Questions tagged [fingerprinting]

Fingerprinting is a practice wherein a large piece of data, such as a file, is mapped to a much shorter bitstring for easier comparison.

From Wikipedia:

In computer science, a fingerprinting algorithm is a procedure that maps an arbitrarily large data item (such as a computer file) to a much shorter bit string, its fingerprint, that uniquely identifies the original data for all practical purposes just as human fingerprints uniquely identify people for practical purposes. This fingerprint may be used for data deduplication purposes.

Fingerprints are typically used to avoid the comparison and transmission of bulky data. For instance, a web browser or proxy server can efficiently check whether a remote file has been modified, by fetching only its fingerprint and comparing it with that of the previously fetched copy.

161 questions
0
votes
1 answer

How can i get started using Etag URL fingerprinting for my Opencart website?

Im pretty new to scripting and coding. I have now picked an interest in speeding up my website. To do this i would like to begin leveraging browser caching. I've read up on a couple of things but i'm now struggeling to make the right decision. As…
0
votes
0 answers

IE9 - jQuery - "SCRIPT11: The operation attempted to access data outside the valid range"

I'm using a simple jQuery plugin that creates a unique fingerprint for each user so that we can track/recognize users coming from a specific referral URL. It works fine everywhere EXCEPT Internet Explorer 9 (yes, it works in IE7 & IE8, even though…
0
votes
1 answer

Fingerprinting using python module called pybel

I want to get fingerprints using smiles of compounds. I did but the problem is I want to get in a higher bit and a list format so I can calculate the length of lists. In this case I just get classes. Any solution in python using pybel? I did this…
0
votes
1 answer

Leverage browser caching - get caching methods right

I'm trying to get the browser caching right. I added this to my .htaccess file: ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1…
Charles Ingalls
  • 4,521
  • 5
  • 25
  • 33
0
votes
1 answer

fingerprint digital reader connected to a data base

I wan't to create a system that allow me to connect several fingerprint reader and send the data to a server (with Arduino). I need to get a key that I store on my DB and allow me to compare it with other points. I don't want to store the data on…
Thanatheos
  • 76
  • 8
0
votes
1 answer

Drawing circle on fingerprint image and delta

How can I draw a circle or x just to show on a delta point or core to show typical graph form by these finger print element. I mean how can I detect a core and delta in finger print image. I actually have a project where I collect finger prints from…
olyjosh
  • 431
  • 7
  • 15
0
votes
1 answer

Reconstructing trees from a "fingerprint"

I've done my SO and Google research, and haven't found anyone who has tackled this before, or at least, anyone who has written about it. My question is, given a "universal" tree of arbitrary height, with each node able to have an arbitrary number of…
awshepard
  • 2,627
  • 1
  • 19
  • 24
0
votes
1 answer

Asset Pipeline/Framework for PHP to build assets based on file content

Is there any asset pipeline/framework for PHP that builds assets based on the file's content instead of its modification time? e.g. index.js will be built into index-[hash].js, when that hash is based on the file content. I've found that CHH/Pipe…
0
votes
2 answers

How to stop unintentional human errors?

We maintain a huge set of files in our web servers. Yesterday we were surprised to see a very important core file of the system being reverted by an older version (probably by some human beings since we do not have any automated scripts). Users…
Ramnath
  • 141
  • 1
  • 6
0
votes
1 answer

Os fingerprinting with MAC address

Does anyone know how you can perform OS fingerprinting using MAC address? What about os fingerprinting with IP address? Thanks in advance.
watiss
  • 111
  • 1
  • 6
0
votes
2 answers

Line color is override on first line color in android

I am trying to draw line using finger paint and I want to draw that line in multi color all are working fine. But what happen is at the first time when I draw a line then it works fine but after that if I draw another line then the color of first…
anddev
  • 3,144
  • 12
  • 39
  • 70
0
votes
2 answers

Techniques to "Remember me on this computer" if cookies/cache is cleared?

Typically "Remember me on this computer" stores a hashed value of user identifier in browser cookie. I want to be able to remember the device even if cookies are cleared. We try to store in cache, window.event and even in local storage and DB (if…
Megha
  • 335
  • 3
  • 13
0
votes
2 answers

Solr - Nearest Match - Does this functionality exist?

Can Solr give you a nearest match when comparing "fingerprint" type data stored in the Solr datastore. For example, eJyFk0uyJSEIBbcEyEeWAwj7X8JzfDvKnuTAJIojWACwGB4QeM HWCw0vLHlB8IWeF6hf4PNC2QunX3inWvDCO9WsF7heGHrhvYV3qvPEu- …
BuddyJoe
  • 69,735
  • 114
  • 291
  • 466
-1
votes
1 answer

User Device/Browser footprint with user working on server

I'm working with angular and asp net core (api), and I would like to identify the device of the users. But I've a problem : they're all connection to the website through a remote desktop connection to a central server, and they're all using the same…
Rémi Lardier
  • 317
  • 2
  • 14
-1
votes
2 answers

Object fingerprinting: serialization + untouchable legacy code + Getter-only auto-properties = cornered?

I have found myself cornered, so here we go. Context I need to produce a fingerprint hash code for object diffing. Comparing the hashes of two sets of objects will need to tell me if there are identical objects with the same hash. The fingerprint…
1 2 3
10
11