Skip to content

Add insecure flag http request table #107

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

bob-bot
Copy link

@bob-bot bob-bot commented May 29, 2025

Closes #106

Tested with the following:

Default behavior is insecure = false

select
  url,
  method,
  response_status_code,
  response_error,
  response_body
from
  net_http_request
where
  url = 'https://self-signed.badssl.com';

Same results as:

select
  url,
  method,
  response_status_code,
  response_error,
  response_body
from
  net_http_request
where
  url = 'https://self-signed.badssl.com'
  and insecure = false;

Shows it working with the insecure = true

select
  url,
  method,
  response_status_code,
  response_error,
  response_body
from
  net_http_request
where
  url = 'https://self-signed.badssl.com'
  and insecure = true;

@bob-bot bob-bot requested a review from misraved May 29, 2025 00:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add insecure parameter to net_http_request table for TLS verification control
1 participant