web)权限终极9技巧 当我们取得一个webshell时候,下一部要做的就是提升权限个人总结如下:1:
C:\Documents and Settings\All Users\Application
Data\Symantec\pcAnywhere\看能否跳转到这个目录,如果行那就最好了,直接下它的...
分类:
Web程序 时间:
2014-05-08 14:10:19
阅读次数:
553
string sKey = username.Text.ToString().Trim(); //
得到Cache中的给定Key的值 string sUser = Convert.ToString(Cache[sKey]); // 检查是否存在 if
(sUser == null || sUser....
分类:
其他好文 时间:
2014-05-08 12:18:20
阅读次数:
258
Hibernate包括两个级别的缓存:
Session(默认启动)一级缓存
SessionFactory(默认关闭)二级缓存
二级缓存速度快
一旦在应用中开启了SessionFactory二级缓存,那么Session默认使用二级缓存
开启二级缓存要在hibernate.cfg.xml中添加:
true
org.hibernate.cache.ehcache.EhCache...
分类:
系统相关 时间:
2014-05-08 04:37:40
阅读次数:
477
Flex读取txt文件中的内容
自动生成的文件
LoadTxt-app.xml:
<!-- Adobe AIR Application Descriptor File Template.
Specifies parameters for identifying, installing, and launching AIR applications.
xmlns - ...
分类:
其他好文 时间:
2014-05-08 03:58:40
阅读次数:
261
面对大量的PV访问,web服务器的缓存功能不容小觑,缓存在互联网中的地位已经举足轻重。那么好的缓存机制对web服务来说已经不可获取,varnish的缓存功能有目共睹,那么我们似乎没理由不了解一下基于varnish是如何让实现缓存的。varnish的官方站点:https://www.varnish-cache.or..
分类:
Web程序 时间:
2014-05-08 03:27:52
阅读次数:
510
doc
application/msword
xls
application/msexcel
pdf
application/pdf
zip
application/zip
rar
application/rar
txt
application/txt
chm
application/...
分类:
移动开发 时间:
2014-05-07 22:56:57
阅读次数:
544
varnish系统架构:varnish主要运行两个进程:Management进程和Child进程(也叫Cache进程)。Management进程主要实现应用新的配置、编译VCL、监控varnish、初始化varnish以及提供一个命令行接口等。Management进程会每隔几秒钟探测一下Child进程以判断其是否正常运行,如果在指定..
分类:
其他好文 时间:
2014-05-07 21:58:43
阅读次数:
604
现在也算是刚刚基本完成了自己的第一个商业项目,在开发的过程中,参考了不少人的代码风格,然而随着工作经验的积累,终于开始慢慢的了解到抽象思想在面向对象编程中的重要性,这一篇简单的介绍一下我的一点收获。
首先,在现在的项目中使用的主要是afinal框架,而且这个框架确实比较不错,省去了不少工作量,在编写Activity的过程中,基本都是直接继承自FinalActivity类,这样可以使用这个类给我们...
分类:
移动开发 时间:
2014-05-07 15:09:34
阅读次数:
450
序言如果我们在 Objective C
中向一个对象发送它无法处理的消息,会出现什么情况呢?根据前文《深入浅出Cocoa之消息》的介绍,我们知道发送消息是通过 objc_send(id, SEL,
...) 来实现的,它会首先在对象的类对象的 cache,method list 以及父类对象的 ca...
分类:
其他好文 时间:
2014-05-07 14:53:24
阅读次数:
562
I had a similar problem when running a spring
web application in an Eclipse managed tomcat. I solved this problem by adding
maven dependencies in the ...
分类:
移动开发 时间:
2014-05-07 14:33:12
阅读次数:
486