Robert Jepson
Robert Jepson
Yeah I've just checked in Wireshark and it fits your description perfectly. Are you sure everything before the `00 00 55 aa` part of the prefix is necessary to use...
Okay I've done some analysis of these packets and have figured some stuff out: **Prefix & Suffix** The prefix is always (from my tests) 16 bytes long. The first half...
@clach04 - that's exactly what I mean, yep. It's potentially useful for enumeration because all devices on the network can see these packets in plaintext and they contain a bunch...
@clach04 - try using this python script and see if anything comes through: it's working for me! ```python from socket import * s=socket(AF_INET, SOCK_DGRAM) s.bind(('',6666)) m=s.recvfrom(1024) print m[0] ``` And...
I have the same problem, I'm currently playing around with different versions of wordpress and filebase to see if anything fixes it. Have you come across any solution to this?
Yeah it didn't work for the latest (4.9.4) or 4.5.2 but it works fine for version 4.3.1. Hope this helps!