LoRa packets gets 2 extra bytes?

Fix this:

  LoRa.print((char*)pachet);

by replacing with this:

  LoRa.write((char*)pachet, sizeof(pachet));

But that is the least of your problems.