mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2026-06-10 15:37:28 +00:00
- 升级 Vert.x 4.5.24 → 4.5.27, postgresql 42.7.3 → 42.7.11, logback 1.5.18 → 1.5.32, axios 1.13.5 → 1.16.1 - 修复 JWT 签名验证和密码比较的时序攻击漏洞 (MessageDigest.isEqual) - 修复 AESUtils 使用不安全 Random 改为 SecureRandom - 修复登录用户枚举和异常信息泄露,统一错误提示 - 修复 RateLimiter count++ 非原子操作 (AtomicInteger) - 修复 JsParserExecutor DCL 模式缺少 volatile - 修复 Token 日志泄露,仅打印前8字符 - 修复 Playground 密码时序攻击和堆栈泄露 - 所有 window.open 添加 noopener,noreferrer - LocalConstant 改用 ConcurrentHashMap 保证线程安全 - Dockerfile 添加非 root 用户运行,secret.yml 加入 .gitignore
95 lines
1.0 KiB
Plaintext
95 lines
1.0 KiB
Plaintext
# IntelliJ IDEA #
|
|
.idea/
|
|
/.idea/
|
|
*/.idea/
|
|
logs/
|
|
*/logs/
|
|
*/generated/*
|
|
*.iws
|
|
*.iml
|
|
*.ipr
|
|
|
|
# Eclipse Project files
|
|
.classpath
|
|
.project
|
|
/.settings/
|
|
.settings/
|
|
|
|
# Java class files
|
|
*.class
|
|
|
|
# Generated files
|
|
*/bin/
|
|
*/gen/
|
|
*/out/
|
|
|
|
### user ###
|
|
target/
|
|
/target/
|
|
/src/logs/
|
|
*.zip
|
|
sdkTest.log
|
|
app.yml
|
|
app-local.yml
|
|
secret.yml
|
|
|
|
|
|
#some local files
|
|
*/.DS_Store
|
|
.DS_Store
|
|
gradlew
|
|
gradlew.bat
|
|
unused.txt
|
|
/web-service/src/main/generated/
|
|
/db
|
|
/netdisk-fast-download/
|
|
/webroot/nfd-front/
|
|
/netdisk-fast-download/webroot/nfd-front/
|
|
package-lock.json
|
|
|
|
# Maven generated files
|
|
.flattened-pom.xml
|
|
**/.flattened-pom.xml
|
|
|
|
# Test files
|
|
test-filelist.java
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Node.js (if any)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build artifacts
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
|
|
# IDE specific
|
|
.vscode/
|
|
.cursor/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# Build directories
|
|
**/target/
|
|
**/build/
|
|
**/classes/
|
|
**/out/
|
|
**/${project.build.directory}/
|
|
**/${project.basedir}/target/
|
|
**/${basedir}/target/
|