1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
//! The response module contains all the structs that will be returned as a response for all API
//! calls.
//!
//! These were created programmatically through a tool json2rust, which takes a JSON document and
//! builds the corresponding Rust struct. This simplified the process greatly, since a lot of these
//! documents are extensive.
//!
//! This is the heart of the client, and maps all responses to the sort of data they contain.
//! The fields are in camelCase to correspond with the fields returned via the API.

extern crate rustc_serialize;

#[derive(RustcDecodable, Debug)]
pub struct Pager {
    pub next: Option<String>,
    pub previous: Option<String>,
    pub page_size: Option<u32>,
}

#[derive(RustcDecodable, Debug)]
pub struct PDNSResult {
    pub recordHash: Option<String>,
    pub resolve: Option<String>,
    pub value: Option<String>,
    pub source: Option<Vec<String>>,
    pub lastSeen: Option<String>,
    pub firstSeen: Option<String>,
    pub collected: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct PDNSResponse {
    pub totalRecords: u32,
    pub queryValue: Option<String>,
    pub queryType: Option<String>,
    pub firstSeen: Option<String>,
    pub lastSeen: Option<String>,
    pub results: Option<Vec<PDNSResult>>,
    pub pager: Option<Pager>,
}

#[derive(RustcDecodable, Debug)]
pub struct WhoisResponse {
    pub contactEmail: Option<String>,
    pub domain: Option<String>,
    pub billing: Option<Registrant>,
    pub zone: Option<Registrant>,
    pub nameServers: Option<Vec<String>>,
    pub registered: Option<String>,
    pub lastLoadedAt: Option<String>,
    pub whoisServer: Option<String>,
    pub registryUpdatedAt: Option<String>,
    pub admin: Option<Registrant>,
    pub expiresAt: Option<String>,
    pub registrar: Option<String>,
    pub tech: Option<Registrant>,
    pub registrant: Option<Registrant>,
}

#[derive(RustcDecodable, Debug)]
pub struct Registrant {
    pub city: Option<String>,
    pub name: Option<String>,
    pub country: Option<String>,
    pub telephone: Option<String>,
    pub state: Option<String>,
    pub street: Option<String>,
    pub postalCode: Option<String>,
    pub organization: Option<String>,
    pub email: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct SSLCertResponse {
    pub issuerStreetAddress: Option<String>,
    pub subjectSerialNumber: Option<String>,
    pub subjectEmailAddress: Option<String>,
    pub expirationDate: Option<String>,
    pub issuerSerialNumber: Option<String>,
    pub issuerOrganizationName: Option<String>,
    pub subjectCommonName: Option<String>,
    pub subjectSurname: Option<String>,
    pub subjectCountry: Option<String>,
    pub subjectGivenName: Option<String>,
    pub issuerProvince: Option<String>,
    pub subjectLocalityName: Option<String>,
    pub issuerStateOrProvinceName: Option<String>,
    pub issuerCommonName: Option<String>,
    pub issueDate: Option<String>,
    pub issuerEmailAddress: Option<String>,
    pub subjectOrganizationUnitName: Option<String>,
    pub subjectOrganizationName: Option<String>,
    pub fingerprint: Option<String>,
    pub issuerLocalityName: Option<String>,
    pub issuerGivenName: Option<String>,
    pub issuerCountry: Option<String>,
    pub subjectStateOrProvinceName: Option<String>,
    pub sha1: Option<String>,
    pub sslVersion: Option<String>,
    pub issuerSurname: Option<String>,
    pub serialNumber: Option<String>,
    pub subjectStreetAddress: Option<String>,
    pub issuerOrganizationUnitName: Option<String>,
    pub subjectProvince: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct SSLCertHistoryResponse {
    pub results: Option<Vec<SSLCertHistoryResult>>,
}

#[derive(RustcDecodable, Debug)]
pub struct SSLCertHistoryResult {
    pub sha1: Option<String>,
    pub ipAddresses: Option<Vec<String>>,
    pub firstSeen: Option<String>,
    pub lastSeen: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct OSINTResponse {
    pub results: Option<Vec<OSINTResult>>,
}

#[derive(RustcDecodable, Debug)]
pub struct OSINTResult {
    pub source: Option<String>,
    pub sourceUrl: Option<String>,
    pub inReport: Option<Vec<String>>,
    pub tags: Option<Vec<String>>,
}

#[derive(RustcDecodable, Debug)]
pub struct MalwareResponse {
    pub results: Option<Vec<MalwareResult>>,
}

#[derive(RustcDecodable, Debug)]
pub struct MalwareResult {
    pub sample: Option<String>,
    pub source: Option<String>,
    pub sourceUrl: Option<String>,
    pub collectionDate: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct SubdomainsResponse {
    pub queryValue: Option<String>,
    pub subdomains: Option<Vec<String>>,
}

#[derive(RustcDecodable, Debug)]
pub struct AccountResponse {
    pub username: Option<String>,
    pub firstActive: Option<String>,
    pub firstName: Option<String>,
    pub lastName: Option<String>,
    pub lastActive: Option<String>,
    pub organization: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct HostAttributeComponentResponse {
    pub results: Option<Vec<HostAttributeComponentResult>>,
}

#[derive(RustcDecodable, Debug)]
pub struct HostAttributeComponentResult {
    pub category: Option<String>,
    pub hostname: Option<String>,
    pub lastSeen: Option<String>,
    pub firstSeen: Option<String>,
    pub label: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct HostAttributeTrackerResponse {
    pub results: Option<Vec<HostAttributeTrackerResult>>,
}

#[derive(RustcDecodable, Debug)]
pub struct HostAttributeTrackerResult {
    pub attributeValue: Option<String>,
    pub hostname: Option<String>,
    pub lastSeen: Option<String>,
    pub firstSeen: Option<String>,
    pub attributeType: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct PDNSUniqueResponse {
    pub frequency: Option<Vec<(String, i32)>>,
    pub queryType: Option<String>,
    pub total: Option<i32>,
    pub pager: Option<Pager>,
    pub queryValue: Option<String>,
    pub results: Option<Vec<String>>,
}

#[derive(RustcDecodable, Debug)]
pub struct ActionClassificationResponse {
    pub classification: Option<String>,
}

#[derive(RustcDecodable, Debug)]
pub struct ActionEverCompromisedResponse {
    pub everCompromised: Option<bool>,
}

#[derive(RustcDecodable, Debug)]
pub struct ActionDDNSResponse {
    pub dynamicDns: Option<bool>,
}

#[derive(RustcDecodable, Debug)]
pub struct ActionMonitorResponse {
    pub monitor: Option<bool>,
}

#[derive(RustcDecodable, Debug)]
pub struct ActionSinkholeResponse {
    pub sinkhole: Option<bool>,
}

#[derive(RustcDecodable, Debug)]
pub struct ActionTagResponse {
    pub tags: Option<Vec<String>>,
}