Free Essay

Create a Script

In:

Submitted By Jason354
Words 977
Pages 4
CREATE DATABASE ALEXAMARA_MT;

USE ALEXAMARA_MT;

CREATE TABLE MARINA
(MARINA_NUM CHAR(4) PRIMARY KEY,
NAME CHAR(20),
ADDRESS CHAR(15),
CITY CHAR(15),
STATE CHAR(2),
ZIP CHAR(5) );
CREATE TABLE MARINA_SLIP
(SLIP_ID DECIMAL(4,0) PRIMARY KEY,
MARINA_NUM CHAR(4),
SLIP_NUM CHAR(4),
LENGTH DECIMAL(4,0),
RENTAL_FEE DECIMAL(8,2),
BOAT_NAME CHAR(50),
BOAT_TYPE CHAR(50),
OWNER_NUM CHAR(4) );
CREATE TABLE OWNER
(OWNER_NUM CHAR(4) PRIMARY KEY,
LAST_NAME CHAR(50),
FIRST_NAME CHAR(20),
ADDRESS CHAR(15),
CITY CHAR(15),
STATE CHAR(2),
ZIP CHAR(5) );
CREATE TABLE SERVICE_CATEGORY
(CATEGORY_NUM DECIMAL(4,0) PRIMARY KEY,
CATEGORY_DESCRIPTION CHAR(255) );
CREATE TABLE SERVICE_REQUEST
(SERVICE_ID DECIMAL(4,0) PRIMARY KEY,
SLIP_ID DECIMAL(4,0),
CATEGORY_NUM DECIMAL(4,0),
DESCRIPTION CHAR(255),
STATUS CHAR(255),
EST_HOURS DECIMAL(4,2),
SPENT_HOURS DECIMAL(4,2),
NEXT_SERVICE_DATE DATE );
INSERT INTO MARINA
VALUES
('1','Alexamara East','108 2nd Ave.','Brinman','FL','32273');
INSERT INTO MARINA
VALUES
('2','Alexamara Central','283 Branston','W. Brinman','FL','32274');
INSERT INTO MARINA_SLIP
VALUES
(1,'1','A1',40,3800.00,'Anderson II','Sprite 4000','AN75');
INSERT INTO MARINA_SLIP
VALUES
(2,'1','A2',40,3800.00,'Our Toy','Ray 4025','EL25');
INSERT INTO MARINA_SLIP
VALUES
(3,'1','A3',40,3600.00,'Escape','Sprite 4000','KE22');
INSERT INTO MARINA_SLIP
VALUES
(4,'1','B1',30,2400.00,'Gypsy','Dolphin 28','JU92');
INSERT INTO MARINA_SLIP
VALUES
(5,'1','B2',30,2600.00,'Anderson III','Sprite 3000','AN75');
INSERT INTO MARINA_SLIP
VALUES
(6,'2','1',25,1800.00,'Bravo','Dolphin 25','AD57');
INSERT INTO MARINA_SLIP
VALUES
(7,'2','2',25,1800.00,'Chinook','Dolphin 22','FE82');
INSERT INTO MARINA_SLIP
VALUES
(8,'2','3',25,2000.00,'Listy','Dolphin 25','SM72');
INSERT INTO MARINA_SLIP
VALUES
(9,'2','4',30,2500.00,'Mermaid','Dolphin 28','BL72');
INSERT INTO MARINA_SLIP
VALUES
(10,'2','5',40,4200.00,'Axxon II','Dolphin 40','NO27');
INSERT INTO MARINA_SLIP
VALUES
(11,'2','6',40,4200.00,'Karvel','Ray 4025','TR72');
INSERT INTO OWNER
VALUES
('AD57','Adney','Bruce and Jean','208 Citrus','Bowton','FL','31313');
INSERT INTO OWNER
VALUES
('AN75','Anderson','Bill','18 Wilcox','Glander Bay','FL','31044');
INSERT INTO OWNER
VALUES
('BL72','Blake','Mary','2672 Commodore','Bowton','FL','31313');
INSERT INTO OWNER
VALUES
('EL25','Elend','Sandy and Bill','462 Riverside','Rivard','FL','31062');
INSERT INTO OWNER
VALUES
('FE82','Feenstra','Daniel','7822 Coventry','Kaleva','FL','32521');
INSERT INTO OWNER
VALUES
('JU92','Juarez','Maria','8922 Oak','Rivard','FL','31062');
INSERT INTO OWNER
VALUES
('KE22','Kelly','Alyssa','5271 Waters','Bowton','FL','31313');
INSERT INTO OWNER
VALUES
('NO27','Norton','Peter','2811 Lakewood','Lewiston','FL','32765');
INSERT INTO OWNER
VALUES
('SM72','Smeltz','Becky and Dave','922 Garland','Glander Bay','FL','31044');
INSERT INTO OWNER
VALUES
('TR72','Trent','Ashton','922 Crest','Bay Shores','FL','30992');
INSERT INTO SERVICE_CATEGORY
VALUES
(1,'Routine engine maintenance');
INSERT INTO SERVICE_CATEGORY
VALUES
(2,'Engine repair');
INSERT INTO SERVICE_CATEGORY
VALUES
(3,'Air conditioning');
INSERT INTO SERVICE_CATEGORY
VALUES
(4,'Electrical systems');
INSERT INTO SERVICE_CATEGORY
VALUES
(5,'Fiberglass repair');
INSERT INTO SERVICE_CATEGORY
VALUES
(6,'Canvas installation');
INSERT INTO SERVICE_CATEGORY
VALUES
(7,'Canvas repair');
INSERT INTO SERVICE_CATEGORY
VALUES
(8,'Electronic systems (radar, GPS, autopilots, etc.)');
INSERT INTO SERVICE_REQUEST
VALUES
(1,1,3,'Air conditioner periodically stops with code indicating low coolant level. Diagnose and repair.','Technician has verified the problem. Air conditioning specialist has been called.','4','2','2007-07-12');
INSERT INTO SERVICE_REQUEST
VALUES
(2,5,4,'Fuse on port motor blown on two occasions. Diagnose and repair.','Open','2','0','2007-07-12');
INSERT INTO SERVICE_REQUEST
VALUES
(3,4,1,'Oil change and general routine maintenance (check fluid levels, clean sea strainers etc.).','Service call has been scheduled.','1','0','2007-07-16');
INSERT INTO SERVICE_REQUEST
VALUES
(4,1,2,'Engine oil level has been dropping drastically. Diagnose and repair.','Open','2','0','2007-07-13');
INSERT INTO SERVICE_REQUEST
VALUES
(5,3,5,'Open pockets at base of two stantions.','Technician has completed the initial filling of the open pockets. Will complete the job after the initial fill has had sufficient time to dry.','4','2','2007-07-13');
INSERT INTO SERVICE_REQUEST
VALUES
(6,11,4,'Electric-flush system periodically stops functioning. Diagnose and repair.','Open','3','0','2010-12-31');
INSERT INTO SERVICE_REQUEST
VALUES
(7,6,2,'Engine overheating. Loss of coolant. Diagnose and repair.','Open','2','0','2007-07-13');
INSERT INTO SERVICE_REQUEST
VALUES
(8,6,2,'Heat exchanger not operating correctly.','Technician has determined that the exchanger is faulty. New exchanger has been ordered.','4','1','2007-07-17');
INSERT INTO SERVICE_REQUEST
VALUES
(9,7,6,'Canvas severely damaged in windstorm. Order and install new canvas.','Open','8','0','2007-07-16');
INSERT INTO SERVICE_REQUEST
VALUES
(10,2,8,'Install new GPS and chart plotter.','Scheduled','7','0','2007-07-17');
INSERT INTO SERVICE_REQUEST
VALUES
(11,2,3,'Air conditioning unit shuts down with HHH showing on the control panel.','Technician not able to replicate the problem. Air conditioning unit ran fine through multiple tests. Owner to notify technician if the problem recurs.','1','1','2010-12-31');
INSERT INTO SERVICE_REQUEST
VALUES
(12,4,8,'Both speed and depth readings on data unit are significantly less than the owner thinks they should be.','Technician has scheduled appointment with owner to attempt to verify the problem.','2','0','2007-07-16');
INSERT INTO SERVICE_REQUEST
VALUES
(13,8,2,'Customer describes engine as making a clattering sound.','Technician suspects problem with either propeller or shaft and has scheduled the boat to be pulled from the water for further investigation.','5','2','2007-07-12');
INSERT INTO SERVICE_REQUEST
VALUES
(14,7,5,'Owner accident caused damage to forward portion of port side.','Technician has scheduled repair.','6','0','2007-07-13');
INSERT INTO SERVICE_REQUEST
VALUES
(15,11,7,'Canvas leaks around zippers in heavy rain. Install overlap around zippers to prevent leaks.','Overlap has been created. Installation has been scheduled.','8','3','2007-07-17');
UPDATE SERVICE_REQUEST
SET NEXT_SERVICE_DATE = Null
WHERE NEXT_SERVICE_DATE = '2010-12-31';

