首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代做program、c/c++,Python程序设计代写
项目预算:
开发周期:
发布时间:
要求地区:
48730-32548, 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
[parameters ...]
If you are not sure how to set the parameters, you can look at the manual by issuing "netwox
--
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.
48730-32548, Cyber Security Week-6
Lab designed by Ashish Nanda, based on documents “SEED Labs” provided by Wenliang Du, Syracuse University
2
Before starting the task, disconnect the internet from the Server VM.
48730-32548, 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
”
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.
48730-32548, 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.
48730-32548, 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
”
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.
48730-32548, Cyber Security Week-6
Lab designed by Ashish Nanda, based on documents “SEED Labs” provided by Wenliang Du, Syracuse University
6
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 20 68 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
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!