mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-25 17:26:17 -04:00
Add remove EXIF operation
This commit is contained in:
parent
57dcd961d5
commit
6741ba0783
5 changed files with 90 additions and 0 deletions
|
@ -210,6 +210,7 @@ const Categories = [
|
|||
"XPath expression",
|
||||
"CSS selector",
|
||||
"Extract EXIF",
|
||||
"Remove EXIF",
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -3388,6 +3388,19 @@ const OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"Remove EXIF": {
|
||||
description: [
|
||||
"Removes EXIF data from an image.",
|
||||
"<br><br>",
|
||||
"EXIF data is metadata embedded in images (JPEG, JPG, TIFF) and audio files.",
|
||||
"<br><br>",
|
||||
"EXIF data from photos usually contains information about the image file itself as well as the device used to create it.",
|
||||
].join("\n"),
|
||||
run: Image.removeEXIF,
|
||||
inputType: "byteArray",
|
||||
outputType: "byteArray",
|
||||
args: [],
|
||||
},
|
||||
};
|
||||
|
||||
export default OperationConfig;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue