Greetings from a rock in the middle of nowhere! - Community & Forums Related Discussions

Users browsing this thread: 1 Guest(s)
zygotb
Long time nixers
(11-10-2012, 08:26 PM)Vizaari Wrote:
(08-09-2012, 06:24 AM)D9u Wrote: No offense taken here, I was 15 Becks into a case when I wrote it.
If I came off as a jerk I'll blame the beer. (even though I'm a jerk without the booze)


Lol

Well, ok. But.. How the hell do I decrypt this? lol

It's base64, so one way would be to use the Python base64 module:
Code:
>>> import base64
>>> bullshit = 'base64 encoded string'
>>> data = base64.b64decode(bullshit)
>>> data
http://docs.python.org/library/base64.html
Someone doesn't appreciate my php generated image!


Messages In This Thread
RE: Greetings from a rock in the middle of nowhere! - by zygotb - 12-10-2012, 11:50 AM