Authenticode-JS icon indicating copy to clipboard operation
Authenticode-JS copied to clipboard

Pure NodeJS module and tool for code signing Windows executables

Results 6 Authenticode-JS issues
Sort by recently updated
recently updated
newest added

authenticode.js stopped working for me with the MeshCentral 1.1.1 version update. It signs the executable, but the FileDescription and ProductName are not changed. My method is to have node pre-installed...

I have a number of executable files created using pkg. None of them seem to work with Authenticode-JS. I get ERR_OUT_OF_RANGE node:internal/buffer:86 when parsing either of my exe's and a...

when i read node.exe the is an attribute for the companyname which gets shows in Windows Explorer when you hover over the file ``` ~FileVersion: '16.16.0.0' ~ProductVersion: '16.16.0.0' CompanyName: 'Node.js'...

Code: ``` const path = require('path'); const file = path.resolve('dist\\ourbackups-win64.exe'); console.log(file); const exehandler = require("authenticode-js").createAuthenticodeHandler(file); console.log(exehandler); ``` Output: ``` PS C:\Users\sas_2\Documents\Developer\ourbackups> node .\mytest.js C:\Users\sas_2\Documents\Developer\ourbackups\dist\ourbackups-win64.exe null PS C:\Users\sas_2\Documents\Developer\ourbackups> ``` But the...

``` TypeError: func is not a function at C:\Users\sas_2\Documents\Developer\ourbackups\node_modules\authenticode-js\authenticode.js:1557:32 at IncomingMessage. (C:\Users\sas_2\Documents\Developer\ourbackups\node_modules\authenticode-js\authenticode.js:1590:45) at IncomingMessage.emit (node:events:539:35) at endReadableNT (node:internal/streams/readable:1345:12) at processTicksAndRejections (node:internal/process/task_queues:83:21) ```

Some enterprise environments mandate that all communication happens through SSL. This merely enables the user to set their time server to an HTTPS site, e.g. `node authenticode.js sign --time "https://timestamp.sectigo.com/authenticode`.