discourse-migratepassword/plugin.rb

202 lines
5.7 KiB
Ruby
Raw Normal View History

2014-09-07 16:04:01 -04:00
# name: discourse-migratepassword
# about: enable alternative password hashes
# version: 0.7
2014-09-07 16:04:01 -04:00
# authors: Jens Maier and Michael@discoursehosting.com
# uses phpass-ruby https://github.com/uu59/phpass-ruby
# Usage:
# When migrating, store a custom field with the user containing the crypted password
2015-11-21 03:21:59 -05:00
# for vBulletin this should be #{password}:#{salt} md5(md5(pass) + salt)
2016-06-12 06:38:15 -04:00
# for vBulletin5 #{token} bcrypt(md5(pass))
2015-11-21 03:21:59 -05:00
# for Phorum #{password} md5(pass)
# for Wordpress #{password} phpass(8).crypt(pass)
# for SMF #{username}:#{password} sha1(user+pass)
2015-12-19 07:39:15 -05:00
# for WBBlite #{salt}:#{hash} sha1(salt+sha1(salt+sha1(pass)))
2014-09-07 16:04:01 -04:00
2015-01-14 02:06:28 -05:00
gem 'bcrypt', '3.1.3'
2016-08-07 23:15:26 -04:00
# for scrypt
2016-08-07 23:27:57 -04:00
gem 'rake'
gem 'ffi'
gem 'ffi-compiler'
gem 'scrypt', '3.0.1'
2014-09-07 16:04:01 -04:00
require 'digest'
class WordpressHash
def initialize(stretch=8)
@itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
stretch = 8 unless (8..30).include?(stretch)
@stretch = stretch
@random_state = '%s%s' % [Time.now.to_f, $$]
end
def hash(pw)
rnd = ''
rnd = Phpass.random_bytes(6)
crypt(pw, gensalt(rnd))
end
def check(pw, hash)
crypt(pw, hash) == hash
end
private
def gensalt(input)
out = '$P$'
out << @itoa64[[@stretch + 5, 30].min]
out << encode64(input, 6)
out
end
def crypt(pw, setting)
out = '*0'
out = '*1' if setting.start_with?(out)
iter = @itoa64.index(setting[3])
return out unless (8..30).include?(iter)
count = 1 << iter
salt = setting[4...12]
return out if salt.length != 8
hash = Digest::MD5.digest(salt + pw)
while count > 0
hash = Digest::MD5.digest(hash + pw)
count -= 1
end
setting[0,12] + encode64(hash, 16)
end
def encode64(input, count)
out = ''
cur = 0
while cur < count
value = input[cur].ord
cur += 1
out << @itoa64[value & 0x3f]
if cur < count
value |= input[cur].ord << 8
end
out << @itoa64[(value >> 6) & 0x3f]
break if cur >= count
cur += 1
if cur < count
value |= input[cur].ord << 16
end
out << @itoa64[(value >> 12) & 0x3f]
break if cur >= count
cur += 1
out << @itoa64[(value >> 18) & 0x3f]
end
out
end
end
after_initialize do
module ::AlternativePassword
def confirm_password?(password)
return true if super
return false unless self.custom_fields.has_key?('import_pass')
if AlternativePassword::check_all(password, self.custom_fields['import_pass'])
self.password = password
self.custom_fields.delete('import_pass')
return save
end
false
end
def self.check_all(password, crypted_pass)
AlternativePassword::check_smf_scrypt(password, crypted_pass)
2015-01-14 02:06:28 -05:00
end
def self.check_bcrypt(password, crypted_pass)
2015-07-02 17:35:36 -04:00
begin
BCrypt::Password.new(crypted_pass) == password
rescue
false
end
2014-09-07 16:04:01 -04:00
end
def self.check_vbulletin(password, crypted_pass)
hash, salt = crypted_pass.split(':', 2)
!salt.nil? && hash == Digest::MD5.hexdigest(Digest::MD5.hexdigest(password) + salt)
end
2016-06-12 06:38:15 -04:00
def self.check_vbulletin5(password, crypted_pass)
# replace $2y$ with $2a$ see http://stackoverflow.com/a/20981781
crypted_pass.gsub! /^\$2y\$/, '$2a$'
2016-06-27 15:49:59 -04:00
begin
BCrypt::Password.new(crypted_pass) == Digest::MD5.hexdigest(password)
rescue
false
end
2016-06-12 06:38:15 -04:00
end
2014-09-07 16:04:01 -04:00
def self.check_md5(password, crypted_pass)
crypted_pass == Digest::MD5.hexdigest(password)
end
2015-11-21 03:21:59 -05:00
def self.check_smf(password, crypted_pass)
user, hash = crypted_pass.split(':', 2)
sha1 = Digest::SHA1.new
sha1.update user + password
hash == sha1.hexdigest
end
def self.check_smf_bcrypt(password, crypted_pass)
user, hash = crypted_pass.split(':', 2)
sha1 = Digest::SHA1.new
sha1.update user + password
begin
BCrypt::Password.new(hash) == sha1.hexdigest
rescue
false
end
end
def self.check_smf_scrypt(password, crypted_pass)
user, hash = crypted_pass.split(':', 2)
sha1 = Digest::SHA1.new
sha1.update user + password
begin
SCrypt::Password.new(hash) == sha1.hexdigest
rescue
false
end
end
2015-07-17 12:42:38 -04:00
def self.check_ipb(password, crypted_pass)
salt, hash = crypted_pass.split(':', 2)
!salt.nil? && hash == Digest::MD5.hexdigest(Digest::MD5.hexdigest(salt) + Digest::MD5.hexdigest(password))
end
2014-09-07 16:04:01 -04:00
def self.check_wordpress(password, crypted_pass)
hasher = WordpressHash.new(8)
hasher.check(password, crypted_pass)
end
2015-07-02 17:35:36 -04:00
def self.check_sha256(password, crypted_pass)
sha256 = Digest::SHA256.new
sha256.update password
crypted_pass == sha256.hexdigest
2015-12-19 07:39:15 -05:00
end
def self.check_wbblite(password, crypted_pass)
salt, hash = crypted_pass.split(':', 2)
sha1 = Digest::SHA1.hexdigest(salt + Digest::SHA1.hexdigest(salt + Digest::SHA1.hexdigest(password)))
hash == sha1
end
2014-09-07 16:04:01 -04:00
end
class ::User
prepend AlternativePassword
end
end