https://github.com/cak/compass
https://github.com/cak/compass
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cak/compass
- Owner: cak
- License: mit
- Created: 2019-09-22T23:40:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T09:10:31.000Z (over 1 year ago)
- Last Synced: 2025-04-04T09:04:16.724Z (about 1 year ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# compass
Web Application Recon Tool (BETA)
## Example
```Rust
fn main() -> Result<(), CompassError> {
let target = String::from("target_url");
let res = compass::fetch_pretty(&target)?;
println!("{}", res);
Ok(())
}
```