Description of the kerberos authentication protocol

Assignment Help Computer Network Security
Reference no: EM13736166

Question 1:

Snort Rules

This question presents a fictitious security vulnerability in a range of lasers printers. The question requires that you develop SNORT IDS rules to detect exploits of this fictitious vulnerability. All information regarding this vulnerability is fabricated to give the illusion of a real security threat. As a result, searches on the Internet will not yield any information regarding the signature of this vulnerability. All the information required to detect exploits for this vulnerability are presented in this question, except where noted otherwise.

You are a security specialist working for XYZ Incorporated. XYZ use SNORT as their NIDS which protects both their IP sub-networks being 192.168.1.0/24 and 192.168.2.0/24.

A security vulnerability has been detected in the Humphrey Pollard Laserprint 12050 printer model. This vulnerability is remotely exploitable and allows the execution of arbitrary code.

There is a bug in the way the printer processes the postscript spool management header. A sample of a spool header is given below:

%!PS-Adobe-3.0 %%Creator: texttops/CUPS v1.2.2%%CreationDate: Thu 21 Sep 2006 11:49:57 AM EST%%Title: TODO %%For: username %%DocumentNeededResources: font Courier-Bold .

The printer's code which parses these headers only allows 8 bytes for the "%%For" field value buffer in memory. In the example above, the field value is "username". It is possible to overflow the buffer by providing a value to the "%%For" field that is greater than 8 bytes. The "%%For" field can be found anywhere in the packet.

An exploit has been released in the form of a worm which when infecting the Laser printer's memory, tricks the laser printer into emailing all documents received for printing to an email account in Russia. The worm propagates by scanning networks in proximity of its own for other vulnerable printers. On finding vulnerable machines, it copies itself to them and the cycle continues.

It also propagates via email as a PDF attachment. The malicious code is embedded in the PDF file. The email message suggests that the attached document contains a joke and requires printing to a laser printer to view. When the user prints the PDF, its payload is sent to the printer either directly, or via a printer spooling server. Effectively, this means the worm can attack printers from any host on the network.

If a printer is found to be compromised, power-cycling (turning off and then on) the printer will erase the worm from the printer's volatile memory. However, this does not prevent the printer from being re-infected.

You are required to write 2 SNORT IDS rules labeled (a) and (b) to manage this vulnerability until patches are applied and printers reset. Rule (a) must detect attempts to exploit this vulnerability on any printer in the company network. The rule should scan for attempts from any host on the network to any host on the network. It should also scan only for connections to the Jetdirect printing TCP/IP port number, used by this range of printers. You may need to research Jetdirect to identify which port number it uses for printing and what transport protocol. Google is a good place to start.

The signature of the exploit is given as follows:
%%For: username

The value "username" can be any sequence of characters, but must be exactly 8 characters long. For example, "username" could be "abcdefgh". Note also there is a space between the colon and "username". Immediately following the 8 characters for the username is the payload of the exploit, which is given below as decimal byte values:

124 185 30 135 99 214 51 29

Your rule should match the entire sequence as described above starting from "%%For:" through to the last decimal byte of the exploit payload "29". On detecting packets, your rule should generate an alert with a message stating: "Attempt to exploit laser printer vulnerability".

Rule (b) must detect attempts by the malicious payload running on any infected printers to email documents to the Internet.

You have 6 printers on your network that are vulnerable to this attack. Their IP addresses are:

192.168.1.45
192.168.1.40
192.168.2.15
192.168.2.30
192.168.2.31
192.168.2.40

Your email rule must apply only to the vulnerable printers on the network. In other words, your rule should detect attempts to email the hacker from only the above printers, and no other hosts.

This model of laser printer also provides scanning and faxing capabilities. When the scanning function is used, the unit will email the scanned document to an Internet email address given by the user when scanning. As a result, it is normal behaviour for these printers to send emails via SMTP. Therefore, it is necessary to check the recipient email address of the document. The rule should detect attempts to email users outside of the organisation, as no document should be emailed outside the company from a printer. The organisation's domain name is: xyzcorp.com.au. So any emails sent to an address of form: [email protected] should not be detected as these addresses are for company employees. Any other email addresses without the exact domain name above should be detected. Any mail server could be used to deliver the email. On detecting an email from one of these printers to an address outside the organisation, your rule should generate an alert with the message: "Compromised printer attempting to email document outside organisation"

