feat: tipos OSINT para dominio cybersecurity

13 tipos product (person, email, domain, IP, phone, social_media, organization, location, vulnerability, malware, crypto_wallet, document, event) para modelar entidades de inteligencia de fuentes abiertas.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-03 03:23:43 +02:00
parent 820e47304e
commit 6ba6507618
26 changed files with 377 additions and 0 deletions
@@ -0,0 +1,19 @@
---
name: osint_crypto_wallet
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintCryptoWallet struct {
Address string `json:"address"`
Blockchain string `json:"blockchain"`
Balance float64 `json:"balance"`
FirstSeen string `json:"first_seen"`
LastSeen string `json:"last_seen"`
}
description: "Wallet de criptomonedas rastreada en una investigacion OSINT. Contiene direccion, blockchain, balance y timestamps."
tags: [osint, crypto, wallet, blockchain, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_crypto_wallet.go"
---
+19
View File
@@ -0,0 +1,19 @@
---
name: osint_document
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintDocument struct {
Title string `json:"title"`
Format string `json:"format"`
Classification string `json:"classification"`
HashSHA256 string `json:"hash_sha256"`
Source string `json:"source"`
}
description: "Documento o archivo de interes en una investigacion OSINT. Contiene titulo, formato, clasificacion y hash."
tags: [osint, document, file, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_document.go"
---
+19
View File
@@ -0,0 +1,19 @@
---
name: osint_domain
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintDomain struct {
FQDN string `json:"fqdn"`
Registrar string `json:"registrar"`
CreatedDate string `json:"created_date"`
ExpiresDate string `json:"expires_date"`
NameServers []string `json:"name_servers"`
}
description: "Dominio de internet rastreado en una investigacion OSINT. Contiene FQDN, registrar y nameservers."
tags: [osint, domain, dns, infrastructure, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_domain.go"
---
+18
View File
@@ -0,0 +1,18 @@
---
name: osint_email
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintEmail struct {
Address string `json:"address"`
Provider string `json:"provider"`
Verified bool `json:"verified"`
Breached bool `json:"breached"`
}
description: "Direccion de email de interes en una investigacion OSINT. Indica si fue verificada y si aparece en breaches."
tags: [osint, email, identity, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_email.go"
---
+19
View File
@@ -0,0 +1,19 @@
---
name: osint_event
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintEvent struct {
EventType string `json:"event_type"`
Date string `json:"date"`
Location string `json:"location"`
Description string `json:"description"`
Severity string `json:"severity"`
}
description: "Evento o incidente notable en una investigacion OSINT. Contiene tipo, fecha, ubicacion y severidad."
tags: [osint, event, incident, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_event.go"
---
+20
View File
@@ -0,0 +1,20 @@
---
name: osint_ip_address
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintIPAddress struct {
IP string `json:"ip"`
ASN string `json:"asn"`
Country string `json:"country"`
ISP string `json:"isp"`
Geolocation string `json:"geolocation"`
LastSeen string `json:"last_seen"`
}
description: "Direccion IP de interes en una investigacion OSINT. Contiene ASN, geolocalizacion e ISP."
tags: [osint, ip, network, infrastructure, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_ip_address.go"
---
+19
View File
@@ -0,0 +1,19 @@
---
name: osint_location
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintLocation struct {
Lat float64 `json:"lat"`
Lon float64 `json:"lon"`
Address string `json:"address"`
Country string `json:"country"`
City string `json:"city"`
}
description: "Ubicacion geografica de interes en una investigacion OSINT. Contiene coordenadas, direccion y pais."
tags: [osint, location, geography, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_location.go"
---
+19
View File
@@ -0,0 +1,19 @@
---
name: osint_malware
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintMalware struct {
Family string `json:"family"`
HashSHA256 string `json:"hash_sha256"`
FirstSeen string `json:"first_seen"`
LastSeen string `json:"last_seen"`
ThreatLevel string `json:"threat_level"`
}
description: "Muestra de malware rastreada en una investigacion OSINT. Contiene familia, hash SHA256 y nivel de amenaza."
tags: [osint, malware, threat, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_malware.go"
---
+19
View File
@@ -0,0 +1,19 @@
---
name: osint_organization
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintOrganization struct {
LegalName string `json:"legal_name"`
Country string `json:"country"`
Sector string `json:"sector"`
Founded string `json:"founded"`
RiskScore float64 `json:"risk_score"`
}
description: "Organizacion o empresa de interes en una investigacion OSINT. Contiene datos legales, sector y score de riesgo."
tags: [osint, organization, company, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_organization.go"
---
+20
View File
@@ -0,0 +1,20 @@
---
name: osint_person
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintPerson struct {
FullName string `json:"full_name"`
Alias []string `json:"alias"`
Nationality string `json:"nationality"`
DOB string `json:"dob"`
Gender string `json:"gender"`
RiskScore float64 `json:"risk_score"`
}
description: "Persona de interes en una investigacion OSINT. Contiene identidad, nacionalidad y score de riesgo."
tags: [osint, person, identity, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_person.go"
---
+18
View File
@@ -0,0 +1,18 @@
---
name: osint_phone
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintPhone struct {
Number string `json:"number"`
CountryCode string `json:"country_code"`
Carrier string `json:"carrier"`
PhoneType string `json:"phone_type"`
}
description: "Numero de telefono de interes en una investigacion OSINT. Contiene carrier, codigo de pais y tipo."
tags: [osint, phone, telecom, identity, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_phone.go"
---
+19
View File
@@ -0,0 +1,19 @@
---
name: osint_social_media
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintSocialMedia struct {
Platform string `json:"platform"`
Username string `json:"username"`
URL string `json:"url"`
Followers int `json:"followers"`
Verified bool `json:"verified"`
}
description: "Cuenta de red social de interes en una investigacion OSINT. Contiene plataforma, usuario y seguidores."
tags: [osint, social_media, identity, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_social_media.go"
---
@@ -0,0 +1,19 @@
---
name: osint_vulnerability
lang: go
domain: cybersecurity
version: "1.0.0"
algebraic: product
definition: |
type OsintVulnerability struct {
CVEID string `json:"cve_id"`
CVSS float64 `json:"cvss"`
AffectedProduct string `json:"affected_product"`
Published string `json:"published"`
Exploited bool `json:"exploited"`
}
description: "Vulnerabilidad CVE rastreada en una investigacion OSINT. Contiene CVSS score y estado de explotacion."
tags: [osint, vulnerability, cve, threat, intelligence]
uses_types: []
file_path: "functions/cybersecurity/osint_vulnerability.go"
---