久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

代寫COMP6236 Buffer Overflow Attacks

時間:2024-02-26  來源:  作者: 我要糾錯


COMP6236

2024

Coursework 1: Buffer Overflow Attacks and Software Hijacking

This coursework is divided into two parts. Part one is on buffer overflow attacks, which are based on Buffer Overflow Lab. You will be assessed on your ability to successfully exploit buffer overflows and other vulnerabilities and explain your methodology. Part two is on software hijacking, based on Reverse Engineering Lab and will assess your ability to carry out the successful exploitation of software. The coursework is an individual coursework and is worth 30% of the module marking in total.

Notes

The following notes are intended to highlight some common ”gotchas”.

1. Remember that Metasploit’s pattern create can be set to a length of your choice and does not have to be 100.

2. If you get stuck, try consulting the man page for the tools you are using.

3. If an exploit seems to work but closes out immediately instead of giving you a shell, remember that both “Cat” and “binsh” can be forced to remain open. Have a look at their man pages (by running “man cat” and “man /bin/sh”).

4. Remember that if you are counting characters including hex values, then the “x” should be omitted from the count.

5. You might want to increase the memory allocation to your VM when running Ghidra (VirtualBox -> settings -> system).

6. Remember that in Ghidra you can search for functions under the Symbol tree to the left, but you can also click the search option at the top and then select to search for other things, such as strings.

7. The application you have to compromise in part 2 will have multiple popups coming up to communicate both flags and errors, with more than one coming at a time. So please do not close down the application as soon as you get a popup but instead wait a few seconds.

8. Part 2 has more than one flag, so please read all the information displayed by the application on every popup and in the main window as these may change after you patched something.

9. In the settings tab for your VM, find the advanced section (settings -> general -> advanced) and then enable shared clipboard for ”host to virtual machine”. This will allow you to type commands on your host system and then copy them over to the VM.

Submission Instructions

Please use the template provided and submit using Turnitin on the module blackboard page at this link. (You should be able to see the “Assignments” tab on the left panel)

Marking Criteria

Your submission will be marked out of 35 and then refactored to a mark out of 30. The following criteria will be used.

Part

Criteria

Marking Scheme



Part 1


Ability to identify and exploit the vulnerabilities introduced during main lectures and labs, such as buffer overflows.

Up to 20 marks, awarded based on (i) how many flags are correctly retrieved and (ii) the correctness and completeness of the description about vulnerabilities and exploits.



Part 2



Ability to decompile, reverse engineer and patch a given application.

Up to 15 marks, awarded based on (i) how many flags are correctly retrieved and (ii) the correctness and completeness of the description about each

process in the licence-checking function.



Marks calculation

This coursework counts for 30% of the module mark. It has a total of 35 points available which are then refactored to a mark out of 30.





File format

Submitted file is in PDF format, the report is compliant with the provided template. If the format is not PDF, a 5 marks penalty will be applied. If the report is corrupted or cannot be opened, 0 mark will be awarded for the coursework.


Part 1

Setup

As in Reverse Engineering Lab, we will have to use an OVA image. Please download the VM from here, and import it into Virtualbox. To import the OVA, first open VirtualBox, then hit ”CTRL + I” or select ”import appliance” from the ”File” menu (top left). Then click next and follow the installation procedure. Thereafter please check the following before launching the VM:

VirtualBox 6 and earlier - Most university machines

1. Once the machine is imported, single-click on it in VirtualBox and then to the right go to ”networking” and select ”Bridged adaptor”

2. Wait for the VM to boot, and on boot login with User: info and Password: info to see the current IP address printed.

VirtualBox 7

1. You need to go File → Tools → Network Manager and make a host network if one doesn’t exist already.

2. Make sure DHCP enabled is ticked as illustrated in Figure 1 or the VM will hang at boot forever.

3. Then go to VM network settings and check it’s set to that host-only network, and specify the network you created or the one that exists.

4. Wait for the VM to boot, and on boot login with User: info and Password: info to see the current IP address printed.

Troubleshooting: If, after successfully importing it, the VM fails to launch with a networking error, just go to networking settings and change the option to one not already selected.



Figure 1: DHCP enabled

Marks Breakdown

This Lab contains 4 flags. Once you complete each challenge, you will need to submit your flag alongside a step-by-step guide of how you found it on the marking form.

