Live data from Hacker News

500 Internal error at YouTube

imgur.com

11–20 of 44 posts

Re: 500 Internal error at YouTube

#12

Anyone know what's in that debug information the 500 error page spits out?

Looks base64 encoded to me, but running it through a decoder isn't giving me anything intelligible. Here's a OCR of the text in the image, maybe you can figure it out: Edit: Full text is in sibling comment.

Re: 500 Internal error at YouTube

#13
post #10
post #8

Hm... wonder if there's a library that could do something similar. It's an interesting idea encrypting your error that I haven't seen in many places.

Is it encrypted? Too lazy to OCR and `base64 -d` myself...

It's my assumption at least. It would be a bit sloppy of you tube to just base64 it.

Re: 500 Internal error at YouTube

#16
post #10
post #8

Hm... wonder if there's a library that could do something similar. It's an interesting idea encrypting your error that I haven't seen in many places.

Is it encrypted? Too lazy to OCR and `base64 -d` myself...

It would appear so, someone on StackOverflow posted the full text but decoding it returns nothing intelligible.

Re: 500 Internal error at YouTube

#17
post #8

Hm... wonder if there's a library that could do something similar. It's an interesting idea encrypting your error that I haven't seen in many places.

What could the purpose of an encrypted error be? If it's a server side error it's already in their logs.

Re: 500 Internal error at YouTube

#20
post #8

Hm... wonder if there's a library that could do something similar. It's an interesting idea encrypting your error that I haven't seen in many places.

What could the purpose of an encrypted error be? If it's a server side error it's already in their logs.

I've used something like this before so it's easy to lookup the exact error that they saw.

Generally i just do something like an sha of the error and time, and spit out like the first 10 bytes or something (as well as put that in the log line), i'm just looking for something i can grep for.

Post reply on HN