79721185

Date: 2025-07-31 11:13:13
Score: 0.5
Natty:
Report link

You are using empty []byte slice and there is no space for ReadFromUDP to read data

You should allocate buffer with enough space

buffer := make([]byte, 1024)

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: poisoned_monkey