The marks for this are broken down as follows:

1 Mark For each flag.

4 Marks For your step-by-step guide on how you completed the challenge, consisting of:

1 Mark: For clarity of your description.

1 Mark: For identifying and deploying an appropriate exploit.

2 Mark: For the process you used and the troubleshooting and problem-solving you performed.

Ultimately, The aim of the step-by-step guide is to provide the marker with evidence that you have an in- depth understanding of the task at hand. The more creative your guide, the better.

Task1 - Authentication Please

Go to the IP address of your VM in a web browser to open the first challenge. For example

http://192.168.56.101/

Buffer overflow this login system to get to the next task.

Look around the page for clues to help you. Everything you need is there!

When you complete this challenge, you will be given a flag and login details for the next challenge.

Task 2 - Return to win

Login as Task 2 using the credentials you were given at the end of the last challenge. The challenge2 binary is setuid and compiled with an executable stack.

Buffer overflow the binary to become the task2-win user.

Read flag2.txt to proceed to obtain your flag and proceed to the next challenge.

Task 3 - Shellcoding

Login as Task 3 using credentials from the previous task.

The challenge3 binary is setuid and compiled with an executable stack.

Buffer overflow the binary by injecting and returning to some shellcode to become the task3-win user. Read flag3.txt to proceed to obtain your flag and proceed to the next challenge.

Task 4 - Root shell through Ret2Libc

Login as Task 4 using the credentials you got from the previous task. The challenge4 binary is setuid but does not have an executable stack.

Using the ret2libc technique covered in Lab 1, buffer overflow the binary to become root. Read flag4.txt to proceed to obtain your flag.

Submit flags and Methodology

Follow the submission instructions above to submit the flags you found with a step-by-step guide of how you found them.

Part 2

Task 5: Decompile the application

5 Marks Decompile the application and figure out:

1 Marks: Which function checks the license. ( write the function name only)

2 Marks: When this function is run. ( Code and explain the sequence)

2 Marks: How the license key is checked? (What makes a valid license?) ( Code and explain the sequence)

Task 6: Initial patching

5 Marks Initial patching process:

2 Marks Generate an unpatched key to enable app (check value). ( Flag and explain the process)

3 Marks Patch the application to disable online license checks. ( Flag and explain the process)

Task 7: Secondary patching

5 Marks Secondary patching exploits:

2 Marks Patch the application to enable the advanced features. ( Flag and explain the process)

3 Marks Patch the application to remove reporting metrics. ( Code and explain the sequence)

Setup

You may use any Linux distro of your choice so long as you are able to run Ghidra. However, do not use the VM from the previous lab as it will not be able to run the coursework application.

Kali Vagrant The official Kali rolling release Vagrant machine can be installed as follows: For this machine, the username and password are both “vagrant” and this user is in the sudoers group. Create a directory on your host machine, then from the command line run the following commands:

vagrant init kalilinux/rolling vagrant up

Once the machine launches, give it a bit of time and you will be presented with a GUI login. Enter “vagrant” and “vagrant”. Then you can open a terminal in the new VM and install Ghidra.

go to settings in VirtualBox and adjust as needed (be sure to enable 3D acceleration under "display" options) double click the VM to launch it

sudo apt update

sudo apt install openjdk-17-jdk

wget https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.2.3

_build/ghidra_10.2.3_PUBLIC_20230208.zip unzip ghidra_10.2.3_PUBLIC_20230208.zip

cd ghidra_10.2.3_PUBLIC

./ghidraRun (wait for a second or two after running this command)

Kali for VirtualBox You can also get the official Kali release for VirtualBox, where both username and password are ’kali’.

https://cdimage.kali.org/kali-2023.3/kali-linux-2023.3-virtualbox-amd64.7z extract with 7zip

Double-click on the "Virtual machine definition" file (blue icon) go to settings in VirtualBox and adjust as needed (be sure to enable 3D acceleration under "display" options)

double click the VM to launch it sudo apt update

sudo apt install openjdk-17-jdk

wget https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.2.3

_build/ghidra_10.2.3_PUBLIC_20230208.zip unzip ghidra_10.2.3_PUBLIC_20230208.zip

cd ghidra_10.2.3_PUBLIC

