show/hide this revision's text 4 edited tags
show/hide this revision's text 3 Automated tag tuning
show/hide this revision's text 2 added 31 characters in body

I have a PHP script that runs as a CGI program and the HTTP header Authenticate header gets eaten and spit out. So I would like to implement some kind of FORMs FORM based authentication. Worse yetAs an added constraint, I have there is no database , so can't store no session infodata can be stored.

I am very open to having a master username and password. I just need to protect this thing the application from an intruder who doesn't know there these credentials.

So how would you implement this?

Cookies?

I could present the form and if it validates, I can send back a cookie that is a hash of the IP address come secret code. Then I can prevent pages from rendering unless the thing decrypts correctly. But I have no idea how to implement that in PHP.

show/hide this revision's text 1