mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-31 02:55:58 +01:00 
			
		
		
		
	fix: #11554, email requirement bypass by sending in whitespace
This commit is contained in:
		| @@ -46,6 +46,10 @@ Interstitials.email = async (data) => { | |||||||
| 			issuePasswordChallenge: !!data.userData.uid && hasPassword, | 			issuePasswordChallenge: !!data.userData.uid && hasPassword, | ||||||
| 		}, | 		}, | ||||||
| 		callback: async (userData, formData) => { | 		callback: async (userData, formData) => { | ||||||
|  | 			if (formData.email) { | ||||||
|  | 				formData.email = String(formData.email).trim(); | ||||||
|  | 			} | ||||||
|  |  | ||||||
| 			// Validate and send email confirmation | 			// Validate and send email confirmation | ||||||
| 			if (userData.uid) { | 			if (userData.uid) { | ||||||
| 				const isSelf = parseInt(userData.uid, 10) === parseInt(data.req.uid, 10); | 				const isSelf = parseInt(userData.uid, 10) === parseInt(data.req.uid, 10); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user