#insecure #hyper #https #connector #ssl-certificate #disable #verification

hyper_insecure_https_connector

Insecure HttpsConnector for Hyper (disable SSL certificate verification and allow SSLv2/SSLv3)

1 unstable release

Uses old Rust 2015

0.1.0 Aug 21, 2016

#7 in #insecure

MIT/Apache

6KB

Overview

This crate provides the insecure_https_connector() function which can be used to generate a hyper::net::HttpsConnector with the underlying OpenSSL context configured to:

  • disable SSL certificate verification
  • allow SSLv2 and SSLv3

Example:

extern crate hyper_insecure_https_connector;
extern crate hyper;

use hyper_insecure_https_connector::insecure_https_connector;
use std::io::Read;

fn main() {
    
    let client = hyper::Client::with_connector(insecure_https_connector());

    let mut res = client.get("http://httpbin.org/get").send().unwrap();

    let mut content = String::new();
    res.read_to_string(&mut content).unwrap();

    println!("Answer:\n{}", content);
}

Note: it only works with hyper 0.9.*

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~8MB
~193K SLoC