搜索列表
-
对错误,漏洞和exploits的说明
【安全相关】作者:Mark Vogels 翻译:黯魂[S.S.T] 在这篇文档中,我将会试着为你提供一个对于错误,和由于那些错误而产生的漏洞以及它们的exploits的基本认识。那决不意味着能让你完全理解exploits和漏洞,但是能帮助你学会认识可能的漏洞以及怎样处理它们。 一般而言有3种不同类型的错误会可能危及计算机...
对错误,漏洞和exploits的说明 -
Google AdSense英文高价关键词排行列表
【网站运营】[mesothelioma lawyers] $48.61 [peritoneal mesothelioma] $48.38 [mesothelioma attorneys] $45.04 lexington law firm $33.91 [mesothelioma] $33.83 eloan $33.27 lexington law $3...
GoogleAdSense英文高价关键词排行列表 -
用js实现的DIV+CSS编辑器代码
【CSS/HTML】DIV+CSS编辑器 var sInitColor = null; function callColorDlg(obj){ if (sInitColor == null) var sColor = dlgHelper.ChooseColorDlg(); else var sColor = dlgHelper.ChooseColorDlg(sInitColor); sColor = sColor.toString(16); if (sColor.length < 6) { var sTempString = "000000".substring...
用js实现的DIV+CSS编辑器代码 -
在asp中通过vbs类实现rsa加密与解密的代码
【ASP编程】在asp中通过vbs类实现rsa加密与解密,建议入精华 本文章有两文件组成 test.asp 测试演示文件 clsrsa.asp 实现rsa加密与解密的vbs类文件 下面是代码: 1. test.asp 复制代码 代码如下:<% rem 文章标题:在asp中通过vbs类实现rsa加密与解密 rem 收集整理:yanek rem...
在asp中通过vbs类实现rsa加密与解密的代码 -
javascript asp教程添加和修改
【ASP编程】The Connection Execute(): If you want to retrieve data from a database then you have no choice but to use a Recordset. However, for the purposes of adding, updating, and deleting data you don't necessarily have to have a Recordset. It's up to you. For the purposes of adding, updating and delet...
javascriptasp教程添加和修改 -
javascript asp教程第九课--cookies
【ASP编程】Response Cookies in General: We'll start with the Response Cookies collection. I don't think it could be any easier. You simply put the name of the cookie in the argument. The corresponding value is a string. The only time it gets complicated is when you use keys (which I demonstrate b...
javascriptasp教程第九课--cookies -
javascript asp教程第八课--request对象
【ASP编程】Request Object: Request has five (5) Collections, one (1) Property, and one (1) Method. You'll use the Collections far more than the property or the method. Request Collections: Below is a table of the Request Collections and descriptions of how they are used. Request Collections Cli...
javascriptasp教程第八课--request对象 -
完美解决PJ的Cookies保存时限问题!可选择记录登陆时长!
【ASP编程】http://mr-w.cn/一直被这个问题所困扰!!现在终于完美解决啦!!献给那些需要前台记住登录信息的朋友!(此方法经过我的使用验证不存在星铃丹管理员所说的后台会持续登陆的安全隐患...后台还是和原版一样的,效果只针对前台!!)感谢Wady和IFairy...请大家不要只看不回,只回不来我的博客坐坐...回帖是美德!做人要厚道!!下面是修改方...
完美解决PJ的Cookies保存时限问题!可选择记录登陆时长! -
超全的webshell权限提升方法
【安全相关】WEBSHELL权限提升技巧 c: d: e:..... C:\Documents and Settings\All Users\「开始」菜单\程序\ 看这里能不能跳转,我们从这里可以获取好多有用的信息比如Serv-U的路径, C:\Documents and Settings\All Users\Applicatio...
超全的webshell权限提升方法 -
封装的一个播放器wmv
【网页播放器】播放器 //linfeng@gx165.com function classMedia(_mediaid,_showTextid,_objname) { //外部属性========================================================================= this.CYL=true;//连续播放标志 this.RDM=false;//无序播放(true为无序播放) this.MASMODE=true;//主模式,当用弹出式窗口控制时是...
封装的一个播放器 -
JDBC连接Oracle数据库常见问题及解决方法
【JSP编程】注:本文是斑竹从JDBC & Transaction版摘录广大站友的提问以及各种解答整理而来,如果您认为本文的内容已触犯了您的权益,请联系管理员进行修改。 Jbuilder正确连接 oracle 9i需要注意的几个问题 oracle8以上的应该都使用classes12.jar文件作为jdbc驱动; 正确设置windows的classpath和jbuilder中的enterprise set...
JDBC连接Oracle数据库常见问题及解决方法 -
php半小时精通正则表达式
【正则表达式】想必很多人都对正则表达式都头疼。今天,我以我的认识,加上网上一些文章,希望用常人都可以理解的表达方式。来和大家分享学习经验。 开篇,还是得说说 ^ 和 $ 他们是分别用来匹配字符串的开始和结束,以下分别举例说明: "^The":开头一定要有"The"字符串; "of despair$":结尾一定要有"of&...
php半小时精通正则表达式