Paper [1]: White-box neural network attack, adversaries have full access to the model. Using Gradient Descent going back to update the input so that r ...
分类:
其他好文 时间:
2019-11-06 00:32:15
阅读次数:
133
Double DQN:https://www.jianshu.com/p/fae51b5fe000 Prioritised Replay:https://www.jianshu.com/p/db14fdc67d2c Dueling Network:https://www.jianshu.com/p/ ...
分类:
其他好文 时间:
2019-11-03 23:41:58
阅读次数:
73
IOC Security: Indicators of Attack vs. Indicators of Compromise https://www.crowdstrike.com/blog/indicators-attack-vs-indicators-compromise/ December ...
分类:
其他好文 时间:
2019-11-03 10:44:50
阅读次数:
118
class GameRole: def __init__(self, name, ad, hp): self.name = name self.ad = ad self.hp = hp def attack(self, p): p.hp = p.hp - self.ad if p.hp > 0: p ...
分类:
编程语言 时间:
2019-10-26 12:05:15
阅读次数:
191
题意 给一个DAG,多次询问,每次给定$k$个点,求1到这些点的必经点的交集大小 思路 支配树裸题,建好DAG的支配树后$k$个点LCA的深度即为答案 Code cpp include define N 100005 using namespace std; int n,m,q; int rd[N] ...
分类:
其他好文 时间:
2019-10-24 09:55:57
阅读次数:
61
<?php interface Animal{ public function attack(); public function talk(); }class People implements Animal{ public $month; public $hand; public functio ...
分类:
其他好文 时间:
2019-10-19 14:41:35
阅读次数:
105
对于一个Animation重复播放,但在隐藏后,再次显示播放会出现有些属性未复原 问题描述 特效同事给的Animation中更改了物体的很多属性,如Active,Alpha, Scale,Position等等,物体本身需要重复利用,因此当不需要使用时不直接销毁而是隐藏等需要时再显示,但是在隐藏后发现 ...
分类:
编程语言 时间:
2019-10-15 21:01:06
阅读次数:
130
1 告警日志 1.1.1 字段说明 字段名称 字段含义 access_time 告警时间 alarm_sip 受害ip attack_org 攻击组织 attack_sip 攻击ip attack_type 攻击类型 file_md5 文件md5 file_name 文件名 hazard_level ...
分类:
其他好文 时间:
2019-10-14 12:34:44
阅读次数:
137
1 typedef pair<int,int> P; 2 typedef long long ll; 3 #define _for(i,a,b) for(register int i = (a);i < b;i ++) 4 #define _rep(i,a,b) for(register int i... ...
分类:
其他好文 时间:
2019-10-13 12:52:23
阅读次数:
80
CSRF是什么? (Cross Site Request Forgery, 跨站域请求伪造)是一种网络的攻击方式,它在 2007 年曾被列为互联网 20 大安全隐患之一,也被称为“One Click Attack”或者Session Riding,通常缩写为CSRF或者XSRF,是一种对网站的恶意利 ...
分类:
编程语言 时间:
2019-10-11 14:04:19
阅读次数:
86