Challenge
Please kill the werewolf with silver bullet!
nc chall.pwnable.tw 10103
We are also provided a binary and the libc used on the server.
Solution
When running the binary, we can see that we have four options:

The provided binary was not stripped, so reversing was easy with Ghidra.
void create_bullet(bullet *bullet)
{
size_t size;
if (bullet->description[0] == '\0') {
printf("Give me your description of bullet :",0);
read_input((char *)bullet,0x30);
size = strlen((char *)bullet);
printf("Your power is : %u\n",size);
bullet->power = size;
puts("Good luck !!");
}
else {
puts("You have been created the Bullet !");
}
return;
}