Reporting an Attack vector multiple times #115
-
Hi. |
Beta Was this translation helpful? Give feedback.
Answered by
alymurtazamemon
Feb 9, 2024
Replies: 1 comment 2 replies
-
@moeid3 Good Question! You need to check the cause of an attack. If the cause is the same then you need to create a single issue and mention all the instances of the code but if the causes are different for each issue then you need to create separate issues. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@moeid3 According to this example (enterRaffle function), reading the players' state array can create a DOS issue and stop new players from entering the raffle due to higher gas than the block limit. So, in that case, you will create a single issue stating that 'Users will not be able to enter the raffle because of a DOS issue in the enterRaffle function.'
Now, let's suppose that in the refund function, there would have been a loop as well, and it also would have caused a DOS issue; then, that would have been a separate issue where you would have mentioned an issue like this: 'Users will not be able to get a refund due to a DOS issue in the refund function.
These would have been two diffe…