Saturday, November 15, 2008

Send Email/Spam through Command Prompt using telnet?

Introduction:-
The Email in which we can set any mail from: content is called spam.

Note:-actually if the mail is not properly created(parsed) for example email with not subject in that case server assume that it is spam therefore some time when you send mail from yahoo to gmail the mail goes to spam
.

It is to be noted here that we can not set mail from in our id therefore for that use telnet. in which we first make a connection with the server(if we want to send spam to person with gmail id then we should made connection with gmail smtp server) then give the detail as mentioned below:-

steps For sending spam/email using telnet:-

1) Firstly find out the smtp(simple mail transfer protocol) server for the network using which u want to send mail.

Note:-Q) how to find out stmp server of any network?

Ans:-using nslookup command as shown in the figure.





here in the figure what i have done is firstly i have typed nslookup command in cmd to find out the server address. next type "set type=mx" for finding mail exchange server and at last type the mail server from which u want to send mail for in my case i use "gmail.com" on entering it into your cmd after type=mx command you will get alot of address u can use any of them but in my suggestion choose toppest address and in figure the toppest address is alt1.gmail-smtp-in.l.google.com

2) Now after u have find out the smtp mail server type in cmd

telnet "mail server" 25

in my case mail server was alt1.gmail-smtp-in.l.google.com

3) Now u will be connected to the mail server, so now to begin, type in ehlo for esmtp(extended smtp) and helo for smtp type server in command window that appear after last step.

NOTE:- remember here to not mistake at there because here every thing that you type here will be counted so even backspace will be counted. so if you mistaken in here u have to leave it and type all thing again.

4) Now here you must type exactly what i say.
  • Type:- mail from: email id from where this mail is send from.
    eg. mail from:
  • Now type:- rcpt to: email id to whom this mail go to.
    eg. rcpt to:
  • Now type:- data
  • Type the message that you want to send.
  • Now at last type .(dot) after entering data
  • And that is it you have learned how send mail or spam using cmd.

NOTE:- it is important to note here that u can only send message (in most server) if you have static ip address or u can send message through the mail server that your isp has provided to you so contact your isp for free email id and stmp server.

You can see the video if you are uncomfortable reading



for sending mail online without loging into your account or going to cmd to any one u can use site http://fakesend.com/

Fake Email through Outlook









Your Ad Here

Saturday, November 1, 2008

Highlight Author Comment in Blogspot

This trick is to give a Highlight Author Comment . This will make the blog's owner comments looks different from the visitors comments. It's very usefull and interesting blogger hack tips. You can see the example in my blog. Here is what to do to make a "Highlight Author Comment" effect in Blogspot.


1. Login to blogger, then choose "Layout --> Edit HTML". Don't forget to backup your template first.
2. Check the "Expand Widget Templates" box.
3. Copy this script and put it before ]]></b:skin> or copy to your CSS area.

.comment-body-author {
background: #E6E6E6; /* Background color*/
color: #000; /* Text color*/
border-top: 1px dotted #223344;border-bottom: 1px dotted #223344;border-left: 1px dotted #223344;border-right: 1px dotted #223344;
margin:0;
padding:0 0 0 20px; /* Posotion*/
}


4. Then find this code:

<dl id='comments-block'>
<b:loop values='data:post.comments' var='comment'>
<dt class='comment-author' expr:id='"comment-" + data:comment.id'>
<a expr:name='"comment-" + data:comment.id'/>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
said...
</dt>

<b:if cond='data:comment.author == data:post.author'>
<dd class='comment-body-author'>
<p><data:comment.body/></p>
</dd>
<b:else/>


<dd class='comment-body'>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p><data:comment.body/></p>
</b:if>
</dd>

</b:if>

<dd class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='"#comment-" + data:comment.id' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</dd>
</b:loop>
</dl>


5. The red color text is the code that you have to add to your script. The position must be right.
6. And then save your template.

* You have to login into your blogger account before to give comments.