We created a default environment on AWS Elastic Beanstalk using their Python "sample app". After some time, the logs show a large number of POST requests with bodies like this:
b'0x%5B%5D=ridho'
b'0x%5B%5D=androxgh0st'
b'0x%5B%5D=Graber'
b'0x%5B%5D=anarchy99'
These names smell pretty fishy. I guess %5B%5D encodes square brackets []?
Could someone explain what these people are trying to achieve?
array(1) { ["0x"]=> array(1) { [0]=> string(11) "androxgh0st" } }
array(1) { ["0x"]=> array(1) { [0]=> string(6) "Graber" } }
– Dale Clifford Mar 23 '22 at 06:37