http://blog.csdn.net/marising/article/details/6409196Secure用SSH登陆服务器时,如果服务器较多,登陆一次很麻烦,所以,可以自己编写VBScript来搞定。一、Secure脚本介绍Secure是VBScript脚本,VB脚本的教程,请参考有关...
分类:
其他好文 时间:
2014-12-08 19:05:20
阅读次数:
213
#define _CRT_SECURE_NO_WARNINGS#include int Is_SXH(int num);int main(){ int in1, in2; int temp = 0; int flag = 0; while (scanf("%d %d", &in1, &in2) !=...
分类:
其他好文 时间:
2014-12-07 23:02:33
阅读次数:
156
#define _CRT_SECURE_NO_DEPRECATE /*取消scanf,printf不安全之类的错误提示*/#include #include typedef struct node{ int value; struct node* next;}listnode;listnode* ....
分类:
其他好文 时间:
2014-12-07 17:44:48
阅读次数:
160
/*杭电ACM ID:2007*/#define _CRT_SECURE_NO_WARNINGS#include int main(){ int in1, in2, out1, out2; int temp = 0, min, max; while (scanf("%d %d", &in1, &in...
分类:
其他好文 时间:
2014-12-07 17:35:18
阅读次数:
113
一、标题:关于Cookie安全性设置的那些事副标:httponly属性和secure属性解析二、引言经常有看到XSS跨站脚本攻击窃取cookie案例,修复方案是有httponly。今天写出来倒腾下...2.1首先必须的预备cookie知识。假如你第一次认识cookie,请先阅读这篇文章:js于coo...
分类:
其他好文 时间:
2014-12-04 19:46:01
阅读次数:
211
<?phpdefine('DIR_SECURE_FILENAME', 'default.html');define('APP_PATH','./index/'); //项目路径require './ThinkPHP/ThinkPHP.php'; //引用文件
分类:
Web程序 时间:
2014-12-04 19:33:45
阅读次数:
178
SessionCookie的HttpOnly和secure属性 一、属性说明:1secure属性 当设置为true时,表示创建的Cookie会被以安全的形式向服务器传输,也就是只能在HTTPS连接中被浏览器传递到服务器端进行会话验证,如果是HTTP连接则不会传递该信息,所以不会被窃取到Cookie的...
分类:
Web程序 时间:
2014-12-04 19:25:32
阅读次数:
233
唯一标识码这东西在网络应用中非常有用,例如检测是否重复注册之类的。
[java] view
plaincopy
import android.provider.Settings.Secure;
private String android_id = Secure.getString(getContext().getContentResolver()...
分类:
移动开发 时间:
2014-12-04 12:11:02
阅读次数:
274
文字 package com.myeclipseide.example.myblog.secure; import com.opensymphony.xwork2.ActionSupport; public class AuthenticateUser extends ActionSupport {...