Skip to content

Commit

Permalink
Wrong Info
Browse files Browse the repository at this point in the history
  • Loading branch information
drcrypterdotru committed Oct 14, 2024
1 parent 27b5d15 commit 4aac698
Showing 2 changed files with 13 additions and 11 deletions.
8 changes: 5 additions & 3 deletions Main.py
Original file line number Diff line number Diff line change
@@ -267,8 +267,8 @@ def run(self):
self.progress.emit(f"{ip} Domains Founded : {len(domains)}")
with open(self.save_path, 'a') as file:
for domain in domains:
if '.*' in str(domain):
domain = str(domain).split('.*')[1]
if '*.' in str(domain):
domain = str(domain).split('*.')[1]
#Emit Domain and WriteFile
self.progress.emit(f"{domain}")
file.write(f"{domain}\n")
@@ -1230,7 +1230,9 @@ def run(self):
i += 1

if '/' in domain:
domain = str(domain.split('/', 1)[0]).replace('...', '')
domain = str(domain.split('/', 1)[0])
if '...' in domain:
domain = str(domain).replace('...', '')

output = f'[{i}] Domain : {domain} ---> Page >>> {page} | {date}'
self.update_output.emit(output)
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -14,17 +14,17 @@ Enjoy using this tool for **free**! 🚀
## 📷 Screenshots :

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

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

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


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


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

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

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

---


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

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

## More Tools on Forums

0 comments on commit 4aac698

Please sign in to comment.