For both rules, be sure to complete the following.

1. Allocate an appropriate SID value and a revision number

2. Designate an appropriate class type for this attack.

3. Annotate your rules with comments describing what each component of the rule does, so other security specialists in your team can see how your rules are written. Comments can be introduced to your rules file snort.conf by preceding each line with a hash character "#". Anything after the hash character to the end of the line will be treated as a comment by SNORT and ignored by the rule parsing code. This is how you should comment your rules.

An example of how to present your rules in your assignment document is shown below:

# Your explanation of the below in italics
var HOME_NET 138.77.23.0/16
var EXTERNAL_NET !138.77.23.0/16
# Your explanation of the below
drop udp $EXTERNAL_NET any -> $HOME_NET 993 \
#Your explanation of the below, and so on...
... \

An example explanation for a SNORT rule option:

# The content of the packet must contain the string "USER root" to be matched.
# Furthermore, the offset option specifies that the string "USER root" should be
# matched exactly 10 bytes from the beginning of the packet. In other words, it will
# only match packets where 10 bytes from the start of the payload, the string
# "USER root" is specified.

content: "USER root"; offset:10; \

Testing your rule

A pcap dump file has been provided which includes the signatures for both the laser printer exploit, and the email messages that are sent from infected printers. This file serves two purposes. Firstly, it allows you to analyse the format of normal and malicious packets. Using Wireshark, you are able to open the pcap dump file, look at the format of the packets, and search for the malicious ones using the information in this document. Secondly, the pcap dump file can be used with SNORT to test your rules. To do the above, you need have installed SNORT and Wireshark on your home computer.

Instructions on how to obtain these applications are available on the course website under the "Software Resources" section.

To test your rule with SNORT, copy the sample.pcap file to a working folder on your computer. In this same folder, create a sub-folder called "logs". Open up notepad and save an empty file in your working folder called "snort.conf". This file will contain your rules. As you change the rules in notepad, resave the file. Now to test your rule using SNORT, you execute the SNORT program from a command window as follows:

c:\snort\bin\snort.exe -r sample.pcap -c snort.conf -l log

(This is an example - your install location for SNORT may differ. Note also this is a windows example - you may use Linux or OS X to complete this assignment).

Check the output of the alert.ids file to see which packets have been detected by your rules. Also check the packet dump files as generated by SNORT using Wireshark which give the full packet content that were detected by your rules. They are the files named "snort.log.{number}" where {number} is the timestamp value of when you ran SNORT. This provides a history of each time you execute SNORT. The greatest number is the newest version. You can drag these files from explorer window onto the Wireshark window. Also, alerts are appended to the end of your alert.ids file each time you execute SNORT. So just a hint: before you run SNORT each time to test your rules, delete the alerts file and the dump files so it is less confusing. Otherwise, they can be hard to read. Reviewing these logs files are essential to helping you to identify where you have gone wrong with your rules.

Your alert.ids file should contain the following:

[**] [1:1000022:1] Attempt to exploit laser printer vulnerability [**]
[Classification: <<DELETED>>] [Priority: 1]
09/21-11:49:57.965425 192.168.2.31:49140 -> 192.168.2.30:9100
TCP TTL:64 TOS:0x0 ID:39862 IpLen:20 DgmLen:782 DF
***A**** Seq: 0x31A554DB Ack: 0xFCFF2DD Win: 0xB7 TcpLen: 32
TCP Options (3) => NOP NOP TS: 23973781 489101

[**] [1:1000022:1] Attempt to exploit laser printer vulnerability [**]
[Classification: <<DELETED>>] [Priority: 1]
09/21-11:50:13.094991 192.168.2.11:49144 -> 192.168.2.40:9100
TCP TTL:64 TOS:0x0 ID:44774 IpLen:20 DgmLen:782 DF
***A**** Seq: 0x322170AB Ack: 0x100D84CB Win: 0xB7 TcpLen: 32
TCP Options (3) => NOP NOP TS: 23977563 489132

