![]() |
|
[HC Official] EXIFRemover (CLI) - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Hacking (https://sinister.li/Forum-Hacking) +--- Forum: Hacking Tools (https://sinister.li/Forum-Hacking-Tools) +--- Thread: [HC Official] EXIFRemover (CLI) (/Thread-HC-Official-EXIFRemover-CLI) Pages:
1
2
|
[HC Official] EXIFRemover (CLI) - Deque - 03-02-2013 Hello HC, this is a command line program that I wrote for removing EXIF data from images. EXIF data is saved into your pictures by your digital camera, but also image editing software. With the EXIFRemover you can prepare images before publishing them, so they won't contain any information you don't want to publish. Make sure that you don't end up like this guy, who was found by GPS data in an image he posted: http://gizmodo.com/5901430/these-breasts-nailed-anonymous-hacker-in-fbi-case ![]() show-exif example: java -jar exifremover -s B:\Sonstiges\test.jpg Spoiler:Quote:Exif metadata: delete-exif example for a single file: java -jar exifremover -d B:\Sonstiges\test.jpg -dest B:\Sonstiges\temp.jpg Spoiler:Quote:All EXIF data successfully removed from B:\Sonstiges\test.jpg delete-exif example for all files in a given folder: java -jar exifremover -d B:\Sonstiges\ All files are saved into a temp folder within the given folder, unless you define a destination folder with -dest. Spoiler:Quote:created file B:\Sonstiges\temp\100_1788.JPG Download program: [attachment=89] Download source: [attachment=90] If you encounter any bugs or problems, please tell me. Deque RE: [Java] EXIFRemover - Ex094 - 03-02-2013 Make this the official tool man I am thinking of making Java my next priority..Btw Great work as always RE: [Java] EXIFRemover - Anima Templi - 03-02-2013 Really nice program. I would like to talk with you about how you went around creating this. RE: [Java] EXIFRemover - LoneDevil - 03-02-2013 (03-02-2013, 10:43 PM)Anima Templi Wrote: Really nice program. I would like to talk with you about how you went around creating this. I would also like to see how you went about creating this, or maybe a bit of source code? I wouldn't mind putting my python skills to the test by recreating this in python. RE: [Java] EXIFRemover - Deque - 03-03-2013 Thanks for your feedback. I always add a link for the source. In this case a download for a program & source bundle. Look at the end of the first post. I used the apache sanselan library: https://commons.apache.org/proper/commons-imaging// A brief library description: Quote:This Pure-Java library reads and writes a variety of image formats, including fast parsing of image info (size, color space, icc profile, etc.) and metadata. Quote:Make this the official tool man Mh, I thought it is a bit too easy for official. It has only 234 lines of code. But alright. Maybe I add an ASCII art HC title to it today and move it to public. RE: [Java] EXIFRemover - Anima Templi - 03-03-2013 (03-02-2013, 11:47 PM)LoneDevil Wrote:(03-02-2013, 10:43 PM)Anima Templi Wrote: Really nice program. I would like to talk with you about how you went around creating this. Funny this was exactly what I was thinking of doing ![]() (03-03-2013, 06:38 AM)Deque Wrote: Thanks for your feedback. I will see if I can find anything similar in Python and see if I can make something similar. RE: [HC-Official] EXIFRemover (CLI) - Deque - 03-03-2013 Alright. I added a title as you can see in the screenshot, and made it HC-Official. RE: [HC Official] EXIFRemover (CLI) - DELIJA - 04-23-2013 nice thanks dude! RE: [HC Official] EXIFRemover (CLI) - vikler - 07-27-2013 Nice tool. thanks=) I usually use exiftool to remove data. maybe will be useful to other users: Code: exiftool -all= *.jpgRE: [HC Official] EXIFRemover (CLI) - BlackT - 09-01-2013 Nice tool,I use windows to delete data Right click on picture select propertis Details tab At the bottom of the Details tab, click the "Remove Properties and Personal Information" on the Remove Properties you can remove data. |