Web Programming Week 8 Old Dominion University

Slides:



Advertisements
Similar presentations
CS 22: Enhanced Web Site Design - Week 8Slide 1 of 15 Enhanced Web Site Design Stanford University Continuing Studies CS 22 Mark Branom
Advertisements

Presenter: James Huang Date: Sept. 29,  HTTP and WWW  Bottle Web Framework  Request Routing  Sending Static Files  Handling HTML  HTTP Errors.
Web Programming Week 6 Old Dominion University Department of Computer Science CS 418/518 Fall 2010 Martin Klein 10/05/10.
CS 174: Web Programming February 26 Class Meeting Department of Computer Science San Jose State University Spring 2015 Instructor: Ron Mak
Project Four Forms Discuss form processing Describe the difference between client-side and server-side form processing Add a horizontal rule to a Web page.
Open Source Server Side Scripting ECA 236 Open Source Server Side Scripting Includes and Dates.
Web Scripting [PHP] CIS166AE Wednesdays 6:00pm – 9:50pm Rob Loy.
NMD202 Web Scripting Week3. What we will cover today Includes Exercises PHP Forms Exercises Server side validation Exercises.
CS 174: Web Programming September 30 Class Meeting Department of Computer Science San Jose State University Fall 2015 Instructor: Ron Mak
CSC 2720 Building Web Applications Server-side Scripting with PHP.
Web Server Design Assignment #1: Basic Operations Due: 02/03/2010 Old Dominion University Department of Computer Science CS 495/595 Spring 2010 Martin.
Web Server Design Assignment #2: Conditionals & Persistence Due: 02/24/2010 Old Dominion University Department of Computer Science CS 495/595 Spring 2010.
Web Programming Week 9 Old Dominion University Department of Computer Science CS 418/518 Fall 2010 Martin Klein 10/26/10.
Web Server Design Week 13 Old Dominion University Department of Computer Science CS 495/595 Spring 2010 Martin Klein 4/7/10.
Web Programming Week 1 Old Dominion University Department of Computer Science CS 418/518 Fall 2007 Michael L. Nelson 8/27/07.
Web Programming Assignment #3: Admin, Moderator and User Functions Old Dominion University Department of Computer Science CS 418/518 Fall 2008 Michael.
Web Server Design Week 3 Old Dominion University Department of Computer Science CS 495/595 Spring 2006 Michael L. Nelson 1/23/06.
Web Server Design Week 6 Old Dominion University Department of Computer Science CS 495/595 Spring 2006 Michael L. Nelson 2/13/06.
Homework 4.
Web Server Design Assignment #5: Unsafe Methods & CGI
Web Server Design Assignment #4: Authentication
Web Server Design Assignment #2: Conditionals & Persistence
HTTP Protocol.
Tracing Examples Computer Forensics Tracing Examples.
Web Programming Assignment #1: Basic BBS Operations
Web Server Design Assignment #5 Extra Credit
Introduction to Digital Libraries Assignment #3
Web Server Design Week 15 Old Dominion University
JavaScript Form Validation
Web Server Design Assignment #2: Conditionals & Persistence
Web Server Design Week 16 Old Dominion University
Web Programming Assignment #4: Searching, Notification & Upload
Web Programming Week 8 Old Dominion University
Web Server Design Assignment #2: Conditionals & Persistence
Old Dominion University Department of Computer Science
Web Server Design Week 6 Old Dominion University
Web Server Design Week 10 Old Dominion University
Web Programming Week 7 Old Dominion University
Peer-to-Peer Information Systems Week 6: Assignment #4
Introduction to Information Retrieval Assignment #3
Introduction to Digital Libraries Assignment #3
Web Server Design Week 11 Old Dominion University
Web Programming Assignment #3: Admin and User Functions
Web Server Design Week 4 Old Dominion University
Web Programming Assignment #4: Searching & Notification
Web Server Design Week 16 Old Dominion University
Web Server Design Week 12 Old Dominion University
Client-Server Model: Requesting a Web Page
Web Programming Assignment 4 - Extra Credit
Web Server Design Week 14 Old Dominion University
Web Server Design Assignment #1: Basic Operations
Peer-to-Peer Information Systems Assignment #3
Peer-to-Peer Information Systems Week 6: Assignment #4
Introduction to Digital Libraries Assignment #2
Web Programming Assignment #1: Basic BBS Operations
Peer-to-Peer Information Systems Week 6: Assignment #3
Introduction to Digital Libraries Assignment #3
Introduction to Digital Libraries Assignment #3
Peer-to-Peer Information Systems Assignment #2
Web Server Design Assignment #5 Extra Credit
Web Programming Assignment #1: Basic BBS Operations
Introduction to Digital Libraries Assignment #1
Web Server Design Week 3 Old Dominion University
Peer-to-Peer Information Systems Assignment #5
Peer-to-Peer Information Systems Week 12: Assignment #5
Old Dominion University Department of Computer Science
Web Programming Week 1 Old Dominion University
Introduction to Digital Libraries Assignment #4
Introduction to Digital Libraries Assignment #2
Web Programming Assignment #3: Admin and User Functions
Presentation transcript:

