cflogin

Why don't people use <CFLOGIN>?

Why don't people use CFLOGIN? I remember having problem with it with CF7 some months ago, but I couldn't remember what was wrong with it. ...

How secure is my site to intruders with CFLOGIN

How secure is my site to intruders with CFLOGIN, is there a way to bypass the username and password form? the form is called from the application.cfc ...

ColdFusion scheduled tasks - how to secure when using <cflogin>?

I have a web-site written in ColdFusion that contains both the usual interactive web pages and some tasks run through the CF scheduler. The dir layout is / /app /scheduledTasks I'd like the tasks to be able to use all the same settings, etc. created in the application.cfc inside of /app so I'd like to move that entire /scheduledTasks ...

cflogin in cfscript

I'm trying to learn the new cfscript syntax, as well as use cflogin. I'm guessing I can't mix cf tags in cfscript, and I don't see a script equivalent to cflogin, cflogout, cfloginuser. Should I call a component that is written in the CF8 syntax in order to use cflogin? public void function onRequest(required string Page) output="true"...

Is there a script equivalent of cflogin?

Pretty much all of the ColdFusion language has been made available in some form using the cfscript syntax in ColdFusion 9. One item that I have not be able to find, though, is whether or not there is a script equivalent to the cflogin tag. If there isn't, is there maybe a workaround using flash remoting gateway? ...

checking if user is already logged in through cfloginuser

I'm using cfloginuser as a security mechanism in my application to secure web service calls that are being made. One thing I would like to do is stop a second user from logging into the same account when they are already logged into another computer. Essentially what's happening, is that since both share the same username, the first one...