Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@igor-lemon/secure-electron-license-keys
Advanced tools
Create and implement offline license key verification for your Electron apps.
A secure way to implement offline license key validation in electron apps.
This process is already set up in the secure-electron-template!
License key validation with this package works like this:
public.key
and license.data
) are placed in the root of your Electron app.main.js
and preload.js
.window.api.licenseKeys.onReceive(validateLicenseResponse, function(data) {});
function listener.window.api.licenseKeys.send(validateLicenseRequest);
.onReceive
listener receives back a response and your client/frontend page can read whether or not the license key is valid and act accordingly.main.js
const {
app,
BrowserWindow,
ipcMain,
} = require("electron");
const SecureElectronLicenseKeys = require("secure-electron-license-keys");
const path = require("path");
const fs = require("fs");
const crypto = require("crypto");
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win;
async function createWindow() {
// Create the browser window.
win = new BrowserWindow({
width: 800,
height: 600,
title: "App title",
webPreferences: {
preload: path.join(
__dirname,
"preload.js"
)
},
});
// Setup bindings for offline license verification
SecureElectronLicenseKeys.mainBindings(ipcMain, win, fs, crypto, {
root: process.cwd(),
version: app.getVersion(),
});
// Load app
win.loadURL("index.html");
// Emitted when the window is closed.
win.on("closed", () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null;
});
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on("ready", createWindow);
// Quit when all windows are closed.
app.on("window-all-closed", () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== "darwin") {
app.quit();
} else {
SecureElectronLicenseKeys.clearMainBindings(ipcMain);
}
});
Options
root<string>
- Path to the root directory
version<string>
- App version
publicKey<string>
- Public key in text
publicKeyPath<string>
- Path to the public key
licensePath<string>
- Path to license file
Priority
Public key = options.publicKey
=> options.publicKeyPath
=> <rootPath>/public.key
License File = options.licensePath
=> <rootPath>/license.data
preload.js
const {
contextBridge,
ipcRenderer
} = require("electron");
const SecureElectronLicenseKeys = require("secure-electron-license-keys");
// Expose protected methods that allow the renderer process to use
// the ipcRenderer without exposing the entire object
contextBridge.exposeInMainWorld("api", {
licenseKeys: SecureElectronLicenseKeys.preloadBindings(ipcRenderer)
});
Sample front-end code
import console from "node:console";
import React from "react";
import {
validateLicenseRequest,
validateLicenseResponse,
} from "secure-electron-license-keys";
class Component extends React.Component {
constructor(props) {
super(props);
this.checkLicense = this.checkLicense.bind(this);
}
componentWillUnmount() {
window.api.licenseKeys.clearRendererBindings();
}
componentDidMount() {
// Set up binding to listen when the license key is
// validated by the main process
const _ = this;
window.api.licenseKeys.onReceive(validateLicenseResponse, function (data) {
console.log("License response:");
console.log(data);
});
}
// Fire event to check the validity of our license
checkLicense(event) {
window.api.licenseKeys.send(validateLicenseRequest);
}
render() {
return (
<div>
<button onClick={this.checkLicense}>Check license</button>
</div>
);
}
}
export default Component;
When your client page receives a response (ie in the window.api.licenseKeys.onReceive
call), the payload returned has these properties:
Property name | Type | Description |
---|---|---|
id | string | License UUID |
valid | bool | If license validation was successful |
created | number | Date of creation |
appVersion | object or string | The value of package.json in your app. Contains the properties major , minor and patch (all are strings). If the value passed into the main.js binding does not follow semver specification, the value returned in appVersion will be a string |
major | string | The major value set when generating the license key |
minor | string | The minor value set when generating the license key |
patch | string | The patch value set when generating the license key |
user | string | The user value set when generating the license key |
expire | string | The expire value set when generating the license key |
Note - the values contained within this response will be default values if you did not set them when generating the license keys. Please see here for more details on setting values when generating license keys.
FAQs
Create and implement offline license key verification for your Electron apps.
The npm package @igor-lemon/secure-electron-license-keys receives a total of 0 weekly downloads. As such, @igor-lemon/secure-electron-license-keys popularity was classified as not popular.
We found that @igor-lemon/secure-electron-license-keys demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.