diff --git a/js/rules.js b/js/rules.js index c5a28bb..6f50749 100755 --- a/js/rules.js +++ b/js/rules.js @@ -3,4 +3,14 @@ var special = new Array(); special['53.com'] = (function(password) { // 6-12 characters return password.substr(0,12); +}); + +special['paypal.com'] = (function(password) { + // 8-20 characters + return password.substr(0,20); +}); + +special['ebay.com'] = (function(password) { + // 8-20 characters + return password.substr(0,20); }); \ No newline at end of file