English 中文(简体)
PHP MVC 申请表
原标题:Accepted Common Pattern for Throttling Login (or other) Requests in a PHP MVC Application

是否有一种普遍接受的模式(或班级图书馆等),用于复制某些表格,用于PHP MVC的申请? 我特别想到有人对你的一个标志性攻击的情景,你想在Y秒X的要求之后阻止这种攻击,或者如果发现某种请求形式的话。

具体问题:

是否建立了这种功能? 如果不是的话,在基于网络的PHP MVC架构中,如何共同实施?

是否应在应用层处理这种问题,或者网络服务器本身是否应当处理这种渎职问题?

我可以想到实施这一点的几种方法,但似乎所有申请的类型一样,因此,应当有一个普遍的解决办法。

问题回答

我不知道形式,但早孕预防有几种标准方法:

  • In response to an unsuccessful login attempt, delay several seconds before any response. This puts a lid on the rate of break ins.
  • Don t punish a local account—punish any host making a series of break in attempts. Stop offering a login prompt after 3 or 4 sequential failures no matter which account is targeted.
  • Maybe invoke captcha under some circumstances, like in a financial system.

我不了解任何内在应用解决办法,但当然,这些组成部分都是在那里,很容易聚集在一起,如果合适的话,它们就极易被滥用。





相关问题
Signed executables under Linux

For security reasons, it is desirable to check the integrity of code before execution, avoiding tampered software by an attacker. So, my question is How to sign executable code and run only trusted ...

MALICIOUS_CODE EI_EXPOSE_REP Medium

I run findbugs against all of my code and only tackle the top stuff. I finally got the top stuff resolved and now am looking at the details. I have a simple entity, say a user: public class User ...

XSS on jsbin.com

Anyone know if jsbin.com implements any protection for XSS or other javascript attacks? I see jsbin links used fairly regularly on sites like this one and I can t find any indication from the site ...

Make md5 strong

Im making a website that will intergrate with game that only support md5 hashing metod (atm). Which ofc is not especially safe anymore. But how could i make it stronger? Should I just generate long ...

Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

热门标签