I have a capture file and I am able to see images that were downloaded but I am trying to differentiate between images that were on the site itself vs images that the user requested to be downloaded from the site. Is there a way to see which images the user requested to save as opposed to just the ones that get downloaded by visiting the site? Thanks asked 14 Nov '15, 06:04 ccices |
One Answer:
A typical browser saves all images to disk, to some directory dedicated to files for temporary use. So you cannot tell whether the user has just viewed an image or "saved" it in terms that they would intentionally press "save" and choose a folder where they would want to put the image file. The http request asking for the image file is exactly the same in both cases.
You can, but not very reliably:
So it may be easier and less time consuming to visit the site and see by your own eyes. answered 14 Nov '15, 08:41 sindy edited 14 Nov '15, 08:43 |
Thanks for the answer. I am trying to answer the question of whether the user intentionally downloaded the images found in the captured stream. When I export the objects, I see that the html gallery page shows 9 of the 10 images I see in the objects exported. I can't seem to see how the user got the 10th image... Would looking at "referrer" in this case assist me?
Again, not very reliably. In your particular case, if its contents differs between the 10th image and the other 9, it is a hint that the request has been triggered in another way than download of the other 9, but you cannot be 100 % sure what kind of event it was.