You know that programs browsing με βάση το Chromium, όπως το Google Chrome, το Opera, κ.λπ., αποθηκεύουν τη URL address προέλευσης όλων των αρχείων που έχουν κατέβει σε Windows 10;
Using this information, you will be able to retrieve a source URL from a file, provided it has been downloaded through a Chromium-based browser. Some users may not bother them and may be useful information, but there are certainly users who will not be happy with this logic at all.
Find the source URL of files downloaded to Windows via Chromium
NTFS, the default file system for modern versions of Windows, supports storage of multiple data streams (multiple data streams) κάτω από ένα αρχείο. Η προεπιλεγμένη και συγχρόνως ανώνυμη ροή δεδομένων ενός αρχείου αντιπροσωπεύει τα περιεχόμενα του αρχείου, που είναι ορατά με την σχετική εφαρμογή που ανοίγει όταν κάνετε διπλό κλικ στο File Explorer. Όταν ένα program ανοίγει ένα αρχείο που είναι αποθηκευμένο σε NTFS, ανοίγει πάντα την ανώνυμη ροή δεδομένων εκτός αν ο προγραμματιστής του το έχει κωδικοποιήσει για μια διαφορετική συμπεριφορά. Εκτός της ανώνυμης ροής τα αρχεία μπορούν να έχουν και επώνυμες ροές.
Όταν κάνετε λήψη ενός αρχείου με program περιήγησης που βασίζεται στο Chromium, αυτό προσθέτει στο αρχείο μια εναλλακτική ροή δεδομένων που περιέχει την πλήρη URL διεύθυνση λήψης (απευθείας σύνδεσμο). Επίσης, αποθηκεύει μια σελίδα παραπομπής που σας επιτρέπει να δείτε από ποια ιστοσελίδα ακριβώς κατεβάσατε το αρχείο.
To find the source URL for the file you downloaded with a Chromium-based browser, do the following:
1. Open PowerShell and go to the download folder. If you do not know how to open Powershell, left-click on Start and write the word Powershell. Then click Windows Powershell. Logically it will open it immediately in the path of c: \ users \ the_name.
2. Run the following command:
Get-Content "file name" -Stream Zone.Identifier
Replace the "file name" with the real name of the downloaded file.
As you can see, Chrome adds two lines, ReferrerURL and HostURL, so that anyone can access the computer can quickly track down where you downloaded your files from.
The URL of the URLs where you downloaded your files can also be viewed from your Chromium browser download page. For Chrome, specifically, press Ctrl + J simultaneously to open the download page.
Although through the downloads page you can delete this information one by one and even more better, you can bulk delete all download history through Settings > Advanced > Clear Browsing Data > Download History, the data is also stored within the files themselves, so the information remains available to anyone.
If you want to remove all this information, except that you should delete the download history from within Chrome, you should also delete this information from the files themselves. To do this, open a Powershell, go to the saved folder where you want the files you want to delete the feeds and write the following command:
dir -Recurse | Unblock-File
This command will unlock all files in the folder and all subfolders, and will remove all the information inside them.
While many of you will find this feature helpful because it will help you recover the source address of each file, some users will not see it with a good eye. Especially those who deal with sensitive data. For a computer that is subject to police forensic control, this information can reveal a lot.
