Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Closed Thread
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-22-2012, 06:12 PM   PM User | #1
dr markos
New to the CF scene

 
Join Date: Nov 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
dr markos is an unknown quantity at this point
decrypting php file

hello i need to decrypt this php file in attachments

it is uuencoded 5 times and i managed to decode them and it ended with blowfish encyrption which i can't decode

can anyone help me decrypting that file

Last edited by Fou-Lu; 11-23-2012 at 01:32 AM..
dr markos is offline  
Old 11-22-2012, 11:58 PM   PM User | #2
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,653
Thanks: 4
Thanked 2,451 Times in 2,420 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
Riigghht. Why?
Fou-Lu is offline  
Old 11-23-2012, 12:21 AM   PM User | #3
tangoforce
Senior Coder

 
tangoforce's Avatar
 
Join Date: Feb 2011
Location: Your Monitor
Posts: 3,513
Thanks: 45
Thanked 439 Times in 428 Posts
tangoforce will become famous soon enoughtangoforce will become famous soon enough
Because he wants to *borrow* someone elses hard work.. You know what that calls for right?



__________________
Please wrap your code in [php] tags. It is a sticky topic and it HELPS us to HELP YOU!
TIP: Coding styles and $end errors :::::::::: TIP: Warning: Cannot modify header information - headers already sent :::::::::: TIP: Quotes / Parse error: syntax error, unexpected T_..
PHP Code:
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value. 
Explanation: The IE if(isset($_POST['submit'])) bug explained.
tangoforce is offline  
Old 11-23-2012, 01:31 AM   PM User | #4
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,653
Thanks: 4
Thanked 2,451 Times in 2,420 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
Quote:
Originally Posted by tangoforce View Post
Because he wants to *borrow* someone elses hard work.. You know what that calls for right?



Sure is thinking about it. But I'll give a benefit of a doubt and wait for an explanation.
Fou-Lu is offline  
Old 11-23-2012, 10:28 AM   PM User | #5
Custard7A
Regular Coder

 
Custard7A's Avatar
 
Join Date: Jul 2010
Location: Australia
Posts: 269
Thanks: 32
Thanked 32 Times in 32 Posts
Custard7A is an unknown quantity at this point
Is PHP file encryption something a common developer should be using..
Custard7A is offline  
Old 11-23-2012, 02:31 PM   PM User | #6
tangoforce
Senior Coder

 
tangoforce's Avatar
 
Join Date: Feb 2011
Location: Your Monitor
Posts: 3,513
Thanks: 45
Thanked 439 Times in 428 Posts
tangoforce will become famous soon enoughtangoforce will become famous soon enough
If you're developing / selling commercial code yes. Invisionboard is encrypted (also expensive compared to other free forums such as phpbb).
__________________
Please wrap your code in [php] tags. It is a sticky topic and it HELPS us to HELP YOU!
TIP: Coding styles and $end errors :::::::::: TIP: Warning: Cannot modify header information - headers already sent :::::::::: TIP: Quotes / Parse error: syntax error, unexpected T_..
PHP Code:
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value. 
Explanation: The IE if(isset($_POST['submit'])) bug explained.
tangoforce is offline  
Old 11-24-2012, 12:11 AM   PM User | #7
dr markos
New to the CF scene

 
Join Date: Nov 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
dr markos is an unknown quantity at this point
hello
sorry for late replay as i get busy in some stuff

this is not for stealing someone hard work as tangoforce said

it is just a challenge between me and my friend, i told him that i gave up and uptill now he refuses to tell me the method of encryption

i need this method of encryption to use it in my scripts not for stealing the content of the file and if you decoded it you will find that it has regular worthless php code
dr markos is offline  
Old 11-24-2012, 12:41 AM   PM User | #8
tracknut
Regular Coder

 
Join Date: Aug 2006
Posts: 892
Thanks: 4
Thanked 206 Times in 205 Posts
tracknut is an unknown quantity at this point
To my knowledge, Blowfish has never been cracked, other than by brute force. So your friend has given you quite the challenge.

