youtube-to-mp3-converter-php-script icon indicating copy to clipboard operation
youtube-to-mp3-converter-php-script copied to clipboard

You have a backdoor

Open ynizon opened this issue 5 years ago • 4 comments

Your code is crypted with a base 64 to put a backdoor . DONT DOWNLOAD THIS CODE !

ynizon avatar Feb 15 '20 09:02 ynizon

I just noticed. lol

Altdabest avatar Apr 22 '20 20:04 Altdabest

Awesome!

wgmilleriii avatar May 06 '20 16:05 wgmilleriii

Strangely enough, it is not a back door.

It goes over 15 iterations of obfuscation and ends up being this:

$ytresponse = @file_get_contents("https://www.youtube.com/oembed?url=http%3A//youtube.com/watch%3Fv%3D$id&format=json");
 $ytinfo = array();
 $ytinfo = json_decode($ytresponse,true);
 $type = $ytinfo['type'];

Now a good question would be why, but who knows.

manix avatar May 19 '20 21:05 manix

I can confirm what @manix said. A bunch of obfuscation that in the end evaluates to:

$ytresponse = @file_get_contents("https://www.youtube.com/oembed?url=http%3A//youtube.com/watch%3Fv%3D$id&format=json");
 $ytinfo = array();
 $ytinfo = json_decode($ytresponse,true);
 $type = $ytinfo['type'];

Maybe he was just being paranoid over algorithms sniffing his stuff

Either way... sketchy as 💩

alande-amorim avatar Dec 03 '20 17:12 alande-amorim