run a sql query
Code:
UPDATE user SET password = '12345' WHERE password != '';
since the passwords are hashed this will set an unkown password, which will not allow the user to login, they will have to perform a password reset using the Forgot Password link. If you want to exclude your account, the use this instead
Code:
UPDATE user SET password = '12345' WHERE userid != {whatever your id is};