国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代做48730-32548,、c/c++,Python程序設計代寫
代做48730-32548,、c/c++,Python程序設計代寫

時間:2024-09-19  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



48**0-**548, Cyber Security Week-6 
Understanding TCP/IP based Attacks Continued 
 
Lab Environment Setup 
 
You need to follow the Lab-4 (Week 5) virtual environment setup to perform the remaining tasks related 
to TCP/IP based attacks. 
 
Netwox/Netwag 
 
We need tools to send out network packets of different types and with different contents. We can use 
Netwag to do that. However, the GUI interface of Netwag makes it difficult for us to automate our process. 
Therefore, we strongly suggest that you use its command-line version, the Netwox command, which is 
the underlying command invoked by Netwag. 
 
Netwox consists of a suite of tools, each having a specific number. You can run the command as following 
(the parameters depend on which tool you are using). For some of the tools, you have to run it with the 
root privilege: 
➢ netwox <number> [parameters ...]
If you are not sure how to set the parameters, you can look at the manual by issuing "netwox <number> --
help". You can also learn the parameter settings by running Netwag for each command you execute from the 
graphic interface, Netwag actually invokes a corresponding Netwox command, and it displays the parameter 
settings. Therefore, you can simply copy and paste the displayed command. 
 
 
Wireshark Tool. 
 
You also need a good network-traffic sniffer tool for this lab. Although Netwox comes with a sniffer, you 
will find that another tool called Wireshark is a much better sniffer tool. 
 
Both Netwox and Wireshark can be downloaded. If you are using our pre-built virtual machine, both tools 
are already installed. To sniff all the network traffic, both tools need to be run with root privilege. 
 
Lab Tasks 
 
In this lab, you need to conduct attacks on the TCP/IP protocols. You can use the Netwag, Wireshark, 
Tshark tools in the attacks. All the attacks are performed on Linux operating systems. However, you can 
also conduct the same attack on the other operating system and compare the observations after lab 
classes. You are supposed to use all the above three different tolls for the experiments. 
 
To simplify the “guess” of TCP sequence numbers and source port numbers, we assume that attacks are 
on the same physical network as the victims (Think of where such attacks may happen?). Therefore, you 
can use sniffer tools to get that information. The following is the list of attacks that need to be 
implemented and studied in this lab. 
  
48**0-**548, Cyber Security Week-6 
 
Lab designed by Ashish Nanda, based on documents “SEED Labs” provided by Wenliang Du, Syracuse University 

 
Before starting the task, disconnect the internet from the Server VM. 
 
48**0-**548, Cyber Security Week-6 
 
Lab designed by Ashish Nanda, based on documents “SEED Labs” provided by Wenliang Du, Syracuse University 
 
Task 4: TCP RST Attacks on Telnet and SSH Connections 
 
The TCP RST Attack can terminate an established TCP connection between two victims. For example, if 
there is an established telnet connection (TCP) between two users A and B, attackers can spoof a RST 
packet from A to B, breaking this existing connection. To succeed in this attack, attackers need to correctly 
construct the TCP RST packet. 
 
In this task, you need to launch a TCP RST attack to break an existing telnet connection between A and B. 
 
After that, try the same attack on an SSH connection. 
 
In this task, we use Netwag Tool 78 to conduct the attack, and wireshark tool to capture the packets. 
 
Steps: 
 
1. Open Wireshark on Client VM by entering “sudo wireshark” in the terminal. 
2. Establish a telnet connection with Client from the Server. Enter “telnet <IP address>” 
and fill the username and password of the Client to establish a telnet connection. 
(Screenshot required) 
3. Go to Attacker VM, run Netwag using the terminal. (sudo netwag) 
4. Select Tool 78: Reset every TCP packet. 
5. Select the interface and the “spoofip: IP spoof initialization type”. (Screenshot 
required) 
6. Click “Run It”. 
7. Go to Server, generate some data by typing something in terminal where a telnet 
connection with Client is established. (Screenshot Required) 
 
For performing the same attack on SSH connection, establish an SSH connection with Client 
from the Server by entering “ssh username@IPaddress” instead of a telnet connection. Similar 
screenshots are required for TCP RST attack on SSH connection. 
 
Task 5: ICMP Blind Connection-Reset and Source-Quench Attacks 
 
(i) ICMP Blind Connection-Reset 
 
