produnis@discuss.tchncs.de to Programmer Humor@lemmy.ml · 1 year agobugsdiscuss.tchncs.deimagemessage-square16fedilinkarrow-up1426arrow-down111
arrow-up1415arrow-down1imagebugsdiscuss.tchncs.deprodunis@discuss.tchncs.de to Programmer Humor@lemmy.ml · 1 year agomessage-square16fedilink
minus-squareNoisyFlake@lemm.eelinkfedilinkarrow-up16·1 year agowtf, is this just obscured javascript?
minus-squareNailbar@sopuli.xyzlinkfedilinkarrow-up22·edit-21 year agoIt looks like it’s decompiled from something, so all the variable names are missing and instead presented with whatever index they had in the binary. But that’s just a wild guess. I don’t know what actual decompiled code looks like. Edit: scratch that, it’s just obfuscated code to make it harder to copy. https://stackoverflow.com/questions/11932567/found-this-nasty-code-i-wonder-what-it-does-should-i-be-worried#11932708
minus-squareSurpriseWaterfall@sopuli.xyzlinkfedilinkarrow-up10·1 year agoI thought it was decompiled code at first to, but the function names are still real words. It’s almost like it was manually obfuscated by replacing all the variable names.
minus-squareNailbar@sopuli.xyzlinkfedilinkarrow-up4arrow-down1·1 year agoFound it. It’s just obfuscated to make it harder to copy. https://stackoverflow.com/questions/11932567/found-this-nasty-code-i-wonder-what-it-does-should-i-be-worried#11932708
minus-squarehemmes@vlemmy.netlinkfedilinkarrow-up1·1 year agoI don’t think you’re far off because obfuscated code usually has less structured variable references.
wtf, is this just obscured javascript?
It looks like it’s decompiled from something, so all the variable names are missing and instead presented with whatever index they had in the binary.
But that’s just a wild guess. I don’t know what actual decompiled code looks like.
Edit: scratch that, it’s just obfuscated code to make it harder to copy.
https://stackoverflow.com/questions/11932567/found-this-nasty-code-i-wonder-what-it-does-should-i-be-worried#11932708
I thought it was decompiled code at first to, but the function names are still real words. It’s almost like it was manually obfuscated by replacing all the variable names.
Found it. It’s just obfuscated to make it harder to copy.
https://stackoverflow.com/questions/11932567/found-this-nasty-code-i-wonder-what-it-does-should-i-be-worried#11932708
I don’t think you’re far off because obfuscated code usually has less structured variable references.