biu.me

Tag Archives: 邮箱

通过联通wo邮箱脚本漏洞注册更好的别名

前几天因为要试用Blackberry 9700,特地买了一个联通的3G卡,邮件之前都是转发到139邮箱,现在改成转发到wo邮箱了。 注册好wo邮箱以后发现别名注册真奇怪,我的别名居然提示已被注册。但是在邮箱首页用我的别名+任意密码登陆却提示无此用户,看来联通在忽悠人。 查看设置别名处的代码: function addAlias(){ var alias = $("#alias")[0].value; alias = trim(alias); var isValid = isValidTrueName(alias); if($("#alias").attr("disabled") == true) return; if(!isValid){ //alert(‘别名不合法,请重新输入’); parent.popAlert("提示", "别名不合法,请重新输入",true,function(){ $("#alias")[0].focus(); }); return; } if(alias.length < 6){ //alert(‘此别名已被注册’); parent.popAlert("提示", "此别名已被注册,请改注其它别名",true,function(){ $("#alias")[0].focus(); }); return; } $.ajax({ type: "post", url: "nicknameopt.html", data: { command:’update’, alias:alias }, success: function(data){ if(data==’UPDATE_OK’){ //alert(‘别名添加成功’); parent.popAlert("提示", "别名添加成功"); [...]