有没有用pageadmin漏洞的免费网站程序,安全监测爆...loginbox.aspx页面里有高危漏洞,怎么修复?

今天看啥 热点:
PageAdmin几个设计缺陷导致的安全漏洞及修复
1.login_key暴力预测
2.伪造任意会员或管理留言
3.删除任意留言
ps:.net开源了,相信各种特性漏洞会如雨后春笋般涌现,小菜先学点asp.net基础知识,等大牛们发特性漏洞的时候至少能够看懂。
1.login_key 暴力预测
/e/member/check_repeat.aspx
protected void Page_Load(Object src,EventArgs e)
Check_Post();
string Field=Request.Form[&field&];//数据传入 自定义字段
string Field_Value=Request.Form[&value&];//数据传入 自定义值
string UserName=Request.Form[&username&];
if(!IsStr(Field))
else if(Field.ToLower()==&userpassword&)
string Repeat=&0&;
int counts=0;
if(IsStr(Field))
Conn theconn=new Conn();
OleDbConnection conn=new OleDbConnection(theconn.Constr());
conn.Open();
sql=&select count(id) as co from pa_member where &+Field+&='&+Sql_Format(Field_Value)+&'&;//查询数据库
OleDbCommand comm=new OleDbCommand(sql,conn);
OleDbDataReader dr=comm.ExecuteReader();
if(dr.Read())
counts=int.Parse(dr[&co&].ToString());
dr.Close();
conn.Close();
if(counts&0){Repeat=&1&;}
Response.Write(Repeat);
可以看到 我们控制了pa_member表where查询中的字段和值,因此我们可以定义字段为login_key,然后暴力枚举值。
我们再来看下login_key的值是什么?
string LoginKey=LoginDate.AddSeconds(r.Next()).ToString(&yyyyMMddHHmmss&);
login_key为我们登录登录后的1个小时到一天中的任意中的任意一秒,格式如10,
这样会有什么样的问题呢?就是我们login_key完全可以预测,可以用上边的那段代码暴力枚举近几天的登录会员和管理(会员管理一个表)的login_key,而1天86400秒,所以难度不大。
下面问题来了,看官一定会问,这个login_key是干啥的,你可以温习下wefgod牛的 WooYun: PageAdmin可绕过验证伪造任意用户身份登录(前台、后台) ,
从wefgod牛的文章当中我们知道pageadmin的权限验证用的是uid和Valicate的,而Valicate以前是用的最后登录时间的md5,现在改为了login_key的md5,也就是登录后未来一天的任意一秒的md5。
现在我们获取了login_key,但是问题又来了,我们不知道他对应的uid是多少,我们可以直接选择有权限验证的页面直接加入login_key,然后枚举uid,登录进去就行了。
问题又来了,我们怎么确定这个用户是不是管理员,我思来想去,也只有观察下管理员在网站的活动了,比如他发表的最后一篇帖子的时间,最后一天留言的时间,去推测login_key的取值空间。
2.伪造任意会员或管理留言
/e/space/spc_fbk_ascx.cs
private void Post_Fbk()
string Fbk_Content=Request.Form[&fb_content&];
if(Fbk_Content.Trim()==&&)
conn.Close();
Response.Write(&&script type='text/javascript'&alert('留言内容不能为空!');location.href=location.href&/script&&);
Response.End();
Fbk_Content=ResplayJs(Fbk_Content);
Current_LoginName=Request.Form[&Current_LoginName&];//直接获取然后进去数据库
if(IsUserName(Current_LoginName))
sql=&insert into pa_spcfbk(space_owner,fbk_username,feedback,reply) values('&+UserName+&','&+Sql_Format(Current_LoginName)+&','&+Sql_Format(Fbk_Content)+&','')&;
OleDbCommand Comm=new OleDbCommand(sql,conn);
Comm.ExecuteNonQuery();
conn.Close();
Response.Write(&&script type='text/javascript'&alert('提交成功!');location.href=location.href&/script&&);
Response.End();
这个没什么说的,设计缺陷,当前登录名自定义,可以伪造任何人留言,不用登录。
3.删除任意留言
/e/space/spc_fbk_ascx.cs
private void Del_Fbk()
string Did=Request.Form[&did&];//直接删除
if(IsNum(Did))
sql=&delete from pa_spcfbk where space_owner='&+UserName+&' and id=&+int.Parse(Did);
OleDbCommand Comm=new OleDbCommand(sql,conn);
Comm.ExecuteNonQuery();
conn.Close();
conn.Close();
Response.Write(&&script type='text/javascript'&location.href=location.href&/script&&);
Response.End();
这个都很明白,无权限控制的直接进数据库删除任意用户的任意留言
1.login_key暴力预测
a.暴力猜测login_key
2.伪造任意会员或管理留言
3.删除任意留言
解决方案:
2.权限验证
相关搜索:
相关阅读:
相关频道:
&&&&&&&&&&&&&&&&&&&&&&&&&&&&
网站安全最近更新360鹰眼-更智能的Web安全监控系统
产品描述:
下一代web漏洞扫描器,她是一款硬件,包含:最全面的"爬出"引擎,不再需要收集资产清单,不再需要指定扫描时间,同步发现新上线业务漏洞
适用对象:
价格服务:
目录价19.8万起
高危级漏洞
<a href="/vul/view/vulid/2969" title="Drupal Drupal < 7.31 name SQL注入漏洞
严重级漏洞
警告级漏洞
Copyright&0网站安全检测360网站安全检测
企业级付费安全&
漏洞等级:&
漏洞类型:
建站程序:
服务器类型:&
编程语言:&
漏洞来源:&全部
库带计划严重级漏洞
自主挖掘警告级漏洞&
网络收集轻微漏洞
关注我们&网站助手APP:&& Copyright&0网站安全检测&
1月13日 05:10360鹰眼-更智能的Web安全监控系统
产品描述:
下一代web漏洞扫描器,她是一款硬件,包含:最全面的"爬出"引擎,不再需要收集资产清单,不再需要指定扫描时间,同步发现新上线业务漏洞
适用对象:
价格服务:
目录价19.8万起
高危级漏洞
<a href="/vul/view/vulid/2969" title="Drupal Drupal < 7.31 name SQL注入漏洞
严重级漏洞
警告级漏洞
Copyright&0网站安全检测AliPay.dll
Interop.jmail.dll
PageAdmin.Conn.dll
PageAdmin.FCKeditor.dll
PageAdmin.Install.dll
PageAdmin.Lanmu.dll
PageAdmin.Md5.dll
PageAdmin.SendMail.dll
PageAdmin.Valicate.dll
PageAdmin.Web.dll
PageAdmin.YZM.dll
URLRewriter.dll
data2009.mdb
banner.gif
banner.jpg
arrow_1.gif
link_1.gif
template_bg_zdy.jpg
title_sign_zdy.jpg
button.gif
button1.gif
button_bg.gif
company.gif
contact_title.gif
c_company.gif
en_hr_back.gif
en_ordercar.gif
en_search.gif
en_vote_1.gif
en_vote_2.gif
en_zoom.gif
e_company.gif
feedback.gif
hr_back.gif
hr_tijiao.gif
hr_view.gif
hr_yingping.gif
login_arrow.gif
ordercar.gif
order_info.gif
pic_error.gif
pic_right.gif
search.gif
search1.gif
search2.gif
state_0.gif
state_1.gif
votebar.gif
vote_1.gif
vote_2.gif
zdy_bar_middle.gif
noimage.gif
adv_new.aspx
loginbox.aspx
search.aspx
searchbox.aspx
showimage.aspx
slide.aspx
votebar.aspx
votes.aspx
banner.ascx
pgcalendar.html
web_bottom.ascx
web_top.ascx
default.html
index.aspx
navigation.ascx
navigation_article.ascx
navigation_introduct.ascx
navigation_menu.ascx
navigation_product.ascx
newsline.ascx
style0.ascx
style1.ascx
style2.ascx
style3.ascx
template.ascx
template_article.ascx
template_introduct.ascx
template_pic.ascx
template_product.ascx
disablehandles.htc
showtableborders.htc
block_address.png
block_blockquote.png
block_div.png
block_h1.png
block_h2.png
block_h3.png
block_h4.png
block_h5.png
block_h6.png
block_p.png
block_pre.png
fck_anchor.gif
fck_flashlogo.gif
fck_hiddenfield.gif
fck_pagebreak.gif
fck_editorarea.css
fck_internal.css
fck_showtableborders_gecko.css
locked.gif
unlocked.gif
fck_dialog_common.css
logo_fckeditor.gif
logo_fredck.gif
fck_docprops
fck_document_preview.html
fck_flash_preview.html
fck_image_preview.html
fck_select
fck_spellerpages
spellerpages
server-scripts
spellchecker.cfm
spellchecker.pl
blank.html
controls.html
spellchecker.html
spellerStyle.css
fck_template
template1.gif
template2.gif
template3.gif
fck_about.html
fck_anchor.html
fck_button.html
fck_checkbox.html
fck_colorselector.html
fck_docprops.html
fck_flash.html
fck_form.html
fck_hiddenfield.html
fck_image.html
fck_link.html
fck_listprop.html
fck_paste.html
fck_radiobutton.html
fck_replace.html
fck_select.html
fck_smiley.html
fck_source.html
fck_specialchar.html
fck_spellerpages.html
fck_table.html
fck_tablecell.html
fck_template.html
fck_textarea.html
fck_textfield.html
fck_dtd_test.html
filemanager
default.icon.gif
default.icon.gif
ButtonArrow.gif
Folder.gif
Folder32.gif
FolderOpened.gif
FolderOpened32.gif
FolderUp.gif
spacer.gif
browser.css
browser.html
frmactualfolder.html
frmcreatefolder.html
frmfolders.html
frmresourceslist.html
frmresourcetype.html
frmupload.html
connectors
upload.aspx
angel_smile.gif
angry_smile.gif
broken_heart.gif
confused_smile.gif
cry_smile.gif
devil_smile.gif
embaressed_smile.gif
envelope.gif
lightbulb.gif
omg_smile.gif
regular_smile.gif
sad_smile.gif
shades_smile.gif
teeth_smile.gif
thumbs_down.gif
thumbs_up.gif
tounge_smile.gif
whatchutalkingabout_smile.gif
wink_smile.gif
anchor.gif
arrow_ltr.gif
arrow_rtl.gif
spacer.gif
sample.html
dragresizetable
placeholder
fck_placeholder.html
placeholder.gif
simplecommands
tablecommands
toolbar.arrowright.gif
toolbar.buttonarrow.gif
toolbar.collapse.gif
toolbar.end.gif
toolbar.expand.gif
toolbar.separator.gif
toolbar.start.gif
fck_dialog.css
fck_editor.css
fck_strip.gif
office2003
toolbar.arrowright.gif
toolbar.bg.gif
toolbar.buttonarrow.gif
toolbar.collapse.gif
toolbar.end.gif
toolbar.expand.gif
toolbar.separator.gif
toolbar.start.gif
fck_dialog.css
fck_editor.css
fck_strip.gif
toolbar.arrowright.gif
toolbar.buttonarrow.gif
toolbar.buttonbg.gif
toolbar.collapse.gif
toolbar.end.gif
toolbar.expand.gif
toolbar.separator.gif
toolbar.start.gif
fck_dialog.css
fck_editor.css
fck_strip.gif
_fckviewstrips.html
fckdebug.html
fckdialog.html
fckeditor.html
fckeditor.original.html
fckeditor.ascx
fckpackager.xml
fckstyles.xml
fcktemplates.xml
license.txt
arrow_left.gif
arrow_right.gif
button.gif
calendar_bnt.gif
left_1.gif
left_2.gif
left_3.gif
left_4.gif
left_5.gif
left_6.gif
left_7.gif
left_8.gif
left_9.gif
left_bg.gif
left_bottom.gif
left_member.gif
left_top.gif
login_bt.gif
login_r2_c2.jpg
login_r3_c2.jpg
login_r3_c3.jpg
login_r3_c4.jpg
login_r3_c5.jpg
login_r4_c3.jpg
login_r5_c3.jpg
master_bottom.gif
master_tit.gif
member.gif
sign_2.gif
sign_3.gif
top_menu_bg.gif
adminset.aspx
adminset_1.aspx
admin_bottom.aspx
admin_top.aspx
adv_1.aspx
alipay_set.aspx
channel_1.aspx
channel_2.aspx
channel_2_1.aspx
chinabank_set.aspx
data_backup.aspx
fckeditor.aspx
feedback_1.aspx
feedback_1_1.aspx
finance_1.aspx
hr_2_1.aspx
hr_3_1.aspx
index.aspx
information_1.aspx
information_2.aspx
information_3.aspx
information_4.aspx
information_5.aspx
iplist.aspx
js_view.aspx
lanmu_1.aspx
lanmu_1_banner.aspx
lanmu_1_template.aspx
lanmu_1_zdy.aspx
lanmu_2.aspx
lanmu_2_article.aspx
lanmu_2_introduct.aspx
lanmu_2_product.aspx
lanmu_3.aspx
lanmu_3_article.aspx
lanmu_3_feedback.aspx
lanmu_3_introduct.aspx
lanmu_3_product.aspx
lanmu_3_style.aspx
lanmu_3_visiter_set.aspx
lanmu_nav_style.aspx
lanmu_spc.aspx
lanmu_template_article.aspx
lanmu_template_introduct.aspx
lanmu_template_pic.aspx
lanmu_template_product.aspx
lanmu_template_style.aspx
link_1.aspx
link_2.aspx
login.aspx
loginbox_1.aspx
loginbox_2.aspx
memberpublish_set.aspx
member_1.aspx
member_center_set.aspx
member_fnc_fk.aspx
member_fnc_rk.aspx
member_fnc_xf.aspx
member_info.aspx
member_set.aspx
member_type.aspx
nav_style.aspx
nav_style_set.aspx
order_1.aspx
order_2.aspx
product_1.aspx
product_2.aspx
product_3.aspx
product_4.aspx
product_5.aspx
search_1.aspx
set_1.aspx
slide_1.aspx
slide_2.aspx
sysmain.aspx
template_edit.aspx
template_style.aspx
template_style_set.aspx
tongji.aspx
vote_1.aspx
vote_2.aspx
Alipay_Notify.aspx
Alipay_Return.aspx
Default.aspx
AutoReceive.aspx
default.aspx
Receive.aspx
使用说明.txt
button.gif
cmbsubmit.gif
find_pass.ascx
fnc_idx.ascx
index.aspx
login.ascx
member.css
mem_addarticle.ascx
mem_articledtl.ascx
mem_articlelst.ascx
mem_fbk.ascx
mem_fbkdtl.ascx
mem_fbklst.ascx
mem_idx.ascx
mem_mdy.ascx
mem_pay.ascx
order_idx.ascx
order_lst.ascx
pass_mdy.ascx
order.aspx
order1.aspx
orderview.aspx
article_arrow.gif
article_arrow_1.gif
bg_title3.jpg
bg_top.jpg
body_top_bg.gif
bottom_bg.jpg
lanmu_nav_menu_icon.gif
lanmu_nav_submenu_bg.gif
menu_bg.jpg
menu_bg_1.jpg
menu_line.jpg
menu_style_1.gif
more_icon.gif
nav_bg.gif
nav_bg_bottom.gif
nav_box_bg.gif
nav_sign_bg.gif
nav_title_bg.jpg
site_bg.jpg
site_icon.gif
site_icon_left.jpg
site_icon_right.jpg
template_title_bg.jpg
title_sign.gif
title_sign.jpg
title_sign_zdy.jpg
button.gif
more_icon.gif
order_bg.gif
Hztt__10-57-23_718.gif
Hztt__12-02-54_609.gif
Hztt__23-39-27_881.jpg
Hztt__23-51-25_513.jpg
information
usercontrol
article.ascx
articleinfo.ascx
feedback.ascx
hrjoin.ascx
hrzpinfo.ascx
introduction.ascx
network.ascx
product.ascx
productinfo.ascx
index.aspx
web.config
安装说明文件.txt
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C)
Frederico Caldeira Knabben
* == BEGIN LICENSE ==
* Licensed under the terms of any of the following licenses at your
- GNU General Public License Version 2 or later (the &GPL&)
http://www.gnu.org/licenses/gpl.html
- GNU Lesser General Public License Version 2.1 or later (the &LGPL&)
http://www.gnu.org/licenses/lgpl.html
- Mozilla Public License Version 1.1 or later (the &MPL&)
http://www.mozilla.org/MPL/MPL-1.1.html
* == END LICENSE ==
* Chinese Simplified language file.
var FCKLang =
// Language direction : &ltr& (left to right) or &rtl& (right to left).
ToolbarCollapse
: &折叠工具栏&,
ToolbarExpand
: &展开工具栏&,
// Toolbar Items and Context Menu
: &粘贴为无格式文本&,
: &从 MS Word 粘贴&,
RemoveFormat
: &清除格式&,
InsertLinkLbl
: &超链接&,
InsertLink
: &插入/编辑超链接&,
RemoveLink
: &取消超链接&,
: &插入/编辑锚点链接&,
AnchorDelete
: &清除锚点链接&,
InsertImageLbl
InsertImage
: &插入/编辑图象&,
InsertFlashLbl
: &Flash&,
InsertFlash
: &插入/编辑 Flash&,
InsertTableLbl
InsertTable
: &插入/编辑表格&,
InsertLineLbl
: &水平线&,
InsertLine
: &插入水平线&,
InsertSpecialCharLbl: &特殊符号&,
InsertSpecialChar : &插入特殊符号&,
InsertSmileyLbl
: &表情符&,
InsertSmiley
: &插入表情图标&,
: &关于 FCKeditor&,
: &下划线&,
StrikeThrough
: &删除线&,
Superscript
LeftJustify
: &左对齐&,
CenterJustify
: &居中对齐&,
RightJustify
: &右对齐&,
BlockJustify
: &两端对齐&,
DecreaseIndent
: &减少缩进量&,
IncreaseIndent
: &增加缩进量&,
Blockquote
: &引用文字&,
NumberedListLbl
: &编号列表&,
NumberedList
: &插入/删除编号列表&,
BulletedListLbl
: &项目列表&,
BulletedList
: &插入/删除项目列表&,
ShowTableBorders : &显示表格边框&,
ShowDetails
: &显示详细资料&,
FontFormat
: &文本颜色&,
: &背景颜色&,
: &源代码&,
SpellCheck
: &拼写检查&,
UniversalKeyboard : &软键盘&,
PageBreakLbl
: &分页符&,
: &插入分页符&,
: &复选框&,
RadioButton
: &单选按钮&,
: &单行文本&,
: &多行文本&,
HiddenField
: &隐藏域&,
SelectionField : &列表/菜单&,
ImageButton
: &图像域&,
: &全屏编辑&,
ShowBlocks
: &显示区块&,
// Context Menu
: &编辑超链接&,
: &单元格&,
InsertRowAfter
: &下插入行&,
InsertRowBefore
: &上插入行&,
DeleteRows
: &删除行&,
InsertColumnAfter : &右插入列&,
InsertColumnBefore : &左插入列&,
DeleteColumns
: &删除列&,
InsertCellAfter
: &右插入单元格&,
InsertCellBefore : &左插入单元格&,
DeleteCells
: &删除单元格&,
MergeCells
: &合并单元格&,
MergeRight
: &右合并单元格&,
: &下合并单元格&,
HorizontalSplitCell : &橫拆分单元格&,
VerticalSplitCell : &縱拆分单元格&,
TableDelete
: &删除表格&,
CellProperties
: &单元格属性&,
TableProperties
: &表格属性&,
ImageProperties
: &图象属性&,
FlashProperties
: &Flash 属性&,
AnchorProp
: &锚点链接属性&,
ButtonProp
: &按钮属性&,
CheckboxProp
: &复选框属性&,
HiddenFieldProp
: &隐藏域属性&,
RadioButtonProp
: &单选按钮属性&,
ImageButtonProp
: &图像域属性&,
TextFieldProp
: &单行文本属性&,
SelectionFieldProp : &菜单/列表属性&,
TextareaProp
: &多行文本属性&,
: &表单属性&,
FontFormats
: &普通;已编排格式;地址;标题 1;标题 2;标题 3;标题 4;标题 5;标题 6;段落(DIV)&,
// Alerts and Messages
ProcessingXHTML
: &正在处理 XHTML,请稍等...&,
PasteWordConfirm : &您要粘贴的内容好像是来自 MS Word,是否要清除 MS Word 格式后再粘贴?&,
NotCompatiblePaste : &该命令需要 Internet Explorer 5.5 或更高版本的支持,是否按常规粘贴进行?&,
UnknownToolbarItem : &未知工具栏项目 \&%1\&&,
UnknownCommand
: &未知命令名称 \&%1\&&,
NotImplemented
: &命令无法执行&,
UnknownToolbarSet : &工具栏设置 \&%1\& 不存在&,
: &浏览器安全设置限制了本编辑器的某些功能。您必须启用安全设置中的“运行 ActiveX 控件和插件”,否则将出现某些错误并缺少功能。&,
BrowseServerBlocked : &无法打开资源浏览器,请确认是否启用了禁止弹出窗口。&,
DialogBlocked
: &无法打开对话框窗口,请确认是否启用了禁止弹出窗口或网页对话框(IE)。&,
// Dialogs
DlgBtnCancel
DlgBtnClose
DlgBtnBrowseServer : &浏览服务器&,
DlgAdvancedTag
DlgOpOther
: &&其它&&,
DlgInfoTab
DlgAlertUrl
: &请插入 URL&,
// General Dialogs Labels
DlgGenNotSet
: &&没有设置&&,
DlgGenLangDir
: &语言方向&,
DlgGenLangDirLtr : &从左到右 (LTR)&,
DlgGenLangDirRtl : &从右到左 (RTL)&,
DlgGenLangCode
: &语言代码&,
DlgGenAccessKey
: &访问键&,
DlgGenName
DlgGenTabIndex
: &Tab 键次序&,
DlgGenLongDescr
: &详细说明地址&,
DlgGenClass
: &样式类名称&,
DlgGenTitle
DlgGenContType
: &内容类型&,
DlgGenLinkCharset : &字符编码&,
DlgGenStyle
: &行内样式&,
// Image Dialog
DlgImgTitle
: &图象属性&,
DlgImgInfoTab
DlgImgBtnUpload
: &发送到服务器上&,
: &源文件&,
DlgImgUpload
: &替换文本&,
DlgImgWidth
DlgImgHeight
DlgImgLockRatio
: &锁定比例&,
DlgBtnResetSize
: &恢复尺寸&,
DlgImgBorder
: &边框大小&,
DlgImgHSpace
: &水平间距&,
DlgImgVSpace
: &垂直间距&,
DlgImgAlign
: &对齐方式&,
DlgImgAlignLeft
: &左对齐&,
DlgImgAlignAbsBottom: &绝对底边&,
DlgImgAlignAbsMiddle: &绝对居中&,
DlgImgAlignBaseline : &基线&,
DlgImgAlignBottom : &底边&,
DlgImgAlignMiddle : &居中&,
DlgImgAlignRight : &右对齐&,
DlgImgAlignTextTop : &文本上方&,
DlgImgAlignTop
DlgImgPreview
DlgImgAlertUrl
: &请输入图象地址&,
DlgImgLinkTab
// Flash Dialog
DlgFlashTitle
: &Flash 属性&,
DlgFlashChkPlay
: &自动播放&,
DlgFlashChkLoop
DlgFlashChkMenu
: &启用 Flash 菜单&,
DlgFlashScale
DlgFlashScaleAll : &全部显示&,
DlgFlashScaleNoBorder : &无边框&,
DlgFlashScaleFit : &严格匹配&,
// Link Dialog
DlgLnkWindowTitle : &超链接&,
DlgLnkInfoTab
: &超链接信息&,
DlgLnkTargetTab
DlgLnkType
: &超链接类型&,
DlgLnkTypeURL
: &超链接&,
DlgLnkTypeAnchor : &页内锚点链接&,
DlgLnkTypeEMail
: &电子邮件&,
DlgLnkProto
DlgLnkProtoOther : &&其它&&,
DlgLnkAnchorSel
: &选择一个锚点&,
DlgLnkAnchorByName : &按锚点名称&,
DlgLnkAnchorById : &按锚点 ID&,
DlgLnkNoAnchors
: &(此文档没有可用的锚点)&,
DlgLnkEMail
DlgLnkEMailSubject : &主题&,
DlgLnkEMailBody
DlgLnkUpload
DlgLnkBtnUpload
: &发送到服务器上&,
DlgLnkTarget
DlgLnkTargetFrame : &&框架&&,
DlgLnkTargetPopup : &&弹出窗口&&,
DlgLnkTargetBlank : &新窗口 (_blank)&,
DlgLnkTargetParent : &父窗口 (_parent)&,
DlgLnkTargetSelf : &本窗口 (_self)&,
DlgLnkTargetTop
: &整页 (_top)&,
DlgLnkTargetFrameName : &目标框架名称&,
DlgLnkPopWinName : &弹出窗口名称&,
DlgLnkPopWinFeat : &弹出窗口属性&,
DlgLnkPopResize
: &调整大小&,
DlgLnkPopLocation : &地址栏&,
DlgLnkPopMenu
: &菜单栏&,
DlgLnkPopScroll
: &滚动条&,
DlgLnkPopStatus
: &状态栏&,
DlgLnkPopToolbar : &工具栏&,
DlgLnkPopFullScrn : &全屏 (IE)&,
DlgLnkPopDependent : &依附 (NS)&,
DlgLnkPopWidth
DlgLnkPopHeight
DlgLnkPopLeft
DlgLnkPopTop
DlnLnkMsgNoUrl
: &请输入超链接地址&,
DlnLnkMsgNoEMail : &请输入电子邮件地址&,
DlnLnkMsgNoAnchor : &请选择一个锚点&,
DlnLnkMsgInvPopName : &弹出窗口名称必须以字母开头,并且不能含有空格。&,
// Color Dialog
DlgColorTitle
: &选择颜色&,
DlgColorBtnClear : &清除&,
DlgColorHighlight : &预览&,
DlgColorSelected : &选择&,
// Smiley Dialog
DlgSmileyTitle
: &插入表情图标&,
// Special Character Dialog
DlgSpecialCharTitle : &选择特殊符号&,
// Table Dialog
DlgTableTitle
: &表格属性&,
DlgTableRows
DlgTableColumns
DlgTableBorder
DlgTableAlign
DlgTableAlignNotSet : &&没有设置&&,
DlgTableAlignLeft : &左对齐&,
DlgTableAlignCenter : &居中&,
DlgTableAlignRight : &右对齐&,
DlgTableWidth
DlgTableWidthPx
DlgTableWidthPc
: &百分比&,
DlgTableHeight
DlgTableCellSpace : &间距&,
DlgTableCellPad
DlgTableCaption
DlgTableSummary
// Table Cell Dialog
DlgCellTitle
: &单元格属性&,
DlgCellWidth
DlgCellWidthPx
DlgCellWidthPc
: &百分比&,
DlgCellHeight
DlgCellWordWrap
: &自动换行&,
DlgCellWordWrapNotSet : &&没有设置&&,
DlgCellWordWrapYes : &是&,
DlgCellWordWrapNo : &否&,
DlgCellHorAlign
: &水平对齐&,
DlgCellHorAlignNotSet : &&没有设置&&,
DlgCellHorAlignLeft : &左对齐&,
DlgCellHorAlignCenter : &居中&,
DlgCellHorAlignRight: &右对齐&,
DlgCellVerAlign
: &垂直对齐&,
DlgCellVerAlignNotSet : &&没有设置&&,
DlgCellVerAlignTop : &顶端&,
DlgCellVerAlignMiddle : &居中&,
DlgCellVerAlignBottom : &底部&,
DlgCellVerAlignBaseline : &基线&,
DlgCellRowSpan
: &纵跨行数&,
DlgCellCollSpan
: &横跨列数&,
DlgCellBackColor : &背景颜色&,
DlgCellBorderColor : &边框颜色&,
DlgCellBtnSelect : &选择...&,
// Find and Replace Dialog
DlgFindAndReplaceTitle : &查找和替换&,
// Find Dialog
DlgFindTitle
DlgFindFindBtn
DlgFindNotFoundMsg : &指定文本没有找到。&,
// Replace Dialog
DlgReplaceTitle
DlgReplaceFindLbl
: &查找:&,
DlgReplaceReplaceLbl : &替换:&,
DlgReplaceCaseChk
: &区分大小写&,
DlgReplaceReplaceBtn : &替换&,
DlgReplaceReplAllBtn : &全部替换&,
DlgReplaceWordChk
: &全字匹配&,
// Paste Operations / Dialog
PasteErrorCut : &您的浏览器安全设置不允许编辑器自动执行剪切操作,请使用键盘快捷键(Ctrl+X)来完成。&,
PasteErrorCopy : &您的浏览器安全设置不允许编辑器自动执行复制操作,请使用键盘快捷键(Ctrl+C)来完成。&,
PasteAsText
: &粘贴为无格式文本&,
PasteFromWord : &从 MS Word 粘贴&,
DlgPasteMsg2 : &请使用键盘快捷键(&STRONG&Ctrl+V&/STRONG&)把内容粘贴到下面的方框里,再按 &STRONG&确定&/STRONG&。&,
DlgPasteSec
: &因为你的浏览器的安全设置原因,本编辑器不能直接访问你的剪贴板内容,你需要在本窗口重新粘贴一次。&,
DlgPasteIgnoreFont
: &忽略 Font 标签&,
DlgPasteRemoveStyles : &清理 CSS 样式&,
DlgPasteCleanBox
: &清空上面内容&,
// Color Picker
ColorAutomatic : &自动&,
ColorMoreColors : &其它颜色...&,
// Document Properties
: &页面属性&,
// Anchor Dialog
DlgAnchorTitle
: &命名锚点&,
DlgAnchorName
: &锚点名称&,
DlgAnchorErrorName : &请输入锚点名称&,
// Speller Pages Dialog
DlgSpellNotInDic
: &没有在字典里&,
DlgSpellChangeTo
: &更改为&,
DlgSpellBtnIgnore
DlgSpellBtnIgnoreAll : &全部忽略&,
DlgSpellBtnReplace
DlgSpellBtnReplaceAll : &全部替换&,
DlgSpellBtnUndo
DlgSpellNoSuggestions : &- 没有建议 -&,
DlgSpellProgress
: &正在进行拼写检查...&,
DlgSpellNoMispell
: &拼写检查完成:没有发现拼写错误&,
DlgSpellNoChanges
: &拼写检查完成:没有更改任何单词&,
DlgSpellOneChange
: &拼写检查完成:更改了一个单词&,
DlgSpellManyChanges
: &拼写检查完成:更改了 %1 个单词&,
IeSpellDownload
: &拼写检查插件还没安装,你是否想现在就下载?&,
// Button Dialog
DlgButtonText
: &标签(值)&,
DlgButtonType
DlgButtonTypeBtn : &按钮&,
DlgButtonTypeSbm : &提交&,
DlgButtonTypeRst : &重设&,
// Checkbox and Radio Button Dialogs
DlgCheckboxName
DlgCheckboxValue : &选定值&,
DlgCheckboxSelected : &已勾选&,
// Form Dialog
DlgFormName
DlgFormAction : &动作&,
DlgFormMethod : &方法&,
// Select Field Dialog
DlgSelectName
DlgSelectValue
DlgSelectSize
DlgSelectLines
DlgSelectChkMulti : &允许多选&,
DlgSelectOpAvail : &列表值&,
DlgSelectOpText
DlgSelectOpValue : &值&,
DlgSelectBtnAdd
DlgSelectBtnModify : &修改&,
DlgSelectBtnUp
DlgSelectBtnDown : &下移&,
DlgSelectBtnSetValue : &设为初始化时选定&,
DlgSelectBtnDelete : &删除&,
// Textarea Dialog
DlgTextareaName : &名称&,
DlgTextareaCols : &字符宽度&,
DlgTextareaRows : &行数&,
// Text Field Dialog
DlgTextName
DlgTextValue
: &初始值&,
DlgTextCharWidth : &字符宽度&,
DlgTextMaxChars
: &最多字符数&,
DlgTextType
DlgTextTypeText
DlgTextTypePass
// Hidden Field Dialog
DlgHiddenName : &名称&,
DlgHiddenValue : &初始值&,
// Bulleted List Dialog
BulletedListProp : &项目列表属性&,
NumberedListProp : &编号列表属性&,
DlgLstStart
: &开始序号&,
DlgLstType
: &列表类型&,
DlgLstTypeCircle : &圆圈&,
DlgLstTypeDisc
DlgLstTypeSquare : &方块&,
DlgLstTypeNumbers : &数字 (1, 2, 3)&,
DlgLstTypeLCase
: &小写字母 (a, b, c)&,
DlgLstTypeUCase
: &大写字母 (A, B, C)&,
DlgLstTypeSRoman : &小写罗马数字 (i, ii, iii)&,
DlgLstTypeLRoman : &大写罗马数字 (I, II, III)&,
// Document Properties Dialog
DlgDocGeneralTab : &常规&,
DlgDocBackTab
DlgDocColorsTab
: &颜色和边距&,
DlgDocMetaTab
: &Meta 数据&,
DlgDocPageTitle
: &页面标题&,
DlgDocLangDir
: &语言方向&,
DlgDocLangDirLTR : &从左到右 (LTR)&,
DlgDocLangDirRTL : &从右到左 (RTL)&,
DlgDocLangCode
: &语言代码&,
DlgDocCharSet
: &字符编码&,
DlgDocCharSetCE
DlgDocCharSetCT
: &繁体中文 (Big5)&,
DlgDocCharSetCR
: &西里尔文&,
DlgDocCharSetGR
: &希腊文&,
DlgDocCharSetJP
DlgDocCharSetKR
DlgDocCharSetTR
: &土耳其文&,
DlgDocCharSetUN
: &Unicode (UTF-8)&,
DlgDocCharSetWE
DlgDocCharSetOther : &其它字符编码&,
DlgDocDocType
: &文档类型&,
DlgDocDocTypeOther : &其它文档类型&,
DlgDocIncXHTML
: &包含 XHTML 声明&,
DlgDocBgColor
: &背景颜色&,
DlgDocBgImage
: &背景图像&,
DlgDocBgNoScroll : &不滚动背景图像&,
DlgDocCText
DlgDocCLink
: &超链接&,
DlgDocCVisited
: &已访问的超链接&,
DlgDocCActive
: &活动超链接&,
DlgDocMargins
: &页面边距&,
DlgDocMaTop
DlgDocMaLeft
DlgDocMaRight
DlgDocMaBottom
DlgDocMeIndex
: &页面索引关键字 (用半角逗号[,]分隔)&,
DlgDocMeDescr
: &页面说明&,
DlgDocMeAuthor
DlgDocMeCopy
DlgDocPreview
// Templates Dialog
DlgTemplatesTitle : &内容模板&,
DlgTemplatesSelMsg : &请选择编辑器内容模板&br&(当前内容将会被清除替换):&,
DlgTemplatesLoading : &正在加载模板列表,请稍等...&,
DlgTemplatesNoTpl : &(没有模板)&,
DlgTemplatesReplace : &替换当前内容&,
// About Dialog
DlgAboutAboutTab : &关于&,
DlgAboutBrowserInfoTab : &浏览器信息&,
DlgAboutLicenseTab : &许可证&,
DlgAboutVersion
DlgAboutInfo
: &要获得更多信息请访问 &
Copyright(C)
OKBASE.NET All Rights Reserved 好库网 版权所有}

我要回帖

更多关于 pageadmin漏洞 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信