Dave
tracknut is offline  
Old 11-24-2012, 01:45 AM   PM User | #9
tangoforce
Senior Coder

 
tangoforce's Avatar
 
Join Date: Feb 2011
Location: Your Monitor
Posts: 3,513
Thanks: 45
Thanked 439 Times in 428 Posts
tangoforce will become famous soon enoughtangoforce will become famous soon enough
Quote:
Originally Posted by dr markos View Post
it is just a challenge between me and my friend, i told him that i gave up and uptill now he refuses to tell me the method of encryption
Seriously expect us to believe that? - You've already told us its blowfish but now you're telling us you don't know and your 'friend' refuses to tell you?

Quote:
Originally Posted by dr markos View Post
i need this method of encryption to use it in my scripts not for stealing the content of the file
So why do you need to decrypt this file then? Just ask your friend to show you how to ENcrypt it instead. Job done You really don't need to learn to decrypt / crack code to be able to use its encryption. There are plenty of freeware encryption programs out there that will encrypt strings or files for you either with a gui or via the command line.

Quote:
Originally Posted by dr markos View Post
and if you decoded it you will find that it has regular worthless php code
So you already know what the code is? Why do you want it decrypted then when you can just ask your friend to show you how to encrypt it?

Seriously, what you're saying is not credible and actually comes across as the total opposite. I'm clearly not the only one thinking this of you either as your attached file has been removed by a moderator. This isn't a hacking / cracking community, this is a programming community.
__________________
Please wrap your code in [php] tags. It is a sticky topic and it HELPS us to HELP YOU!
TIP: Coding styles and $end errors :::::::::: TIP: Warning: Cannot modify header information - headers already sent :::::::::: TIP: Quotes / Parse error: syntax error, unexpected T_..
PHP Code:
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value. 
Explanation: The IE if(isset($_POST['submit'])) bug explained.

Last edited by tangoforce; 11-24-2012 at 01:47 AM..
tangoforce is offline  
Old 11-24-2012, 10:14 PM   PM User | #10
dr markos
New to the CF scene

 
Join Date: Nov 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
dr markos is an unknown quantity at this point
Seriously expect us to believe that? - You've already told us its blowfish but now you're telling us you don't know and your 'friend' refuses to tell you?

i told that i have tried and ended with blowfish not my friend told me that and by the way i reached to blowfish key also


So why do you need to decrypt this file then? Just ask your friend to show you how to ENcrypt it instead. Job done You really don't need to learn to decrypt / crack code to be able to use its encryption. There are plenty of freeware encryption programs out there that will encrypt strings or files for you either with a gui or via the command line.



i said he refuses and i like to use this method as it can't be easily decrypted - i know how to encrypt with blowfish but this file is not like ordinary blowfish as i already have the key and cann't decrypt it



So you already know what the code is? Why do you want it decrypted then when you can just ask your friend to show you how to encrypt it?

this is because i have the decrypted file at my pc and i need to know just the special method not the content


Seriously, what you're saying is not credible and actually comes across as the total opposite. I'm clearly not the only one thinking this of you either as your attached file has been removed by a moderator. This isn't a hacking / cracking community, this is a programming community.

the moderator removed the file because of my delayed reply and also because of your aggressive replies accusing me as a thief

Last edited by dr markos; 11-24-2012 at 10:19 PM..
dr markos is offline  
Old 11-24-2012, 10:31 PM   PM User | #11
Inigoesdr
Super Moderator


 
Inigoesdr's Avatar
 
Join Date: Mar 2007
Location: Florida, USA
Posts: 3,601
Thanks: 2
Thanked 397 Times in 390 Posts
Inigoesdr is a jewel in the roughInigoesdr is a jewel in the roughInigoesdr is a jewel in the rough
Quote:
Originally Posted by dr markos View Post
it is just a challenge between me and my friend, i told him that i gave up and uptill now he refuses to tell me the method of encryption
Ok, well since you gave up I'm going to close this useless thread. Since the person with the encryption information you see is your friend I would suggest you speak with him about it.
Inigoesdr is offline  
Closed Thread

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:53 AM.


Advertisement
Log in to turn off these ads.