ICMP messages can also be used achieve the connection-resetting attack. To do this, attackers send an 
ICMP error message that indicates a “hard error” to either of the two endpoints of a TCP connection. The 
connection can be immediately torn down as RFC 1122 states that a host should abort the corresponding 
connection when receiving such an ICMP error message. RFC 1122 defines “hard errors” as ICMP error 
messages of type 3 (Destination Unreachable) with code 2 (protocol unreachable), 3 (port unreachable), 
or 4 (fragmentation needed and DF bit set). 
 
Use the Netwag Tool 82 to conduct the attack, and then use wireshark tool to capture the packets. 
  
 
48**0-**548, Cyber Security Week-6 
 
Lab designed by Ashish Nanda, based on documents “SEED Labs” provided by Wenliang Du, Syracuse University 
 
Steps: 
1. Open Wireshark on Client VM by entering “sudo wireshark” in the terminal. Set icmp as 
filter. 
2. Ping Server from the Client. 
3. Check the Wireshark capture. (Screenshot Required) 
4. Go to Attacker VM, run Netwag using the terminal. 
5. Select Tool 82: Sniff and send ICMP4/ICMP6 destination unreachable. 
6. Select the interface and “spoofip: IP spoof initialization type”, input the ICMP code (2) 
and source IP address. (Screenshot Required) 
7. Click “Run It”. 
8. Check the Wireshark capture. (Screenshot required) 
 
 
(ii) Source-Quench Attacks 
 
The ICMP source quench message is used by the congested routers to tell the TCP senders to slow down. 
 
Attackers can forge such messages to conduct the denial of services attacks on TCP senders. 
 
In this task, you need to launch the ICMP blind connect-reset attacks and the ICMP source quench attacks. 
You need to be noted that some systems may reasonably ignore this type of ICMP errors in certain TCP 
state. 
 
Use the Netwag Tool 85 to conduct the attack, and then use wireshark tool to capture the packets. 
 
Steps: 
 
1. Open Wireshark on Client VM by entering “sudo wireshark” in the terminal. Set icmp as 
filter. 
2. Ping Server from the Client. 
3. Check the Wireshark capture. (Screenshot Required) 
4. Go to Attacker VM, run Netwag using the terminal. 
5. Select Tool 85: Sniff and send ICMP4 source quench. 
6. Select the interface and “spoofip: IP spoof initialization type”, and input the source IP 
address. (Screenshot Required) 
7. Click “Run It”. 
8. Check the Wireshark capture. (Screenshot required) 
 
 
Task 6: TCP Session Hijacking 
 
 
The objective of the TCP Session Hijacking attack is to hijack an existing TCP connection (session) between 
two victims by injecting malicious contents into this session. If this connection is a telnet session, attackers 
can inject malicious commands into this session, causing the victims to execute the malicious commands. 
You can use telnet in this task. You can also assume that the attackers and the victims are on the same 
LAN. Following figure illustrates the attack.  
 
48**0-**548, Cyber Security Week-6 
 
Lab designed by Ashish Nanda, based on documents “SEED Labs” provided by Wenliang Du, Syracuse University 
 
Note: If you use Wireshark to observe the network traffic, you should be aware that when Wireshark displays 
the TCP sequence number, by default, it displays the relative sequence number, which equals to the actual 
sequence number minus the initial sequence number. If you want to see the actual sequence number in a 
packet, you need to right click the TCP section of the Wireshark output, and select "Protocol Preference". In 
the popup window, uncheck the "Relative Sequence Number and Window Scaling" option. 
 
Use the Netwag Tool 36 to conduct the attack, and then use wireshark tool to capture the packets. 
 
Steps: 
 
