Security Update
I just released a security update. It address two issues. Please download like - um - now.
I just released a security update. It address two issues. Please download like - um - now.
For the latest packaged version, you may download the zip from here. For the very latest version, however, you should use the Subversion repository.
For general questions and support, please use the BlogCFC Forums.
BlogCFC will never have an installer. Ever. Until today...
Raymond Camden said: Check your blog.ini.cfm file. One line should be installed=yes
[More]
BlogCFC will never have an installer. Ever. Until today...
Paul Baylis said: Raymond,
I'm installing blogcfc525. Ran http://localhost:8500/cat......
[More]
BlogCFC 5.9.6
Raymond Camden said: It is no different than it ever was - you go to the readme, find your version, and "move "...
[More]
BlogCFC 5.9.6
Russ said: I haven't updated my blog in a long time, it is running version 5.5.002, is this a straight forward ...
[More]
BlogCFC Update
Raymond Camden said: Nope, should be safe to skip that step.
[More]
You can download the latest version from Subversion, use this url: http://svn.riaforge.org/blogcfc
From: http://www.wwwcoder.com/Default.aspx?tabid=68&...
A better strategy for blocking any brute force attack is to incrementally delay the page response after failed login attempts. After the first failed login attempt, for example, the response would be delayed by one second. After the second failed attempt, the response would be delayed by two seconds, and so on. A one-, two-, or even six-second delay is probably not going to bother a human userdh too seriously. Certainly he will find it less irritating than having to wait 30 minutes for his account to reactivate because he accidentally left his caps lock key on. On the other hand, an incrementing delay can completely defeat an automated tool being used for a brute force attack. Assuming the tool could normally make ten requests per second, the time it would take to make one thousand requests would jump from two minutes to five days. This pretty much renders the brute force attack tool useless. An incrementing delay also solves the problem of the attacker holding the password constant and varying the username. Since the system tracks failed login attempts on a user session basis and not an authentication credential basis, the delay logic cannot be bypassed this way.
<cfparam name="session.FailedLogin" default="0" >
<cfset session.FailedLogin = session.FailedLogin +1>
<cfset createObject("java", "java.lang.Thread").sleep(JavaCast("int", session.FailedLogin*500))>
What are the two issues? Email me if you don't want to post here.
But in answer to your question, yes something exactly like you posted.
thanks