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
Hi, I found a significant issue in the start.py file.
When start.py was running, I monitored the network and saw that most of the packets were going to one Cloudflare IP address. After more investigation of the code and network monitoring, I saw that only the getPing function sends ICMP packets to the correct IP address destination when pinging.
The getLatencyAndJitter, getDownloadSpeed, and getUploadSpeed functions always send their packets to the default IP address of speed.cloudflare.com. This should not happen because we want to send packets to each IP address to find out which ones are clean.
I tested start.py on Windows 11 with Python 3.11.5 and Ubuntu 20.04 with Python 3.8.10, and the problem was there.
The text was updated successfully, but these errors were encountered:
Hi, I found a significant issue in the
start.py
file.When
start.py
was running, I monitored the network and saw that most of the packets were going to one Cloudflare IP address. After more investigation of the code and network monitoring, I saw that only thegetPing
function sends ICMP packets to the correct IP address destination when pinging.The
getLatencyAndJitter
,getDownloadSpeed
, andgetUploadSpeed
functions always send their packets to the default IP address ofspeed.cloudflare.com
. This should not happen because we want to send packets to each IP address to find out which ones are clean.I tested
start.py
on Windows 11 with Python 3.11.5 and Ubuntu 20.04 with Python 3.8.10, and the problem was there.The text was updated successfully, but these errors were encountered: