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
p = strtok(argv[4], ":"); // step 1: it may return null with a malicious input
if (addr_aton(p, &fr->fw_src) < 0) // step 2: pass null to the function addr_aton and dereference the null in the function
return (-1);