Spam scripts

20 March 2023 15 minutes Author: Endpool

What is spam?

Each of us, opening personal or work mail, has seen all kinds of letters, the content of which contains calls for various actions: to buy something, to subscribe to something, to click somewhere. There have also been quite strange letters with the names “Tax.Shtraf.pdf” with an appeal to urgently respond to this letter and familiarize yourself with the contents of this document. And often we, as users, do not want to receive this flurry of letters, in the flow of which the correspondence we need can get lost. So, spam is the mass sending of correspondence of an advertising or other nature to persons who have not expressed a desire to receive it. According to statistics for 2021, the share of spam in the world’s mail traffic is between 49.55% and 52%, that is, in fact, half of all e-mails sent on the planet. In 2006, it was around 60% and grew every year, reaching 80% in 2011. With the development of filtering and email analysis technologies, highly effective spam filters were developed that reduced this indicator.

Spam has various types and methods of distribution, which are constantly being improved by attackers. The main purpose of spam is to get the recipient to take any action that is not beneficial to the victim and beneficial to the spammer. Various social engineering techniques are used to compile the content of spam, which work on the principle of “carpet bombing”: it is sent to the masses with a partial hit on the “target audience”. Persons who are engaged in creating and sending one or another type of spam are called “spammers”.

Methods of spreading spam


SMS message


Phone calls


Email


Messengers


Replacement of Internet traffic

Types of spam


Mass mailing on behalf of another person


Bulk mailing containing viruses and dangerous attachments


DDoS


Religious mailings


Phishing

What is a script?

After reading the definition of a script in Wikipedia, I was completely confused. Here it is – a virtual world detached from reality. In fact, it seems to me that everything is much simpler. We all use computer programs every day. They consist of complex algorithms, have a user interface, work on different operating systems, have technical documentation and support, versioning, etc.

A script is the same program or subroutine, but focused on solving a certain narrow task “here and now” according to a given sequence (algorithm).

Consider an example:

Task: Masha, take the money and go to the store for bread.
Purpose: Bread. Object: Masha.
Action scenario: take the money and go to the store (this will be our script).
The following comes out: Masha [script] for bread.
We change the goal: Masha [script] at the computer.
We change the goal and the object: Petya [script] for candy.

I hope at this point it is much clearer. Spammers create their spam scripts with the goal of doing something without your knowledge, such as sending some of your personal data, redirecting you to another site, or in the case of phishing, to trick you into personal or sensitive data. In short, a spam script is a set of instructions that are executed in the background (without the user’s knowledge). In modern life and on the Internet, you can often find the word bot, especially when it concerns spam.

A bot (spam bot) is a script program that was created to perform a certain function, in the case of spam – spam mailings.

Programming languages for writing scripts


Bash


PowerShell


JavaScript


Python


PHP


Ruby


Perl


Groovy

Examples
Example 1. Sending an email using a Python script

I consider Python to be the most advanced programming language today and we will look at several examples of Python scripts and understand what they do.

import smtplib s = smtplib.SMTP('localhost') toList = ["[email protected]", "[email protected]", "[email protected]"] msg = "Test message" s.sendmail("[email protected]", toList, msg) {"[email protected]" : (550, "User unknown")} s.quit()

 

Step 1. Connecting the Python SMTP module

import smtplib

SMTP is a protocol for working with e-mail. Since there is no possibility to send an email directly to the recipient, it is sent first to the mail server, and then the server sends it to the recipient, there are 3 main types:

  • POP (Post Office Protocol);

  • IMAP (Internet Message Access Protocol).

  • SMTP (Simple Mail Transfer Protocol)

Step 2. Connect to the email server

First of all, you need to create an smtplib object, which can be seen as a portal that gives access to the connection and various tools for working with it from the smtplib module.

In this case, the function returning the required object takes two parameters or arguments. The first argument contains the domain name, i.e. the email address starting with “smtp”, as shown below. The second argument is the port number to connect to on the email server. It almost always takes the value 587 according to the TLS encryption standard. Services using port 465 are very rare.

And so it is necessary to specify the following:

smtpObj = smtplib.SMTP('smtp.gmail.com', 587)

 

Step 3. Encryption

The next thing to do to establish a connection is to “tell” the SMTP object that the message should be encrypted. To do this, enter the following line in the console and press Enter:

smtpObj.starttls()

Here’s what we did: we told Gmail that we wanted our connection to be encrypted using TLS (Transport Layer Security), which is the standard for Internet communications today. TLS itself is not a cryptographic algorithm, rather it communicates that encryption must be used or the connection must not be established.

