jjdd.xclub.tw Open in urlscan Pro
60.199.193.183  Public Scan

URL: http://jjdd.xclub.tw/space.php?uid=10175
Submission: On September 08 via manual from BG — Scanned from DE

Form analysis 1 forms found in the DOM

Name: loginPOST logging.php?action=login&loginsubmit=yes

<form method="post" name="login" id="loginform" class="gateform" onsubmit="pwmd5('password3');pwdclear = 1;" action="logging.php?action=login&amp;loginsubmit=yes">
  <input type="hidden" name="formhash" value="d2b20363">
  <table cellspacing="0" cellpadding="0" class="formtable">
    <tbody>
      <tr>
        <th>
          <select name="loginfield" id="loginfield">
            <option value="username">用户名</option>
            <option value="uid">UID</option>
            <option value="email">Email</option>
          </select>
        </th>
        <td><input type="text" name="username" autocomplete="off" size="36" class="txt" tabindex="1" value=""></td>
      </tr>
      <tr>
        <th><label for="password3">密码</label></th>
        <td><input type="password" id="password3" name="password" onkeypress="detectCapsLock(event, this)" size="36" class="txt" tabindex="2"></td>
      </tr>
      <tr>
        <th><label for="questionid">安全提问</label></th>
        <td>
          <select id="questionid" name="questionid" tabindex="3">
            <option value="0">安全提问</option>
            <option value="1">母亲的名字</option>
            <option value="2">爷爷的名字</option>
            <option value="3">父亲出生的城市</option>
            <option value="4">您其中一位老师的名字</option>
            <option value="5">您个人计算机的型号</option>
            <option value="6">您最喜欢的餐馆名称</option>
            <option value="7">驾驶执照的最后四位数字</option>
          </select>
        </td>
      </tr>
      <tr>
        <th><label for="answer">回答</label></th>
        <td><input type="text" name="answer" id="answer" autocomplete="off" size="36" class="txt" tabindex="4"></td>
      </tr>
      <tr>
        <th></th>
        <td>
          <div id="seccodelayer"><input name="seccodeverify" id="seccodeverify_profile" type="text" autocomplete="off" style="width:50px" value="验证码" class="txt" href="ajax.php?action=updateseccode" tabindex="1">
            <a href="javascript:;" onclick="updateseccode();doane(event);">换一个</a>
            <span id="checkseccodeverify_profile"><img src="images/common/none.gif" width="16" height="16"></span>
            <script type="text/javascript" reload="1">
              var profile_seccode_invalid = '验证码输入错误,请重新填写。';
              var profile_secanswer_invalid = '验证问答回答错误,请重新填写。';
              var lastseccode = lastsecanswer = secfocus = '';
              var secanswerObj = $('secanswer');
              var seccodeObj = $('seccodeverify_profile');
              var secstatus = {
                'secanswer': 0,
                'seccodeverify_profile': 0
              };
              if (secanswerObj) {
                secanswerObj.onclick = secanswerObj.onfocus = showIdentifying;
                secanswerObj.onblur = function(e) {
                  if (!secfocus) $('secanswer_menu').style.display = 'none';
                  checksecanswer();
                  doane(e);
                };
              }
              if (seccodeObj) {
                seccodeObj.onclick = seccodeObj.onfocus = showIdentifying;
                seccodeObj.onblur = function(e) {
                  if (!secfocus) $('seccodeverify_profile_menu').style.display = 'none';
                  checkseccode();
                  doane(e);
                };
              }

              function showIdentifying(e) {
                var obj = BROWSER.ie ? event.srcElement : e.target;
                if (!$(obj.id + '_menu')) {
                  obj.value = '';
                  ajaxmenu($(obj.id), 0, 1, 3, '12', function() {
                    secstatus[obj.id] = 1;
                    $(obj.id + '_menu').onmouseover = function() {
                      secfocus = 1;
                    }
                    $(obj.id + '_menu').onmouseout = function() {
                      secfocus = '';
                      $(obj.id).focus();
                    }
                  });
                } else if (secstatus[obj.id] == 1) {
                  $(obj.id + '_menu').style.display = '';
                }
                obj.unselectable = 'off';
                obj.focus();
                doane(e);
              }

              function updateseccode(op) {
                if (isUndefined(op)) {
                  ajaxget('ajax.php?action=updateseccode', seccodeObj.id + '_menu', 'ajaxwaitid', '', '', '$(seccodeObj.id + \'_menu\').style.display = \'\'');
                } else {
                  window.document.seccodeplayer.SetVariable("isPlay", "1");
                }
                seccodeObj.focus();
              }

              function checkseccode() {
                var seccodeverify = seccodeObj.value;
                if (seccodeverify == lastseccode) {
                  return;
                } else {
                  lastseccode = seccodeverify;
                }
                var cs = $('checkseccodeverify_profile');
                if (!(/[0-9A-Za-z]{4}/.test(seccodeverify))) {
                  warning(cs, profile_seccode_invalid);
                  return;
                }
                ajaxresponse('checkseccodeverify_profile', 'action=checkseccode&seccodeverify=' + (BROWSER.ie && document.charset == 'utf-8' ? encodeURIComponent(seccodeverify) : seccodeverify));
              }

              function checksecanswer() {
                var secanswer = secanswerObj.value;
                if (secanswer == lastsecanswer) {
                  return;
                } else {
                  lastsecanswer = secanswer;
                }
                ajaxresponse('checksecanswer', 'action=checksecanswer&secanswer=' + (BROWSER.ie && document.charset == 'utf-8' ? encodeURIComponent(secanswer) : secanswer));
              }

              function ajaxresponse(objname, data) {
                var x = new Ajax('XML', objname);
                x.get('ajax.php?inajax=1&' + data, function(s) {
                  var obj = $(objname);
                  if (s.substr(0, 7) == 'succeed') {
                    obj.style.display = '';
                    obj.innerHTML = '<img src="images/default/check_right.gif" width="16" height="16" />';
                    obj.className = "warning";
                  } else {
                    warning(obj, s);
                  }
                });
              }

              function warning(obj, msg) {
                if ((ton = obj.id.substr(5, obj.id.length)) != 'password2') {
                  $(ton).select();
                }
                obj.style.display = '';
                obj.innerHTML = '<img src="images/default/check_error.gif" width="16" height="16" />';
                obj.className = "warning";
              }
            </script>
          </div>
        </td>
      </tr>
      <tr>
        <th>&nbsp;</th>
        <td>
          <a class="right" href="register.php" onclick="showWindow('register', this.href);return false;">注册</a>
          <button class="submit" type="submit" name="loginsubmit" value="true" tabindex="6">登录</button>
          <input type="checkbox" class="checkbox" name="cookietime" id="cookietime" tabindex="5" value="2592000"> <label for="cookietime">记住我的登录状态</label>
        </td>
      </tr>
    </tbody>
  </table>
