passwords in the source?

passwords in the source?

am 16.10.2007 22:02:31 von jp2code

I've got some files that are not very sensitive. Mostly history files from
email sessions using our contact forms.

I'd like to password protect these files so that if someone happened to get
a link to it, they couldn't start passing it all around for anyone to read,
and I certainly wouldn't want the link to find its way into a Google search!

I've thought about creating a password string that I could hold in the <%
[code] %> portion of my .asp pages. Then, if someone tries to open a history
file, they are first prompted for a password. If it matches what is in the
<% [code] %> section, they get in.

I just feel like my password is left out in the clear if I include it as
part of the asp code.

Is this way ok, or bad?

Is there a better way?

What is a good, simple way to implement this? If someone knows of an example
application somewhere, I'd be happy to see that link.

Re: passwords in the source?

am 16.10.2007 23:13:51 von Anthony Jones

"jp2code" wrote in message
news:upnv79CEIHA.4228@TK2MSFTNGP02.phx.gbl...
> I've got some files that are not very sensitive. Mostly history files from
> email sessions using our contact forms.
>
> I'd like to password protect these files so that if someone happened to
get
> a link to it, they couldn't start passing it all around for anyone to
read,
> and I certainly wouldn't want the link to find its way into a Google
search!
>
> I've thought about creating a password string that I could hold in the <%
> [code] %> portion of my .asp pages. Then, if someone tries to open a
history
> file, they are first prompted for a password. If it matches what is in the
> <% [code] %> section, they get in.
>
> I just feel like my password is left out in the clear if I include it as
> part of the asp code.
>
> Is this way ok, or bad?
>
> Is there a better way?
>
> What is a good, simple way to implement this? If someone knows of an
example
> application somewhere, I'd be happy to see that link.
>


Is this your server or is the site hosted by a third party?

On your own server it would be a simple matter of just turning off anonymous
access and turning on Windows Integrated security.


--
Anthony Jones - MVP ASP/ASP.NET

Re: passwords in the source?

am 16.10.2007 23:38:25 von jp2code

No, it is a hosted site. The server is not mine.

"Anthony Jones" wrote:
> Is this your server or is the site hosted by a third party?

Re: passwords in the source?

am 17.10.2007 09:20:21 von exjxw.hannivoort

jp2code wrote on 16 okt 2007 in microsoft.public.inetserver.asp.general:

> I've got some files that are not very sensitive. Mostly history files
> from email sessions using our contact forms.
>
> I'd like to password protect these files so that if someone happened
> to get a link to it, they couldn't start passing it all around for
> anyone to read, and I certainly wouldn't want the link to find its way
> into a Google search!
>
> I've thought about creating a password string that I could hold in the
> <% [code] %> portion of my .asp pages. Then, if someone tries to open
> a history file, they are first prompted for a password. If it matches
> what is in the <% [code] %> section, they get in.
>
> I just feel like my password is left out in the clear if I include it
> as part of the asp code.
>
> Is this way ok, or bad?
>
> Is there a better way?
>
> What is a good, simple way to implement this? If someone knows of an
> example application somewhere, I'd be happy to see that link.




<%
if request.form("pw") = "blahblah" then
session("ok")="ok"
end if
if session("ok")="" then
%>


You are out! Try to get in.

password




<%
response.end
end if
%>

You are in!



--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Re: passwords in the source?

am 17.10.2007 16:36:52 von jp2code

I modified your code just a little, but that worked great!

Special thanks for the meta tag! I never would have thought to look there.

Thanks a lot!

"Evertjan." wrote:
>
>
> <%
> if request.form("pw") = "blahblah" then
> session("ok")="ok"
> end if
> if session("ok")="" then
> %>
>


> You are out! Try to get in.

> password

>
>

>
> <%
> response.end
> end if
> %>
>
> You are in!
>

Re: passwords in the source?

am 18.10.2007 08:12:03 von Adrienne Boswell

Gazing into my crystal ball I observed "jp2code"
writing in news:OdiOnsMEIHA.5324@TK2MSFTNGP02.phx.gbl:

> I modified your code just a little, but that worked great!
>
> Special thanks for the meta tag! I never would have thought to look
> there.
>

You should also use robots.txt (Google for it). Understand that
misbehaving robots may not follow directives, so it IS a very good idea
to check server side. You can also do something like:

Some offsite
URL I want to give to my visitors, but don't want robots to follow


Google and Slurp follow the above directive as well as robots.txt and
meta.

>
> "Evertjan." wrote:
>>
>>
>> <%
>> if request.form("pw") = "blahblah" then
>> session("ok")="ok"
>> end if
>> if session("ok")="" then
>> %>
>>


>> You are out! Try to get in.

>> password

>>
>>

>>
>> <%
>> response.end
>> end if
>> %>
>>
>> You are in!
>>
>
>



--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Re: passwords in the source?

am 18.10.2007 15:44:38 von jp2code

Thanks! I have implemented that as well.

"Adrienne Boswell" wrote:
> You should also use robots.txt (Google for it). Understand that
> misbehaving robots may not follow directives, so it IS a very good idea
> to check server side. You can also do something like:
>
> Some offsite
> URL I want to give to my visitors, but don't want robots to follow

>
> Google and Slurp follow the above directive as well as robots.txt and
> meta.