1. Open Wireshark on Client VM by entering “sudo wireshark” in the terminal. Set telnet as 
filter. 
2. Establish a telnet connection with Client from the Server. Enter “telnet <IP address>” 
and fill the username and password of the Client to establish a telnet connection. 
(Screenshot required) 
3. Generate some data by typing something in terminal where a telnet connection with 
Client is established. 
4. Go to Wireshark on Client, look for last telnet packet sent from Server to the Client. 
(Screenshot required) 
5. Ensure that “Relative sequence numbers” is disabled. (Check the Protocol Preferences) 
6. Look into the details of TCP and telnet for last telnet packet sent from Server to the 
Client. (Screenshot Required) 
7. Convert ‘mkdir hello’ + return key to hexadecimal. 
(https://www.browserling.com/tools/text-to-hex) 
8. Go to Attacker VM, run Netwag using the terminal. 
9. Select Tool 36: Spoof EthernetIp4Tcp packet.  
 
48**0-**548, Cyber Security Week-6 
 
Lab designed by Ashish Nanda, based on documents “SEED Labs” provided by Wenliang Du, Syracuse University 

 
10. Provide the following information: 
 
Device Select Eth0 
Ethernet Src From the wireshark output 
Ethernet Dst From the wireshark output 
IP4 ttl 64 
IP4 Src 10.0.2.6 
IP4 Dst 10.0.2.8 
TCP Src From the wireshark output 
TCP Dst From the wireshark output 
TCP Seqnum From the wireshark output 
TCP Acknum From the wireshark output: TCP Acknum 
+ size of the data ‘/177’ 
 
TCP urg Tick 
TCP ack Tick 
TCP psh Tick 
TCP window From the wireshark output 
mixed data Hex for ‘mkdir hello’ + return key : 6d 6b 
64 69 72 2**8 65 6c 6c 6f 0a 
(Screenshot required) 
 
11. Click “Run It”. 
12. Go back to Wireshark on Client, look for the last telnet packet sent from Server to Client 
before TCP Retransmission. (Screenshot Required) 
13. Look into the details of Telnet for that packet. (Screenshot Required) 
14. Check the home directory of Client. 
 
 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp











 

掃一掃在手機打開當前頁
  • 上一篇:代做SCI 3004、c++/Python程序設計代寫
  • 下一篇:代寫同花順選股指標,代做通達信主圖指標 ,代寫公式
  • ·代做SCI 3004、c++/Python程序設計代寫
  • ·Task 2: Boggle Buddy代做、Python程序設計代寫
  • ·代做FINM8007、Java/Python程序設計代寫
  • ·代做ESTR2520、Python程序設計代寫
  • ·代做CSMDE21、Python程序設計代寫
  • ·PROG2007代做、Java,Python程序設計代寫
  • ·ENGG1330代做、Python程序設計代寫
  • 合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品无码免费专区午夜| 国产原创中文在线观看| 色吧影院999| 国产在线视频欧美一区二区三区| 亚洲精品高清国产一线久久| 精品乱码一区二区三区| 久久亚洲高清| 久久精品视频91| 国产在线拍揄自揄视频不卡99| 国产精品视频内| 久久久av电影| 国产精品成人在线| 欧美激情精品久久久久久久变态| 久久精品影视伊人网| 国产精品免费网站| 国产精品福利在线观看| 色妞在线综合亚洲欧美| 国产精品日韩三级| 欧美激情久久久久久| 天天综合五月天| 欧洲精品在线一区| 日韩国产欧美亚洲| 国产又粗又爽又黄的视频| 国产区欧美区日韩区| 97久久精品视频| 九九热只有这里有精品| 久久99国产精品一区| 99久热在线精品视频| 欧美亚洲另类激情另类| 日韩一级片免费视频| 一区二区免费电影| 日韩精品无码一区二区三区| 国产最新精品视频| 国产精品自拍网| 国产一区一区三区| 免费在线一区二区| 热99精品里视频精品| 亚洲欧洲日本国产| 欧美精品www在线观看| 国产精品久久久久久av下载红粉| 精品国产一区二区在线| 久青草视频在线播放| 91av在线国产| 91高清免费视频| 国产伦精品一区二区三区视频孕妇| 黄色网络在线观看| 黄色小网站91| 成人亚洲欧美一区二区三区| 久久久久久久久久国产精品| 欧美成年人网站| 欧美精品在线观看91| 国产精品老女人精品视频| 九九精品在线播放| 欧美激情国产精品| 精品国产av无码一区二区三区| 久久久久久久爱| 成人精品一区二区三区| 国产精品一区二区久久| 欧美成人一区二区在线观看| 性欧美长视频免费观看不卡| 色综合天天综合网国产成人网| 中文字幕乱码人妻综合二区三区| 欧美激情第三页| 亚洲精品蜜桃久久久久久| 色噜噜一区二区| 欧美日韩精品久久| 亚洲精品欧洲精品| 热99在线视频| 人妻少妇精品久久| 欧美日韩精品免费观看视一区二区 | 国产一级不卡毛片| 99伊人久久| 国产成人久久久精品一区| 中文字幕精品—区二区日日骚 | 亚洲自拍小视频| 日本一区美女| 欧美xxxx黑人又粗又长密月| 久久99精品久久久水蜜桃| 久久久久中文字幕2018| 欧美激情视频网址| 国产日韩av在线| 精品福利影视| 欧美日韩精品免费看| 欧美精品久久久久久久自慰| 少妇av一区二区三区无码| 亚洲欧洲日韩精品| 日韩国产精品一区二区| 青青青在线视频播放| 国产一区二区免费在线观看| 成人国产亚洲精品a区天堂华泰| www.com毛片| 国产精品嫩草在线观看| 一区二区精品国产| 国产精品久久中文| 欧美乱妇40p| 无码人妻丰满熟妇区96| 欧美一区二区三区免费视| 国产专区一区二区三区| 91久久在线视频| 国产精品视频999| 人人干视频在线| 成人欧美一区二区三区黑人| 成人av电影免费| 久久综合九色综合88i| 久久免费国产视频| 欧美激情喷水视频| av动漫在线观看| 深夜福利国产精品| 亚洲一区二三| 国产女大学生av| 久久精品视频一| 日韩av大片在线| 97久久精品视频| 日韩中文字幕亚洲精品欧美| 国产欧美日韩视频| 色综合久久88| 久久综合久久久久| 欧美精品亚洲| 久久久久北条麻妃免费看| 久艹在线免费观看| 国产精品免费在线播放| 亚洲一区二区在线看| 亚洲精品影院| 国产在线高清精品| 三区精品视频观看| 久久免费精品日本久久中文字幕| 国产精品欧美一区二区| 日本精品视频在线播放| 久久精品人成| 国产人妻777人伦精品hd| 无码aⅴ精品一区二区三区浪潮| 91国产精品91| 国产自产精品| 国产精品日韩欧美一区二区| 精品国产乱码久久久久软件| 黄在线观看网站| 久久久99久久精品女同性| 欧美在线视频一区二区| 国产一区二区三区乱码| 国产精品女人网站| 国产小视频免费| 欧美成人第一页| 国产成人亚洲欧美| 国产免费一区二区视频| 日本高清久久天堂| 一本大道熟女人妻中文字幕在线| 久久久久久亚洲精品不卡4k岛国 | 欧美亚洲国产视频小说| 亚洲日本无吗高清不卡| 国产精品久久77777| 国产爆乳无码一区二区麻豆| 国产精品直播网红| 日韩男女性生活视频| 一卡二卡3卡四卡高清精品视频| 久久最新资源网| 国产a一区二区| 97精品国产97久久久久久免费| 蜜桃视频在线观看91| 欧美一区三区二区在线观看| 亚洲 国产 日韩 综合一区| 欧美久久久精品| 国产精品久久久影院| 日韩视频欧美视频| 国产v综合v亚洲欧美久久| 成人久久久久爱| 国产美女精品视频免费观看| 免费av在线一区二区| 欧美一区二区高清在线观看| 亚洲色成人一区二区三区小说| 国产99久久精品一区二区永久免费| 国产精品女人久久久久久| 日韩中文字幕视频| 久久99导航| 久久福利电影| 国产成人亚洲综合91| 久久婷婷人人澡人人喊人人爽| 国产精品一区二区三区四区五区| 国产一区二区三区四区五区加勒比| 狠狠噜天天噜日日噜| 欧美 日韩精品| 精品日产一区2区三区黄免费 | 99视频在线免费观看| 国产精品一区二区免费在线观看 | 久久久www成人免费精品| 色777狠狠综合秋免鲁丝| 国产成人一区二区三区别| 久久亚洲精品欧美| 久久这里只有精品8| 国产成人精品免费看在线播放| 久久综合九色欧美狠狠| 久久精品日产第一区二区三区精品版 | 日韩中文字幕在线视频| 色偷偷888欧美精品久久久| 日韩一区二区av| 国产精品视频26uuu| 国产精品高潮呻吟视频| 久久中文字幕在线| 伊人久久大香线蕉成人综合网| 国产精品久久久久福利| 精品久久久久久久免费人妻 |