Similar Documents

Free Essay

Create an Email Script to Be Sen to at&T Customers Informing Them of the Security Breach and a Plan to Resolve the Issue. Explain Your Rationale.

...Create an email script to be sent to AT&T customers informing them of the security breach and a plan to resolve the issue. Explain your rationale. To the Loyal Employees and Contractors of AT&T, We are contacting you because we have learned of a serious data security incident that occurred on between July 29, 2011 and August 1, 2011 that involved some of your personal information. The data security breach occurred as a result of the theft of an AT&T laptop computer. Such breach has compromised several of our major commercial accounts and may have included up to 2000 of our independent cellular phone users. The information breached contained customer names, mailing addresses, payment information that was saved on our virtual “cloud” network. At this time it is uncertain whether or not PINs, security codes, and social security numbers were released. As loyal employees we understand that some of you are also customers. We are notifying you so you can take action along with our efforts to eliminate potential harm. We have advised the three major U.S. credit reporting agencies about this incident and notified them about the presence of your specific information in the data breach. Because this is a serious incident, we strongly encourage you to take preventive measures now to help prevent and detect any misuse of your information. To protect you and our customers we have retained Identity Theft ABC Inc, a specialist in identity theft and IT Security USA, Inc...

Words: 359 - Pages: 2

Free Essay

