Web Server Configuration
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Iron Speed
 
Go Back   Dev Articles Community ForumsWeb DesignWeb Server Configuration

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
Ajax Application Generator Generate database and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
  #1  
Old July 1st, 2003, 05:01 PM
surfergirl surfergirl is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Turks & Caicos Islands
Posts: 13 surfergirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question IIS and SSL

I am stuck, a web designer with remote access to the server running WinNT2000 and IIS and not much tech support on the IIS end. Just set up a secure site that gives an error 404. I know the certificate is there - I can see it under Directories Security.

The properties are set to everyone read, scripts and executables are turned on and generally everything looks like it does for a normal web page.

Is there something special to do for a secure site (beside type in https)

Thanks a million if you can help
Kind Regards

Reply With Quote
  #2  
Old July 2nd, 2003, 07:36 AM
dhouston's Avatar
dhouston dhouston is offline
Contributing User
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: May 2003
Location: Tennessee
Posts: 1,355 dhouston User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via ICQ to dhouston
Is the server set up to accept secure connections? I don't know much about IIS, but I know that in apache, you have to set up the config to point connections for SSL to a given docroot. If you don't you'll get an error. Seems like maybe something similar's happening on your end. If the server doesn't know where to send SSL connections, it can't serve the pages.

Reply With Quote
  #3  
Old July 2nd, 2003, 08:02 AM
surfergirl surfergirl is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Turks & Caicos Islands
Posts: 13 surfergirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks dhouston - the page finally came up - unfortunately I can't relay any great knowledge - just started clicking different options until something happened.......Now the big question -- the client wants a formmail reply from that site to be mailed to him encrypted. Ha. I think its impossible. Any ideas?

Reply With Quote
  #4  
Old July 2nd, 2003, 09:21 AM
stumpy's Avatar
stumpy stumpy is offline
May contain nuts.
Dev Articles Regular (2000 - 2499 posts)
 
Join Date: Aug 2002
Location: Sydney, AU
Posts: 2,058 stumpy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 6 m 11 sec
Reputation Power: 8
Send a message via ICQ to stumpy Send a message via MSN to stumpy
PGP is probably the most widely used encryption method for email.

http://www.pgp.com/
__________________
DevArticles Moderator
BlueSix - Web Development and Consulting

Reply With Quote
  #5  
Old July 2nd, 2003, 09:24 AM
dhouston's Avatar
dhouston dhouston is offline
Contributing User
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: May 2003
Location: Tennessee
Posts: 1,355 dhouston User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via ICQ to dhouston
If you were on a linux platform, I could hook you right up by suggesting that you investigate piping formmail output to the gnupg program, which would encrypt the data in a format that can be unencrypted by PGP. Surely there's a comparable utility for the Windows platform. I believe the PGP project is currently dead, but you might look around for apps (try sourceforge.net) that from a Windows platform can receive data and encrypt it in this format without any manual user interaction. I also would think that Windows/IIS might have its own built-in tools for handling this sort of thing.

Of course you know that you should never send credit card numbers through email that's not encrypted, and you should even try to avoid sending them encrypted.

Reply With Quote
  #6  
Old July 2nd, 2003, 10:28 AM
surfergirl surfergirl is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Turks & Caicos Islands
Posts: 13 surfergirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks for the pointers. I will continue reading all this stuff. on how to install PGP on the WinNT server? Its a sendmail program, not blat, thats all I know.

Should I consider saving the form output on the server and having the client manage it that way or is that non-secure also?

Reply With Quote
  #7  
Old July 2nd, 2003, 12:46 PM
dhouston's Avatar
dhouston dhouston is offline
Contributing User
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: May 2003
Location: Tennessee
Posts: 1,355 dhouston User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via ICQ to dhouston
Saving sensitive data in plain text on the server is almost as dangerous as sending it via email, and possibly moreso, depending on where you save it and what the permissions on the files are. The process for handling sensitive data should be roughly as follows:

1. Retrieve input from form POST.
2. Validate input for bogus results.
3. Encrypt any sensitive data.
4. Save results to a file, send them by email, or stick them in a database, with the sensitive stuff encrypted.
5. Delete any sensitive session vars, temp files, etc.

