Re: Decrypting MD5

2015-03-13 Thread Alan Rother
Just to clarify Rick, the MD5 is not strictly speaking an encryption algorithm. It's a hashing algorithm, hashes by their very nature are intended to be one way and destructive. There are only a finite number of possible results of the MD5 hash, which is how people have constructed tools to

Decrypting MD5

2015-03-12 Thread Rick Sanders
Hey all sorry if this has been asked before. I did Google and didn't come up with a result. I want to know if I can decrypt passwords stored as MD5 in a SQL Server database using the Decrypt function? There are online tools out there that decrypt MD5 so I'm hoping that I can do this in CF.

RE: Decrypting MD5

2015-03-12 Thread DURETTE, STEVEN J
- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, March 12, 2015 9:09 AM To: cf-talk Subject: Re: Decrypting MD5 So basically MD5 is useless if you can't decrypt the value! That sucks. I don't know about useless. Hashing is not the same as encryption. They're intended to solve

Re: Decrypting MD5

2015-03-12 Thread Byron Mann
Just for reference. Here's a pretty good article on how to hash properly. https://crackstation.net/hashing-security.htm Hashing is often done incorrectly, even if it's being salted you never want to use the same salt across the board. Simple thing is, compute power is so available, brute

RE: Decrypting MD5

2015-03-12 Thread LRS Scout
- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, March 12, 2015 9:09 AM To: cf-talk Subject: Re: Decrypting MD5 So basically MD5 is useless if you can't decrypt the value! That sucks. I don't know about useless. Hashing is not the same as encryption. They're intended

Re: Decrypting MD5

2015-03-12 Thread Russ Michaels
...@webenergy.ca wrote: So basically MD5 is useless if you can't decrypt the value! That sucks. Kind regards, Rick -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, March 12, 2015 9:57 AM To: cf-talk Subject: Re: Decrypting MD5 I want to know if I can

Re: Decrypting MD5

2015-03-12 Thread Russ Michaels
Brute forcing MD5 hashes is really only going to work if you are still using weak passwords to begin with and just hashing them. This then works in exactly the same way as a brute force dictionary attack on a plain password, except they try the hashed version of the same password. You should

Re: Decrypting MD5

2015-03-12 Thread Dave Watts
I want to know if I can decrypt passwords stored as MD5 in a SQL Server database using the Decrypt function? There are online tools out there that decrypt MD5 so I'm hoping that I can do this in CF. There are no tools that actually decrypt MD5 hashes, to the best of my knowledge. MD5 is a

RE: Decrypting MD5

2015-03-12 Thread Robert Harrison
It looks like you can if you know the salt: http://www.hashkiller.co.uk/md5-decrypter.aspx http://www.md5online.org/ http://md5decryption.com/ http://www.md5decrypter.com/ Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line:

RE: Decrypting MD5

2015-03-12 Thread Rick Sanders
So basically MD5 is useless if you can't decrypt the value! That sucks. Kind regards, Rick -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, March 12, 2015 9:57 AM To: cf-talk Subject: Re: Decrypting MD5 I want to know if I can decrypt passwords

RE: Decrypting MD5

2015-03-12 Thread Robert Harrison
So basically MD5 is useless if you can't decrypt the value! That sucks. Maybe, if you're storing data you need to retrieve. Generally I use if for data I need to compare (like passwords), then I just encrypt the values the same way and compare the encrypted values. Robert Harrison Full Stack

Re: Decrypting MD5

2015-03-12 Thread Dave Watts
So basically MD5 is useless if you can't decrypt the value! That sucks. I don't know about useless. Hashing is not the same as encryption. They're intended to solve different problems. Let's say you're using a Windows network, with Active Directory. Active Directory doesn't actually know your

Decrypting a string which was encrypted by C# doesn't handle extended ascii

2013-02-27 Thread Bert Dawson
Hi I need to decrypt a string which was originally encrypted in C#. It works fine for normal ascii strings, but not with extended ascii characters, e.g. the ö in Citroën. It returns the unrepresentable character 65533 This is the code that was used for the encryption:

