2015.8.12
2015.8.12
6
Exit.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
require(dirname(__FILE__).'/include/config.inc.php');
|
||||
session_start();
|
||||
$_SESSION["user"] = "";
|
||||
echo "<script langugae='javascript'>window.top.location.href='/';</script>";
|
||||
?>
|
||||
11
Get.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
require(dirname(__FILE__).'/include/config.inc.php');
|
||||
$ip=$_SERVER["REMOTE_ADDR"];
|
||||
$fs = $db->fetch_assoc("select * from ##_task_list where user = '{$u}' and status=1");
|
||||
if ($fs['task']){
|
||||
echo file_get_contents(dirname(__FILE__)."/plus/{$fs['task']}.py");
|
||||
echo ':|:'.$fs['url'].':|:'.$fs['report_id'];
|
||||
$addtime=time();
|
||||
$db->fetch_assoc1("update ##_task_list set status=0,exec_ip='{$ip}',exec_time=$addtime where id = {$fs['id']}");
|
||||
}
|
||||
?>
|
||||
18
Get_exp.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
require(dirname(__FILE__).'/include/config.inc.php');
|
||||
$fs = $db->query("select dir from ##_exploit where dir Like '%{$exp}%'");
|
||||
$rows = mysql_num_rows($fs);
|
||||
if ($rows>0 and $exp){
|
||||
for($i = 0; $i < $rows; $i++)
|
||||
{
|
||||
$ss = $db->fetch_row($fs);
|
||||
$exp_list .=$ss[0]."|exp|";
|
||||
}
|
||||
print $exp_list;
|
||||
}
|
||||
if($x){
|
||||
$fss = $db->fetch_assoc("select dir from ##_exploit where dir = '{$x}'");
|
||||
echo file_get_contents(dirname(__FILE__)."/plus/{$fss["dir"]}.py");
|
||||
//exit();
|
||||
}
|
||||
?>
|
||||
10
README.md
@@ -2,3 +2,13 @@ Bugscan
|
||||
=======
|
||||
|
||||
Bugscan Web Vulnerability Scaner Online System
|
||||
|
||||
核心使用江湖一刀的mst框架,话说那框架真的很赞。
|
||||
|
||||
之后也反编译过bugscan的部分代码,也很赞。
|
||||
|
||||
这东西14年已经完成了demo,一直没时间继续完善,代码也写得很low T_T 。
|
||||
|
||||
By - Mr.x
|
||||
|
||||
2015.8.12
|
||||
|
||||
20
data/cms.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
/plus/img/face/1.gif::89fe2f5e0467ef10f066272d07e2de57::dede
|
||||
/include/code/datalist.utf-8.inc::b3f27da60b6302fcfeeb56105716ca7d::dede
|
||||
/include/js/jquery/ui.core.js::ec7d2e180b647f8ee80fd7370f340a0d::dede
|
||||
/include/js/jquery/jquery.js::518215c646beff570b8d9849429139d4::dede
|
||||
/houtai/img/admin_top_logo.gif::1e78c168da8271af6538b00e4baf53d5::dede
|
||||
/favicon.ico::21e51cee51c833c76dec691155d0d8a4::dede
|
||||
/favicon.ico::21e51cee51c833c76dec691155d0d8a4::dede
|
||||
/data/admin/allowurl.txt::dda6f3b278f65bd77ac556bf16166a0c::dede
|
||||
/favicon.ico::93cc5f5b4c2d22841e3f5c952db5116a::dede
|
||||
/member/images/member.gif::9e41920b6e9a04a55e886589ac12146a::dede
|
||||
/member/templets/images/login_logo.gif::15e2e455b176f7b1d49e5ca3a4f79f5d::dede
|
||||
/plus/img/wbg.gif::6e8b9b8af42923fa0ecf89c0054e4091::dede
|
||||
/js/close.gif::106f4f32d0f4fea144b2848b4ee2fb79::aspcms
|
||||
/js/close.gif::1f96a4dc1fd3761cbbc63160f4663bf6::aspcms
|
||||
/images/qq/qqkf2/Kf_bg03_03.gif::86e0554ab2d9f46bab7852d71f2eecd3::aspcms
|
||||
/images/qq/qqkf2/Kf_bg03_03.gif::fd5895d46be13038be5dffd88539cb45::aspcms
|
||||
/js/date/date.html::06eb7c5ad8f42e12f93e74a1dc774e42::Gv32cms
|
||||
/js/date/images/bg.gif::e8c26ca976ddfb1bf8a789b0dc25ac86::Gv32cms
|
||||
/base/templates/images/2.png::fa2b19f44a5084d560d707da20846575::phpweb
|
||||
/base/templates/images/2.png::b34179667ebcbe98b2be099a1391b5b0::phpweb
|
||||
21
exp_list.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
require(dirname(__FILE__).'/include/config.inc.php');
|
||||
$tablename = "##_report";
|
||||
if ($_SESSION["user"])
|
||||
{
|
||||
$query = $db->query("select * from ##_exploit");
|
||||
$rows = mysql_num_rows($query);
|
||||
$i=1;
|
||||
while ($fs = $db->fetch_array($query))
|
||||
{
|
||||
$exp_name = $fs["title"];
|
||||
$exp_dir = $fs["dir"];
|
||||
$exp_content = $fs["content"];
|
||||
$loopstr .= "<tr>
|
||||
<td align=center>{$i}</td>
|
||||
<td> <font size=\"+1\">{$exp_name}</font></td>";
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
include('html/exp_list.html');
|
||||
?>
|
||||
34
html/exp_list.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>网站漏洞扫描系统</title>
|
||||
</head>
|
||||
<style>
|
||||
a{color:#0000FF;text-decoration:none}
|
||||
</style>
|
||||
<body>
|
||||
<div align="justify">
|
||||
<?php if ($_SESSION["user"]){$uu=$_SESSION["user"];}else{$uu='Anonymous';}?>
|
||||
<font size="+1"><?php echo ' '.$uu.'</font> | '.$_SERVER["REMOTE_ADDR"];?> | <?php if ($_SESSION["user"]){echo '<a href="index.php">加添任务</a> | <a href="task.php">查看任务</a> | <a href="exp_list.php">漏洞列表</a> | <a href="exit.php">退出</a>';}else{echo '<a href="login.php">登录</a>';}?></div>
|
||||
|
||||
<div align="justify"><hr width="100%" color="#FF0000" size="1"></div>
|
||||
<div align="center"><font color=green>一个简洁实用的在线Web安全扫描平台!</font></div>
|
||||
<div align="justify"><hr width="100%" color="#FF0000" size="1"></div>
|
||||
|
||||
<div style="height:30px;"></div>
|
||||
|
||||
<div align="center">
|
||||
<table width="50%" border="1" bordercolor="#cccccc" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<th>编号</th>
|
||||
<th>漏洞名称 (共 <font color="#FF0000"><?php echo $rows;?></font> 个)</th>
|
||||
</tr>
|
||||
<tbody class='c'>
|
||||
<?php echo $loopstr;?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
81
html/images/Date.js
Normal file
@@ -0,0 +1,81 @@
|
||||
var sWeek = new Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
|
||||
var dNow = new Date();
|
||||
var CalendarData=new Array(100);
|
||||
var madd=new Array(12);
|
||||
var tgString="甲乙丙丁戊己庚辛壬癸";
|
||||
var dzString="子丑寅卯辰巳午未申酉戌亥";
|
||||
var numString="一二三四五六七八九十";
|
||||
var monString="正二三四五六七八九十冬腊";
|
||||
var weekString="日一二三四五六";
|
||||
var sx="鼠牛虎兔龙蛇马羊猴鸡狗猪";
|
||||
var cYear,cMonth,cDay,TheDate;
|
||||
CalendarData = new Array(
|
||||
0xA4B,0x5164B,0x6A5,0x6D4,0x415B5,0x2B6,0x957,0x2092F,0x497,0x60C96,
|
||||
0xD4A,0xEA5,0x50DA9,0x5AD,0x2B6,0x3126E, 0x92E,0x7192D,0xC95,0xD4A,
|
||||
0x61B4A,0xB55,0x56A,0x4155B, 0x25D,0x92D,0x2192B,0xA95,0x71695,0x6CA,
|
||||
0xB55,0x50AB5,0x4DA,0xA5B,0x30A57,0x52B,0x8152A,0xE95,0x6AA,0x615AA,
|
||||
0xAB5,0x4B6,0x414AE,0xA57,0x526,0x31D26,0xD95,0x70B55,0x56A,0x96D,
|
||||
0x5095D,0x4AD,0xA4D,0x41A4D,0xD25,0x81AA5, 0xB54,0xB6A,0x612DA,0x95B,
|
||||
0x49B,0x41497,0xA4B,0xA164B, 0x6A5,0x6D4,0x615B4,0xAB6,0x957,0x5092F,
|
||||
0x497,0x64B, 0x30D4A,0xEA5,0x80D65,0x5AC,0xAB6,0x5126D,0x92E,0xC96,
|
||||
0x41A95,0xD4A,0xDA5,0x20B55,0x56A,0x7155B,0x25D,0x92D,0x5192B,0xA95,
|
||||
0xB4A,0x416AA,0xAD5,0x90AB5,0x4BA,0xA5B, 0x60A57,0x52B,0xA93,0x40E95);
|
||||
madd[0]=0;madd[1]=31;madd[2]=59;madd[3]=90;
|
||||
madd[4]=120;madd[5]=151;madd[6]=181;madd[7]=212;
|
||||
madd[8]=243;madd[9]=273;madd[10]=304;madd[11]=334;
|
||||
function GetBit(m,n) { return (m>>n)&1; }
|
||||
function e2c() {
|
||||
TheDate= (arguments.length!=3) ? new Date() : new Date(arguments[0],arguments[1],arguments[2]);
|
||||
var total,m,n,k;
|
||||
var isEnd=false;
|
||||
var tmp=TheDate.getFullYear();
|
||||
total=(tmp-1921)*365+Math.floor((tmp-1921)/4)+madd[TheDate.getMonth()]+TheDate.getDate()-38; if (TheDate.getYear()%4==0&&TheDate.getMonth()>1) { total++;} for(m=0;;m++) { k=(CalendarData[m] <0xfff)?11:12; for(n=k;n>=0;n--) { if(total <=29+GetBit(CalendarData[m],n)) { isEnd=true; break; } total=total-29-GetBit(CalendarData[m],n); } if(isEnd) break; } cYear=1921 + m; cMonth=k-n+1; cDay=total; if(k==12) { if(cMonth==Math.floor(CalendarData[m]/0x10000)+1) { cMonth=1-cMonth; } if(cMonth>Math.floor(CalendarData[m]/0x10000)+1) { cMonth--; } }}
|
||||
function GetcDateString(){ var tmp=""; tmp+=tgString.charAt((cYear-4)%10);
|
||||
tmp+=dzString.charAt((cYear-4)%12);
|
||||
tmp+="年 ";
|
||||
if(cMonth <1) { tmp+="(闰)"; tmp+=monString.charAt(-cMonth-1); } else {tmp+=monString.charAt(cMonth-1);} tmp+="月"; tmp+=(cDay <11)?"初":((cDay <20)?"十":((cDay <30)?"廿":"三十"));
|
||||
if (cDay%10!=0 ||cDay==10) { tmp+=numString.charAt((cDay-1)%10); } return tmp;}
|
||||
function GetLunarDay(solarYear,solarMonth,solarDay) {
|
||||
if (solarYear <1921 || solarYear>2020) { return "";
|
||||
} else { solarMonth = (parseInt(solarMonth)>0) ? (solarMonth-1) : 11; e2c(solarYear,solarMonth,solarDay); return GetcDateString(); }}
|
||||
var D=new Date();
|
||||
var yy=D.getFullYear();
|
||||
var mm=D.getMonth()+1;
|
||||
var dd=D.getDate();
|
||||
var ww=D.getDay();
|
||||
var ss=parseInt(D.getTime() / 1000);
|
||||
function getFullYear(d){// 修正firefox下year错误
|
||||
yr=d.getYear();if(yr <1000)
|
||||
yr+=1900;return yr;}
|
||||
|
||||
function RunGLNL() {
|
||||
timeString = new Date().toLocaleTimeString();
|
||||
var sValue = getFullYear(dNow)+"年"+(dNow.getMonth()+1)+"月"+dNow.getDate()+"日"+" "+timeString+
|
||||
" "+sWeek[dNow.getDay()]+" ";
|
||||
sValue+=GetLunarDay(yy,mm,dd);
|
||||
var svalue1=getFullYear(dNow)+"年"+(dNow.getMonth()+1)+"月"+dNow.getDate()+"日";
|
||||
var svalue2=timeString;
|
||||
var svalue3=GetLunarDay(yy,mm,dd);
|
||||
var sx2=sx.substr(dzString.indexOf(svalue3.substr(1,1)),1);
|
||||
var svalue33=svalue3.substr(0,3)
|
||||
var svalue333=svalue33.substr(0,2)+"("+sx2+")"+svalue33.substr(2,1);
|
||||
var sx22=""+svalue3.substr(4,6);
|
||||
document.write("今天是:"+svalue1+" "+sWeek[dNow.getDay()]+" 农历"+svalue333+" "+sx22+"");
|
||||
};
|
||||
function HomeRunGLNL(val) {
|
||||
timeString = new Date().toLocaleTimeString();
|
||||
var sValue = getFullYear(dNow)+"年"+(dNow.getMonth()+1)+"月"+dNow.getDate()+"日"+" "+timeString+
|
||||
" "+sWeek[dNow.getDay()]+" ";
|
||||
sValue+=GetLunarDay(yy,mm,dd);
|
||||
var svalue1=getFullYear(dNow)+"年"+(dNow.getMonth()+1)+"月"+dNow.getDate()+"日";
|
||||
var svalue2=timeString;
|
||||
var svalue3=GetLunarDay(yy,mm,dd);
|
||||
var sx2=sx.substr(dzString.indexOf(svalue3.substr(1,1)),1);
|
||||
var svalue33=svalue3.substr(0,3)
|
||||
var svalue333=svalue33.substr(0,2)+"("+sx2+")"+svalue33.substr(2,1);
|
||||
var sx22=""+svalue3.substr(4,6);
|
||||
if(val==0)
|
||||
document.write (svalue1+"<br>农历"+sx22+"");
|
||||
else
|
||||
document.write (svalue1+" 农历"+sx22+"");
|
||||
};
|
||||
BIN
html/images/MenuBg.jpg
Normal file
|
After Width: | Height: | Size: 896 B |
BIN
html/images/Thumbs.db
Normal file
BIN
html/images/bg.png
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
BIN
html/images/bottom.jpg
Normal file
|
After Width: | Height: | Size: 388 B |
BIN
html/images/bottombg.jpg
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
180
html/images/css.css
Normal file
@@ -0,0 +1,180 @@
|
||||
@charset "utf-8";
|
||||
html,body{margin: 0;padding: 0;border: 0;font-size: 100%;}
|
||||
*{margin: 0;padding: 0;list-style: none;}
|
||||
body{padding:0px; margin:0px;font-size:12px;line-height: 22px;font-family:"宋体", Tahoma, Helvetica, Arial, sans-serif; color:#666666; background:#FFF}
|
||||
form,div,ul,li,p,h1,h2,h3,h4,h5,h6,table,th,td,p{ padding:0px; margin:0px;}
|
||||
table {padding:0px; margin:0px;border-collapse: collapse;border-spacing:0;}
|
||||
input{font-size:12px; line-height: 16px; color:#666}select{font-size:12px; line-height: 16px}
|
||||
input,label { vertical-align:middle;}
|
||||
img{border: none;}
|
||||
ul,li{list-style-type: none}
|
||||
a{font-size: 12px;color: #0266a2;text-decoration: none; }
|
||||
a:hover{text-decoration:none}
|
||||
s ,em{font-style:normal; text-decoration:none}
|
||||
.w980{width:980px; margin:0 auto;}
|
||||
.mt10{margin-top:10px}
|
||||
.ml10{margin-left:10px}
|
||||
.clear{clear:both}
|
||||
.floatright{float:right; padding:0 10px}
|
||||
.red{color:#F00}
|
||||
.f000{color:#000}
|
||||
.yahei , yahei a{font-family:"Microsoft YaHei",微软雅黑,"Microsoft JhengHei",华文细黑,STHeiti,MingLiu}
|
||||
.submit{width:108px; height:42px; line-height:42px; overflow:hidden; text-align:center; border:none; font-size:14px; color:#FFF; font-weight:bold; cursor:pointer}
|
||||
input.error{background:#FFF; border:1px solid #ff999a}
|
||||
label.error{padding-left:20px; color:#F00; display:block; background:url(error.gif) no-repeat 0px center;}
|
||||
label.success{background:url(ok.gif) no-repeat 0px center}
|
||||
|
||||
.page{text-align:center; overflow:hidden; border:none; margin:5px 0; float:right; clear:both}
|
||||
.page ul li{float:left; border:1px solid #CCC; margin-left:10px; line-height:20px}
|
||||
.page ul li a{display:block;padding:0px 8px; }
|
||||
.page ul li a:hover{display:block;padding:0px 8px; background:#f47c02; color:#FFF; text-decoration:none}
|
||||
.page .selected{background:#f47c02}
|
||||
.page .selected a{color:#FFF;}
|
||||
|
||||
.submit , .path span , .SearchBotton , .pubsubmit {background:url(bg.png) no-repeat}
|
||||
.SearchBotton{width:77px; height:25px; text-align:center; line-height:25px; border:none; color:#FFF; font-weight:bold;cursor:pointer; background-position:-243px 0}
|
||||
.pubsubmit{width:56px; height:25px; text-align:center; line-height:25px; border:none; color:#FFF; cursor:pointer; background-position:-243px -26px}
|
||||
.reset{background-position:-300px -26px}
|
||||
.txt{border:1px solid #CCC; height:22px; line-height:22px; overflow:hidden; padding-left:5px}
|
||||
.textarea{border:1px solid #CCC; height:120px; width:350px}
|
||||
.loginmain{width:680px; margin:0 auto}
|
||||
.loginmain .logo{margin-bottom:40px}
|
||||
.loginmain .table{background:#FFF; height:334px; overflow:hidden}
|
||||
.loginmain .table .left{width:368px; float:left; padding-left:50px}
|
||||
.loginmain .table .right{width:257px; float:left; margin-right:5px}
|
||||
.loginmain .t1{font-size:16px; color:#304b65; font-weight:bold; margin-top:50px;}
|
||||
.loginmain .t2 ul li{margin-top:15px; height:33px; line-height:28px; overflow:hidden}
|
||||
.loginmain .t2 ul li span{float:left}
|
||||
.loginmain .t2 .rem{margin-left:10px}
|
||||
.loginmain .t2 .input{border:1px solid #bac7d2; width:180px; height:28px; background:#ecf5fa; font-size:14px; line-height:28px; padding-left:5px}
|
||||
.loginmain . {text-align:center; margin-top:10px; color:#FFF;}
|
||||
|
||||
.topindex{height:66px; overflow:hidden; background:url(topbg.jpg) repeat-x}
|
||||
.logoleft{height:26px; overflow:hidden; padding-left:20px; padding-top:15px; width:400px; float:left}
|
||||
.logoright{width:560px; float:right; color:#FFF; text-align:right; padding-right:10px;}
|
||||
.logoright a{color:#FFF}
|
||||
.logorighttop{background:url(toprightbg.png) no-repeat right 0; width:320px; height:23px; line-height:23px; float:right}
|
||||
.logorighttop ul{margin-left:60px}
|
||||
.logorighttop ul li{float:left; width:75px; text-align:center}
|
||||
.logorighttop ul li a{color:#FFF;}
|
||||
.logorighttop ul li a:hover{color:#ff4800}
|
||||
.logorightbottom{padding-top:10px; clear:both; color:#ceeaf8}
|
||||
.bigmenu{background:url(MenuBg.jpg) no-repeat; height:33px; line-height:33px; overflow:hidden; padding-left:30px; cursor:pointer; vertical-align:baseline; color:#000; color:#FFF; margin-left:5px; font-size:14px; font-weight:bold; position:relative}
|
||||
.bigmenu s{position:absolute; right:20px; top:10px; display:block; width:10px; height:10px}
|
||||
.smallmenu ul{border:1px solid #cbcbcb; border-bottom:none; border-top:none; background:#FFF; width:217px; margin-left:5px;}
|
||||
.smallmenu ul li{border-bottom:1px solid #eaeaea; position:relative; height:30px; line-height:30px; overflow:hidden}
|
||||
.smallmenu s{background:url(smallmenus.gif) no-repeat; width:4px; height:7px; position:absolute; top:12px; right:10px;}
|
||||
.smallmenu ul li a{height:30px; line-height:30px; overflow:hidden; padding-left:36px; display:block}
|
||||
.smallmenu ul li a:hover{background:#ebebeb}
|
||||
.mindex{background:url(bottom.jpg) repeat-x; color:#FFF}
|
||||
.menubottom{overflow:hidden; background:url(menubottom.jpg) no-repeat; height:11px; margin-left:5px}
|
||||
.menusplit{height:5px; overflow:hidden}
|
||||
|
||||
.main{margin:10px; height:auto}
|
||||
.path{background:#347BAF; height:60px; color:#fff; overflow:hidden; font-size:16px; font-weight:bold; line-height:60px; padding-left:20px; position:relative}
|
||||
.path span{display:block; width:133px; height:38px; line-height:38px; overflow:hidden; background-position:-109px 0; position:absolute; right:20px; top:11px;text-indent:50px}
|
||||
.path span a{font-size:14px; color:#FFF; font-weight:bold; display:block}
|
||||
.search{margin-top:10px;}
|
||||
.Searchform{padding-bottom:10px}
|
||||
.tableBorder tr:hover td{ /*background-color:#FBFBF4; */background-color:#f4f4f4;}
|
||||
.tableBorder td , .tableBorder th{height:30px; line-height:180%; overflow:hidden; padding:0 10px; color:#666666}
|
||||
.tableBorder td a{color:#00F}
|
||||
.tableBorder td a:hover{color:#ff0000}
|
||||
.tableBorder th{text-align:left; background:#ebeef3; color:#666666; font-weight:bold}
|
||||
|
||||
.lzlefttd{background:#f9f9f9; text-align:right; font-size:12px}
|
||||
.listbt{border:1px solid #c3d8ed; border-bottom:none; height:30px; line-height:30px; font-weight:bold; background:#f9f9f9; text-indent:20px}
|
||||
.bqx{border-bottom:1px dashed #CCC; overflow:auto; padding-bottom:10px}
|
||||
.sqx{margin-left:30px}
|
||||
.eqx{height:25px; line-height:25px; overflow:hidden; padding-left:20px;}
|
||||
|
||||
.function{height:27px; line-height:27px; overflow:hidden;border-top:none; text-indent:20px;background:#eef7fe; border:1px solid #c3d8ed; margin-top:10px}
|
||||
.function ul li{float:left;}
|
||||
.function .add{background:url(add.gif) no-repeat left 5px}
|
||||
.function .CheckAll{background:url(checkall.gif) no-repeat left 5px}
|
||||
.function .ReverseCheck{background:url(uncheck.gif) no-repeat left 5px}
|
||||
.function .PassCheck{background:url(PassCheck.gif) no-repeat left 5px}
|
||||
.function .NotCheck{background:url(NotCheck.gif) no-repeat left 5px}
|
||||
.function .DelCheck{background:url(delete.gif) no-repeat left 5px}
|
||||
.function a:hover{color:#ff4800}
|
||||
.ejnav{padding-left:20px; color:#00F}
|
||||
|
||||
.wel{border:1px solid #bbbcc6; background:#f6f7f9; overflow:auto}
|
||||
.wel .left{float:left; border-right:1px solid #d9dde8}
|
||||
.wel .right{float:left; border-left:1px solid #fff}
|
||||
.wel .title{height:35px; background:#ebeef4; margin-top:11px; line-height:35px; overflow:hidden}
|
||||
.wel .title s{width:80px; display:block; background:#d0d7e9; text-align:center; color:#204695; font-size:14px; font-weight:bold; margin-left:20px}
|
||||
.wel .title span a{color:#929191}
|
||||
.wel .title span a:hover{color:#ff4800}
|
||||
.ginfo{padding:10px 0}
|
||||
.ginfo ul li{height:30px; line-height:30px; background:url(welliico.jpg) no-repeat 10px 15px; padding:0 20px; clear:both}
|
||||
.ginfo ul li a{color:#6a6a6a; font-size:14px}
|
||||
.ginfo ul li a:hover{color:#ff4800}
|
||||
|
||||
.file td a{color:#000}
|
||||
.file td a:hover{color:#ff4800}
|
||||
.showtitle{text-align:center; padding:20px 0; font-size:16px; font-weight:bold;}
|
||||
.showother{height:30px; background:#eae9e9; margin:0 20px; line-height:30px; overflow:hidden; border-top:1px dashed #CCC; border-bottom:1px dashed #CCC; text-align:center}
|
||||
.showinfo{margin:20px; font-size:14px; line-height:210%}
|
||||
|
||||
.overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:998;width:100%;height:100%;background:#000;}
|
||||
.showbox{position:fixed;top:0;left:0;z-index:9999; border:1px solid #92c0da; width:180px; height:60px; background:#FFF; text-align:center; line-height:60px}
|
||||
.showbox img{vertical-align:middle}
|
||||
|
||||
.price{font-family:Arial, Helvetica, sans-serif; color:#ff4800; font-size:14px; font-weight:bold}
|
||||
.price1{font-family:Arial, Helvetica, sans-serif; color:#ff0000; font-size:16px; font-weight:bold}
|
||||
|
||||
.maintip{font-size:14px; font-weight:bold; margin-top:20px}
|
||||
.userleveltip{margin-top:20px}
|
||||
.userleveltip td , .userleveltip th{height:30px; line-height:30px; overflow:hidden; text-align:center}
|
||||
.userleveltip th{background:#e5e3e3}
|
||||
|
||||
/*
|
||||
.loginmain1{background:url(loginmain.jpg) repeat-x;}
|
||||
*/
|
||||
.loginmain1 .logininput{height:470px; background:url(loginbg.jpg) no-repeat; position:relative}
|
||||
.loginmain1 .logininput s{position:absolute}
|
||||
.loginmain1 .inp{height:28px; line-height:28px; border:1px solid #f6f7f7; width:236px; overflow:hidden}
|
||||
.loginmain1 .logininput .s1{right:360px; top:200px}
|
||||
.loginmain1 .logininput .s2{right:360px; top:270px}
|
||||
.loginmain1 .logininput .s3{right:490px; top:320px}
|
||||
.loginmain1 .logininput .s4{right:350px; top:320px}
|
||||
.loginmain1 .logininput .s5{right:70px; top:20px;}
|
||||
.loginmain1 .loginsubmit{background:url(loginsubmit.jpg) no-repeat; width:114px; height:36px; border:none; cursor:pointer}
|
||||
.loginmain1 .regsubmit{background:url(regsubmit.jpg) no-repeat; width:114px; height:36px; border:none; cursor:pointer}
|
||||
.loginmain1 .copyright{margin-top:100px; text-align:center; padding-bottom:20px; border-bottom:1px solid #d9d9d9}
|
||||
.loginmain1 .copyright a{color:#666666}
|
||||
.loginmain1 .copyright a:hover{color:#ff4800}
|
||||
.loginmain1 .bottombg{text-align:center; padding:20px 0}
|
||||
|
||||
.jw-over{position:absolute;top:0;left:0;width:100%;background-color:#000;z-index:300;display:block; filter: alpha(opacity=30);-moz-opacity: 0.3;opacity: 0.3;}
|
||||
/*
|
||||
.jw-over-hidden{margin:0;padding:0;width:100%;overflow: hidden}
|
||||
*/
|
||||
.jw-dialog{position:absolute;z-index:301;border-radius:5px;background:#fff;border-radius:5px;border:1px solid gray;border-top:none}
|
||||
.jw-dialog-hd{background:url(/include/images/center.jpg) repeat-x; height:40px; line-height:40px; overflow:hidden; padding:0 10px; font-weight:bold; color:#ff4800}
|
||||
.jw-dialog-hd a{color:#ff4800;font:16px sans-serif, bold;outline: none;text-decoration: none;margin-left:10px;}
|
||||
.jw-dialog-hd .close{}
|
||||
.jw-dialog-hd .close:hover,.jw-dialog-title .max:hover{color:#000}
|
||||
.jw-dialog-bd{height:auto;background:#fff;}
|
||||
.jw-dialog-loading div{background: url(/include/images/loading.gif) no-repeat ;height:40px;width:40px;margin-left:48%}
|
||||
|
||||
|
||||
.jw-msg{position: fixed;bottom: 40px;left:25%;text-align: center;width: 50%;background-color:#000;filter: alpha(opacity=80);opacity: 0.8;color:#fff;z-index:999999;padding:10px;font-size:20px;border-radius:10px}
|
||||
|
||||
|
||||
.jw-alert{padding:20px;height:75px}
|
||||
.jw-alert .icon{background:url(/include/images/jw-icons.gif);width:50px;height:50px;float:left;margin-right: 10px;}
|
||||
.jw-alert .bd{padding-left:50px;}
|
||||
.jw-alert .ft{margin:10px;text-align: center;}
|
||||
|
||||
.jw-tab {border: 1px solid #CCCCCC;margin-bottom: 10px;}
|
||||
.jw-tab .hd{height:28px;line-height: 28px; padding-right: 12px; text-align: right;background:#ccc}
|
||||
.jw-tab .hd ul{margin:0;padding:0}
|
||||
.jw-tab .hd li {float: left;height: 27px;line-height: 27px;padding: 0 20px;list-style:none;cursor: pointer;}
|
||||
.jw-tab .hd li.cur { background-color: #FFFFFF;font-weight: bold;border-bottom:1px solid #fff}
|
||||
.jw-tab .bd{padding:10px;}
|
||||
|
||||
.jw-pbar{border:1px solid #0066CC;width:400px;border-radius:5px;}
|
||||
.jw-pbar .jw-pbar-t{text-align: center;position: absolute;}
|
||||
.jw-pbar .jw-pbar-v{background:#0066CC }
|
||||
BIN
html/images/error.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/exp.jpg
Normal file
|
After Width: | Height: | Size: 480 B |
BIN
html/images/exp1.jpg
Normal file
|
After Width: | Height: | Size: 478 B |
BIN
html/images/ico/Thumbs.db
Normal file
BIN
html/images/ico/ico02.png
Normal file
|
After Width: | Height: | Size: 374 B |
BIN
html/images/ico/landui1.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/ico/landui10.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
html/images/ico/landui100.gif
Normal file
|
After Width: | Height: | Size: 644 B |
BIN
html/images/ico/landui101.gif
Normal file
|
After Width: | Height: | Size: 591 B |
BIN
html/images/ico/landui102.gif
Normal file
|
After Width: | Height: | Size: 595 B |
BIN
html/images/ico/landui103.gif
Normal file
|
After Width: | Height: | Size: 616 B |
BIN
html/images/ico/landui104.gif
Normal file
|
After Width: | Height: | Size: 606 B |
BIN
html/images/ico/landui105.gif
Normal file
|
After Width: | Height: | Size: 389 B |
BIN
html/images/ico/landui106.gif
Normal file
|
After Width: | Height: | Size: 371 B |
BIN
html/images/ico/landui107.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/ico/landui108.gif
Normal file
|
After Width: | Height: | Size: 606 B |
BIN
html/images/ico/landui109.gif
Normal file
|
After Width: | Height: | Size: 337 B |
BIN
html/images/ico/landui11.gif
Normal file
|
After Width: | Height: | Size: 595 B |
BIN
html/images/ico/landui110.gif
Normal file
|
After Width: | Height: | Size: 610 B |
BIN
html/images/ico/landui111.gif
Normal file
|
After Width: | Height: | Size: 625 B |
BIN
html/images/ico/landui112.gif
Normal file
|
After Width: | Height: | Size: 341 B |
BIN
html/images/ico/landui113.gif
Normal file
|
After Width: | Height: | Size: 595 B |
BIN
html/images/ico/landui114.gif
Normal file
|
After Width: | Height: | Size: 354 B |
BIN
html/images/ico/landui115.gif
Normal file
|
After Width: | Height: | Size: 606 B |
BIN
html/images/ico/landui116.gif
Normal file
|
After Width: | Height: | Size: 622 B |
BIN
html/images/ico/landui117.gif
Normal file
|
After Width: | Height: | Size: 381 B |
BIN
html/images/ico/landui118.gif
Normal file
|
After Width: | Height: | Size: 592 B |
BIN
html/images/ico/landui119.gif
Normal file
|
After Width: | Height: | Size: 592 B |
BIN
html/images/ico/landui12.gif
Normal file
|
After Width: | Height: | Size: 589 B |
BIN
html/images/ico/landui120.gif
Normal file
|
After Width: | Height: | Size: 369 B |
BIN
html/images/ico/landui121.gif
Normal file
|
After Width: | Height: | Size: 383 B |
BIN
html/images/ico/landui122.gif
Normal file
|
After Width: | Height: | Size: 605 B |
BIN
html/images/ico/landui123.gif
Normal file
|
After Width: | Height: | Size: 386 B |
BIN
html/images/ico/landui124.gif
Normal file
|
After Width: | Height: | Size: 249 B |
BIN
html/images/ico/landui125.gif
Normal file
|
After Width: | Height: | Size: 597 B |
BIN
html/images/ico/landui126.gif
Normal file
|
After Width: | Height: | Size: 620 B |
BIN
html/images/ico/landui127.gif
Normal file
|
After Width: | Height: | Size: 396 B |
BIN
html/images/ico/landui128.gif
Normal file
|
After Width: | Height: | Size: 628 B |
BIN
html/images/ico/landui129.gif
Normal file
|
After Width: | Height: | Size: 222 B |
BIN
html/images/ico/landui13.gif
Normal file
|
After Width: | Height: | Size: 605 B |
BIN
html/images/ico/landui130.gif
Normal file
|
After Width: | Height: | Size: 591 B |
BIN
html/images/ico/landui131.gif
Normal file
|
After Width: | Height: | Size: 589 B |
BIN
html/images/ico/landui132.gif
Normal file
|
After Width: | Height: | Size: 403 B |
BIN
html/images/ico/landui133.gif
Normal file
|
After Width: | Height: | Size: 362 B |
BIN
html/images/ico/landui134.gif
Normal file
|
After Width: | Height: | Size: 553 B |
BIN
html/images/ico/landui135.gif
Normal file
|
After Width: | Height: | Size: 570 B |
BIN
html/images/ico/landui136.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/ico/landui137.gif
Normal file
|
After Width: | Height: | Size: 1022 B |
BIN
html/images/ico/landui138.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/ico/landui139.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/ico/landui14.gif
Normal file
|
After Width: | Height: | Size: 625 B |
BIN
html/images/ico/landui140.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/ico/landui141.gif
Normal file
|
After Width: | Height: | Size: 610 B |
BIN
html/images/ico/landui142.gif
Normal file
|
After Width: | Height: | Size: 916 B |
BIN
html/images/ico/landui143.gif
Normal file
|
After Width: | Height: | Size: 261 B |
BIN
html/images/ico/landui144.gif
Normal file
|
After Width: | Height: | Size: 1011 B |
BIN
html/images/ico/landui145.gif
Normal file
|
After Width: | Height: | Size: 1022 B |
BIN
html/images/ico/landui146.gif
Normal file
|
After Width: | Height: | Size: 974 B |
BIN
html/images/ico/landui147.gif
Normal file
|
After Width: | Height: | Size: 390 B |
BIN
html/images/ico/landui148.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/ico/landui149.gif
Normal file
|
After Width: | Height: | Size: 646 B |
BIN
html/images/ico/landui15.gif
Normal file
|
After Width: | Height: | Size: 617 B |
BIN
html/images/ico/landui150.gif
Normal file
|
After Width: | Height: | Size: 1009 B |
BIN
html/images/ico/landui151.gif
Normal file
|
After Width: | Height: | Size: 370 B |
BIN
html/images/ico/landui152.gif
Normal file
|
After Width: | Height: | Size: 947 B |
BIN
html/images/ico/landui153.gif
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
html/images/ico/landui154.gif
Normal file
|
After Width: | Height: | Size: 948 B |
BIN
html/images/ico/landui155.gif
Normal file
|
After Width: | Height: | Size: 341 B |
BIN
html/images/ico/landui156.gif
Normal file
|
After Width: | Height: | Size: 955 B |
BIN
html/images/ico/landui157.gif
Normal file
|
After Width: | Height: | Size: 174 B |
BIN
html/images/ico/landui158.gif
Normal file
|
After Width: | Height: | Size: 595 B |
BIN
html/images/ico/landui159.gif
Normal file
|
After Width: | Height: | Size: 374 B |
BIN
html/images/ico/landui16.gif
Normal file
|
After Width: | Height: | Size: 607 B |
BIN
html/images/ico/landui160.gif
Normal file
|
After Width: | Height: | Size: 622 B |
BIN
html/images/ico/landui161.gif
Normal file
|
After Width: | Height: | Size: 368 B |
BIN
html/images/ico/landui162.gif
Normal file
|
After Width: | Height: | Size: 381 B |
BIN
html/images/ico/landui163.gif
Normal file
|
After Width: | Height: | Size: 386 B |
BIN
html/images/ico/landui164.gif
Normal file
|
After Width: | Height: | Size: 337 B |
BIN
html/images/ico/landui165.gif
Normal file
|
After Width: | Height: | Size: 942 B |
BIN
html/images/ico/landui166.gif
Normal file
|
After Width: | Height: | Size: 955 B |
BIN
html/images/ico/landui167.gif
Normal file
|
After Width: | Height: | Size: 591 B |
BIN
html/images/ico/landui168.gif
Normal file
|
After Width: | Height: | Size: 607 B |
BIN
html/images/ico/landui169.gif
Normal file
|
After Width: | Height: | Size: 944 B |
BIN
html/images/ico/landui17.gif
Normal file
|
After Width: | Height: | Size: 373 B |
BIN
html/images/ico/landui170.gif
Normal file
|
After Width: | Height: | Size: 1020 B |
BIN
html/images/ico/landui171.gif
Normal file
|
After Width: | Height: | Size: 1008 B |