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
Use ICMP instead of HTTP for testing the connection
Using ping instead of checking the status of multiple websites for detecting the internet connection:
- The original approach to detect the internet connection was to send HTTP requests to a hard-coded list of websites and check the return (ex. status code, website content, ...).
- The original approach produces much traces (HTTP requests/responses with so many packets and DNS resolution) that interferes with the dynamic malware analysis tools causing a lot of confusion.
- In this commit, ICMP is used instead by pinging a hard-coded list of public DNS servers and to check if any of them is alive.
- The new approach ensures less traces (2 packets/request) and efficient detection (no DNS resolution is needed).
# Install pyinstaller 6.11.1 (needed to build the Python executable with a version capable of executing in admin cmd) and tool dependencies ('pywin32')
0 commit comments