./ghidraRun (wait for a second or two after running this command)

For other Kali install options, please see:

https://www.kali.org/get-kali/#kali-platforms Video guide: https://www.youtube.com/watch?v=Hu1Gs3Jqymw

Thereafter, open a web browser to download the application for this part your coursework.

Download the lab6 application from the following URL: https://git.soton.ac.uk/comp6236/lab6/-

/raw/master/lab6app.zip

Use Ghidra and a hex editor of your choice to reverse engineer the binary and complete the tasks instroduced under ”Tasks and marks breakdown.

You may find the following Assembly instruction reference useful: http://ref.x86asm.net/coder64.html

If you are unable to install Ghidra please ping google or any other site to check your network connection. You will have to close the VM and then change the network options of the VM (VirtualBox -> settings -> network).

FAQ

Question: I made an error in the submission, can I resubmit?

Answer: You can resubmit as many times as you want, until the coursework deadline.

Question: What do you mean by ( Code and explain the sequence ) ?

Answer: It depends on the question, if you want to copy the code and explain what the code does, then it’s fine. You will get some marks for explaining the obvious. However, in Q2 I used the keyword “when”. This means I am looking for the sequence of events in regard to the timeline. Another example, in Q3 When I used the keyword “how” then I am looking for the function/algorithm that is used to generate the key.

Question: How much code are we expected to add for these questions? Obviously, we could add the whole decompiled function, but for the example, I’ve found it in two areas and this would add a lot of source code to my answer. Any recommendations?

Answer: The code itself is not important. In the end, I don’t care how you present it. What is important your problem solving ability to answer the question. I care how you show me, “What you learned, Not what you can do”. (Hint: The use of Pseudo code is highly encouraged.)

Question: What do you mean by ( Flag and explain the sequence ) ?

Answer: Follow the same logic in the previous question. But, this has more weight, so here is a further breakdown

1 Mark: Just the flag.

1 Mark: How you did it.

1 Mark: Why it worked.

1 Mark: Other possible solutions.

1 Mark: What would have been a better implementation.

Please note: Although there is no marks for style, or grammar. If I can’t tell one category from another, I will award a mark for one and not both. For example, if I can’t distinguish between “How you did it” and 請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代寫 CSC8636 Visual Analysis of the Ocean Microbiome
  • 下一篇:代寫MANG6346 Business Analytics and Risk
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

    欧美黑人在线观看| 女人高潮一级片| 老司机午夜av| av不卡在线免费观看| 日本精品一区在线| 国产免费观看高清视频| 国内av免费观看| 久久精品一区二| 秋霞无码一区二区| 强开小嫩苞一区二区三区网站| 成年人三级黄色片| 免费看涩涩视频| 日韩免费毛片视频| 黄色动漫网站入口| 美女日批免费视频| 18禁裸男晨勃露j毛免费观看| 粉嫩av一区二区三区天美传媒 | av在线免费观看国产| 日韩欧美视频免费在线观看| 国产精品夜夜夜爽张柏芝| 久久国产激情视频| wwwwwxxxx日本| 国产性生活一级片| 日本不卡一区二区三区四区| 国产第一页视频| 青青草原国产免费| 国产对白在线播放| 三级在线免费观看| 麻豆tv在线播放| 777久久久精品一区二区三区| 69堂免费视频| 青青在线视频免费| 超碰在线播放91| 欧美日韩一区二区三区69堂| 一级黄色片国产| 91社在线播放| 高清欧美精品xxxxx| 能在线观看的av| 亚洲xxxx2d动漫1| 亚洲制服在线观看| 国产精品va在线观看无码| 高清欧美精品xxxxx| 国产v亚洲v天堂无码久久久| 91欧美视频在线| 欧美性受xxxx黒人xyx性爽| 色一情一乱一乱一区91| 分分操这里只有精品| 四虎永久在线精品无码视频| 欧美丝袜在线观看| 成人在线免费观看视频网站| 波多野结衣乳巨码无在线| 成人一级片网站| 免费成人黄色大片| 日韩极品视频在线观看| 97国产精东麻豆人妻电影 | 僵尸世界大战2 在线播放| 美女av免费在线观看| 在线看的黄色网址| a级片一区二区| 成年人网站大全| 欧美精品一区二区性色a+v| 免费在线观看亚洲视频| 17c国产在线| 国产素人在线观看| а 天堂 在线| 午夜精品久久久久久久无码 | 日韩中文字幕在线不卡| 久久综合久久色| 男同互操gay射视频在线看| 亚洲人成无码www久久久| 免费成人深夜夜行网站视频| aaa毛片在线观看| www.黄色网址.com| 五月天婷婷激情视频| 国产精品久久国产| 色天使在线观看| 免费观看美女裸体网站| 亚欧美一区二区三区| 欧美日韩亚洲第一| 一级性生活视频| av免费一区二区| 欧美日韩在线视频一区二区三区| 午夜啪啪福利视频| 三年中国国语在线播放免费| 成人免费播放器| 99精品一区二区三区的区别| 99视频在线免费| 给我免费播放片在线观看| 奇米777在线视频| 日本新janpanese乱熟| www.国产在线视频| 一路向西2在线观看| 国产超级av在线| 久久久99精品视频| 亚洲男人天堂av在线| 无码人妻精品一区二区三区66| 无码av天堂一区二区三区| 992tv成人免费观看| 日韩av一卡二卡三卡| www国产黄色| 欧美视频在线观看视频| 99热一区二区三区| 亚洲第一天堂久久| 在线观看免费黄网站| 手机看片福利盒子久久| 免费无码av片在线观看| 91国视频在线| 9久久9毛片又大又硬又粗| 亚洲 欧美 综合 另类 中字| 国产精品88久久久久久妇女 | 国产精品视频中文字幕| 看欧美ab黄色大片视频免费| 日韩精品视频一区二区在线观看| 日韩a∨精品日韩在线观看| 青青青青在线视频| 成人午夜免费在线视频| 国产精品88久久久久久妇女| 手机在线观看日韩av| 午夜激情影院在线观看| 天天综合成人网| 999久久久精品视频| www.51色.com| 香蕉视频xxxx| 免费成人深夜夜行网站视频| 国产卡一卡二在线| 国产人妻人伦精品| 91成人综合网| 日本中文字幕网址| 欧美亚洲另类色图| 欧在线一二三四区| 成年人在线观看视频免费| 日本a√在线观看| 亚欧美在线观看| 天堂中文av在线| 最新黄色av网站| 嫩草影院中文字幕| 免费一级特黄特色毛片久久看| 国产淫片免费看| 青青青国产在线视频| 欧美性猛交xxx乱久交| 国产天堂在线播放| 天天看片天天操| www.-级毛片线天内射视视| 午夜久久久久久久久久久| 国产高清www| 免费日韩视频在线观看| 一本色道久久亚洲综合精品蜜桃| 国产高清999| 久久精品xxx| 超碰影院在线观看| 91精产国品一二三产区别沈先生| 国产911在线观看| 香港三级韩国三级日本三级| 日本新janpanese乱熟| 国内自拍第二页| 高清无码一区二区在线观看吞精| 国产高清av在线播放| 热久久精品免费视频| 亚洲欧美日韩一二三区| 97视频在线免费| 亚洲最大综合网| 91精品国产毛片武则天| 97国产精东麻豆人妻电影| 亚洲色图 在线视频| 蜜臀av.com| 天天摸天天碰天天添| 亚洲一区精品视频在线观看| 欧美中文字幕在线观看视频| 国产精品亚洲二区在线观看 | 最新免费av网址| 国产美女主播在线播放 | 99视频在线免费| 青青在线视频免费观看| 农村妇女精品一二区| 9l视频自拍9l视频自拍| av免费中文字幕| 精品国产三级a∨在线| 免费av网址在线| 国产麻豆电影在线观看| 国产主播在线看| 日韩欧美亚洲天堂| 热久久久久久久久| 日韩精品―中文字幕| 一本之道在线视频| 日韩av片在线看| 日韩最新中文字幕| 手机在线免费观看毛片| 日本a在线天堂| 五月花丁香婷婷| 精品一区二区中文字幕| 国产精品夜夜夜爽张柏芝| 成人黄色一区二区| 无码人妻少妇伦在线电影| 小早川怜子一区二区三区| 亚洲人成色77777| 九九热只有这里有精品| 日本成人性视频| 亚洲国产高清av| 97在线播放视频| 久久男人资源站|