ColdFusion Programming/password decrypter
Expert: Clint Willard - 10/24/2009
Questiondo you know where can i find a password decryptor?
i have my brothers password encrypted its something like s624r632r7t387t3tg38hg83hg (this is not the real password though its just random)
and i really need to desencrypt it
ive been looking for a password cracker program but i can never find a good one with a blank to put in the password
my OS is windows vista
please i would appreciate it if you could help
AnswerSorry but you have to know the 'key' that was used to encrypt it, otherwise you can't decrypt it, at all. And no, there are no hacking/cracking programs that can loop generated keys till found, it's simply too big and complexed even for a super computer. I'm also guessing your not a programmer, OS has nothing to do with it, your up to no good, sorry if I'm wrong. Otherwise if you are a novice ColdFusion coder, look at the ColdFusion documentation on security for more information (
http://livedocs.adobe.com/coldfusion/8/htmldocs/functions-pt0_17.html#3542210).
To answer your question, this is how it would be done in CFML.
hackedString = decrypt(s624r632r7t387t3tg38hg83hg,*key*);