1 去重查询 select distinct id from user_info where xxxxxx 2 group by 分组查询中排序 group by本身没有排序功能,这可能是mysql不完美的地方,但是我们可以这样做 select attack_id, time from (selec ...
分类:
数据库 时间:
2016-08-19 09:52:56
阅读次数:
177
参考资料: XXE漏洞攻防 http://www.waitalone.cn/xxe-attack.html XXE注入攻击与防御 https://www.91ri.org/9539.html ...
分类:
其他好文 时间:
2016-08-18 21:08:54
阅读次数:
129
1.构建一个CRUD(create retrieve update delete)应用需要用到什么? 数据绑定 基本模板标识符 表单验证 路由 深度链接 组件重用 依赖注入 2.运用AngularJs的(Services)和指令(directives)构建完整,健壮的应用。 - 模板系统。 ...
分类:
其他好文 时间:
2016-08-04 01:33:10
阅读次数:
258
本文内容摘自nvidia官网 http://www.nvidia.cn/object/geforce_family_cn.html 显卡系列内容如下(摘于2016/8/1) 桌面 桌面 桌面 GeForce GTX Titan Z GeForce GTX Titan X GeForce GTX 95 ...
分类:
其他好文 时间:
2016-08-01 21:10:46
阅读次数:
184
PYTHON黑帽编程1.5 使用WIRESHARK练习网络协议分析 Python黑帽编程1.5 使用Wireshark练习网络协议分析 1.5.0.1 本系列教程说明 1.5.0.1 本系列教程说明 本系列教程,采用的大纲母本为《Understanding Network Hacks Attack ...
分类:
其他好文 时间:
2016-07-30 22:39:23
阅读次数:
230
A. Cards 题解: 目的是将n个数分成n/2个人,每个人2个,要求和一样,保证有解 排序一下再选取就行了 代码: B. Cells Not Under Attack 题解: 给出一个n*n的格子,然后m个点,每个点的横纵坐标的位置不可选,问每次放置一个点,剩余多少点可选取 模拟,自己手动画一画 ...
分类:
其他好文 时间:
2016-07-28 16:32:26
阅读次数:
437
09.00 – 09.45 hrsAdvanced Malware and the Cloud: The New Concept of 'Attack Fan-out'Krishna Narayanaswamy,Chief Scientist, NetskopeThe rapid rise in c... ...
分类:
其他好文 时间:
2016-07-25 01:42:43
阅读次数:
175
Cells Not Under Attack Cells Not Under Attack Vasya has the square chessboard of size n?×?n and m rooks. Initially the chessboard is empty. Vasya will ...
分类:
其他好文 时间:
2016-07-24 13:35:47
阅读次数:
211
A - Cards B - Cells Not Under Attack C - They Are Everywhere ...
分类:
其他好文 时间:
2016-07-23 21:07:42
阅读次数:
220
题目链接: B. Cells Not Under Attack 题意: n*n的棋盘,现在放m个棋子,放一个棋子这一行和这一列就不会under attack了,每次放棋子回答有多少点还可能under attack; 思路:对行和列标记; AC代码: ...
分类:
其他好文 时间:
2016-07-23 13:41:08
阅读次数:
187