qwasyx Posted October 21, 2011 Share Posted October 21, 2011 How to decode this? http://www.mediafire.com/?niwske5oy33wzrz Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/ Share on other sites More sharing options...
voip03 Posted October 21, 2011 Share Posted October 21, 2011 <?php $url = 'http://www.mediafire.com/?niwske5oy33wzrz'; print_r(parse_url($url)); echo parse_url($url, PHP_URL_PATH); ?> http://au2.php.net/manual/en/function.parse-url.php Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281059 Share on other sites More sharing options...
Adam Posted October 21, 2011 Share Posted October 21, 2011 What about it is encoded? Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281062 Share on other sites More sharing options...
ZulfadlyAshBurn Posted October 21, 2011 Share Posted October 21, 2011 what do you mean decode? I don't think you could decode those, unless you are working with them. once a variable is encoded, it cannot be decoded unless they are using a function which allows them to be decoded. md5(), sha1(), crypt() can't be decoded. they would usually get a random number and decode it, so there is no way you could get to the direct path. EDIT: imo he is trying to decode this string: niwske5oy33wzrz Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281064 Share on other sites More sharing options...
qwasyx Posted October 21, 2011 Author Share Posted October 21, 2011 i mean how to decode that file inside that zip, i am uploaded that file on medaifire Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281066 Share on other sites More sharing options...
watsmyname Posted October 21, 2011 Share Posted October 21, 2011 download it and unzip it simple! and if you have uploaded that file then why you need to decode it? Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281068 Share on other sites More sharing options...
ZulfadlyAshBurn Posted October 21, 2011 Share Posted October 21, 2011 that hell lot of code to decode. i think that the code uses a php extension like ioncube to to run the encoded words. Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281071 Share on other sites More sharing options...
ZulfadlyAshBurn Posted October 21, 2011 Share Posted October 21, 2011 download it and unzip it simple! and if you have uploaded that file then why you need to decode it? there is a file in the zip file which have hell lot of weird codes which would need to use an extension to run them. Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281072 Share on other sites More sharing options...
qwasyx Posted October 21, 2011 Author Share Posted October 21, 2011 i need to see source code not that crappy code ones, also it wont require any loader or what just replace eval to **** and u see source code but this for me wont works :/ Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281073 Share on other sites More sharing options...
ZulfadlyAshBurn Posted October 21, 2011 Share Posted October 21, 2011 ****? Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281075 Share on other sites More sharing options...
Adam Posted October 21, 2011 Share Posted October 21, 2011 once a variable is encoded, it cannot be decoded unless they are using a function which allows them to be decoded. md5(), sha1(), crypt() can't be decoded. That's kind of true, but md5 or sha1 for example are not encryption/encoding schemes, they are one-way hashing algorithms. They are designed for different purposes and based on different logic. One possibility is that the string is just a unique identifier, like an auto incrementing number but with alphanumerical characters. Consider that in 4 numeric digits you obviously have 10,000 unique possibilities. In 4 alphanumeric characters (using *only* lower-case) you have 1,679,616 unique possibilities. It's hard to say what they mean without seeing the code behind mediafire. @qwasyx In response to your last post, just use file_get_contents. That will return the HTML source of a web page. Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281076 Share on other sites More sharing options...
qwasyx Posted October 21, 2011 Author Share Posted October 21, 2011 i need to decode that file, normal download that file from mediafire and open - this is what i want, i dont want nothing decode on mediafire Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281082 Share on other sites More sharing options...
ManiacDan Posted October 21, 2011 Share Posted October 21, 2011 Guys, OP wants to break the encryption on the FILE THAT URL POINTS TO. NOT THE URL ITSELF. OP: This file was encrypted on purpose. Probably because it costs money. Ask the original author for the unencrypted source code. Doing this yourself will take a very long time, there is no automated "make this readable" code, any work like this would have to be done by hand. Note that it's also illegal in many countries, including the US. Quote Link to comment https://forums.phpfreaks.com/topic/249510-how-to-decode-this/#findComment-1281135 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.