> ## Content Index
> Fetch the complete content index at: https://darkwebinformer.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# osintui: Open Source Intelligence Terminal User Interface
- URL: https://darkwebinformer.com/osintui-open-source-intelligence-terminal-user-interface/
- Published: 2025-07-18T20:14:31.000Z
- Updated: 2025-09-04T22:21:08.000Z
- Author: Dark Web Informer
- Tags: OSINT, Tools

---

**GitHub:** <https://github.com/wssheldon/osintui>

---

![](https://storage.ghost.io/c/6b/16/6b16ac9c-cd67-432f-b0f3-bbec941084ff/content/images/2025/07/242823598273598712.gif)

---

## Integrations

Censys, Shodan, VirusTotal

[](https://github.com/wssheldon/osintui#integrations)

## Installation

[](https://github.com/wssheldon/osintui#installation)

First, install [Rust](https://www.rust-lang.org/tools/install) (using the recommended rustup installation method) and then

```
cargo install osintui

```

## Configuration

[](https://github.com/wssheldon/osintui#configuration)

osintui expects a TOML configuration file stored at `~/.osintui/config/config.toml` that sets the necessary API tokens for each service. The configuration file will be created for you on first run if one was not found.

\[keys\]  
virustotal = "api\_key"  
shodan = "api\_key"  
censys\_id = "api\_id"  
censys\_secret = "api\_key"

## Hotkeys

[](https://github.com/wssheldon/osintui#hotkeys)

| Key | Description |
| --- | ----------- |
| h   | Home        |
| /   | Input       |
| q   | Back        |
| c   | Censys      |
| s   | Shodan      |
| v   | Virustotal  |
| →   | Move Right  |
| ←   | Move Left   |
| ↑   | Move Up     |
| ↓   | Move Down   |

## Credits

[](https://github.com/wssheldon/osintui#credits)

⭐ [**spotify-tui**](https://github.com/Rigellute/spotify-tui)

The software architecture is almost entirely modeled after spotify-tui. The codebase was invaluable in learning how to cleanly manage complex TUI state and implement generic handling of TUI components.

⭐ [**wtfis**](https://github.com/pirxthepilot/wtfis)

I needed a good first project to learn rust and wtfis was the primary source of inspiration for osintui.