A spammer to send mass emails to teachers. (Education Purposes only!)

Overview

Securly-Extension-Spammer

A spammer to send mass emails to teachers. (Education Purposes only!)

Setup

Just go a securly blocked page(You can do this by going to a blocked website like https://discord.com) then press inspect element. On the element tab search for the paramatars that look like this

        $('#sendEmail').click(function(ev){
            // Disabled send button once clicked.
            $("#sendEmail").attr("disabled", true);
            var params={};
            params['site']= $('#permissionSite').val();
            params['teacherEmail']= $('#teacherEmail').val();
            params['reason']= $('#questionSelection').val();
            params['otherReason']= $('#otherReasonInfo').val();
            params['categories'] = "Games";
            params['keyword'] = "";
            params['blockedReason'] = "site";
            params['policy'] = "Base/Default Policy";
            params['requesterOU'] = "-";
            params['requesterSafeSecGroupName'] = "-";
            params['requester'] = "TeachersEmailGoesHere";
            params['fid'] = "TeachersEmailGoesHere";
            params['i2n'] = "";
            sendEmail(params);

Copy and paste this into the console

    function sendEmail(obj){
        $.post( "app/api/sendtwl",obj)
            .done(function( data ) {
                window.scroll(0,0);
                resetFormDetails();
                $("#mailSuccess").text(data.message);
                $("#mailSuccess").show();
                setTimeout(function(){
                    $("#mailSuccess").hide();
                }, 5000);
            })
            .fail(function(error){
                window.scroll(0,0);
                resetFormDetails();
                $("#mailSuccess").text(error.message);
                $("#mailSuccess").show();
                $("#mailSuccess").css('background','#fd9292');
                setTimeout(function(){
                    $("#mailSuccess").hide();
                    $("#mailSuccess").css('background','#28d9c3');
                }, 5000);
            });
    }

    function resetFormDetails(){
        $("#contactAdminForm")[0].reset();
        $("#sendEmail").attr("disabled", true);
        $('#otherReasonInfo').hide();
    }

Then copy the part of the code you found earlier and paste it into the console. It should look something like this

            var params={};
            params['site']= $('#permissionSite').val();
            params['teacherEmail']= $('#teacherEmail').val();
            params['reason']= $('#questionSelection').val();
            params['otherReason']= $('#otherReasonInfo').val();
            params['categories'] = "Games";
            params['keyword'] = "";
            params['blockedReason'] = "site";
            params['policy'] = "Base/Default Policy";
            params['requesterOU'] = "-";
            params['requesterSafeSecGroupName'] = "-";
            params['requester'] = "TeachersEmailGoesHere";
            params['fid'] = "TeachersEmailGoesHere";
            params['i2n'] = "";

Then type sendEmail(params); Go to the network tab inside inspect element and click the sendtwl scroll down to the form data and copy the emails, reason and all the other stuff Go into the python and code and replace the email with your schools admin email that you got from the network tab. Run the code and boom your done

Send email in Python conveniently for gmail using yagmail

yagmail -- Yet Another GMAIL/SMTP client For the asynchronous asyncio version, look here: https://github.com/kootenpv/aioyagmail The goal here is to m

Pascal van Kooten 2.4k Dec 31, 2022
Kanmail - An email client that functions like a kanban board, for Mac/Windows/Docker

Kanmail - An email client that functions like a kanban board, for Mac/Windows/Docker

Oxygem 1.2k Dec 31, 2022
Will iterate through a list of emails on an attached csv file and email all of them a message of your choice

Email_Bot Will iterate through a list of emails on an attached csv file and email all of them a message of your choice. Before using, make sure you al

J. Brandon Walker 1 Nov 30, 2021
Churn Emails Inbox - Churn Emails Inbox Using Python

Churn Emails Inbox In this project, I have used the Python programming langauge

2 Nov 13, 2022
Automated email sending application.

autoMail Automated email sending application. This application sends email to a user when added to database. Email message contains the temperature of

Bhat Owais 1 Feb 12, 2022
A python program capable of accessing passwords associated with emails through leaked databases.

passfind A python program capable of accessing passwords associated with emails through leaked databases. A python program capable of accessing passwo

6 Aug 14, 2022
Spam-bot - Simple email-spammer discord bot

📝 Functional [ ✔️ ] Premium system via .json [ ✔️ ] Spammer [ ✔️ ] Validater [ ✔️ ] Discord bot ❓ How to launch ➡️ 1) Make discord bot ➡️ 2) Paste to

1 Feb 18, 2022
Python library for sending emails.

Mail.py Python library for sending emails. Installation git clone https://github.com/SunPodder/Mail.py cd Mail.py python setup.py install Usage Imp

Sun 4 Nov 24, 2021
Dotfiles and some scripts for NeoMutt

Mutt dotfiles Robust Mutt configs with examples for the following account types: Generic IMAP/SMTP Google (Gmail/Gsuite etc) via IMAP/SMTP Microsoft O

CEUK 29 Jan 04, 2023
ok-mail-helper是一个基于imap/smtp协议邮件客户端,使用python3.x开发

ok-mail-helper ok-mail-helper是一个基于imap/smtp协议邮件客户端,使用python3.x开发,支持邮件接收并解析、邮件发送,用户可在自己的项目中直接引入、开箱即用,或者结合flask等web框架轻松做成http接口供前端调用、把邮箱管理集成到自己的系统中,亦可通过

xlvchao 1 Feb 08, 2022
An email generator code in python language

An email generator code in python language. I have done it in the simplest way possible and with no link to an SMTP server. Generating infinite emails until CTRL+C . It is a code that can be used in

Kelvin Ndungu Wanja 1 Jan 17, 2022
EmailAll - a powerful Email Collect tool

EmailAll A powerful Email Collect tool 0x1 介绍 😲 EmailAll is a powerful Email Co

473 Dec 22, 2022
Send Multiple Mail From List With Python

Send Multiple Mail From List With Python You can send multiple e-mail using HTML themes with Python. Here is the e-mail information to be sent. #The m

Mücahid Eker 1 Dec 23, 2021
Mailer is python3 script use for sending spear-phishing to target email...It was created by Spider Anongreyhat

Mailer Mailer is a python3 script. It's used for sending spear-phishing to target email...It was created by Spider Anongreyhat Screenshots Installatio

Spider Anongreyhat 31 Dec 05, 2022
ParaskinioTouristOffices - This program sends a message to various email adresses

ParaskinioTouristOffices This program sends a message to various email adresses.

Odysseas Psomaderis 2 Feb 11, 2022
This library is helpful when creating accounts, it has everything you need for this

AccountGeneratorHelper Library to facilitate accounts generation. Unofficial API for temp email services. Receive SMS from free services. Parsing and

Denis 52 Jan 07, 2023
An API to send emails through python3's smtplib module.

An API to send emails through python3's smtplib module. Just configure your SMTP server credentials and you are ready to send a lot of emails through API, designed to be used as a newsletter service.

Adnan Ahmad 15 Nov 24, 2022
A python script that helps you understand why your E-Mail ended up in Spam

decode-spam-headers.py Whether you are trying to understand why a specific e-mail ended up in SPAM/Junk for your daily Administrative duties or for yo

Mariusz Banach 316 Jan 05, 2023
A django package which act as a gateway to send and receive email with amazon SES.

django-email-gateway: Introduction: A Simple Django app to easily send emails, receive inbound emails from users with different email vendors like AWS

MicroPyramid 28 Nov 09, 2022
Envia-emails - A Python Program that creates emails

Envia-emails Os emails é algo muito importante e usado. Pensando nisso, eu criei

José Rodolfo 2 Mar 05, 2022