Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

passivetotal/rust_api

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
61 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rust-passivetotal

Rust API and command-line app for Rust

Check the full documentation.

Installation

From the project root directory:

$ cargo build

Or link to the project in your Cargo.toml:

[dependencies]
passivetotal = { git = "https://github.com/passivetotal/rust_api.git" }

Configuration

Create a JSON config in ~/.config/passivetotal/api_config.json with the following structure:

{
    "username": "",
    "api_key": "<key>",
    "http_proxy": "",
    "https_proxy": "",
    "api_server": "api.passivetotal.org",
    "api_version": "v2"
}

Usage

Use --help/-h to view info on the arguments:

$ ./target/debug/passivetotal --help

API Usage

See main.rs for examples of usage:

extern crate passivetotal;

use passivetotal::config;
use passivetotal::PTClient;

// automatically parses config at ~/.config/passivetotal/api_config.json
let conf = config::read_config().unwrap();
let client = PTClient::from(conf);

// Returns a Result<PDNSResponse, ResponseError>
let response = client.get_pdns("passivetotal.org").unwrap();
for result in response.results.unwrap() {
    println!("{}", result.resolve.unwrap());
}

let response = client.get_whois("passivetotal.org").unwrap();
println!("email: {}", response.contactEmail.unwrap());

let response = client.get_sslcert("52.8.228.23").unwrap();
for result in response.results.unwrap() {
    println!("SHA1: {}", result.sha1.unwrap());
}

Release Notes

0.0.1:Project created

About

A Rust abstraction over the PassiveTotal API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.