Reset password for https://dev.azure.com/ - passwords

I'm trying to login to DevOps via a Microsoft Power App to load my application. All of a sudden my login credentials stopped working. Is there a way to reset the password to access my repo?
https://dev.azure.com/stexxxxx/_git/DCxxx

Related

How to create login session in cmd via username and password on web form

I want to create a console application similar to Heroku / Google cloud CLI tool that routs the user to the default web login form. Once the user is validated on the browser the session is passes to the CMD terminal. How does it work ? In the below screenshot i used heroku cli , when i type heroku login I am presented with a browser form.

I'm using form-based security for my Java EE project and it takes back me to login page after i exit the browser without logout

I'm new to java web security. I've done a project that authenticates and authorizes very well using JSF form-based authentication. But the problem is that when i close the browser without logging out and reopen the browser and try to access the project it brings the login page and i can not login. To login i've to deploy the project again. I'm not trying to add the 'Remember Me' feature. Can you guys help me on what I've to do to stay logged in even when i close and reopen the browser and access the project without being asked to login again unless i logged out intentionally.
Thank you in advance.

IdentityServer4 logout from external provider like Google

I'm using IdentityServer4 with Asp.Net Core Identity. In Identity Server I enabled GOOGLE as external provider. I'm able to LOGIN with GOOGLE. The first time I try to LOG IN with GOOGLE the Identity Server shows to me the pages of the GOOGLE where I can choose the account or insert my credentials.
When I LOGOUT I receive the message that I'm logged out but when I try to LOGIN again with GOOGLE I'm directly logged in without to enter my credentials and if I have more than 1 GOOGLE account I'm not able to choose a different one.
This happens both if I connect directly to the server from the Login screen and if I do it via AuthRequest in Expo native app calling endsession endpoint with id_token_hint enhanced.
Why? I'm getting crazy.
I found this solution:
await WebBrowser.openAuthSessionAsync("https://www.google.com/accounts/Logout?continue=https://appengine.google.com/_ah/logout?continue=http://myIdentityServerEndSessionEndpoint", "exp://myReactNativeApp");

logging out of Okta hosted login page on mobile (React Native)

I have a React Native app that uses Okta's hosted login page to authenticate.
When a user successfully authenticates for the first time through the PKCE flow, on every other login afterwards, they get automatically logged in as the same user.
I've used additionalParameters: { prompt: 'login' }, but it only asks for you to re enter your password and if you click signout, it brings you to a Citrix page that doesn't change anything about the flow - they still get logged back in as the same user after the fact.
I've tried using both the revoke and logout endpoints which actually changes the cookies a bit, but doesn't affect the flow same goes with restarting the app.
The only way is to clear hardware settings in xcode.
This may not even be an Okta specific issue, perhaps a general OIDC issue.
How does the hosted login page store and know you've previously logged in and how can that be fixed?

Azure Active Directory - Authentication without browser window

Is it possible to achieve Azure Active Directory authentication without going to browser window? I will have username and password via the mobile app login interface.
I need to achieve below scenario:
Use open mobile application (ios/android)
Enter Azure AD username and password to app login screen - e.g. user#tenant.onmicrosoft.com & password
I pass those information to .net web service - which need to call some Azure AD api to validate user credential before proceed to perform other business logic/make database calls
Any recommendation? I DON'T want user to redirect to any login window/page as this will not be good user experience.
I have already checked few different articles but not satisfactory response yet.
Thank you for your time.
I believe below link is helpful.
http://www.cloudidentity.com/blog/2014/07/08/using-adal-net-to-authenticate-users-via-usernamepassword/