domsniper 0.1.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -60,7 +60,7 @@ domsniper snipe run
60
60
  - **TLD Expansion** -- Check a name across all major TLDs
61
61
  - **Variations** -- Typos, plurals, prefixes, suffixes
62
62
 
63
- ### Security Recon (toggle with `n` key)
63
+ ### Security Recon (on by default, toggle with `n` key)
64
64
  - **Port Scanner** -- 20 ports, banner grabbing
65
65
  - **Security Headers** -- 9 headers, A+ to F grading
66
66
  - **Email Security** -- SPF/DKIM/DMARC audit
@@ -94,22 +94,41 @@ domsniper snipe run
94
94
  - CA cert generation for HTTPS
95
95
  - Credential redaction in logs
96
96
 
97
- ## TUI Shortcuts
98
-
99
- | Key | Action | Key | Action |
100
- |-----|--------|-----|--------|
101
- | `/` | Scan domains | `Tab` | Cycle intel tabs |
102
- | `e` | TLD expansion | `n` | Toggle recon mode |
103
- | `f` | Load from file | `s` | Cycle status filter |
104
- | `v` | Variations | `o/O` | Sort field/order |
105
- | `d` | Suggestions | `Space` | Tag/untag |
106
- | `r` | Register | `R` | Bulk register |
107
- | `S` | Snipe domain | `D` | Drop catch |
108
- | `p` | Add to portfolio | `P` | Portfolio dashboard |
109
- | `M` | Marketplace | `w` | Watch tagged |
110
- | `h` | Scan history | `c` | Clear cache |
111
- | `x` | Export CSV/JSON | `?` | Help |
112
- | `Ctrl+S` | Save session | `q` | Quit |
97
+ ## TUI Usage
98
+
99
+ **Global shortcuts** (work anywhere):
100
+
101
+ | Key | Action |
102
+ |-----|--------|
103
+ | `/` or `i` | Scan domains |
104
+ | `f` | Load from file |
105
+ | `e` | TLD expansion |
106
+ | `Space` | Tag/untag domain |
107
+ | `Tab` | Cycle intel tabs (Overview / DNS / Security / Recon) |
108
+ | `n` | Toggle recon mode |
109
+ | `s` | Cycle status filter |
110
+ | `o` | Cycle sort |
111
+ | `b` | Portfolio dashboard |
112
+ | `m` | Marketplace |
113
+ | `?` | Help |
114
+ | `q` | Quit |
115
+
116
+ **Domain actions** (press `Enter` on a selected domain to open context menu):
117
+
118
+ | Key | Action |
119
+ |-----|--------|
120
+ | `r` | Register domain |
121
+ | `z` | Snipe (auto-register when it drops) |
122
+ | `p` | Add to portfolio |
123
+ | `d` | Suggest similar names |
124
+ | `v` | Generate variations |
125
+ | `e` | Check other TLDs |
126
+ | `w` | Tag for watching |
127
+ | `h` | View scan history |
128
+ | `c` | Clear cache |
129
+ | `Enter` | Rescan |
130
+
131
+ **Mouse:** Click domain list items, INTEL tabs, and footer buttons.
113
132
 
114
133
  ## CLI Commands
115
134
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "domsniper",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "description": "All-in-one domain intelligence toolkit — availability checker, security recon, portfolio manager. Built with Bun.",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",