</form>

Text Content

繁體 | 簡體
Sclub交友聊天~加入聊天室當版主
(檢舉)


分享

新浪微博
QQ空间
人人网
腾讯微博

Facebook
Google+
Plurk

Twitter
Line




注册 登录

 * 论坛
 * 搜索
 * 重要设施
 * 导航
 * 帮助

 * brown
 * purple
 * green
 * red
 * orange
 * gray
 * pink
 * violet
 * blue
 * greyish-green

 * 私人消息 (0)
 * 公共消息 (0)
 * 论坛任务 (0)
 * 系统消息 (0)
 * 好友消息 (0)
 * 帖子消息 (0)
 * 应用通知 (0)
 * 应用邀请 (0)

传说动漫 » 提示信息


传说动漫 提示信息

--------------------------------------------------------------------------------

您无权进行当前操作,原因如下:

您所在的用户组(游客)无法进行此操作。

用户名 UID Email 密码 安全提问 安全提问 母亲的名字 爷爷的名字 父亲出生的城市 您其中一位老师的名字 您个人计算机的型号 您最喜欢的餐馆名称
驾驶执照的最后四位数字 回答
换一个
  注册 登录 记住我的登录状态

 * 社区银行
 * 每日签到
 * 红包中心

 * 道具商店
 * 积分中心
 * 社区银行
 * 每日签到
 * 勋章中心
 * 论坛任务
 * 红包中心





传说动漫 |联系我们 |WAP

GMT+8, 2023-9-8 12:45.

Powered by Discuz! 7.2

© 2001-2009 Comsenz Inc.