码迷,mamicode.com
首页 >  
搜索关键字:attack on titan    ( 561个结果
什么是CSRF攻击?如何避免?
跨站请求伪造(英语:Cross-site request forgery),也被称为 one-click attack 或者 session riding,通常缩写为 CSRF 或者 XSRF, 是一种挟制用户在当前已登录的Web应用程序上执行非本意的操作的攻击方法。跟跨网站脚本(XSS)相比,XS ...
分类:其他好文   时间:2019-11-26 09:19:48    阅读次数:72
SP10707 COT2 - Count on a tree II 莫队上树
题意:求一条链 $(u,v)$ 上不同的颜色数。 我们可以求出树的出栈入栈序(or 括号序?我也不确定)。 图(from "attack" ) 然后有一个很优美的性质: 设点 $u$ 的入栈时间为 $dfn[u]$ ,出栈时间为 $low[u]$ 设两个点 $u,v$ 满足 $dfn[u] incl ...
分类:其他好文   时间:2019-11-23 21:47:05    阅读次数:74
Fastbin Attack
题外:本文只是记录自己所学,参考博客:https://ctf-wiki.github.io/ctf-wiki/pwn/linux/glibc-heap/fastbin_attack-zh/ fastbin attack大体思路是修改chunk的fd指针或通过free伪造的chunk,将其添加到fas ...
分类:其他好文   时间:2019-11-10 11:38:07    阅读次数:88
Ethical Hacking - NETWORK PENETRATION TESTING(5)
Deauthentication Attacks Theory This attack is used to disconnect any device from any network within our range even if the network is protected with a ...
分类:Web程序   时间:2019-11-09 19:44:15    阅读次数:80
面向对象方法实战 -人狗大战
class Animal: #定义一个动物类 def __init__(self,name,hp,attack): self.name =name self.hp =hp self.attack =attackclass Person(Animal): #继承动物类 def dg(self,dog) ...
分类:其他好文   时间:2019-11-06 17:04:19    阅读次数:86
Model Inversion Attack Paper Indexpage
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
[转帖]IOC Security: Indicators of Attack vs. Indicators of Compromise
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
python对象的属性引用另一个类的
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
[CSP校内集训]attack(DAG支配树)
题意 给一个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
laravel 依赖注入
<?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
561条   上一页 1 ... 7 8 9 10 11 ... 57 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!