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

You might also like...
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

A script based on an article I wrote on decluttering emails.

Decluttering_Email A script based on an article I wrote on decluttering emails. What does this program do? This program is a python script that sends

Mailrise is an SMTP server that converts the emails it receives into Apprise notifications
Mailrise is an SMTP server that converts the emails it receives into Apprise notifications

Mailrise is an SMTP server that converts the emails it receives into Apprise notifications. The intended use case is as an email relay for a home lab or network. By accepting ordinary email, Mailrise enables Linux servers, Internet of Things devices, surveillance systems, and outdated software to gain access to the full suite of 60+ notification services supported by Apprise, from Matrix to Nextcloud to your desktop or mobile device.

Heimdall watchtower automatically sends you emails to notify you of the latest progress of your deep learning programs.
Heimdall watchtower automatically sends you emails to notify you of the latest progress of your deep learning programs.

This software automatically sends you emails to notify you of the latest progress of your deep learning programs.

Use Django admin to manage drip campaign emails using querysets on Django's User model.
Use Django admin to manage drip campaign emails using querysets on Django's User model.

Django Drip Drip campaigns are pre-written sets of emails sent to customers or prospects over time. Django Drips lets you use the admin to manage drip

PGP encrypted / multipart templated emails for Django

Created by Stephen McDonald Introduction django-email-extras is a Django reusable app providing the ability to send PGP encrypted and multipart emails

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

Collection of emails sent from the Hungarian gov and Viktor Orbán to the citizens of Hungary

Public list of Hungary and Viktor Orbán's emails since March 2021 Collection of emails sent from the Hungarian government and Viktor Orbán to the citi

A python program capable of accessing passwords associated with emails through leaked databases.
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

Owner
null
Churn Emails Inbox - Churn Emails Inbox Using Python

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

null 2 Nov 13, 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 5, 2022
Send Emails through the terminal , fast and secure

Send Emails through the terminal , fast and secure

null 11 Aug 7, 2022
Django module to easily send emails/sms/tts/push using django templates stored on database and managed through the Django Admin

Django-Db-Mailer Documentation available at Read the Docs. What's that Django module to easily send emails/push/sms/tts using django templates stored

LPgenerator 250 Dec 21, 2022
Django module to easily send templated emails using django templates, or using a transactional mail provider (mailchimp, silverpop, etc.)

Django-Templated-Email Info: A Django oriented templated email sending class Author: Bradley Whittington (http://github.com/bradwhittington, http://tw

Vinta Software 659 Dec 27, 2022
Convert emails without attachments to pdf and send as email

Email to PDF to email This script will check an imap folder for unread emails. Any unread email that does not have an attachment will be converted to

Robert Luke 21 Nov 22, 2022
Bulk send personalized emails using a .csv file and Gmail API (via EZGmail)

GSender Bulk send personalized emails using a .csv file and Gmail API (via EZGmail). Installation Install requirements.txt. Follow the EZGmail Install

null 1 Nov 23, 2021
Pysces (read: Pisces) is a program to help you send emails with an user-customizable time-based scheduling.

Pysces (Python Scheduled-Custom-Email-Sender) Pysces (read: Pisces) is a program to help you send emails with an user-customizable time-based email se

Peter 1 Jun 16, 2022
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 CLI client for sending text emails. (Currently only gmail supported)

emailCLI A CLI client for sending text emails. (Currently only gmail supported)

Amethist 3 Dec 17, 2021