Skip to content

Commit

Permalink
feat: prepare for v1.1.4 release
Browse files Browse the repository at this point in the history
1. Add result reporting functionality with -report-url parameter
2. Optimize scanner instance reuse for better performance
3. Add domain redirect handling and tracking
4. Improve error handling and logging
5. Add UpdatePorts method for dynamic port configuration

Files changed:
- cmd/main.go: Add report URL parameter and optimize scanner reuse
- pkg/stage/scanner.go: Add redirect handling and UpdatePorts method
  • Loading branch information
Your Name committed Jan 3, 2025
1 parent 2945c49 commit 4cb8460
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/stage/assets/fingerprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -1712,5 +1712,10 @@
"body": [
"zbintelsng.png"
]
},
"pingcode": {
"body": [
"(?i)PingCode"
]
}
}
8 changes: 8 additions & 0 deletions pkg/stage/plugins/pingcode.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
function Analyze(info)
info.Extra = info.Extra or {}

info.Extra.pingcodeversion = "5.85.0"

return info
end

0 comments on commit 4cb8460

Please sign in to comment.