Script

...sADOBE® INTRODUCTION TO SCRIPTING © Copyright 2007 Adobe Systems Incorporated. All rights reserved. Introduction to Scripting for Windows® and Macintosh®. NOTICE: All information contained herein is the property of Adobe Systems Incorporated. No part of this publication (whether in hardcopy or electronic form) may be reproduced or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written consent of Adobe Systems Incorporated. The software described in this document is furnished under license and may only be used or copied in accordance with the terms of such license. This publication and the information herein is furnished AS IS, is subject to change without notice, and should not be construed as a commitment by Adobe Systems Incorporated. Adobe Systems Incorporated assumes no responsibility or liability for any errors or inaccuracies, makes no warranty of any kind (express, implied, or statutory) with respect to this publication, and expressly disclaims any and all warranties of merchantability, fitness for particular purposes, and noninfringement of third party rights. Any references to company names in sample templates are for demonstration purposes only and are not intended to refer to any actual organization. Adobe®, the Adobe logo, Illustrator®, InDesign®, and Photoshop® are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. Apple®...

Words: 14237 - Pages: 57

Free Essay

System Analysis and Design

...You can script anything! Page 1 of 16 Visual Basic Script (VBSCRIPT) – You can script anything! Automating the Desktop Visual Basic Scripting is easy to learn and use! It can be used to automate tasks ranging from Windows Desktop Administration, to Microsoft Office Automation, to controlling and extracting information hosted by a 3270 emulation session for the Mainframe. All you need is an ASCII text file that ends in a “.VBS” extension and a little creativity. A few notes on the language itself:          Visual Basic Script Edition is a subset of the Visual Basic language. Comments are declared by a single apostrophe, such as: ' This is a VBSCRIPT comment. Variables can be declared using the DIM, PRIVATE, or PUBLIC keywords. Variables have no explicit data type. All data types are “variant” by default. The language is not case-sensitive, so “Acounter”, “ACounter and “aCounter” are considered to be the same variable name regardless of the mix of upper and lower case. Scope is declared using “keyword … END keyword” pairings, such as CLASS…END CLASS, SUB…END SUB, IF … END IF. The unit of program development is the SCRIPT file: an ASCII text file containing executable script statements. Statements are continued by leaving a space at the end of the line followed by an underscore. Strings are concatenated using the ampersand symbol as the concatenation operator. Your toolkit for script development: You’ll need a text editor and a Windows client workstation...

