Last year hackers stole millions from Taiwan First Commercial bank's ATMs without using a card. This was absolutely a premeditated attack. Hackers "br ...
分类:
其他好文 时间:
2017-08-10 19:32:30
阅读次数:
214
Attack on Titans ZOJ - 3747 题意:有三种兵A,B,C,选n个排队,问(至少m个连续的B和至多连续的C)的方案数。 理解了很长时间,,,好菜=_=|| 先贴上代码,有空来写 1 #include <bits/stdc++.h> 2 using namespace std; ...
分类:
其他好文 时间:
2017-08-08 20:00:24
阅读次数:
114
一.CSRF是什么? CSRF(Cross-site request forgery),中文名称:跨站请求伪造,也被称为:one click attack/session riding,缩写为:CSRF/XSRF。 二.CSRF可以做什么? 你这可以这么理解CSRF攻击:攻击者盗用了你的身份,以你的 ...
分类:
其他好文 时间:
2017-08-06 19:30:49
阅读次数:
156
The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other. Given an integer n, return all ... ...
分类:
其他好文 时间:
2017-07-24 19:04:18
阅读次数:
180
1. 关于csrf错误 CSRF(Cross-site request forgery)跨站请求伪造,也被称为“one click attack”或者session riding,通常缩写为CSRF或者XSRF,是一种对网站的恶意利用。 django中自带了防止CSRF攻击的手段,在form表单的a ...
分类:
其他好文 时间:
2017-07-23 15:19:02
阅读次数:
308
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2587 题意:判断最小割是否唯一。 思路: 最小割唯一性的判断是先跑一遍最大流,然后在残留网络中分别从源点和汇点出发dfs,只有当该边还有流量可用时可以访问下一个顶点,最后如果 ...
分类:
其他好文 时间:
2017-07-22 15:41:02
阅读次数:
197
Sona Sona , Maven of the Strings . Of cause, she can play the zither. Sona can't speak but she can make fancy music. Her music can attack, heal, encou ...
分类:
其他好文 时间:
2017-07-18 10:20:05
阅读次数:
275
for x in topic_replay:# 去掉在x左右的空白,\t,\n和\r字符. x1 = x.strip(' \t\n\r') if x1 !='': topic_replay_end.append(x1) # 先将文章中的\r 都去掉,有些单独的'\r' 就变成了空的列表元素:'',再... ...
分类:
其他好文 时间:
2017-07-09 18:22:45
阅读次数:
150
The n-queens puzzle is the problem of placing n queens on an n×nchessboard such that no two queens attack each other. Given an integer n, return all d ...
分类:
其他好文 时间:
2017-07-08 17:54:07
阅读次数:
169
API重放攻击(Replay Attacks)又称重播攻击、回放攻击,这种攻击会不断恶意或欺诈性地重复一个有效的API请求。攻击者利用网络监听或者其他方式盗取API请求,进行一定的处理后,再把它重新发给认证服务器,是黑客常用的攻击方式之一。HTTPS数据加密是否可以防止重放攻击?否,加密可以有效防止 ...