Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

browser-with-fingerprints

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browser-with-fingerprints - npm Package Compare versions

Comparing version 1.2.9 to 1.2.10

2

package.json

@@ -7,3 +7,3 @@ {

"author": "CheshireCaat",
"version": "1.2.9",
"version": "1.2.10",
"license": "MIT",

@@ -10,0 +10,0 @@ "bugs": {

@@ -40,2 +40,4 @@ # browser-with-fingerprints

Please note that according to the [architecture](#architecture) section, this plugin can only be installed and used on **Windows** operating system.
## Other plugins

@@ -313,2 +315,5 @@

Please be careful not to attach various **secrets** in your code or screenshots - for example, fingerprint service keys, account passwords, and so on.
In the case of service keys, this can lead to their blocking without a refund.
If the recommendations are not followed, your ticket may be ignored.

@@ -315,0 +320,0 @@

@@ -9,4 +9,4 @@ const { env } = require('process');

async function call(name, params = {}) {
server.listen();
let timer = null;
await server.start();
return await lock.acquire('client', async () => {

@@ -13,0 +13,0 @@ try {

const net = require('net');
const once = require('once');
exports.start = once((...args) => {
exports.listen = once(() => {
let id = 0;

@@ -23,2 +23,8 @@

server.on('error', ({ code }) => {
if (code === 'EADDRINUSE') {
setTimeout(() => server.listen(PORT, 'localhost'), 1000).unref();
}
});
server.listen(PORT, 'localhost', resolve).unref();

@@ -25,0 +31,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc