1- < img width = " 1536 " height = " 1024 " alt = " dorkeye-install " src = " https://github. com/user-attachments/assets/ a0983dc1-2c2e-4cbd-9ab9-7ae1a3743f29 " />
1+ ![ dorkeye-install] ( https://private-user-images.githubusercontent. com/153435050/539346754- a0983dc1-2c2e-4cbd-9ab9-7ae1a3743f29.png )
22
33# 📦 DorkEye — Installation Guide
44
@@ -8,19 +8,19 @@ Official installation guide for **DorkEye Project**.
88
99## ⚡ Quickest Install (PyPI)
1010
11- ``` bash
11+ ```
1212pip install dorkeye
1313```
1414
15- No virtual environment needed. Works on Linux, macOS, and Windows.
15+ Works on Linux, macOS, and Windows. Recommended for quick testing — for production use, a virtual environment is preferred .
1616
1717-----
1818
1919## 🔗 Download
2020
2121Clone the repository:
2222
23- ``` bash
23+ ```
2424git clone https://github.com/xPloits3c/DorkEye.git
2525```
2626
@@ -79,7 +79,7 @@ Or download the latest release:
7979
8080This method works on ** Linux** , ** macOS** , and ** Windows** .
8181
82- ``` bash
82+ ```
8383# Clone the repository
8484git clone https://github.com/xPloits3c/DorkEye.git
8585cd DorkEye
@@ -110,7 +110,7 @@ python dorkeye.py -h
110110
111111DorkEye auto-detects Termux and activates battery-saver mode (reduced timeouts, fewer probe samples). No additional flags needed.
112112
113- ``` bash
113+ ```
114114# Install Python and git
115115pkg update && pkg upgrade
116116pkg install python git
@@ -143,13 +143,13 @@ python dorkeye.py --wizard
143143
144144Install DorkEye as a system command for direct access from anywhere:
145145
146- ``` bash
146+ ```
147147pip install -e .
148148```
149149
150150Then use:
151151
152- ``` bash
152+ ```
153153dorkeye --help
154154dorkeye --wizard
155155dorkeye -d "inurl:admin" -o results.html
@@ -163,7 +163,7 @@ This mode is recommended for advanced users who want `dorkeye` available globall
163163
164164Run these commands to verify everything works:
165165
166- ``` bash
166+ ```
167167# Show help and all available flags
168168python dorkeye.py -h
169169
@@ -182,7 +182,7 @@ python dorkeye.py --wizard
182182
183183If using CLI mode:
184184
185- ``` bash
185+ ```
186186dorkeye --dg=all -c 5 -o test.html
187187```
188188
@@ -200,7 +200,7 @@ DorkEye/
200200├── Tools/
201201│ ├── dork_generator.py # Dork Generator engine (--dg)
202202│ ├── dorkeye_agents.py # Analysis + Crawl agents (--analyze, --crawl)
203- │ ├── dorkeye_analyze.py # Standalone analysis script
203+ │ ├── dorkeye_analyze.py # Standalone analysis script (executable directly)
204204│ └── dorkeye_patterns.py # Pattern matching utilities
205205├── Templates/
206206│ ├── dorks_templates.yaml # Default dork templates
@@ -219,7 +219,7 @@ DorkEye/
219219
220220The search engine module has been renamed. Fix:
221221
222- ``` bash
222+ ```
223223pip uninstall duckduckgo-search -y
224224pip install ddgs
225225```
@@ -228,7 +228,7 @@ pip install ddgs
228228
229229Modern Debian-based systems block global pip installs. Always use a virtual environment:
230230
231- ``` bash
231+ ```
232232python3 -m venv dorkeye_env
233233source dorkeye_env/bin/activate
234234pip install -r requirements.txt
@@ -242,7 +242,7 @@ pip install -r requirements.txt
242242
243243The ` --templates ` flag requires ` = ` syntax (no space):
244244
245- ``` bash
245+ ```
246246# ✅ Correct
247247python dorkeye.py --dg=sqli --templates=dorks_templates.yaml
248248
@@ -254,8 +254,8 @@ python dorkeye.py --dg=sqli --templates dorks_templates.yaml
254254
255255The ` --analyze ` and ` --crawl ` features require ` dorkeye_agents.py ` in the ` Tools/ ` directory. If missing, DorkEye runs normally but these features are disabled. Ensure your clone is up to date:
256256
257- ``` bash
258- git pull origin main
257+ ```
258+ git pull origin master
259259```
260260
261261### HTTP Fingerprinting disabled warning
@@ -270,16 +270,16 @@ DorkEye disables SSL verification for maximum compatibility during OSINT scannin
270270
271271## 🔄 Updating DorkEye
272272
273- ``` bash
273+ ```
274274cd DorkEye
275- git pull origin main
275+ git pull origin master
276276pip install --upgrade -r requirements.txt
277277```
278278
279279If installed in CLI mode:
280280
281- ``` bash
282- pip install -e . --upgrade
281+ ```
282+ pip install -e .
283283```
284284
285285-----
@@ -288,25 +288,25 @@ pip install -e . --upgrade
288288
289289** Linux / macOS:**
290290
291- ``` bash
291+ ```
292292rm -rf DorkEye
293293```
294294
295295** Windows:**
296296
297- ``` bash
297+ ```
298298rmdir /s /q DorkEye
299299```
300300
301301** Remove only the virtual environment:**
302302
303- ``` bash
303+ ```
304304rm -rf dorkeye_env
305305```
306306
307307** If installed in CLI mode:**
308308
309- ``` bash
309+ ```
310310pip uninstall dorkeye
311311```
312312
@@ -342,4 +342,4 @@ Please include:
342342
343343## 🎯 Installation Complete
344344
345- DorkEye v4.8 is ready. Happy hunting. 🔍
345+ DorkEye is ready! Happy hunting. 🔍
0 commit comments