In response, you should receive confirmation:

2.0.0 Ready to start TLS

An important point is that if you skip this step and immediately proceed to authorization, error messages will appear on the screen. All because Gmail applies encryption using the HTTPS protocol, that is, the same HTTP “wrapped” in an additional TLS protocol.

Step 4. Authorization

In order to log in, you only need to write:

smtpObj.login('[email protected]','just123kidding')

At this stage, the e-mail password, so to speak, flies into the unknown, which is quite dangerous. This isn’t a problem on your local computer, but if you’re really automating email with a Python script, you should be careful and think twice before publishing the script code somewhere or uploading a file with it to third-party resources.

Step 5. Sending a message

The advantage of using environments with a command interpreter is that even in the absence of any information – for example, descriptions of sending letters – you can ask the interpreter about it. To do this, you just need to enter the following command:

help(smtpObj)
By scrolling the page a little, you can see the desired method:

Note that the above example is missing the authorization command. This is because the program was connecting to the user’s computer, not the remote email server. For our case, we will write the following:

The interpreter will even display an example of its use:
smtpObj.sendmail("[email protected]","[email protected]", "go to bed!")

If the message was received, then everything works as it should

 

Step 6. Terminating the connection

To complete the connection, it is enough to use the following command:

smtpObj.quit()

 

Of course, sending messages is only a small part of what you can do with email with Python.

Example 2. Sending messages in WhatsApp using a Python script

Step 1. Installing Twilio (Communication APIs for SMS, Voice, Video and Authentication)

Create a free profile on Twilio and confirm your email address and phone number.

 

In addition to the free period, the Twilio profile includes the Twilio Sandbox test environment for WhatsApp, in which you cannot use your number: you need a one-time permission to receive messages on WhatsApp. All problems are solved with receiving a number – after WhatsApp allows Twilio to use your number. Then you need to fill out the form and wait a little. All Twilio customers can create and test sending and receiving WhatsApp messages using the WhatsApp Sandbox test environment. Now you need to connect your phone to the WhatsApp Sandbox test environment and you can start receiving messages.

Let’s go to the beta version of WhatsApp in the learning section of the console.

Let’s save our WhatsApp number in contacts. You can give it any name. I saved it as a Twilio Sandbox, then sent a message from the father’s phone, as you can see above. This can only be done once. Now let’s go to the Twilio Console, set up an SSID profile there and get an authentication token – so Twilio will be able to identify us when executing the code.

Step 2. Interpretation and modification of the code

Download the GitHub repository and unzip it.

In the middle is a file with our code and a deployment package.
  • whatsapp_messaging.py
  • aws_lambda_deploy.zip

Line 1: Imports the Twilio package and uses its REST client to call the Twilio API.
Line 3: Here we create a msg_mom_and_dad function that will be sent to the AWS cloud to be executed every day at a certain time.
Lines 6–7: Substitute the sid and auth_token values of our profile, which were discussed in step 1.
Line 9: A Twilio client object is created with our credentials.
Line 13: Creates a Python dictionary with name key and phone number value. This dictionary can be updated if you want to send a message to someone else.
Line 15: a for loop that runs for all key and value pairs (we only have one now). We enter our message in the body. For example, I have a simple “good morning” followed by a key value. This code outputted “good morning, dad!”. Then we write the from number that we received for Twilio WhatsApp and the to number from which the confirmation was previously sent for the WhatsApp test environment.
Line 23: A line to check the status of the message using the SID. But we won’t need it.

 

Here you need to change five values:

  • twilio_sid;
  • auth_token;
  • contact_directory;
  • from_;
  • body;

After the changes, we save everything. Next, extract the aws_lambda_deploy.zip and replace the whatsapp_messaging.py inside with the one we just created. Then we pack again. All we had to do was change the code, substituting our identification and contact details. And now we have the deployment package ready.

Step 3. We put our package on an AWS lambda function with triggers

So, the code is ready to run and send messages via WhatsApp. Want to know what other files are in our deployment package? This is the Twilio package and the rest of its dependencies. They will still be useful because we will be using the lambda function in the Python environment, and there is no Twilio package. The logical question is why not just pip install twilio to install? Because we don’t have a server here.

