domsniper 0.1.3 → 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 +36 -17
- package/package.json +1 -1
- package/src/app.tsx +668 -169
- package/src/core/features/domain-suggest.ts +41 -0
- package/src/core/features/grouping.ts +94 -0
- package/src/core/features/history.ts +163 -0
- package/src/core/validate.ts +83 -0
- package/src/core/whois.ts +9 -5
- package/src/index.tsx +88 -13
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
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
|
102
|
-
|
|
103
|
-
|
|
|
104
|
-
| `
|
|
105
|
-
| `
|
|
106
|
-
| `
|
|
107
|
-
| `
|
|
108
|
-
| `
|
|
109
|
-
| `
|
|
110
|
-
| `
|
|
111
|
-
| `
|
|
112
|
-
| `
|
|
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