Words: 4473 - Pages: 18

Premium Essay

Grantham Sql

...CREATE TABLE [dbo].[Regions]( [region_id] [int] NOT NULL, [region_name] [varchar](50) NOT NULL, CONSTRAINT [PK_Region_s] PRIMARY KEY CLUSTERED ( [region_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Locations] Script Date: 12/02/2012 16:45:35 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Locations]( [location_id] [int] NOT NULL, [street_address] [varchar](50) NOT NULL, [postal_code] [varchar](50) NOT NULL, [city] [varchar](50) NOT NULL, [state_province] [varchar](50) NOT NULL, [country_id] [int] NOT NULL, CONSTRAINT [PK_Locations] PRIMARY KEY CLUSTERED ( [location_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Jobs] Script Date: 12/02/2012 16:45:35 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Jobs]( [job_id] [int] NOT NULL, [job_title] [varchar](50) NOT NULL, [min_salary] [decimal](18, 0) NOT NULL, [max_salary] [decimal](18, 0) NOT NULL, CONSTRAINT [PK_Jobs] PRIMARY KEY CLUSTERED ( [job_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY...

Words: 924 - Pages: 4

Free Essay

Should Athletes Be Paid

...Research Assignment All the shell I’m about to list share some common features, and the major difference in syntax generally only affect scripts writers. It is not unusual to use one shell for interactive use, but another for writing scripts. There are many other programs which read a file of commands and carry out a sequence of actions, the convention allows any of them to be used as a scripting language to create new commands. There is never only one way to perform a function, and often the choice comes down to factors like the combined lengthy and repetitive sequence of commands into a single, simple command. Generalize a sequence of operations on one set of data, into a procedure that can be applied to any similar set of data. Create new commands using combinations of utilities in ways the original authors never thought of simple shell scripts might be written as shell aliases. Create customized datasets on the fly and call applications to work on them or create customized application commands/procedures like wrapping programs over which you have no control inside an environment that you can control. You have to learn what kind what kind of problems are suited to shell scripts and review the most commonly used Unix commands that are useful in shell scripts. In general the newer shells run a little faster and scripts are often more readable because logic can be expressed more cleanly user the newer syntax and many commands and conditional test are now...

Words: 264 - Pages: 2

Free Essay

Web Technology

...language (means that scripts execute without preliminary compilation). * The Real Name is ECMAScript * JavaScript is an implementation of the EMAScript language standard. * EMCMAScript is developed and maintained by the ECMA organization. * ECMA-262 is the official JavaScript standard. * First Code The document.write command is a standard JavaScript command for output to a page. * How to use comments // Single line comment /* Multiline comment */ * Where to put the JavaScript? * JavaScript in a page will be executed immediately the page loads into the browser. * We can execute a script when a page loads, or at a later event, such as when a user clicks a button. * When this is the case we put the script inside function. * Script in <head> * Script to be executed when they are called, or when an event is triggered, are placed in functions. * It is a good practice to put all your function in the head section. * Create a Alert Box * Using an Extrenal JavaScrpt * JavaScript can also be placed in external files. * External JavaScript files also often contains code to be used on several different web pages. * Extrenal JavaScript files have the file Extension .js. * External script cannot contain the <script></script> tags. * To use external script, point to the .js file in the “src” attribute of the <script> tag. ...

Words: 1110 - Pages: 5

Premium Essay

Double Indemnity

...For Writing 39B, we were assigned a project that allowed us to present our knowledge of the genre conventions that are used in the genre of Noir. We read the novel Double Indemnity throughout the course, and we also watched its film adaption. For this project, I decided to write a script that portrayed a man’s struggles of trying to make a name for himself in the show business in Las Vegas. Through his struggles, the message that I presented in my script is that the difficulty of accomplishing one’s dream often drive people to commit unlawful acts. The process of this project was rather difficult because I was lacking inspiration. My initial rough draft of the project was a TV show pitch. However, that initial rough draft was incompetent, and...

Words: 1703 - Pages: 7

Free Essay

Gallaudet

...Scripting Activity Name: Devid Brodsky Start with The First Step continue and finish all steps in the tutorial. Answer the questions as you finish each page. Please answer in your own words, do not copy and paste for full credit. 1 What is Apple Script?AppleScript is a language that it's the script files for the actions to be controlled of the computers and applications to be ran. 2 When you describe things in scripting, why is the chain of command important? Because the chain of command can identify very specific scriptable which the scripts can contain the hierarchical references. 3 What does the “tell” statement always start with? Application “Finder” On your mac make a script that opens one application. Show your instructor _______ initials tell application "Finder" to open folder "Documents" of home On your mac make a script that closes one application. Show your instructor _______ initials tell application "Finder" to close folder "Documents" of home 4 What does the “get” command do? “Get” can extract information or data into the scriptable element or object. On your mac make a script that shows the name of one application. Show your instructor _______ initials tell application "Finder" to get the name of front Finder window 5 What command can open the Finder window?tell application "Finder" to open home 6 How does the “Target” command used in the “chain of command” The target folder is contained by the Users folder that it's on the startup disk into...

Words: 536 - Pages: 3

Premium Essay

Nt1330 Unit 3 Assignment 1 Shell Script

...In this introduction, I provide any overview of the concepts regarding shell scripts. Explaining what is a shell script is and describing several common shells. Later, a tutorial is made available for demonstration how to backup a file or folder using a tool to accomplish these tasks. The SNTbackup is a shell script backup tool that gives users the option to select to select a file or folder to be backed up. A detail demonstration with screenshots is provided as a visual aid to readers. I used a simple Linux shell script to back-up the home directory of my system. The script uses the tar command to execute this task. SNTback is a simple, effective, fully customizable backup script that protects your folder by creating a duplicate of the specific folder. The duplicate of the selected folder is the place in a location of the user’s preference. Users will find the SNTbackup as a resource which allows folders such as directories to be back-up in no time....

Words: 1666 - Pages: 7

Premium Essay

Michael

...Your organization routinely uses scripts, but as some employees have left, there are scripts that contain only command lines and no one is certain of their purpose. What steps can be taken to ensure a way for others to know the purpose of a script? C. Require that script writers place comment lines inside the scripts using the # symbol to begin each command line. Which of the following shells enable the use of scripts? (Choose all that apply.) A. Bash B. csh D. zsh You frequently use the command ls-a and want to save time by just entering l to do the same thing. Which of the following commands enables you to set your system to view hidden files by only entering l? D. alias l= "ls -a" You have written a script, but when you run it there is an error. Which of the following commands can you use to debug your script? (Choose all that apply.) B. sh -v D. sh -x You have written a shell program that creates four temporary files. Which of the following commands can you use to remove these files when the script has completed its work? A. trap Which of the following commands work well for menus used in a script? (Choose all that apply.) B. case You are currently in the soruce directory, which is the new directory you have just created for storying and running your scripts. You want to make certain that the source directory is in your default path. Which of the following commands enable you to view the current default path settings? D. echo $PATH ...

Words: 696 - Pages: 3

Free Essay

Mastering Unix Shell Scripting

...–The fastest way to learn a new tool or technology • Visual – For those who prefer to learn a new topic visually • The Bible – The 100% comprehensive tutorial and reference • The Wiley Professional list – Practical and reliable resources for IT professionals The book you hold now, Mastering Unix Shell Scripting, is the first book to provide end-to-end scripting solutions that will solve real-world system administration problems for those who have to automate these often complex and repetitive tasks. Starting with a sample task and targeting the most common Unix systems: Solaris, Linux, AIX, and HP-UX with specific command structures, this book will save precious time with hands-on detail. The companion Web site contains all the timesaving scripts from the book. Our commitment to you does not end at the last page of this book. We’d want to open a dialog with you to see what other solutions we can provide. Please be sure to visit us at www.wiley.com/compbooks to review our complete title list and explore the other resources we offer. If you have a comment, suggestion,...

Words: 145371 - Pages: 582

Premium Essay

Database Processing

...What do es DML stand for? List the SQL DML statements. 7.4 Write a CREATE TABLE statement for the DEPARTMENT table. 7.6 Write a CREATE TABLE statement for PROJECT table. The default value for MaxHours is 100. Cascade updates but not deletions from DEPARTMENT to EMPLOYEE. 7.9 Write an alternate SQL statement that modifies your answer to Review Question 7.7 to make the relationship between EMPLOYEE and ASSIGNMENT a 1:1 relationship. 7.10 Write an ALTER statement to add the column AreaCode to EMPLOYEE. Assume that AreaCode is not required. 7.13 Write an ALTER statement to drop the constraint that Phone is an alternate key in EMPLOYEE. If you are using a DBMS, then at this point you should create a database named WPC and run the SQL statements from Review Questions 7.4, 7.5, 7.6, and 7.8 only. (Hint: Write and test an SQL script, and then run the script. Save the script as DPB-e12-WPC-Create-Tables.sql for future use.) Do not run your answers to Review Questions 7.7 or 7.9! After the tables are created, run your answers to Review Questions 7.10 through 7.13. Note that after these four statements have been run the table structure is exactly the same as it was before you ran them. 7.17 Write INSERT statements to add the data shown in Figure 2-32 to the ASSIGNMENT table. Run these statements to populate the ASSIGNMENT table. (Hint: Write and test an SQL script, and then run the script. Save the script as DBP-e12-WPC-Insert-ASSIGNMENTData. sql for future use.) 7.26...

Words: 462 - Pages: 2

Premium Essay

Time Stands Still Analysis

...In Time Stands Still, Donald Margulies creates a satisfying foundation for the characters, but doesn't go in depth as other play writes do with their scripts. Dickinson State University's production takes Margulies's brief description and transforms it into well-developed and dynamic characters and provides a deeper understanding regarding certain lines and moments in the script using appropriate expression of emotions through the actors' reactions and tone of voice. I also judged the production and Margulies's script based off Sarah and Mandy's personal relationship and how it was depicted. Furthermore, reading the script for Time Stands Still was dull and boring and I often found myself distracted due to the incomplete sentences and laid-back...

Words: 1539 - Pages: 7

Free Essay

Test123

...Infor ERP LN Development Tools 8.6 Developer's Guide © Copyright 2009 Infor All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of Infor and/or its affiliates and subsidiaries. All rights reserved. All other trademarks listed herein are the property of their respective owners. Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential and proprietary information of Infor. By gaining access to the attached, you acknowledge and agree that the material (including any modification, translation or adaptation of the material) and all copyright, trade secrets and all other right, title and interest therein, are the sole property of Infor and that you shall not gain right, title or interest in the material (including any modification, translation or adaptation of the material) by virtue of your review thereof other than the non-exclusive right to use the material solely in connection with and the furtherance of your license and use of software made available to your company from Infor pursuant to a separate agreement (“Purpose”). In addition, by accessing the enclosed material, you acknowledge and agree that you are required to maintain such material in strict confidence and that your use of such material is limited to the Purpose described above. Although Infor has taken due care to ensure that the material included in this publication...

Words: 52557 - Pages: 211

Premium Essay

Wirless Security

...port. An example of security detection would be an IDS (Intrusion Detection System) device that contains a signature to identify a specific attack via authorized or unauthorized ports. [2] Security professionals often have the technology and resources to develop security solutions based on prevention, detection, or a combination of the two. However, home wireless users do not have the luxury of evaluating their security approach since the guidelines and wireless devices marketed to the home user demographic have an overwhelming dependency on preventative mechanisms. The first part of this document will briefly review the basic home access point security mechanisms, and their weaknesses. The second part will cover the implementation of a script...

Words: 6220 - Pages: 25