AWS Lambda is a server-side data processing facility where a piece of code is executed based on various AWS events and triggers according to user requests. Therefore, engaging a server (EC2 server instance in AWS) running 24/7 for our small task would be a waste of computing resources and finances. After all, here our lambda function will be executed every day for a short period of time at the moment of activation of this trigger. By itself, the lambda service is inexpensive and provides a million requests per month for free.

Sign in to https://aws.amazon.com

Click on Services -> Compute -> Lambda -> Сreate a function

 

Let’s name our function. We choose Python 3.6 as the best environment. We are not going to connect to other services in AWS, so we will stop at the standard permission option. Click on create function and enter your personal account.

In the function code block, we tell the lambda function handler what we want it to do: execute our python whatsapp_messaging file and the msg_mom_and_dad function inside that file every time the lambda function is called. Change the handler value as shown above. At the code entry point, select upload a .zip file, download the deployment package we created in step 2, and save. Our code is ready to run. Now you can check if the feature sends a message to the specified WhatsApp number. Click on test and check.

Our final step is to set the code to activate at a specific time each day.
To do this, click Add trigger -> CloudWatch Events in this window.

Here you need to create a new rule. For bajannya, you can give it to you, whether it be im’ya that description. As a type of rule, let’s set the schedule expression (viraz rozladu). We said an hour, victorious cron(). 30 1 means 1:30 am, UTC hour. Coming two, * *, victorious for the sign of the day of that month. Come two, ? *, — to designate the day of the month. We install * ta? for the recognition of the skin day, the month of that fate. For your own parameters in cron, you can tweak the table below as an example. If you want to see all the details, the cron guide will help you at aws_cron_docs. After you finish, change the checkbox to enable the Enable trigger (activate the trigger). Now press the Add button.

In the lambda function control panel, you can now see the CloudWatch Event attached to our lambda function. Scrolling down we can see the CloudWatch event fired to call our function.

That’s all! You can change the name of the Twilio Sandbox test environment to your own and even respond to responses from the Twilio dashboard.
Thus, we considered 2 fairly simple examples of how you can send messages using scripts, including spam. I also want to note that scammers collect e-mail addresses and phone numbers from all available sources. Among others, thematic forums, guest books, social networks, and other resources are especially popular, where such information is poorly protected or is completely in the owner’s profile in public access. Some databases are hacked by hackers and sold on the Darknet.

In addition, the collection of personal information can be carried out by a software method. There are special search bots – harvesters. They go through thousands of resources in an hour and carefully put all the received data into the database. It is also worth taking into account the usual selection. There are billions of mailboxes registered all over the world, which means that these addresses can be generated with the help of a specially written program. The same is true for phones. Viruses also help unscrupulous businessmen. Malicious code, as a rule, is worms, it can send itself through the address database. The information collected in this way is very valuable for spammers, because it contains only working data used by their master.

Some tips on how to protect yourself from spam (and dangerous scripts)

1. Don’t use your primary email address wherever you can. Create an alternate mailbox and leave it when asked at a store, hotel, etc.

2. When you are on a website where you need to enter your personal data for authorization, make sure that you are using the HTTPS protocol and that your connection is secure, if this is not the case, there is a fairly high risk of traffic substitution and/or the link address may be replaced and when you click on it, you can run a script in the background that will send your personal data to the attacker.

 

3. Suspicious email attachments and links from unidentified/unknown senders. Quite often we can receive a letter with an incomprehensible attachment or link, in no case should we open them.

 

4. You should also not open a link in messages on social networks from strangers.

5. Configure DKIM, DMARC and SPF. These are advanced mechanisms for protecting incoming and outgoing correspondence, which will increase the level of security and significantly reduce the amount of spam.

6. For advanced users: S/MIME certificate that will allow you to increase the level of trust in your mail to a high level and will allow you to protect your corporate-level mail from phishing. By setting up email signature certificates for all your employees, you can be sure that emails are coming from them.

All of the above recommendations are not exclusive methods of ensuring security. Always remember that there is no such thing as 100% security, and all measures only reduce the risks. Also, there is no single “magic” method, effective security is always complex solutions. With the development of technologies and methods of protection, the technologies of attacks on the user are also developing, so the most important advice for security is always a comprehensive approach, attention to the information received, changing passwords and making and checking backups.

I wish everyone safety in the network!

Other related articles
Automation and scriptsServices
Read more
Bash scripts
Discover the benefits of using the Bash command line interface over the GUI. Manage your computer's operating system efficiently with the Bash scripting language without the need for menus or windows.
330
Found an error?
If you find an error, take a screenshot and send it to the bot.