You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to thank you for all your hard work. I thought this was just a normal hacking project. But after fixing the deliberate errors and improving the program a bit, I stopped modifying it and forgot about the project. But 4 weeks later, when I plugged a usb key into my computer, it got infected :). This proves to be a really stealthy trojan (I have avast).
However, I have a small question. Why does the program contain random generation things that seem useless?
Example:
srand(time(0));
int random = rand();
if(random%2==0 || random%3==0 || random%7==0){
return ;
}
The text was updated successfully, but these errors were encountered:
I wanted to thank you for all your hard work. I thought this was just a normal hacking project. But after fixing the deliberate errors and improving the program a bit, I stopped modifying it and forgot about the project. But 4 weeks later, when I plugged a usb key into my computer, it got infected :). This proves to be a really stealthy trojan (I have avast).
However, I have a small question. Why does the program contain random generation things that seem useless?
Example:
The text was updated successfully, but these errors were encountered: