Skip to content

Spoof who an SMS is from using an SMS API

License

Notifications You must be signed in to change notification settings

krisdowis/SMS-Spoof-FAKE-ALERT-

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMSSpoof

iPhone

SMS Spoof allows you to send an SMS message to someone and change who it's from (the Sender). For example, you could send a message to someone and make the sender "Ex Girlfriend" and set the message body to "I'm Pregnant!!" In the images below, there's an example of how that will look on the recipient phone

Setup

Currently SMSSpoof only supports the Twilio SMS API. In the future there will be support for other SMS API's such as MessageBird, Sinch, Nexmo, etc... If you have a request for specific communications API to be added then post a request in the Issues area.

Requirements

Installation

Clone this repo into your WebServer document root

git clone https://github.com/vpn/SMSSpoof.git /var/www/SMSSpoof

Edit the config file (core/config.php) and add your AccountSID and AuthToken to the file. You can find your AccountSID and AuthToken within the Twilio Console. They can be seen in the image here Screenshot of Twilio account details

You need to uncomment the AccountSid and AuthToken elements in the $config array and add your details. It should look something like

    $config = array(
        ...
        'AccountSid'        =>  'AC0a2e643f97adc9zzx19h527ghgt71967',
        'AuthToken'         =>  '71wvx21vx79uxuy2ywz92xzxwz657y3x'
    );

Usage

To send a message to someone you need to go to the site http://yourwebsite.io/SMSSPoof/. How you access the website will depend on how you have set up your webserver.

You need to fill in all fields,

  • Sender - This is who you want the recipient to think the message is from. In my first example I was texting someone "I'm Pregnant" from their "Ex Girlfriend", so in that case the Sender would be Ex Girlfriend. There are some restrictions that limit what you can enter as the Sender, these restrictions are outlined in the Restrictions section, just below the form.
  • Recipient - This is the number of who you want to send the message to. Make sure that the country that you are sending the message to supports Alphanumeric Sender ID's. A list of the supported countries can be seen in the Supported Countries section.
  • Message - This is the body of the SMS that is being sent. You are limited to 160 characters. This is because after 160 characters messages are then concatenated and may display differently in international countries.

Contributing

  1. Fork this repo
  2. Create your branch git checkout -b some-branch-name
  3. Add something and commit git commit -am 'Added something amazing!'
  4. Push changes to your branch git push origin some-branch-name
  5. Submit a new pull request with some details about it!

Built With

License

This project has been licensed under the MIT License. Please see the License file for more details

About

Spoof who an SMS is from using an SMS API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • PHP 83.6%
  • JavaScript 16.1%
  • CSS 0.3%