Re: Decrypting a string which was encrypted by C# doesn't handle extended ascii

2013-02-27 Thread Mark Drew
Maybe this would help? http://stackoverflow.com/questions/10247896/aes-rijndael-encrypt-between-c-and-java Regards Mark Drew On 27 Feb 2013, at 16:18, Bert Dawson bert...@gmail.com wrote: Hi I need to decrypt a string which was originally encrypted in C#. It works fine for normal

Re: Decrypting a string which was encrypted by C# doesn't handle extended ascii

2013-02-27 Thread Leigh
This is the code that was used for the encryption: What is the code for RijndaelDecrypt/RijndaelEncrypt? -Leigh ~| Order the Adobe Coldfusion Anthology now!

Re: Decrypting a string which was encrypted by C# doesn't handle extended ascii

2013-02-27 Thread Leigh
a string which was originally encrypted in C#. It works Oh wait...it looks like an encoding difference. CF's encrypt/decrypt functions always use UTF-8. Based on the results, those custom c# methods are using Encoding.Unicode, which is different.  You need to use the same encoding ie

Re: Decrypting a string which was encrypted by C# doesn't handle extended ascii

2013-02-27 Thread Bert Dawson
Thanks Mark and Leigh. Leigh, that did the trick. Cheers Bert On 27 February 2013 14:48, Leigh cfsearch...@yahoo.com wrote: a string which was originally encrypted in C#. It works Oh wait...it looks like an encoding difference. CF's encrypt/decrypt functions always use UTF-8. Based on

Encrypting/Decrypting XML

2007-12-05 Thread Scott Stewart
Hey all, Is there a way to encrypt and decrypt XML on the fly. I'm building a small cms, and want to store the login information in an XML file. I need to be able to read An encrypted file, do the typical login/password check and leave the file encrypted on the server, to keep it away from

RE: Encrypting/Decrypting XML

2007-12-05 Thread Dan G. Switzer, II
Scott, Is there a way to encrypt and decrypt XML on the fly. I'm building a small cms, and want to store the login information in an XML file. I need to be able to read An encrypted file, do the typical login/password check and leave the file encrypted on the server, to keep it away from prying

Re: decrypting

2007-08-28 Thread Tom Chiverton
On Monday 27 Aug 2007, [EMAIL PROTECTED] wrote: Any ideas what this means? People type/edit/click broken links ? -- Tom Chiverton Helping to carefully architect eye-catching portals on: http://thefalken.livejournal.com This email is sent

decrypting

2007-08-27 Thread Chad Gray
I was going through some log files and noticed this was frequently happening. Any ideas what this means? Here is the line of code also cfset zVar = Decrypt(URL.Z, encKey, AES, Hex) / Error,jrpp-1,08/27/07,10:53:45,MyApplication,There has been an error while trying to encrypt or decrypt your

Re: decrypting a string...using CF 6.1

2006-08-11 Thread Tom Chiverton
On Thursday 10 August 2006 17:40, Andy Matthews wrote: The line in question -- cfset email = Decrypt(email,MLS) Where does that email variable come from, is the obvious question. -- Tom Chiverton This email is sent for and on

Re: decrypting a string...using CF 6.1

2006-08-11 Thread Kris Jones
Andy, in my experience whenever I see the word null in relation to ColdFusion decryption, it means either than the value being decrypted is an empty string, or that the string being decrypted was not encrypted to begin with. My guess would be that the page is getting hit by a spider, so the

RE: decrypting a string...using CF 6.1

2006-08-11 Thread Andy Matthews
- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, August 11, 2006 7:21 AM To: CF-Talk Subject: Re: decrypting a string...using CF 6.1 On Thursday 10 August 2006 17:40, Andy Matthews wrote: The line in question -- cfset email = Decrypt(email,MLS) Where does that email

Re: decrypting a string...using CF 6.1

2006-08-11 Thread Kris Jones
It is simple to fix. You just need to check for content in the variable before trying to decrypt iit. Something like: cfif len(email) gt 0 cfset email = decrypt(email,MLS) /cfif Cheers, Kris Sadly I have no clue. It's not a huge deal...I just thought it would be simple enough to fix.

decrypting a string...using CF 6.1

2006-08-10 Thread Andy Matthews
I'm checking our error logs and have found this one error that crops up often enough that I'd like to fix it right away. But I'm getting an error that I don't know how to fix. The error -- 15 null The error occurred on line 11. The line in question -- cfset email =

Decrypting CFR files?

2005-04-25 Thread Kenton Gray
Has anyone had any luck or any experimentation with decrypting cfr files? It would be very helpful for when you get an error saying that there is an error on line 733 (and then being forced to guess which part of your report happens to be at line 733), or for adding even more dynamic reporting

RE: Decrypting CFR files?

2005-04-25 Thread Dave Watts
Has anyone had any luck or any experimentation with decrypting cfr files? It would be very helpful for when you get an error saying that there is an error on line 733 (and then being forced to guess which part of your report happens to be at line 733), or for adding even more dynamic

Re: Decrypting CFR files?

2005-04-25 Thread Joe Rinehart
(like Tartan), or do pretty much whatever you want. -Joe On 4/25/05, Kenton Gray [EMAIL PROTECTED] wrote: Has anyone had any luck or any experimentation with decrypting cfr files? It would be very helpful for when you get an error saying that there is an error on line 733 (and then being forced

Re: Decrypting CFR files?

2005-04-25 Thread Kenton Gray
or any experimentation with decrypting cfr files? It would be very helpful for when you get an error saying that there is an error on line 733 (and then being forced to guess which part of your report happens to be at line 733), or for adding even more dynamic reporting capabilities. I

Decrypting source code

2002-01-28 Thread Ray Bujarski
Does anyone know how to decrypt sorce code that has been encrypted with cold fusion? Thanks, Ray __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month ·

RE: Decrypting source code

2002-01-28 Thread Garza, Jeff
Here we go again Do a search on google.com for cfdecrypt. And put on your flame retardant suit... G Jeff Garza -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 4:04 PM To: CF-Talk Subject: Decrypting source code Does anyone know

RE: Decrypting source code

2002-01-28 Thread Justin Hansen
Look out.. Here comes the Intellectual property discussion You're gonna get flamed now Ray. -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 5:04 PM To: CF-Talk Subject: Decrypting source code Does anyone know how to decrypt sorce

RE: Decrypting source code

2002-01-28 Thread Ray Bujarski
: Decrypting source code Does anyone know how to decrypt sorce code that has been encrypted with cold fusion? Thanks, Ray __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant

RE: Decrypting source code

2002-01-28 Thread Michael Dinowitz
The CF-Talk list is for tech talk about CF. An intellectual property discussion belongs on the CF-Community list or somewhere else. I'll gladly create another list for it if you want. That being said, decrypting encoded CF pages is a violation of the licensing agreement. At 06:08 PM 1/28/02

RE: Decrypting source code

2002-01-28 Thread Tyler M. Fitch
** -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 3:16 PM To: CF-Talk Subject: RE: Decrypting source code The CF-Talk list is for tech talk about CF. An intellectual property discussion belongs on the CF-Community list or somewhere else. I'll gladly

RE: Decrypting source code

2002-01-28 Thread Michael Dinowitz
://isitedesign.com ** -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 3:16 PM To: CF-Talk Subject: RE: Decrypting source code The CF-Talk list is for tech talk about CF

RE: Decrypting source code

2002-01-28 Thread Jeffry Houser
Once in a blue moon yes. I believe Michael was referring to the decryption of the ColdFusion administrator templates when he said it was a violation of the license agreement. If you own the code, but have lost the source for whatever reason... decrypting is probably legit. In an effort

RE: Decrypting source code

2002-01-28 Thread Ray Bujarski
** -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 3:16 PM To: CF-Talk Subject: RE: Decrypting source code The CF-Talk list is for tech talk about CF. An intellectual property

encrypting/decrypting...

2001-12-18 Thread Tyler Silcox
I remember a discussion a little while back about encrypting/decrypting variables etc and now I'm starting to encrypt some passed variables and was wondering if y'all could remember some of the finer points of the discussion, because I sure don't, and now I'm having some problems. I think my

RE: encrypting/decrypting...

2001-12-18 Thread Raymond Camden
, and a powerful ally it is. - Yoda -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 9:58 AM To: CF-Talk Subject: encrypting/decrypting... I remember a discussion a little while back about encrypting/decrypting variables etc and now I'm

Re: encrypting/decrypting...

2001-12-18 Thread Tyler Silcox
...thanks for checking it out- Tyler - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 10:13 AM Subject: RE: encrypting/decrypting... Tyler, I ran your code exactly as you have it, and didn't get any errors

RE: encrypting/decrypting...

2001-12-18 Thread Raymond Camden
: morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 10:27 AM To: CF-Talk Subject: Re: encrypting/decrypting... Did you run it as a UDF? Because that's where

Re: [Decrypting]

2001-05-16 Thread Alex
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Ray Bujarski [EMAIL PROTECTED] wrote: If I want to decrypt a file that was encrypted with cf server, how would I go about doing this? Ray ~~ Structure your ColdFusion code with

RE: [Decrypting]

2001-05-16 Thread Billy Cravens
Allaire. However, if you know how to use Yahoo!, finding a tool to do it isn't too hard. --- Billy Cravens HR Systems, Sabre [EMAIL PROTECTED] -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 16, 2001 3:24 PM To: CF-Talk Subject: Re: [Decrypting] Archives

Decrypting

2000-12-14 Thread Kevin Schmidt
I know I saw the URL for a site that allows decryption of CF filesanybody got it??? Kevin Schmidt, Web Technology Manager Allaire Certified Cold Fusion Developer pwb inc. integrated marketing communications 350 S. Main St., Suite 350 Ann Arbor, MI 48104 734.995.5000 (tel) 734.995.5002 (fax)

Re: Decrypting

2000-12-14 Thread Greg Wolfinger
MAIL PROTECTED] Sent: Thursday, December 14, 2000 1:17 PM Subject: Decrypting I know I saw the URL for a site that allows decryption of CF filesanybody got it??? Kevin Schmidt, Web Technology Manager Allaire Certified Cold Fusion Developer pwb inc. integrated marketing communications 35

