search for: synfin

Displaying 4 results from an estimated 4 matches for "synfin".

Did you mean: enfin
2010 Jun 24
6
show crypted password??
In authlogic, I set the password field to "crypted password" Is there a way to display a password, even if its "crypted"? What if the user forgets the password and needs to recover it? How can I recover a crypted password? Thanks -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send
2009 Oct 07
0
How to force NTLMv1 on server side?
...e NTLMSSP Flags message sent by the server. Ideally this would be done inside of GSS/SPENGO (which is what is currently happening), but I'm willing to use raw NTLMSSP if that is necessary. I'm also willing to use a different version of Samba if necessary. Thanks! -- Aaron Turner http://synfin.net/ http://tcpreplay.synfin.net/ - Pcap editing and replay tools for Unix & Windows Those who would give up essential Liberty, to purchase a little temporary Safety, deserve neither Liberty nor Safety. -- Benjamin Franklin
2009 Jun 29
5
Scan IP Range In Ruby on Rails
Is there any method to scan ip range in ruby on rails ! -- Posted via http://www.ruby-forum.com/.
2009 Apr 21
11
can we decrypt the cipher encrypted using Digest::SHA1.hexdigest
what i have done is as follows password = Digest::SHA1.hexdigest("#{salt}:#{password}") pass1 = Digest::SHA1.hexdigest("#{salt}:asdfgh") pass2 = Digest::SHA1.hexdigest("#{salt}:asdfgh") pass3 = Digest::SHA1.hexdigest("#{salt}:qwerty") puts pass1==pass2 puts pass1==pass3 This works fine but i need to get the decrypted password how can i get it any help is