summaryrefslogtreecommitdiffstats
path: root/internal/models/osint.go
diff options
context:
space:
mode:
authors <[email protected]>2025-11-08 02:44:13 -0500
committers <[email protected]>2025-11-08 02:44:13 -0500
commitdfcf52f30cdbde3a4e1400024b0c27451d179e5d (patch)
treecdcac72f0d58b0689777644c771e80d53b502434 /internal/models/osint.go
parent486a369f05125a3b86d663ea94684466e0658099 (diff)
downloaddborg-dfcf52f30cdbde3a4e1400024b0c27451d179e5d.tar.gz
dborg-dfcf52f30cdbde3a4e1400024b0c27451d179e5d.zip
feat: add unauthenticated client support and new osint/x commands
Diffstat (limited to 'internal/models/osint.go')
-rw-r--r--internal/models/osint.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/models/osint.go b/internal/models/osint.go
index 6096df8..9f714c4 100644
--- a/internal/models/osint.go
+++ b/internal/models/osint.go
@@ -36,3 +36,14 @@ type BreachForumSearchResponse struct {
MaxHits int `json:"max_hits"`
Results interface{} `json:"results"`
}
+
+type OpenDirectorySearchParams struct {
+ URL string
+ Filename string
+ Extension string
+ Exclude string
+ Size int
+ From int
+}
+
+type OpenDirectorySearchResponse map[string]interface{}