RE: Decrypting

2000-12-14 Thread Larry Juncker
http://shroom.dv8.org/cfd/ Larry Juncker Senior Cold Fusion Developer Heartland Communications Group, Inc. -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 12:18 PM To: CF-Talk Subject: Decrypting I know I saw the URL for a site

RE: Decrypting

2000-12-14 Thread Philip Arnold - ASP
I know I saw the URL for a site that allows decryption of CF filesanybody got it??? http://shroom.dv8.org/cfd/ Be careful on legality of you decrypting and updating the code if someone else wrote it Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20

RE: Decrypting

2000-12-14 Thread lsellers
I know I saw the URL for a site that allows decryption of CF filesanybody got it??? http://www.intrafoundation.com/links.html or http://www.intrafoundation.com/cf.html. In there someone. Something to do with shrooms I do believe. :) --min

Re: Decrypting

2000-12-14 Thread Jamie Keane
[EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Thursday, December 14, 2000 12:14 PM Subject: Decrypting I know I saw the URL for a site that allows decryption of CF filesanybody got it??? Kevin Schmidt, Web Technology Manager Allaire Certified Cold Fusion Developer pwb inc. integrated

Re: Decrypting

2000-12-14 Thread Joseph Thompson
Not that I would *ever* decrypt anything, but if you need a recursive template to plug in the *alleged* decrypt utility so you can decrypt entire directories, there may be one here : ) http://cfhub.com/tutorials/filereader/index.cfm ~~