[**] [1:1000021:1] Compromised printer attempting to email document outside orga
nisation [**]
[Classification: <<DELETED>>] [Priority: 2]
09/21-14:57:32.058922 192.168.2.40:1941 -> 192.168.1.4:25
TCP TTL:128 TOS:0x0 ID:65489 IpLen:20 DgmLen:70 DF
***AP*** Seq: 0xFC0CF9C8 Ack: 0x32CC7240 Win: 0xFE7D TcpLen: 20

[**] [1:1000021:1] Compromised printer attempting to email document outside organisation [**]
[Classification: <<DELETED>>] [Priority: 2]
09/21-15:02:40.010228 192.168.1.40:1955 -> 192.168.1.4:25
TCP TTL:128 TOS:0x0 ID:5281 IpLen:20 DgmLen:70 DF
***AP*** Seq: 0x9B7E2E43 Ack: 0x463DFBEF Win: 0xFE7C TcpLen: 20

Note: The classification identifer has been deleted. If your alert.ids file is different to the above, you have false positives or false negatives. This means your rule is not specific enough, or is too specific. Identify which alerts are incorrect in your file and open the snort.log.{number} dump file to view their contents to see where you have gone wrong. If you are missing alerts, then identify the timestamp in the alert.ids file given above and search for the same packet in the sample.pcap file using Wireshark. Instructions on how to do this using Wireshark are given below in the tips section.

Tips:

• Search for the SMTP RFC document "RFC0821" via google. In particular, you will need to familiarise yourself with the "RCPT TO:" SMTP command. This is the format you need to check for to detect safe receiving email addresses.

• Use Wireshark to analyse the pcap dump file. You can identify which packets contain the exploit by using the "Edit" menu, and "Find Packet" option. You can specify a String value and search in the "Packet bytes" to find the signatures of the vulnerability.

• Make use of SNORT to test your rule. Check the output from your alerts file with what is provided in this document to see if you have implemented your rule properly. In particular, check for false positives, and false negatives.

• The alert.ids file generated by SNORT on execution will provide the headers of the packets that were detected by your rules. If you wish to see the full contents of these packets, you can search for them in the pcap dump file using Wireshark. The headers of the packet in the alert.ids file include the timestamp when the packet was captured. You can search for the exact timestamp in the pcap file to find the same packet. This can be done by changing the settings of Wireshark to show the absolute time of the packets, rather than an offset from the very first packet. Then if you wanted to find the packet in the alert.ids file with the timestamp: "11:49:57.965425", you would search for the same string in Wireshark. To change the display format for the timestamp in Wireshark:

1. Click "View" menu
2. Click "Time display format" option
3. Click "Time of day"

• Certain characters are "special" in SNORT rules. These characters must be escaped to tell SNORT to treat them literally, rather than interpret their special meaning. To escape a special character, you simply precede it with a back-slash "\". For example, if you wish to continue your rule on a new line in the configuration file, then you end the line with a "\" character to escape the special meaning of the ENTER character at the end of the line. SNORT treats the ENTER character as special. It means it is the end of the current rule. With a "\" at the end of the line, it tells SNORT to treat it as a literal ENTER which will be interpreted as just spacing for your rule and allows it to continue on the next line. If you receive the following error when you attempt to run your rule through SNORT: "ParsePattern Got Null enclosed in quotation marks (")!", then you have a special character in your rule content that needs to be escaped. Refer to the SNORT documentation website for details on which characters have special meanings.

• Research how to express a group of unrelated individual IP addresses as a source or destination.

• Make sure you include the classtype in your rule. Refer to the SNORT documentation to determine which classtype is appropriate for this exploit as described above. You will probably have to make use of the classification.config file (located in the Snort\etc\ directory) - research how to make reference to this file from your rules file.

• Failure to use the correct syntax in your rule will mean the rule is ineffective. This means you will lose marks on this question.

• Refer to the Snort manual for assistance in writing the rules - a link to the manual is availed from the Software Resources section of the course web site.

Question 2:

Kerberos Authentication Protocol

Kerberos is one of the most secure authentication protocols being used today. The Kerberos authentication protocol is very briefly described on page 280 in Chapter 8 of the Ciampa textbook. You are required to do personal research to complete the following questions regarding this topic:

A. Give your general description of the Kerberos authentication protocol.

B. Explain the term: Authenticator used in the Kerberos authentication protocol.

C. In the Kerberos authentication protocol, there are 3 basic roles: client, server and Key Distribution Centre (KDC). Give your description of each of them.

D. By explaining the term: Session Ticket, describe how a session key is created by KDC, and distributed to the client and the server

E. Describe the mutual authentication procedure between the client and the server after the client obtains the session ticket

Question 3:

Wireless Protocols

WPA2 Enterprise security is an integral component of modern network infrastructure. AES/CCMP encryption and 802.1x authentication is currently regarded as the best way of securing enterprise-level wireless networks. You are required to do personal research to complete the following questions regarding this topic:

A. Describe 802.1x authentication and the steps that when a wireless client connects to a network using RADIUS server for authentication.

B. Explain the PEAP protocol - how does it differ from EAP and what EAP deficiency does it address?

C. What makes a brute-force attack both particularly difficult and potentially easy on a wireless network using AES/CCMP encryption and 802.1x authentication? Hint: What do you need to know in order to attempt the attack?

D. Assume an office wireless network was only configured with WPA2-AES encryption (i.e. no additional authentication standards). What problems would this cause?

E. Assume an office wireless network was only configured with 802.1x authentication (i.e. no additional encryption). What problems would this cause?

Question 4: Steganography Exercise

This exercise requires you to use Steganography to embed secret text into a graphic file and also to embed a secret watermark into a second graphic file. To accomplish these tasks you are to download a copy of OpenStego from the internet. You will also need to download the two graphic files cqu_logo.png and Bundaberg.jpg from the Moodle site.
a) Data Hiding in a graphic file

You are to create a "message.txt" file containing the text "This is my hidden text file" to use as your Message File in OpenStego.

You are to use "cqu_logo.png" as your Cover File in OpenStego and "extra_logo.png" as your Output Stego File.

Note: You MUST use your student number (sxxxxxxx) as the password .

You are to include both your message.txt and extra_logo.png files in your assignment submission.

b) Watermarking a second graphic file [5 marks]

You are to generate a signature file ("COIS23001Ass2.sig") using "Copyright 2015,COIS23001" as the PassPhrase.

You can now embed your watermark in the "Bundaberg.jpg" graphic file to create your Output file called "ass2sig.jpg".

You are to submit a copy of your COIS23001Ass2.sig ass2sig.jpg with your assignment submission.

Question 5

You are the Chief Information security Officer (CISO) of a small medium sized - accounting Services Company. In the last few weeks, senior staff have been complaining that some confidential information has been disclosed via email without any authorisation. You are approached by the Chief Information Officer (CIO) to discuss the issue and see the most appropriate way to tackle this problem. You suspect that some of the employees might be using their technical skills to access sensitive information either from the mail servers or during transmission. To counteract this malpractice, you suggest the CIO the implementation of encryption. Before you actually implement the system, you want to conduct a pilot using the GNU Privacy Guard (GPG) software.

The pilot requires that you install GNU Privacy Guard (GPG) software onto your own computer and complete the following activities.

After installing GPG software onto your own computer, complete the following tasks:

1. Generate your own key-pair by using GPG software and do not create a pass-phrase for your private key (in a real world this is not a good practice. Just for the sake of this assignment, do not create a pass-phrase). You need to use screen-shots to show that you have successfully completed this task. A valid screen-shot is similar to the one shown in Figure 1. Pay attention to the red circles, which demonstrate the success of key pair generation.

Figure 1 Key Pair Creation

2120_Key Pair Creation.png

2. Export your public key and paste it into your assignment document. You need to use two screen-shots to show that you have successfully completed this task. One screen-shot is to show the use of gpg command and the other is to show the exported public key. For example, the screen-shot in Figure 2, shows a public key, which is exported into the file: CC-pubkey.txt (2 marks).

Figure 2 Screen-shot of a Public Key

2028_Key Pair Creation1.png

3. Explain the steps how to import your Lecturer's public key from the key-server https://pgp.mit.edu (your lecturer created a public key and stored it at the MIT PGP Public Key Server). Include in the assignment document the gpg command line, individual options you used and their meaning. As above, use screenshots of website interactions, with accompanying explanations of the screenshots to explain the steps how to import your Lecturer's public key from the key-server https://pgp.mit.edu.

4. Create an ASCII text file to store your full-name, your student number, and your student CQU email address (please do not use any other email address). Then using your lecturer's public key, encrypt this text file. The resulting file should also be ASCII armored so that it is readable once decrypted by your lecturer / tutor. Failure to do so will result in loss of marks.

Submit the resulting encrypted file along with your assignment solutions document (word document) via the online submission system and following the naming convention given above.

Reference no: EM13736166

Questions Cloud

Wrirte a paper about history of chicago 1893 or earlier : Paper about History of Chicago 1893 or EARLIER. Guidelines from the teacher: 1893 or EARLIER. Sample topics are Jane Adams, Pullman and the railroads, or even the first mayor of Chicago.
Develop a stress management seminar for the employees : Imagine you are a new employee in a human resource (HR) department. Your first task is to develop a stress management seminar for the employees.
Identify five evidence-based performance : Query the NQMC and write a 400- to 600-word paper and identify five evidence-based performance measures related to prescribing the correct medications for hospitalized patients. The measure should focus on choosing the right medication for the pat..
Do you believe that consumers on whole receive more benefit : Do you believe that consumers on the whole receive more benefit than risk from marketers knowing their personal information? Why or why not
Description of the kerberos authentication protocol : Give your general description of the Kerberos authentication protocol and explain the term: Authenticator used in the Kerberos authentication protocol.
Pitch a new integrated marketing communication plan-imc : Select a current product with which you are familiar, and pitch a new Integrated Marketing Communication plan (IMC) to your client
Discuss the advantages and disadvantages of tqm : Your new product was performing wonderfully until a foreign competitor that is subsidized by their government produced the same product or service at a lower cost. What will probably be the strongest objection from your research and development dep..
How geography contribute to success of american revolution : How did each of the following contribute to the success of the American Revolution? George Washington, leadership abilities, Geography, Foreign assistance, Colonists' spirit and attitude.
Explain participative behavior : How much learning orientation, social capital, result oriented-ness, desire to affiliate, and relative cost explain participative behavior

Reviews

Write a Review

Computer Network Security Questions & Answers

  Traffic padding what is traffic padding and what is its

what is traffic padding and what is its purpose? plz give this que of answer

  Network security fundamentals

The Chief Executive Officer (CEO) and other business staff have no knowledge of network security or the threats they face. They have an open position for a Chief Information Security Officer (CISO), but have yet to fill it. Thus, they hire you for..

  What is the definition of privacy as it relates to

1introduction to the management of information security?2.which trend in it has eliminated the we have technology

  Describe a process that would allow alice to send a message

Suppose that Alice and Bob need to communicate, and have decided to use asymmetric (public key) encryption.

  How to set up or improve their cybersecurity

How should government justify telling private industry how to set up or improve their cybersecurity?

  Network threats

confidentiality, integrity and availability, trojan horse, Compress the data, Caesar cipher, rail fence cipher, PGP operation, network perimeter, MSFT, RSA cryptosystem

  What are the risks of implementing this technique

list one way to prevent malware from executing in Windows from directories that are not normally used for executables. What are the risks of implementing this technique?

  Assess the levels of responsibility between government

write a three to fivenbsp page paper in which youdescribe the impact and the vulnerability of the scada stuxnet worm

  Attributes of company organizational culture

Some attributes of a corporation's organizational culture are so obvious that even an independent observer can feel them. Provide an example of such an observation and describe what cultural phenomenon it defines.

  Search the internet for one instance of a security breach

search the internet for one instance of a security breach that occurred for each of the four best practices of access

  Mobile computing has dramatically changed how information

mobile computing has dramatically changed how information is accessed and shared. wireless networking has been an

  Give the security levels top secret-secret and confidential

Give the security levels Top SECRET,SECRET,CONFIDENTIAL, and UNCLASSIFIED (order from highest to lowest), and catergories A, B,C, specify what type of access (read,write, both or neither) is allowed in each of the following situations .

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd