日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

代寫CISC221、Java/Python設計編程代做

時間:2024-03-13  來源:  作者: 我要糾錯



CISC221: The Bomb Lab
This lab serves as a newly added experiential learning module within CISC221, offering
hands-on exposure to binary files and assembly code debugging at the instruction set
level of the x86 processor. Understanding debugging at this level is crucial for grasping
computer architecture and gaining reverse engineering proficiency. Such skills are vital
to fields like code optimization, embedded systems, and cybersecurity. Furthermore, it
fosters essential debugging skills applicable across diverse programming domains. By
emphasizing the lab's hands-on approach, its challenging yet rewarding nature, and the
career prospects it offers, students are motivated to engage actively, deepening their
comprehension of low-level computing and laying a foundation for advanced learning in
related subjects.
Good luck, and welcome to the bomb squad!
I. Description
This lab is for a digital binary bomb, with the schematic shown below.
2
As illustrated in the diagram, the binary bomb is composed of four distinct phases, each
requiring a specific input string, set of numbers, or combination thereof for successful
defusal. Correctly entering the required input disarms the phase, allowing the bomb to
advance to the next stage. Failure to provide accurate input triggers an explosion,
signaled by the display of "BOOM!!!" before termination. The entire bomb is considered
defused only when all four phases have been disarmed. Each student will receive their
own bomb to defuse as part of this mini-project. Your objective is to successfully
disarm your assigned bomb before the designated due date.
The executable binary file is the bomb is called “bomb_lab” and is located at the
CASLAB machines in the following directory linux>cas/course/cisc221. To access the
bomb_lab file, you should first go up to root directory by typing (cd ..) twice, then
navigate to the following folder linux>cas/course/cisc221 as shown below
You can then run the bomb by (./bomb_lab) or debug the bomb by (gdb bomb_lab).
II. Overview
The Bomb consists of four phases (sub-problems):
1) Phase 1: Requires a textual input, for example, "Hello world."
2) Phase 2: Requires an array of six numbers, for example, 12 34 81 23 10 22.
3) Phase 3: Requires three inputs in the order of integer, character, and integer, with
the first integer falling within the range of 0 to 7, for example, 3 Z 1.
4) Phase 4: Requires a textual input, for example, "Goodbye!"
You should work on the gdb debugger to trace clues, disassemble functions, investigate
the contents of the registers/stack to find the defusal passcodes for each phase. The
most important registers that you should keep track of their content are
• %rax: return value
• %rsp: stack pointer
• %rdi: 1st argument
• %rsi: 2nd argument
• %rdx: 3rd argument
• %rbp: base pointer
3
Please note that registers are typed in the gdb debugger preceded by a dollar sign
($rax) not a percentage sign. For instance to check the data in %rax, you type (info
registers $rax)
To help you find some clues, Table 1 highlights the most important labels for each phase
and Table 2 lists all the debugging commands that you will need to defuse your bomb
Table 1. most important labels
Table 2. gdb common commands
command desc example
run runs the loaded executable program run
break
[func_name]
breaks once you call a specific function break phase_1
break *
mem_loc
breaks when you execute the instruction at
a certain address
break * 0x0000555555555ef9
info
breakpoints
displays information about all breakpoints
currently set
info breakpoints
deletel
breakpoints
delete a specific breakpoint delete breakpoints 10 //delete
breakpoint number 10
continue continue to the next breakpoint continue
stepi steps through a single x86 instruction.
Steps into calls.
stepi
nexti steps through a single x86 instruction.
Steps over calls.
nexti
Phase Important functions/labels
Phase_1 ● strings_not_equal
● string_length
Phase_2 ● generatedValues
Phase_3 -
Phase_4 ● generateRandomChars
● validateOccurrence
4
disassemble views assembly code while debugging disassemble or disassemble
“label”
info registers prints the names and values of all
registers
info registers
info register
$reg
prints the name and value for specific
register
info register $rax
set $reg = val assign value to a certain register set $rdi = 0x80
x command prints values stored in a certain address
with a specific format
1) x/s 140737488227040
#display values in string format
2) x/d 140737488341111
#display values in decimal
format
III. Goal & Guidelines
The ultimate goal for each phase is to determine the registers containing the correct
input by navigating through “stepi” or over “nexti” the assembly code, inspecting the
values of the registers using "info register $reg" and then updating the registers that
hold your input with the correct value through "set $reg = val" to defuse the phase.
There are several tips for deactivating the bomb:
● Once on the correct directory (cas/course/cisc221), you can begin debugging
by using the gdb command: gdb bomb_lab.
● Set breakpoints on all phases, i.e., break phase_1, break phase_2, break
phase_3, and break phase_4., you can also add more breakpoints on crucial
parts.
5
● Start the bomb program by prompting the run command and enter you student
ID.
Phase#1
Desc: The input text will be compared against a predefined string.
● The program anticipates a string input for the first phase. It is advisable to
employ a concise and memorable text, e.g., test, similar to the example below.
● It should hit the phase_1 breakpoint (added previously), disassemble
command can be utilized to show the assembly code for the current block. The
small arrow in the left of the screen (see below) indicates the command at which
the program is executing next.
6
● If you defuse phase_1 successfully, you will get “Phase 1 defused. How about
the next one?”
● Otherwise, the bomb will explode and return
Phase#2
Desc: The input is an array of six numbers with a space separator, for example, 12 34
81 23 10 22, that will be compared against a predefined array.
● The program anticipates an input of 6 numbers for the second phase. It is
advisable to employ concise and memorable integers, similar to the example
below.
● If you defuse phase_2 successfully, you will get “Halfway there!”
● Otherwise, the bomb will explode and return
Phase#3
Desc: The input is three values in the following order, separated by spaces: an integer
(should be within the range of 0 to 7), a character, and another integer, e.g., 3 z 44.
● The program anticipates an input of three values for the third phase. It is
advisable to employ concise and memorable values, similar to the example
below.
● If you defuse phase_3 successfully, you will get “That's number 3. Keep
going!”
● Otherwise, the bomb will explode and return
Phase#4
Desc: In the final phase, an input of text is anticipated, and the provided text should
satisfy the occurrence of some random characters.
7
For instance, If the last phase generates random characters such as {l:3, x: 0, d: 1},
your input string should resemble something like "Hello world!"
Considering that the phase 4 characters are limited to only three random characters.
● The program anticipates an input of textual form (e.g., Have a Nice Day!). It is
advisable to employ concise and memorable text, similar to the example below.
● If you defuse phase_4 successfully, you will get “Congratulations! You've
defused the bomb!”
● Otherwise, the bomb will explode and return
IV. Hints
1. The input for each phase is entirely deterministic for every student, based on
the ID
2. Ensure constant attention and focus on the segment of code preceding the
explode_bomb function. In case you miss the correct input for any phase, you
can bypass the explosion by manipulating the flags register
https://en.wikipedia.org/wiki/FLAGS_register and setting or resetting the zero flag
based on the phase condition. It implies that there is consistently a condition or
validation check before the execution of the explode_bomb function.
E.g.,
The cmp instruction subtracts the value in the %edx register from the value in
the %eax register, but it doesn't store the result. It only updates the flags
register based on the outcome of the subtraction.
If the values in %eax and %edx are equal, It will result in zero, setting the Zero
Flag (ZF) in the flags register. In this case, the je instruction will jump to the
specified label or location. But, If the values in %eax and %edx are not equal,
resulting in ZF being set to zero, then the explode_bomb will be called.
3. To inspect the content stored at a particular memory location, you can employ the
x command, such as x/s for strings or x/d for integers,
8
E.g., cmpl $0x5,-0x30(%rbp)
This command compares the immediate value 5 with the value stored in memory
at an address calculated as 0x30 bytes before the address stored in the base
pointer %rbp. So, to get the value stored in this location:
I. gets $rbp value through info register command
II. subtracts 0x30 from 0x7fffb96afc90 = 0x7fffb96afc60. (you can also type
the address directly as 0x7fffb96afc90-0x30 and let the computer do the
computation for you)
III. checks memory location “0x7fffb96afc60” value via x/d as it translates it to
integers
V. Deliverables
Upload only your answers “correct inputs” for all defused phases. It is recommended to
use computer-based tools like “MS Word” instead of handwritten notes to minimize
readability mistakes.
VI. Acknowledgement
Special thanks for Hesham Elabd for importing and customizing this lab to CISC221 and
for Doug Martin for assistance in implementing and hosting the lab on Caslab machines.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代做CSCI 2525、c/c++,Java程序語言代寫
  • 下一篇:代寫COMP3411/9814 Bridge Puzzle編程代做
  • 無相關信息
    昆明生活資訊

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

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

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

    日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

              9000px;">

                        丝袜美腿亚洲综合| 国产女同互慰高潮91漫画| 欧美视频一区二区三区在线观看 | 99国产欧美久久久精品| 久久久久久一二三区| 风流少妇一区二区| 悠悠色在线精品| 夜夜嗨av一区二区三区四季av| 91久久精品一区二区三| 在线区一区二视频| 精品在线视频一区| 蜜桃精品视频在线| 麻豆精品国产传媒mv男同| 中文字幕 久热精品 视频在线| 国产蜜臀97一区二区三区| 成人h动漫精品| 成人精品免费网站| 视频一区视频二区中文字幕| 亚洲一区二区三区在线| 久久奇米777| 看电影不卡的网站| 国产成人午夜视频| 一区二区三区成人在线视频| 丝袜美腿亚洲一区| 自拍偷拍欧美精品| 亚洲成人你懂的| 国产亚洲精品aa| 日韩高清一区二区| 理论电影国产精品| 亚洲v精品v日韩v欧美v专区| 国产一区二区三区在线观看免费 | 麻豆精品视频在线观看免费| 中文欧美字幕免费| 午夜婷婷国产麻豆精品| 亚洲精品综合在线| 经典一区二区三区| 香蕉加勒比综合久久 | 久久精品国产亚洲5555| 成人sese在线| 粉嫩在线一区二区三区视频| 欧美性一级生活| 99re免费视频精品全部| 91精品国产欧美一区二区| 在线观看视频91| 亚洲日本va在线观看| 午夜激情一区二区| 亚洲一卡二卡三卡四卡无卡久久 | 91福利精品视频| 一区二区不卡在线视频 午夜欧美不卡在| 国产精品全国免费观看高清| 在线观看91精品国产入口| 久久久久国产精品麻豆| 国产日韩欧美电影| 麻豆久久久久久| 美脚の诱脚舐め脚责91 | 久久只精品国产| 精品国产一区二区三区不卡 | 国产乱码精品一区二区三区av| av在线不卡网| av影院午夜一区| 久久久久久亚洲综合| 国产欧美一区二区精品性| 亚洲成人第一页| 久久精品国产秦先生| 99久久精品国产导航| 99麻豆久久久国产精品免费 | 中文字幕成人在线观看| 欧美二区在线观看| 亚洲国产成人tv| 日本不卡免费在线视频| 5566中文字幕一区二区电影| 91精品国产综合久久国产大片| 国产精品进线69影院| 一区二区三区四区乱视频| 舔着乳尖日韩一区| 欧美日韩免费视频| 欧美日韩免费电影| 日韩理论片在线| 日产国产高清一区二区三区| 91成人免费在线视频| 欧美电影在线免费观看| 五月天视频一区| 国产精品资源在线看| 国产精品初高中害羞小美女文| 国产精品自拍毛片| 成人av先锋影音| 中文欧美字幕免费| 丝袜诱惑制服诱惑色一区在线观看 | 在线观看亚洲精品| 奇米影视在线99精品| 国产高清一区日本| 九色porny丨国产精品| 欧美日韩激情在线| 91麻豆精品国产91久久久久久久久 | 激情久久五月天| 成人午夜短视频| 日韩欧美卡一卡二| 亚洲人成伊人成综合网小说| 精品一区二区三区av| 久久婷婷国产综合精品青草| 亚洲国产中文字幕| 舔着乳尖日韩一区| 精品久久久久久久久久久久包黑料| 中文字幕一区二区三区在线播放 | 精品视频资源站| 最新欧美精品一区二区三区| 久久精品国产一区二区| 精品国产91亚洲一区二区三区婷婷| 亚洲狼人国产精品| 久久久久久久久久久电影| 视频在线观看一区| 91国内精品野花午夜精品| 亚洲bt欧美bt精品777| 成人毛片在线观看| 亚洲欧美日韩国产一区二区三区 | 久久精品欧美一区二区三区不卡| 午夜精品在线看| 国产精品色婷婷久久58| 日本精品视频一区二区三区| 国产精品色婷婷| 欧美亚洲另类激情小说| 亚洲欧洲综合另类| 欧美一卡2卡3卡4卡| 日韩av一二三| 国产一区二区三区在线观看免费视频| 久久久久久久综合日本| 国内精品久久久久影院薰衣草| 国产精品天美传媒| av色综合久久天堂av综合| 日韩极品在线观看| 欧美精品久久久久久久多人混战| 国产成人综合网站| 国产亚洲短视频| a4yy欧美一区二区三区| 国产精品剧情在线亚洲| 日韩福利电影在线观看| 欧美国产日本视频| 日本成人在线不卡视频| 亚洲天堂av一区| 日本黄色一区二区| 国产成人免费视频一区| 欧美大片在线观看一区| 在线一区二区视频| 一区二区三区国产豹纹内裤在线| 91精品国产综合久久香蕉麻豆| 午夜精品视频在线观看| 国产欧美日韩另类一区| 成人午夜激情片| 日本亚洲天堂网| 久久久久国产精品免费免费搜索| 337p亚洲精品色噜噜噜| 韩日精品视频一区| 日本成人在线看| 精品动漫一区二区三区在线观看| 欧美在线短视频| 久久精品国产精品亚洲红杏| 国产精品一区二区在线看| 欧美吞精做爰啪啪高潮| 久久精品国产精品亚洲精品| 国产精品你懂的在线| 一本到不卡精品视频在线观看| 亚洲综合区在线| 精品电影一区二区三区| 91九色02白丝porn| 久久99精品视频| 日韩激情一区二区| 中文幕一区二区三区久久蜜桃| 中文字幕欧美区| 91精品国产综合久久久久久久久久| 69堂国产成人免费视频| gogo大胆日本视频一区| 欧美在线观看一区二区| 国产精品一区在线观看你懂的| 国产成人精品午夜视频免费| 亚洲aⅴ怡春院| 日韩中文字幕不卡| 亚洲综合男人的天堂| 国产清纯在线一区二区www| 国产日本欧美一区二区| 欧美日韩久久久一区| 在线观看日韩毛片| 国产精品1区2区| 成人国产一区二区三区精品| 天堂资源在线中文精品| 美国av一区二区| 亚洲宅男天堂在线观看无病毒| 天天综合网天天综合色| 国产喷白浆一区二区三区| 亚洲特级片在线| 久久综合色天天久久综合图片| 中文字幕第一区二区| 欧美乱妇20p| 国产人久久人人人人爽| 丁香婷婷综合五月| 欧美三区免费完整视频在线观看| 夜夜精品浪潮av一区二区三区| 亚洲国产cao| 777亚洲妇女| 精品国产乱码久久久久久浪潮 | 成人视屏免费看|