Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add qexo-static #337

Merged
merged 1 commit into from
Jan 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12058,6 +12058,9 @@
"q": {
"version": "*"
},
"qexo-static": {
"version": "*"
},
Comment on lines +12061 to +12063
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Consider using version constraint instead of wildcard

The package appears legitimate and is actively maintained, but using "*" could expose to breaking changes. Consider using "^3.0.0" to allow compatible updates while preventing major version jumps.

🔗 Analysis chain

Verify the package and consider version constraints.

While adding qexo-static to the whitelist, consider the following security aspects:

  1. The wildcard version "*" allows any version to be used, which could potentially include malicious versions if the package is compromised.
  2. The package appears to be related to Qexo, but verification is needed.

Let's verify the package's legitimacy and usage:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the qexo-static package on npm registry and its download stats

# Check package info and download stats
echo "Checking package info..."
npm view qexo-static --json | jq '{name, description, maintainers, license, versions, time}'

echo "Checking download stats..."
npm view qexo-static downloads --json | jq .

# Check for potential security advisories
echo "Checking for security advisories..."
npm audit qexo-static --json || true

Length of output: 3351

"qhistory": {
"version": "*"
},
Expand Down
Loading