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
-1
votes
1 answer

Device fingerprinting (Android and iOS)

I need a way to uniquely identify android and iOS device even after my application is uninstalled and installed again. Both ANDROID_ID and UUID do not do the job. Maybe there are some libraries dedicated to this task?
Marcin
  • 1,113
  • 1
  • 11
  • 33
-1
votes
2 answers

rails 4 asset pipeline production fingerprint

i have an asset pipeline problem in rails 4. i have a directory in testapp/public/assets/ which has all hashed or fingerprinted css and javascripts bootstrap.min-58853fb115aba672ce98597de33da61b.js OR animate-d81627498b7ff4acf1a1964da02db789.css…
-1
votes
4 answers

How to convert .WSQ FingerPrint Image File to .BMP FIle in C#

Is there a way to convert a .wsq fingerprint image file to a bitmap image (bmp) file? sample .wsq fingerprint image file is here http://www.mediafire.com/download.php?qbwy76rmc666dbr
LoneLone
  • 15
  • 1
  • 1
  • 4
-2
votes
1 answer

What is audio fingerprinting? And how to counter it?

What are websites methods of collecting audio fingerprint? Is it by JavaScript or Java applets or flash plugin? How to counter it? Does it work on Android?
-2
votes
1 answer

Generating a set of unique numbers/strings from a given string

I am working on a project where I need to assign some people with an unique ID. Now I have this requirement that, based on those IDs, I need to generate a set of unique numbers. No two IDs should result in the same set, and the intersection of sets…
-2
votes
1 answer

One or more things that made fingerprint unique?

I have on app who was write in cordova. I want to make fingerprint with users data to track installs. At click, we make a hash. If this hash it is equal with hash from install.. it is ok and count + 1 at install. I tried with ip...lat..lng..., but…
Ciprian Oancea
  • 99
  • 1
  • 11
-2
votes
2 answers

I am running a Tomcat server, I would like to pull the details of the machine from which the requests originate. Is this possible and how?

This requirement is for a local server that collects information of all devices that connect to it in a closed organization. Need to pull details like OS Version, software versions, hardware properties.
-2
votes
1 answer

Randomized Pattern Matching

I have a problem with an exercie. I hope you can help me. We want to detect whether a binary pattern P of length m occurs in a binary text T of length n where: m < n. State an algorithm that runs in time O(n) where we assume that arithmetic…
Queue
  • 163
  • 5
-3
votes
1 answer

How to prevent web spider by identifing browser fingerprint?

I know i can get usr's browser fingerprint by excute js script(canvas), but how to prevent web spider using a random fingerprint to crawl my website. how to identify a fingerprint is true or false ?? in the endpoint, i get the fingerprint is just a…
Charles
  • 5
  • 2
1 2 3
10
11