diff options
| author | s <[email protected]> | 2025-11-08 02:44:13 -0500 |
|---|---|---|
| committer | s <[email protected]> | 2025-11-08 02:44:13 -0500 |
| commit | dfcf52f30cdbde3a4e1400024b0c27451d179e5d (patch) | |
| tree | cdcac72f0d58b0689777644c771e80d53b502434 /internal/models/osint.go | |
| parent | 486a369f05125a3b86d663ea94684466e0658099 (diff) | |
| download | dborg-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.go | 11 |
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{} |
