mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 15:26:16 -04:00
Updated all files for 2024
This commit is contained in:
parent
cabf232ea5
commit
7cb1f1ff87
12 changed files with 84 additions and 81 deletions
|
@ -18,7 +18,6 @@ class FromMacAbsoluteTimestamp extends Operation {
|
|||
*/
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
this.name = "From Mac Absolute Timestamp";
|
||||
this.module = "Default";
|
||||
this.description = "Converts Apple Mac Absolute Timestamp to datetime string<br><br>e.g. <code>591621300</code> becomes <code>Tue 1 October 2019 11:15:00 UTC</code><br><br>Mac Absolute timestamp is a 32-bit value representing the number of seconds since January 1, 2001 UTC";
|
||||
|
@ -34,12 +33,12 @@ class FromMacAbsoluteTimestamp extends Operation {
|
|||
* @throws {OperationError} if invalid unit
|
||||
*/
|
||||
run(input, args) {
|
||||
|
||||
const d = moment.unix(input + 978307200);
|
||||
return d.tz("UTC").format("ddd D MMMM YYYY HH:mm:ss") + " UTC";
|
||||
|
||||
throw new OperationError();
|
||||
try{
|
||||
const d = moment.unix(input + 978307200);
|
||||
return d.tz("UTC").format("ddd D MMMM YYYY HH:mm:ss") + " UTC";
|
||||
} catch {
|
||||
throw new OperationError("Unrecognised format");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default FromMacAbsoluteTimestamp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue