Friday, 16 February 2018

COIT20262 | ADVANCE NETWORK SECURITY | INFORMATION TECHNOLOGY

Question 1. Analysis of Protocols with Wireshark [14 marks]

Objective: Gain a good understanding of common Internet protocols as well as using packet capture software (Wireshark)
The   file    a01-assignment-1-question-1-capture.pcap  on  Moodle  contains  packets
captured in an exchange between several computers.
The capture was performed in an internet where all subnets used a /24 mask. The capture was performed on interface eth1 on a computer with the following details:
Use the file and the above information to answer the following sub-questions. Do not try to guess answers; use only the above information, the capture file and your knowledge of networking and security to find the answers.
  • Several applications were used on several different computers. Complete the table to summarise the applications in use in the network. The columns are:
Application name or protocol, e.g. Web, SSH, ?, where ? means cannot determine from the capture.
Time of use. The time when the application is in use. Round to the nearest second. Use a range, e.g. 0-4 seconds.
The first row includes example values of selected columns. Complete (or edit) and add further rows as necessary. [4 marks]
Application Table
App.Tra.ClientServerClientServerTime
Port(s)PortIPIPof use
Web48158-0-4
48170
  • Complete the address table below to show known address information of computers/interfaces in the network. Some information in the table may not be known (e.g. cannot be determined from the capture). Use a question mark “?“ in the table if the information is not known. Use only the information in the question and the capture file to determine the answers (do not guess). [2 marks]

                                                                                                       


Address Table
ComputerInterfaceMACIP
1108:00:27:cc:71:35192.168.1.1
1208:00:27:1c:6d:33192.168.4.1
1308:00:27:61:fc:c4192.168.5.1
2
  • Some of the computers in the network have domain names as well as IP addresses. List the IP address and domain name of each computer with a domain name, and give the packet number where you found the domain name. [2 marks]
    • Consider the 1st TCP connection in the capture (which starts at packet number 3 in the capture file). Draw a message sequence diagram that illustrates all packets in that TCP connection. A message sequence diagram uses vertical lines to represent events that happen at a computer over time (time is increasing as the line goes down). Addresses of the computers/software are given at the top of the vertical lines. Horizontal or sloped arrows are used to show messages (packets) being sent between computers. Each arrow should be labelled with the protocol, packet type and important information of the message. Examples of message sequence diagrams are given in workshops. Note that you do not need to show the packet times, and the diagram does not have to be to scale. [2 marks
  • Briefly explain how a TCP connection starts (or opens), and how it completes (or closes), using the 1st TCP connection from the capture (and your message sequence diagram above) as an example. [2 marks]
  • Some of the computers in the network are running a web server. Choose one of the computers and then list which files exist on the web server, and which files do not exist on the web server. Explain how you know the files (that is, refer to the packet number(s) in the capture). [2 marks]
  • What is the password? [0 marks – this is challenge, but worth no marks. Don’t tell other students the answer if you find it.]
Marking Scheme
  • All connections are listed correctly: 4 marks. Minor mistakes in few connections: 3 marks. Missing few connections and/or multiple mistakes: 2 marks. Missing multiple connections and/or many mistakes: 1 marks. Most connections wrong: 0 marks.
  • 2 marks for service table; 2 marks for address table. All entries included: 2 marks. Some entries missing or wrong: 1 mark. Most entries missing or wrong: 0 marks.
  • All packets clearly shown: 2 marks: Minor mistakes: 1 mark. Multiple packets wrong and/or multiple mistakes: 0 marks.
  • All computers/domains listed: 2 marks. One mistake: 1 mark. More than one mistake: 0 marks.
  • Clear explanation  of  connection  open  and  close:  2    Mistakes  or  wrong explanation of one of the steps: 1 mark. Multiple mistakes or wrong explanation of both steps: 0 marks.
  • All files (both those that exist and those that don’t exist) listed with packet numbers referenced: 2 mark. Some minor mistakes or missing file: 1 mark. Multiple mistakes or multiple missing files: 0 marks.
  • This sub-question is worth 0 marks. It has no impact on your total marks

Question 2. Web Application Attacks [8 marks]

Objective: Understand how real web application attacks work, and methods for mitigating them.
For this question you must use virtnet (as used in the workshops) to study web application attacks. This assumes you have already setup and are familiar with virtnet. See Moodle and workshop instructions for information on setting up and using virtnet, deploying the website, and performing the attack.On node4, add a user to the grading web application with username set to your student ID, and password set to your first name
Perform  an  unvalidated  redirect  attack,  such  that  the  attacker  steals  your username/password.
While performing the attack, take a screenshot of the window showing the stolen username/password.
After performing and understanding the attack, answer the following sub-questions.
  • Give a short description of an unvalidated redirect attack, referring to the steps you performed in the attack and the vulnerability your attack exploited. [2 marks]
  • Assuming a website must use redirects, recommend a technique that can be used to minimise the impact of unvalidated redirect attacks. [1 mark]
  • In the attack you performed in virtnet, describe what methods the attacker used (other than an unvalidated redirect) and how the attacker benefits from the attack (that is, what do they gain and how?). [3 marks]
  • Include the screenshot of the stolen username/password obtained during the attack. [2 marks]
Marking Scheme
  • Clear description, demonstrating understanding of the attack: 2 marks. Some mistakes or misunderstandings: 1 mark. Many mistakes and/or lack of understanding: 0 marks.
  • One relevant techniques clearly described: 1 mark. No relevant techniques or lack of understanding of techniques: 0 marks.
  • Clear description  of  methods  and  benefits:  3    Minor  mistakes  or misunderstandings  in  description:  2  marks.  Missing  methods  or  benefits;  major mistakes: 1 mark. Lack of understanding of both methods and benefits, or no relevant methods/benefits: 0 marks.
  • Screenshot showing relevant information: 2 marks. No screenshot or not showing relevant information: 0 marks.

Question 3. Cryptographic Operations with OpenSSL [9 marks]

Objective: understand and apply different cryptographic primitives, use common encryption software (OpenSSL), and demonstrate secure procedures for key management.
Your task is to use OpenSSL to perform a set of cryptographic operations. When performing cryptographic operations you must be very careful, as a small mistake (such as a typo) may mean the result is an insecure system. Read the instructions carefully, understand the examples, and where possible, test your approach (e.g. if you encrypt a file, test it by decrypting it and comparing the original to the decrypted).
Perform the following steps:
  • Generate your own RSA 4096-bit key pair. Use the public exponent of 65537. Save your key pair as pem.
  • Extract your public key and save it as pem.
  • Create a Bash shell script that contains all OpenSSL commands you used on the terminal in the previous steps, as well as the following steps, and save them in a text file called bash. You should copy-and-paste the actual commands you used from the terminal as they may be used to test your submission. As this script contains commands from steps (a), (b), (d), (e), (f) and (g), you should run those commands first and then put them in your script file, then do them again using the final script.
  • Sign your Bash shell script using SHA1, saving the signature as bin.
  • Generate a 256 bit random value using OpenSSL. This value will be used as a secret key. Store the key as a 64 hex digit string in a file txt.
  • Encrypt your Bash shell script using AES-256-CBC and the key generated in step (e). Use and IV of all 0’s (that is, 32 0’s). Save the ciphertext as ciphertext.bin.
  • Encrypt your txt file using RSA so that only the Unit Coordinator can view the contents. Save the encrypted key as secretkey.bin.
Multiple files are output from the above steps. You must submit the following on Moodle:
The file names must be exactly as listed above. Use lowercase for all files and double-check the extensions (be careful that Windows doesn’t change the extension).
Examples of the OpenSSL operations needed to complete this task, as well as a Bash script, are on Moodle.
Marking Scheme
Once files are submitted, they will be decrypted/verified using the reverse operations of what you were expected to do.
If  your  files  successfully  decrypt/verify,  and  the  commands  (commands.bash) submitted are correct, then you will receive 9 marks.
If your files successfully decrypt/verify, but the commands contain errors, then you will receive between 6 and 8 marks, depending on the severity of the errors (e.g. small typo vs wrong command).
If your files do NOT successfully decrypt/verify, then your commands will be reviewed to determine what mistakes you made. You will receive between 0 and 7 marks, depending on the severity of the errors.
Up to 6 marks may be deducted for incorrect submissions (e.g. not all files submitted, additional files submitted, wrong files submitted, wrong filenames).

Question 4. Malware Research [9 marks]

Objective: research real malware and gain an understanding of the techniques used in the malware and countermeasures
Ransomware In addition it is estimated there are many more ransomware attacks not being made public, e.g. companies and users paying a ransom but not disclosing the attack. The prevalence of ransomware, and the impact it has on organisations, has led to the discussion of ransomware insurance. Your task is to study what is ransomware, what are the challenges and possible countermeasures, and report on it in an easy-to-understand manner. You must write a short report on ransomware that addresses at least the following issues/topics
  • What is ransomware?
  • What are examples of ransomware attacks? For example, names of malware, organisations attacked
  • What are common methods of infection by ransomware?
  • What is the payload in ransomware? What cryptographic techniques are commonly used?
  • How is the ransom obtained? What is the role of Bitcoin (or other cryptocurrencies)
  • What are the options for users once infected
  • What countermeasures should users and organisations take to prevent ransomware attacks?
The above is a guide of what should be covered. You may also address other issues, and you don’t have to address them in the order listed.
There is no minimum/maximum length of the report. As a guide 1 to 2 pages of text (not including pictures) may be appropriate. In addition you may include your own pictures (not pictures from other sources) if they are useful in explaining ransomware. Including pictures from other sources, or including pictures that do not help with the explanation will not gain marks and may lead to reduced marks.
You may assume the audience of the report has similar background on network security as you. You should refer to techniques and concepts covered in the unit, and give sufficient technical detail to demonstrate you understand ransomware
At least five (5) references should be included and follow the Harvard (author-date) style.
References may be a mix of websites, textbooks and conference/journal articles

Marking Schem

1 mark will be given for each of the seven (7) topics/issues ((a) to (g)) if they are satisfactorily explained
1 mark will be given if the report is well presented, including: well formatted, few spelling/grammar mistakes.
1 mark will be given if the references are sufficient and appropriate. Inclusion of inappropriate/irrelevant references will result in 0 marks.
Up to 6 marks may be deducted if the report is difficult to read (e.g. due to grammar), includes information irrelevant to the question, and/or includes material (pictures, quotes) taken from other sources.

No comments:

Post a Comment

Recent Questions

Learn 11 Unique and Creative Writing Examples | AssignmentHelp4Me

Learn 11 Unique and Creative Writing Examples | AssignmentHelp4Me elp4Meelp4Me