Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
stallionmvp #1
Detect Login Attempts
Hi All,
I am trying to think of a technique to lock the user out say 5-10 minutes if
that user failed to authenticate three times consecutively within a minute. I
am thinking of implement using session variables only, and not using the sql
server tables. If anyone can post their good working approach to this, that
would be great. Thanks in advance.
stallionmvp Guest
-
What does CF do when a second user attempts a doublelogin?
One user is logged in. What does the Coldfusion server do when a second user attempts to login, using the first user's login credentials? Please... -
how to track where user attempts login
I have an admin equivalent account that I recently had to change the password for due to a change in personnel. The admin account now gets locked... -
transaction aborts on alternate identical attempts
Hi I have a page that uploads an xml file and reads it into a SQL database. The page is transactional and aborts if there are any anomalies in... -
How to detect Windows 2kXP/NT user login
I have a problem with embeded font. However my problem is solved by replacing all text/field embeded font to the system font. But, if user login as... -
fail login attempts
Hi ,i want to configure my ssh daemon on my Linux server to limit fail login attempts ,I know that i can configure sshd to disconnect after some... -
Pete Thomas #2
Re: Detect Login Attempts
If you really want to tie this down then a session based approach would not
really provide an answer as a new session could be easily created by a
perpetrator by either deleting their cookie or with the use of a robot client.
(ie CFHTTP). If you don't want to work with the database then APPLICATION
scope is the place to put your logic. I guess you would have to create some
kind of lookup including a user account identifier, failed count, timestamp of
the failure and timestamp of last attempt, and do a check before allowing a
login and a reset on a success.
Pete Thomas Guest



Reply With Quote

