Infinite loop in bacyouare.exe
Brought to you by:
skarg
If you run bacyouare.exe without the --whois flag, apdu_timer is not set, which causes mstimer_expired to return 0, which in turn mean the final while condition will always be true.
do {
...
} while (repeat_forever || retry_count || !mstimer_expired(&apdu_timer));
This will spam you-are messages to your target device as fast are your pc can send them.
Anonymous