-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
fix bug: cert serial number must not negative #1192
Closed
ethanvc
wants to merge
1
commit into
avwo:master
from
ethanvc:vc_fix_cert_series_number_negative_bug
Closed
fix bug: cert serial number must not negative #1192
ethanvc
wants to merge
1
commit into
avwo:master
from
ethanvc:vc_fix_cert_series_number_negative_bug
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@avwo please help cr |
感谢反馈,不能只是简单的删除一位,目前 |
翻了一下新的代码,并没有发现有做序列号为正相关的改变? 参考标准文档:https://www.rfc-editor.org/rfc/rfc3280.html#section-4.1.2.2
|
下个版本修复 |
@ethanvc 再试试 |
可以了~ |
xcodebuild
added a commit
to xcodebuild/iProxy
that referenced
this pull request
Feb 25, 2025
904573e931 fix the incorrect link of pipe.html 8f97f121ff Update pattern.md 512e58feda Release v2.9.94 0903b78849 refactor: refine ui 448688f9aa feat: Commands -> Install c2282bf8b7 fix: avwo/whistle#1192 0d8ff36928 docs: README 4d9b5ddd71 Release v2.9.93 ea99d3af9b docs: README ddb8968506 docs: sniCallback 53ec0394ce refactor: refine code eae6ce353d fix: avwo/whistle#1192 5ab12d3466 refactor: refine ui 57cc1e1f91 feat: w2 ca --enable-https 7ce2ee9639 Release v2.9.92 6854677161 feat: set server.requestTime = 0 48b3f8b15c docs: pipe 77b1314734 feat: update express 623ded0ec6 refactor: refine code d74c3dcad7 refactor: refine code 92f72eb5b8 feat: disable://keepH2Session 6dd4ee9c64 Release v2.9.91 aa4af22135 fix: avwo/whistle#1173 0812fd86cc Release v2.9.91 d6a1e92567 fix: avwo/whistle#1183 7be53e28bd fix: avwo/whistle#1081 2a26b619a4 Release v2.9.90 a076e7edc7 feat: search editor fd94769422 refactor: refine ui 156cc1d277 refactor: refine ui 1d612a81c3 refactor: refine ui 8dd3b9ff9c refactor: refine code b4211f5a70 Release v2.9.89 b1a3ba9b4b feat: parse curl 7eebcc7e9b refactor: refine code ed07550b9a refactor: refine ui 1fb7dfd4ef Release v2.9.88 549dfc8a8a refactor: refine composer 828480e2ff fix: resolve keys f7dba66c9c perf: captureStream 5678474cf4 docs: update 87944e5bd8 Release v2.9.87 f91f572a51 feat: delete://reqBody.xxx|resBody.xxx b3c102e63d feat: refine ui f79259cef8 test: reqMerge 0942e84a95 docs: delete 4479cf235b feat: delete://reqType|resType|reqCharset|resCharset 0d3de1f42e Release v2.9.87 git-subtree-dir: vendor/whistle git-subtree-split: 904573e931d7afdb2dc19dfba6807e2fe575b337
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
golang 1.23 这个版本不允许负数的证书编号:
详情参考这里:https://pkg.go.dev/crypto/x509#ParseCertificate
golang官方http.Client返回错误:
Get "https://www.baidu.com/": tls: failed to parse certificate from server: x509: negative serial number
原因:whistle随机生成的序列号,有时候是负数。