diff --git a/Security b/Security new file mode 100644 index 000000000000..68d2f4ca03bc --- /dev/null +++ b/Security @@ -0,0 +1,21 @@ +Use a password manager to store and generate passwords. +Avoid password reuse across websites and apps. +Avoid using personal information in passwords. +Use Multi-Factor Authentication. +const { data, error } = await supabase.auth.signInWithOtp({ + phone: '+13334445555', +})const { + data: { session }, + error, +} = await supabase.auth.verifyOtp({ + phone: '13334445555', + token: '123456', + type: 'sms', +}){ + "access_token": "", + "token_type": "bearer", + "expires_in": 3600, + "refresh_token": "" +}const { data, error } = await supabase.auth.updateUser({ + phone: '123456789', +})