mirror of
https://github.com/gadievron/raptor.git
synced 2026-04-25 05:56:00 +03:00
[GH-ISSUE #36] add insecure flag for addresses with certificate issues #4
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/raptor#4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Splinters-io on GitHub (Dec 20, 2025).
Original GitHub issue: https://github.com/gadievron/raptor/issues/36
Just taking Raptor for a spin! very cool, Claude (code) pointed out it couldnt progress due to unsigned certs, so it went ahead and write an --insecure fix for it, is this enough ?
Add
--insecureflag to skip SSL certificate verificationProblem
Web scanner fails on targets with self-signed or invalid SSL certificates:
SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate in certificate chain'))
Solution
Add
--insecure/-kflag (like curl) to skip SSL verification.Changes
packages/web/client.py
@danielcuthbert commented on GitHub (Dec 20, 2025):
Bloody security, always getting in the way! yup solid fix, thank you for this. Fancy making a PR?
@Splinters-io commented on GitHub (Dec 20, 2025):
Will do :)Sent from my iPhoneOn 20 Dec 2025, at 16:52, Daniel Cuthbert @.***> wrote:danielcuthbert left a comment (gadievron/raptor#36)
Bloody security, always getting in the way! yup solid fix, thank you for this. Fancy making a PR?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: @.***>
@danielcuthbert commented on GitHub (Jan 29, 2026):
all done and added. thanks