-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#### Related Issue: #988 #### Description of changes: - Added `osint` object. - Added `osint` Profile based on `osint` object. - Added `signatures` object, an array of `signature` objects. - Added `subdomains` object, an array of `subdomain` used to enumerate DGA-generated domains. - Added `whois` object. - Added `contact` and array-typed `contacts` object for use with `whois` object. - Added `is_self_signed` Boolean attribute to `certificate` object. Several dozen attributes were added to `dictionary` to support `whois` and `contact`. --------- Signed-off-by: Jonathan Rau <[email protected]>
- Loading branch information
1 parent
5d1152c
commit 4a5420b
Showing
8 changed files
with
399 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"caption": "Domain Contact", | ||
"description": "The contact information related to a domain registration, e.g., registrant, administrator, abuse, billing, or technical contact.", | ||
"extends": "object", | ||
"name": "domain_contact", | ||
"attributes": { | ||
"type_id": { | ||
"caption": "Domain Contact Type ID", | ||
"description": "The normalized domain contact type ID.", | ||
"requirement": "required", | ||
"enum": { | ||
"1": { | ||
"caption": "Registrant", | ||
"description": "The contact information provided is for the domain registrant." | ||
}, | ||
"2": { | ||
"caption": "Administrative", | ||
"description": "The contact information provided is for the domain administrator." | ||
}, | ||
"3": { | ||
"caption": "Technical", | ||
"description": "The contact information provided is for the domain technical lead." | ||
}, | ||
"4": { | ||
"caption": "Billing", | ||
"description": "The contact information provided is for the domain billing lead." | ||
}, | ||
"5": { | ||
"caption": "Abuse", | ||
"description": "The contact information provided is for the domain abuse contact." | ||
} | ||
} | ||
}, | ||
"type": { | ||
"caption": "Domain Contact Type", | ||
"description": "The Domain Contact type, normalized to the caption of the <code>type_id</code> value. In the case of 'Other', it is defined by the source", | ||
"requirement": "optional" | ||
}, | ||
"location": { | ||
"caption": "Contact Location Information", | ||
"description": "Location details for the contract such as the city, state/province, country, etc.", | ||
"requirement": "recommended" | ||
}, | ||
"email_addr": { | ||
"caption": "Contact Email", | ||
"requirement": "recommended" | ||
}, | ||
"phone_number": { | ||
"requirement": "optional" | ||
}, | ||
"name": { | ||
"description": "The individual or organization name for the contact.", | ||
"requirement": "optional" | ||
}, | ||
"uid": { | ||
"description": "The unique identifier of the contact information, typically provided in WHOIS information.", | ||
"requirement": "optional" | ||
} | ||
} | ||
} |
Oops, something went wrong.