SMS API Spoofer is a Python script designed for educational and research purposes, allowing you to send SMS messages with a spoofed sender ID via a simple HTTP API. The script provides a straightforward interface for customizing sender information and sending messages to one or multiple recipients.
- Easy to Use: Simple Python script, no advanced programming required.
- Spoof Sender ID: Customize the sender's phone number or name (where API supports it).
- Bulk Messaging: Supports for sending messages to multiple recipients.
- API Integration: Sends requests to
http://toolsbuy.org/wsms
. - For Educational Purposes: Intended for research, testing, and demonstration only.
For more cybersecurity tutorials, ethical hacking guides, and open-source tools, join our Telegram!
- Python 3.7+ (Download Python)
pip
package manager
-
Clone the repository:
git clone https://github.com/toolsbuy-org/sms-api-spoofer.git cd sms-api
-
Install dependencies:
pip install -r requirements.txt
Edit main.py
with your desired parameters or run as is for a test example.
from main import send_spoofed_sms
api_url = "http://toolsbuy.org/wsms"
sender = "+10000000000" or "SpoofedSender"
recipient = "+1234567890"
message = "This is a test spoofed SMS sent using Python."
send_spoofed_sms(api_url, sender, recipient, message)
Or simply run:
python main.py
The script sends a POST request to http://toolsbuy.org/wsms
with the following parameters:
from
: Spoofed sender phone numberto
: Recipient phone numbermessage
: Text message content
This tool is for educational and research purposes only.
Do not use for any malicious, illegal, or unethical activities.
You are responsible for complying with all local laws and regulations.
See LICENSE for full details.