So I look at a random source file, and find:<p><a href="https://git.openswitch.net/cgit/openswitch/ops-arpmgrd/tree/src/arpmgrd.c" rel="nofollow">https://git.openswitch.net/cgit/openswitch/ops-arpmgrd/tree/...</a><p><pre><code> /* Build hash key for a given vrf name and ip address */
static int
get_hash_key(char* vrf_name, char *ip, char *key)
{
sprintf(key, "%s-%s", vrf_name, ip);
return strlen(key);
} /* get_hash_key */
</code></pre>
What could possibly go wrong?<p>Definitely not thinking hard about security over there.