JMS基础之--伪装邮件服务器发邮件(无需用户名和密码)

一.获取sina.com的邮件服务器非验证地址
1.打开一个command窗口
C:\Documents and Settings\meiyoudao>[color=red]nslookup[/color]
Default Server: ns2.hzcnc.com
Address: 218.108.248.228

2.设置要查询的类型为MX(邮件服务器记录)
> set type=mx

3.查询sinaMX服务器地址
> [color=red]sina.com[/color]
Server: ns2.hzcnc.com
Address: 218.108.248.228

Non-authoritative answer:
sina.com MX preference = 10, mail exchanger = [color=blue]freemx1.sinamail.sina.com.cn[/color]
sina.com MX preference = 10, mail exchanger = [color=blue]freemx2.sinamail.sina.com.cn[/color]
sina.com MX preference = 10, mail exchanger = [color=blue]freemx3.sinamail.sina.com.cn
[/color]
sina.com nameserver = ns2.sina.com.cn
sina.com nameserver = ns3.sina.com.cn
sina.com nameserver = ns1.sina.com.cn

4.另打开一个command窗口连接到sina的MX服务器
C:\Documents and Settings\meiyoudao>[color=red]telnet freemx1.sinamail.sina.com.cn 25[/color]
220 irxd5-173.sinamail.sina.com.cn ESMTP

5.随意使用一个外网ip地址伪装成邮件
[color=red]ehlo 58.100.61.126[/color]
250-irxd5-173.sinamail.sina.com.cn
250-8BITMIME
250 SIZE 83886080

6.输入发件地址(任意)
[color=red]mail from: [/color]
250 sender ok

如果不出现OK字样的话,说明你的这个地址263被认为是垃圾邮件地址,禁止你发送了.你可以换一个.比如sohu, sina, hotmail 等等.

7.输入收件方(邮箱为你自己正确的地址)
[color=red]rcpt to: [/color]
250 recipient ok

8.进入编辑内容
[color=red]data[/color]
354 go ahead

9.编写内容(subject: 后面跟着的是你的邮件标题, 最后以一个单独的点 表示结束邮件内容)
[color=red]subject:fdafdfdsfdsfjdskfdskfjs
fdsafas
fd
af
dsfs
adf
asf
.[/color]
250 ok: Message 91996872 accepted
10.最后是退出,并去您的邮箱查看,验证结果.有可能被认为是垃圾邮件
[color=red]quit[/color]
221 irxd5-174.sinamail.sina.com.cn

你可能感兴趣的:(JMS基础之--伪装邮件服务器发邮件(无需用户名和密码))