Recently for one django website I am noticing some strange log messages. Normally when I open the website in a browser I get following in log message
"GET / HTTP/1.1" 200 7031
which is returning HTTP OK response and 7031 bytes. But sometimes I see following in log messages
"GET / HTTP/1.1" 200 25803
which is not normal and looks suspicious since bytes returned are 25803. I am not sure how to check what those extra bytes are. Could anyone suggest how to debug and find when (under what input conditions) the server sends more data?
Due to some restrictions I won't be able to disclose some information about the site, but I'll try to share as much as I can. Please help.
Thank you so much.