295 lines
7.1 KiB
Go
295 lines
7.1 KiB
Go
package cticlient
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type CTIScores struct {
|
|
Overall CTIScore `json:"overall"`
|
|
LastDay CTIScore `json:"last_day"`
|
|
LastWeek CTIScore `json:"last_week"`
|
|
LastMonth CTIScore `json:"last_month"`
|
|
}
|
|
|
|
type CTIScore struct {
|
|
Aggressiveness int `json:"aggressiveness"`
|
|
Threat int `json:"threat"`
|
|
Trust int `json:"trust"`
|
|
Anomaly int `json:"anomaly"`
|
|
Total int `json:"total"`
|
|
}
|
|
|
|
type CTIAttackDetails struct {
|
|
Name string `json:"name"`
|
|
Label string `json:"label"`
|
|
Description string `json:"description"`
|
|
References []string `json:"references"`
|
|
}
|
|
|
|
type CTIClassifications struct {
|
|
FalsePositives []CTIClassification `json:"false_positives"`
|
|
Classifications []CTIClassification `json:"classifications"`
|
|
}
|
|
|
|
type CTIClassification struct {
|
|
Name string `json:"name"`
|
|
Label string `json:"label"`
|
|
Description string `json:"description"`
|
|
}
|
|
type CTIHistory struct {
|
|
FirstSeen *string `json:"first_seen"`
|
|
LastSeen *string `json:"last_seen"`
|
|
FullAge int `json:"full_age"`
|
|
DaysAge int `json:"days_age"`
|
|
}
|
|
|
|
type CTIBehavior struct {
|
|
Name string `json:"name"`
|
|
Label string `json:"label"`
|
|
Description string `json:"description"`
|
|
}
|
|
type CTILocationInfo struct {
|
|
Country *string `json:"country"`
|
|
City *string `json:"city"`
|
|
Latitude *float64 `json:"latitude"`
|
|
Longitude *float64 `json:"longitude"`
|
|
}
|
|
|
|
type CTIReferences struct {
|
|
Name string `json:"name"`
|
|
Label string `json:"label"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type SmokeItem struct {
|
|
IpRangeScore int `json:"ip_range_score"`
|
|
Ip string `json:"ip"`
|
|
IpRange *string `json:"ip_range"`
|
|
AsName *string `json:"as_name"`
|
|
AsNum *int `json:"as_num"`
|
|
Location CTILocationInfo `json:"location"`
|
|
ReverseDNS *string `json:"reverse_dns"`
|
|
Behaviors []*CTIBehavior `json:"behaviors"`
|
|
History CTIHistory `json:"history"`
|
|
Classifications CTIClassifications `json:"classifications"`
|
|
AttackDetails []*CTIAttackDetails `json:"attack_details"`
|
|
TargetCountries map[string]int `json:"target_countries"`
|
|
BackgroundNoiseScore *int `json:"background_noise_score"`
|
|
Scores CTIScores `json:"scores"`
|
|
References []CTIReferences `json:"references"`
|
|
IsOk bool `json:"-"`
|
|
}
|
|
|
|
type SearchIPResponse struct {
|
|
Total int `json:"total"`
|
|
NotFound int `json:"not_found"`
|
|
Items []SmokeItem `json:"items"`
|
|
}
|
|
|
|
type CustomTime struct {
|
|
time.Time
|
|
}
|
|
|
|
func (ct *CustomTime) UnmarshalJSON(b []byte) error {
|
|
if string(b) == "null" {
|
|
return nil
|
|
}
|
|
|
|
t, err := time.Parse(`"2006-01-02T15:04:05.999999999"`, string(b))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ct.Time = t
|
|
return nil
|
|
}
|
|
|
|
type FireItem struct {
|
|
IpRangeScore int `json:"ip_range_score"`
|
|
Ip string `json:"ip"`
|
|
IpRange *string `json:"ip_range"`
|
|
AsName *string `json:"as_name"`
|
|
AsNum *int `json:"as_num"`
|
|
Location CTILocationInfo `json:"location"`
|
|
ReverseDNS *string `json:"reverse_dns"`
|
|
Behaviors []*CTIBehavior `json:"behaviors"`
|
|
History CTIHistory `json:"history"`
|
|
Classifications CTIClassifications `json:"classifications"`
|
|
AttackDetails []*CTIAttackDetails `json:"attack_details"`
|
|
TargetCountries map[string]int `json:"target_countries"`
|
|
BackgroundNoiseScore *int `json:"background_noise_score"`
|
|
Scores CTIScores `json:"scores"`
|
|
References []CTIReferences `json:"references"`
|
|
State string `json:"state"`
|
|
Expiration CustomTime `json:"expiration"`
|
|
}
|
|
|
|
type FireParams struct {
|
|
Since *string `json:"since"`
|
|
Page *int `json:"page"`
|
|
Limit *int `json:"limit"`
|
|
}
|
|
|
|
type Href struct {
|
|
Href string `json:"href"`
|
|
}
|
|
|
|
type Links struct {
|
|
First *Href `json:"first"`
|
|
Self *Href `json:"self"`
|
|
Prev *Href `json:"prev"`
|
|
Next *Href `json:"next"`
|
|
}
|
|
|
|
type FireResponse struct {
|
|
Links Links `json:"_links"`
|
|
Items []FireItem `json:"items"`
|
|
}
|
|
|
|
func (c *SmokeItem) GetAttackDetails() []string {
|
|
ret := make([]string, 0)
|
|
|
|
if c.AttackDetails != nil {
|
|
for _, b := range c.AttackDetails {
|
|
ret = append(ret, b.Name)
|
|
}
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (c *SmokeItem) GetBehaviors() []string {
|
|
ret := make([]string, 0)
|
|
|
|
if c.Behaviors != nil {
|
|
for _, b := range c.Behaviors {
|
|
ret = append(ret, b.Name)
|
|
}
|
|
}
|
|
return ret
|
|
}
|
|
|
|
// Provide the likelihood of the IP being bad
|
|
func (c *SmokeItem) GetMaliciousnessScore() float32 {
|
|
if c.IsPartOfCommunityBlocklist() {
|
|
return 1.0
|
|
}
|
|
if c.Scores.LastDay.Total > 0 {
|
|
return float32(c.Scores.LastDay.Total) / 10.0
|
|
}
|
|
return 0.0
|
|
}
|
|
|
|
func (c *SmokeItem) IsPartOfCommunityBlocklist() bool {
|
|
if c.Classifications.Classifications != nil {
|
|
for _, v := range c.Classifications.Classifications {
|
|
if v.Name == "community-blocklist" {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (c *SmokeItem) GetBackgroundNoiseScore() int {
|
|
if c.BackgroundNoiseScore != nil {
|
|
return *c.BackgroundNoiseScore
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (c *SmokeItem) GetFalsePositives() []string {
|
|
ret := make([]string, 0)
|
|
|
|
if c.Classifications.FalsePositives != nil {
|
|
for _, b := range c.Classifications.FalsePositives {
|
|
ret = append(ret, b.Name)
|
|
}
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (c *SmokeItem) IsFalsePositive() bool {
|
|
|
|
if c.Classifications.FalsePositives != nil {
|
|
if len(c.Classifications.FalsePositives) > 0 {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (c *FireItem) GetAttackDetails() []string {
|
|
ret := make([]string, 0)
|
|
|
|
if c.AttackDetails != nil {
|
|
for _, b := range c.AttackDetails {
|
|
ret = append(ret, b.Name)
|
|
}
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (c *FireItem) GetBehaviors() []string {
|
|
ret := make([]string, 0)
|
|
|
|
if c.Behaviors != nil {
|
|
for _, b := range c.Behaviors {
|
|
ret = append(ret, b.Name)
|
|
}
|
|
}
|
|
return ret
|
|
}
|
|
|
|
// Provide the likelihood of the IP being bad
|
|
func (c *FireItem) GetMaliciousnessScore() float32 {
|
|
if c.IsPartOfCommunityBlocklist() {
|
|
return 1.0
|
|
}
|
|
if c.Scores.LastDay.Total > 0 {
|
|
return float32(c.Scores.LastDay.Total) / 10.0
|
|
}
|
|
return 0.0
|
|
}
|
|
|
|
func (c *FireItem) IsPartOfCommunityBlocklist() bool {
|
|
if c.Classifications.Classifications != nil {
|
|
for _, v := range c.Classifications.Classifications {
|
|
if v.Name == "community-blocklist" {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (c *FireItem) GetBackgroundNoiseScore() int {
|
|
if c.BackgroundNoiseScore != nil {
|
|
return *c.BackgroundNoiseScore
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (c *FireItem) GetFalsePositives() []string {
|
|
ret := make([]string, 0)
|
|
|
|
if c.Classifications.FalsePositives != nil {
|
|
for _, b := range c.Classifications.FalsePositives {
|
|
ret = append(ret, b.Name)
|
|
}
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (c *FireItem) IsFalsePositive() bool {
|
|
|
|
if c.Classifications.FalsePositives != nil {
|
|
if len(c.Classifications.FalsePositives) > 0 {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|