[package]
edition = "2021"
rust-version = "1.85"
name = "interactsh"
version = "0.2.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
exclude = ["target/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust client for polling out-of-band interaction servers."
homepage = "https://github.com/santhsecurity/interactsh"
readme = "README.md"
keywords = [
"oob",
"interactsh",
"security",
"async",
"http",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/interactsh"
[lib]
name = "interactsh"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "config_roundtrip"
path = "examples/config_roundtrip.rs"
[[example]]
name = "context_tracking"
path = "examples/context_tracking.rs"
[[test]]
name = "break_it"
path = "tests/break_it.rs"
[[test]]
name = "property"
path = "tests/property/mod.rs"
[[test]]
name = "test_legendary_interactsh"
path = "tests/test_legendary_interactsh.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
[dependencies.aes]
version = "=0.8.4"
[dependencies.base64]
version = "=0.22.1"
[dependencies.ctr]
version = "=0.9.2"
[dependencies.futures-util]
version = "=0.3.32"
[dependencies.guise-choice]
version = "0.1.0"
[dependencies.guise-pacing]
version = "0.1.0"
[dependencies.rand]
version = "=0.8.5"
[dependencies.reqwest]
version = "=0.12.28"
features = [
"rustls-tls",
"http2",
"charset",
"json",
"stream",
]
default-features = false
[dependencies.rsa]
version = "=0.9.10"
features = ["pem"]
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "=0.10.9"
[dependencies.thiserror]
version = "=2.0.18"
[dependencies.tokio]
version = "=1.51.1"
features = ["time"]
[dependencies.toml]
version = "=0.8.23"
[dev-dependencies.faultkit]
version = "0.1.1"
[dev-dependencies.proptest]
version = "=1.9.0"
[dev-dependencies.tempfile]
version = "=3.27.0"
[dev-dependencies.tokio]
version = "=1.51.1"
features = [
"macros",
"rt-multi-thread",
"net",
"io-util",
]