Typically using apache and whatever programming language I'm in the mood to use at the time, I read my input, pipe the sensitive parts to the system command "gnupg," encrypting the data to the appropriate email address (so it can be decrypted upon receipt), and then pipe the reformatted data to sendmail or into a database. I'm not sure how you'd emulate that in the GUI world of MS. Surely there's some executable or VB/ASP command that'll do the trick of encrypting for you. I'd start there first.

Ok, I've done a smidgin of legwork for you. Try these links. If they don't give you what you need, go a'googling and see what you can find:

http://www.itech.net.au/asptools/ASPPGP.htm

http://www.support.hostinguk.net/faq/pgpencrypt.htm

http://www.codeproject.com/useritem....asp?print=true

Reply With Quote
  #8  
Old July 2nd, 2003, 01:00 PM
surfergirl surfergirl is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Turks & Caicos Islands
Posts: 13 surfergirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
You are very kind I will get on this.

FYI I did get a reply back from PGP and they say " It sounds like you are looking for something automated. PGP has to be done manualy. There is no command line feature currently."

Reply With Quote
  #9  
Old July 2nd, 2003, 07:25 PM
stumpy's Avatar
stumpy stumpy is offline
May contain nuts.
Dev Articles Regular (2000 - 2499 posts)
 
Join Date: Aug 2002
Location: Sydney, AU
Posts: 2,058 stumpy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 6 m 11 sec
Reputation Power: 8
Send a message via ICQ to stumpy Send a message via MSN to stumpy
ASP PGP Components (These will allow you to ecrypt emails on the fly - i.e. automatically)

http://www.aspencrypt.com/ (component)
http://www.itech.net.au/asptools/ASPPGP.htm (component)
http://www.15seconds.com/issue/011002.htm (tutorial)

Is emailing the data really required? Locking down a machine and using SSL over HTTP is a fairly secure solution, which I'd opt for over emailing anyday.

Reply With Quote
  #10  
Old July 3rd, 2003, 01:36 PM
surfergirl surfergirl is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Turks & Caicos Islands
Posts: 13 surfergirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Stumpy - what is 'locking down a SSL' ?

Reply With Quote
  #11  
Old July 3rd, 2003, 03:32 PM
dhouston's Avatar
dhouston dhouston is offline
Contributing User
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: May 2003
Location: Tennessee
Posts: 1,355 dhouston User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via ICQ to dhouston
Surfergirl, I believe stumpy simply means that securing the data by transmitting your results over a SSL socket should be sufficient security. I'm not sure that answer really addresses the question, though. Using SSL over HTTP is great for collecting the data; what you're trying to do is to send it to the site owner, and SSL/HTTP won't help you any in this task unless you build a back-end application for retrieving the results.

Reply With Quote
  #12  
Old July 3rd, 2003, 07:34 PM
stumpy's Avatar
stumpy stumpy is offline
May contain nuts.
Dev Articles Regular (2000 - 2499 posts)
 
Join Date: Aug 2002
Location: Sydney, AU
Posts: 2,058 stumpy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 6 m 11 sec
Reputation Power: 8
Send a message via ICQ to stumpy Send a message via MSN to stumpy
spot on dhouston - I was referring to building a backend (a website hosted on the machine that allows the owner and any other authorised users to view/manipulate data). That is unless of course, the site owner actually requires the data on their home machine, for example. What exactly are you building?

Locking down a machine is basically a series of steps one takes to make a machine as a secure as possible. For a Win2K box, this includes ensuring all patches are installed, IP filtering is setup correctly, all non-essential services are stopped and uninstalled if possible, group policies are tightened, the machine is on a secure network, and behind a correctly configured firewall.

My reasoning behind my backend suggestion is that everything I've written above is usless unless the same steps are followed on ALL the users machines who will be recieving the emailed data. Emailing data out (encrypted or otherwise) essentially allows cracks to appear in your security, and large ones at that.

Reply With Quote
  #13  
Old July 4th, 2003, 08:27 AM
surfergirl surfergirl is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Turks & Caicos Islands
Posts: 13 surfergirl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks stumpy - Its private info thru a formmail. I have a programmer that will customize the CGI but after reading the lock-down scenario I believe my next step is looking for a new host running Unix or equiv.

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsWeb DesignWeb Server Configuration > IIS and SSL


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five &quot;checkpoints&quot; for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support |