Skip to content

Commit 4aac698

Browse files
Wrong Info
1 parent 27b5d15 commit 4aac698

2 files changed

Lines changed: 13 additions & 11 deletions

File tree

Main.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ def run(self):
267267
self.progress.emit(f"{ip} Domains Founded : {len(domains)}")
268268
with open(self.save_path, 'a') as file:
269269
for domain in domains:
270-
if '.*' in str(domain):
271-
domain = str(domain).split('.*')[1]
270+
if '*.' in str(domain):
271+
domain = str(domain).split('*.')[1]
272272
#Emit Domain and WriteFile
273273
self.progress.emit(f"{domain}")
274274
file.write(f"{domain}\n")
@@ -1230,7 +1230,9 @@ def run(self):
12301230
i += 1
12311231

12321232
if '/' in domain:
1233-
domain = str(domain.split('/', 1)[0]).replace('...', '')
1233+
domain = str(domain.split('/', 1)[0])
1234+
if '...' in domain:
1235+
domain = str(domain).replace('...', '')
12341236

12351237
output = f'[{i}] Domain : {domain} ---> Page >>> {page} | {date}'
12361238
self.update_output.emit(output)

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ Enjoy using this tool for **free**! 🚀
1414
## 📷 Screenshots :
1515

1616
🌐 **Reverse IP**
17-
![Reverse IP](https://github.com/drcrypterdotru/Zeus-Grabber/blob/main/demo/demo_1.png)
17+
![Reverse IP](https://raw.githubusercontent.com/drcrypterdotru/Zeus-Grabber/main/demo/demo_1.png)
1818

1919
🌐 **Generate IP**
20-
![Generate IP](https://github.com/drcrypterdotru/Zeus-Grabber/blob/main/demo/demo_2.png)
20+
![Generate IP](https://raw.githubusercontent.com/drcrypterdotru/Zeus-Grabber/main/demo/demo_2.png)
2121

2222
🌐 **Google Grabber**
23-
![Google Grabber](https://github.com/drcrypterdotru/Zeus-Grabber/blob/main/demo/demo_3.png)
23+
![Google Grabber](https://raw.githubusercontent.com/drcrypterdotru/Zeus-Grabber/main/demo/demo_3.png)
2424

2525

2626
🌐 **Zone-H**
27-
![Zone-H](https://github.com/drcrypterdotru/Zeus-Grabber/blob/main/demo/demo_4.png)
27+
![Zone-H](https://raw.githubusercontent.com/drcrypterdotru/Zeus-Grabber/main/demo/demo_4.png)
2828

2929

3030
## 🚒 Installation
@@ -60,8 +60,8 @@ You can download and run the **executable** from the [Releases section](#). No P
6060
|--------------------------|
6161
| 🔄 Reverse IP |
6262
| ⚙️ IP Generator |
63-
| 🔍 Google Search Automation |
64-
| 📜 Zone-H Username Input |
63+
| 🔍 Google Search Dork & SQLi |
64+
| 📜 Zone-H Grab Domain |
6565

6666
<details>
6767
<summary>Usage Instructions</summary>
@@ -118,15 +118,15 @@ If you want to exclude certain domains, use the **Block Domain** feature at the
118118
python Main.py
119119
```
120120

121-
- Or, use the executable version available in [Releases](#) for one-click access.
121+
- Or, use the executable version available in [Releases](#) for run the Zeus-Grabber.
122122

123123
---
124124

125125

126126
<div style="text-align: center;">
127127

128128
## Video Usage
129-
[![Video Usage](https://i.ibb.co/st2vXqG/Untitled-Project-Time-0-03-02-12.png)](https://www.youtube.com/watch?v=U9mGzYDeCHM)
129+
[![Video Usage](https://i.ibb.co/st2vXqG/Untitled-Project-Time-0-03-02-12.png)](https://www.youtube.com/watch?v=DlXZ7zNl_Gg)
130130

131131
## More Tools on Forums
132132

0 commit comments

Comments
 (0)