Web Programming Week 8 Old Dominion University Department of Computer Science CS 418/518 Fall 2006 Michael L. Nelson <mln@cs.odu.edu> 10/16/06

Server-Side Input Validation Client-side input validation is nice but not a replacement for server-side validation client-side security == no security malicious or broken clients client-side (Javascript) examples: http://www.codeave.com/javascript/category.asp?u_category=Forms Server-side can be built using: empty(), is_numeric(), is_string(), is_bool(), is_array(), is_object(), etc. http://us2.php.net/manual/en/ref.var.php

Separate URI to Handle Errors … if (empty($var1) { $errors .= "$var1 should not be empty"; } if (!is_numeric($var2) { $errors .= "$var2 should be a number"; // check all anticipated error conditions if (empty($errors)) { // do interesting work } else { $errors = urlencode($errors); header("Location: http://foo.edu/error.php?error=$errors");

Same URI to Handle Errors … if (empty($var1) { $errors .= "$var1 should not be empty"; } if (!is_numeric($var2) { $errors .= "$var2 should be a number"; // check all anticipated error conditions if (empty($errors)) { // do interesting work } else { internal_error_function($errors); function internal_error_function ($errors) { // generate pretty HTML response // provide link to start over

Same URI with Error Argument … if (empty($var1) { $errors .= "$var1 should not be empty"; } if (!is_numeric($var2) { $errors .= "$var2 should be a number"; // check all anticipated error conditions if (empty($errors)) { // do interesting work } else { $errors = urlencode($errors); header("Location:".$_SERVER["REQUEST_URI"]."?errors=$errrors";

Regular Expressions More Info: http://us2.php.net/regex if ( !ereg ("([0-9]{2})-([0-9]{2})-([0-9]{4})", $_POST['movie_release'] , $reldatepart) ) { $error .= "Please+enter+a+date+with+the+dd-mm-yyyy+format"; } if $_POST['movie_release'] == 31-05-1969 then: $reldate[0] = 31-05-1969 $reldate[1] = 31 $reldate[2] = 05 $reldate[3] = 1969

Date/Time More info: http://us2.php.net/manual/en/ref.datetime.php $movie_release = mktime ( 0, 0, 0, $reldatepart['2'], $reldatepart['1'], $reldatepart['3']); // $seconds_since_Jan1st1970 = mktime(hour,min,sec,month,day,year)

Apache httpd.conf % less /etc/apache2/httpd.conf … # # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # Some examples: #ErrorDocument 500 "The server made a boo boo." #ErrorDocument 404 /missing.html #ErrorDocument 404 "/cgi-bin/missing_handler.pl" #ErrorDocument 402 http://www.example.com/subscription_info.html

SMTP Mesg PHP syntax: mail($to,$subject,$body,$headers) From mln@cs.odu.edu Mon Oct 16 14:41:35 2006 Return-Path: <mln@cs.odu.edu> Received: from ruby.ils.unc.edu (ruby.ils.unc.edu [152.2.81.1]) by cartero.cs.odu.edu (8.13.6/8.13.6) with ESMTP id k9GIfZw3001706 for <mln@cs.odu.edu>; Mon, 16 Oct 2006 14:41:35 -0400 (EDT) Received: from cartero.cs.odu.edu (cartero.cs.odu.edu [128.82.4.9]) by ruby.ils.unc.edu (8.12.11.20060308/8.12.10) with ESMTP id k9GIfYFK012598 for <mln@ils.unc.edu>; Mon, 16 Oct 2006 14:41:34 -0400 Received: from tango.cs.odu.edu (tango.cs.odu.edu [128.82.4.75]) by cartero.cs.odu.edu (8.13.6/8.13.6) with ESMTP id k9GIfYJR001703 for <mln@ils.unc.edu>; Mon, 16 Oct 2006 14:41:34 -0400 (EDT) Received: from localhost (mln@localhost) by tango.cs.odu.edu (8.12.9+Sun/8.13.5/Submit) with ESMTP id k9GIfYRf026120 X-Authentication-Warning: tango.cs.odu.edu: mln owned process doing -bs Date: Mon, 16 Oct 2006 14:41:34 -0400 (EDT) From: Michael Nelson <mln@cs.odu.edu> To: mln@ils.unc.edu Subject: test email mesg Message-ID: <Pine.GSO.4.58.0610161441010.3863@tango.cs.odu.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Status: R X-Status: X-Keywords: this is an email that I'm sending to myself (albeit through a different email addr). ---- Michael L. Nelson mln@cs.odu.edu http://www.cs.odu.edu/~mln/ Dept of Computer Science, Old Dominion University, Norfolk VA 23529 +1 757 683 6393 +1 757 683 4900 (f) SMTP Mesg PHP syntax: mail($to,$subject,$body,$headers)