Ask a Question related to ASP.NET Security, Design and Development.
-
Michael Coughlin #1
Does ASP.Net v.1.1 Forms authentication mode require port 80 for http?
I'm trying to do a "proof-of-concept" ASP.Net setup from my home/office.
Since my ISP blocks port 80 - to prevent high-bandwidth serving from residential accounts, I used the cable router to redirect another port (coming in) back to port 80, once inside my LAN.
My client (halfway across the country) can get to the default page (which has no security restrictions, yet). When they click to my .aspx pages, which work fine behind the router, ... nada. IE "needs to shut down"; Netscape just goes back to the default page. Ballgame over.
To experiment, I set one .aspx page to:
<authentication mode="None" />
<authorization>
<allow users="*" /> i.e. allow all users
The other pages use:
<authentication mode="Forms" />
<forms loginUrl="login.aspx" />
<authorization>
<deny users="?" /> <!-- Deny anonymous users -->
So, I was wondering if the http port redirection might be somehow messing up ASP.Net security?
Any insights ... appreciated ...
thanks,
Mike
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
Version: 6.0.543 / Virus Database: 337 - Release Date: 11/21/2003
Michael Coughlin Guest
-
Change HTTP Port?
I am still trying to get the FrontPage Publish Web Command to work in Dreamweaver and have traced my problem down to the fact that my ISP uses HTTP... -
Forms Authentication with http/https
Hi, I am trying to implement Single Sign On solution to my web applications. I have developed a web application which does authenticaion and it... -
Send Basic HTTP authentication credential in the first HTTP request
Hello, How can I make the web service proxy class send basic authentication information in the HTTP header of the first request? My... -
NET::FTP Passive Mode and PORT command
Hello, I have a strange problem under perl 5.8 using NET::FTP On a network, a first Computer running a RedHat 9 here a trace of a Basic ftp... -
Authentication ticket, cookieless, forms authentication?
Hi. I want to use Forms Authentication, cookieless. The issue is setting the Authentication Ticket without using cookies (!) That is, the... -
Thomas H #2
Re: Does ASP.Net v.1.1 Forms authentication mode require port 80 for http?
If you have a Win2k/2003 server, what about creating a VPN for your client? Then they could tunnel into your home/office, and use whatever port they wanted to. PPTP uses port 1723, as defined by [url]http://www.iana.org[/url] . (Full list at [url]http://www.iana.org/assignments/port-numbers[/url] ) Quick & dirty test; set up a web site on your server, but change the properties/identification tab to use port 1723.
Or.. along the same lines, I guess... change your web server to use another port, one that isn't blocked, preferably something in the private/dynamic range.
It doesn't quite answer your question, but maybe it presents an easier alternative.
-TH
"Michael Coughlin" <noSpam@anywhere.net> wrote in message news:eqg5g4GvDHA.2360@TK2MSFTNGP10.phx.gbl...
I'm trying to do a "proof-of-concept" ASP.Net setup from my home/office.
Since my ISP blocks port 80 - to prevent high-bandwidth serving from residential accounts, I used the cable router to redirect another port (coming in) back to port 80, once inside my LAN.
My client (halfway across the country) can get to the default page (which has no security restrictions, yet). When they click to my .aspx pages, which work fine behind the router, ... nada. IE "needs to shut down"; Netscape just goes back to the default page. Ballgame over.
To experiment, I set one .aspx page to:
<authentication mode="None" />
<authorization>
<allow users="*" /> i.e. allow all users
The other pages use:
<authentication mode="Forms" />
<forms loginUrl="login.aspx" />
<authorization>
<deny users="?" /> <!-- Deny anonymous users -->
So, I was wondering if the http port redirection might be somehow messing up ASP.Net security?
Any insights ... appreciated ...
thanks,
Mike
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
Version: 6.0.543 / Virus Database: 337 - Release Date: 11/21/2003
Thomas H Guest



Reply With Quote

