Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

login attemps

Explorer ,
Mar 05, 2009 Mar 05, 2009
I wanted to see if there was way to monitor login attempts on our site.
I figured I could easily have all login attempts email to me but is there a better way? Does the ColdFusion server log this anywhere?
Thanks
725
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 05, 2009 Mar 05, 2009
sic4730 wrote:
> I wanted to see if there was way to monitor login attempts on our site.
> I figured I could easily have all login attempts email to me but is there a
> better way? Does the ColdFusion server log this anywhere?
> Thanks
>

What type of login?
Login to the web server?
Login in controled by the web server?
Login to ColdFusion administrator?
Login in logic built into a ColdFusion application?
Something else
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mentor ,
Mar 05, 2009 Mar 05, 2009
How do you manage logins and validate users? Does your site use a database? If so, you could store login infomation in a table there.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 05, 2009 Mar 05, 2009
Sorry.
The login is a user login page on our site which uses coldfusion. This will allow access to certain webpages based on user security rights.
Users are authenticated by a sql database.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Mar 05, 2009 Mar 05, 2009
So you have all your login logic already written in Coldfusion. Just add a <cflog..> statement to the part of your code that determines a login failed.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 05, 2009 Mar 05, 2009
I will look into the cflog. Thank
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 12, 2009 Mar 12, 2009
LATEST
you could possibly set a session variable and have also a hit counter for their account using a cookie and place to 0 on initial first login... then as they try again you +1 then after 3 attempts mail you the information of the username /password trying to login
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources