tagged [authentication]

How to get the current user in ASP.NET MVC

How to get the current user in ASP.NET MVC In a forms model, I used to get the current logged-in user by: How do I get the current user inside a controller class in ASP.NET MVC?

How to Use SHA1 or MD5 in C#?(Which One is Better in Performance and Security for Authentication)

How to Use SHA1 or MD5 in C#?(Which One is Better in Performance and Security for Authentication) In C# how we can use SHA1 automatically?Is SHA1 better than MD5?(We use hashing for user name and pass...

23 Feb at 08:10

Using Bcrypt with ServiceStack

Using Bcrypt with ServiceStack I am looking to use ServiceStack for an upcoming project, but I want to use bcrypt for hashing passwords. Currently the builtin repositories use SHA256 hashing. Is there...

10 Oct at 18:52

Detecting Web.Config Authentication Mode

Detecting Web.Config Authentication Mode Say I have the following web.config: Using ASP.NET C#, how can I detect the Mode value of the Authentication tag?

18 Sep at 11:47

How do you find the users name/Identity in C#

How do you find the users name/Identity in C# I need to programatically find the users name using C#. Specifically, I want to get the system/network user attached to the current process. I'm writing a...

Using HTTP Authentication with a C# WebRequest

Using HTTP Authentication with a C# WebRequest I want to make a web request to a page that needs authenticating. How would I go about doing this? I found something that said possibly to use the Creden...

2 Apr at 00:38

What's the difference: Windows Authentication, Passport Authentication and Form Authentication?

What's the difference: Windows Authentication, Passport Authentication and Form Authentication? Just going to start making a web application and was wondering which was better, or at least what are th...

17 Sep at 19:48

ServiceStack Breaking Change in 4.0.22.0, CredentialsAuthProvider.OnAuthenticated now returns something

ServiceStack Breaking Change in 4.0.22.0, CredentialsAuthProvider.OnAuthenticated now returns something I updated to version 4.0.22.0 this afternoon, and the OnAuthenticated method of class Credential...

20 Jun at 20:39

Copy file on a network shared drive

Copy file on a network shared drive I have a network shared drive ("\serveur\folder") on which I would like to copy file. I can write on the drive with a specific user ("user"/"pass"). How can I acces...

22 Jul at 16:27

How to connect to MySQL from the command line

How to connect to MySQL from the command line How can you connect to MySQL from the command line in a Mac? (i.e. show me the code) I'm doing a PHP/SQL tutorial, but it starts by assuming you're alread...

Authenticated ServiceStack.Redis.PooledRedisClientsManager

Authenticated ServiceStack.Redis.PooledRedisClientsManager How do I specify a username and password for the Redis hostname when instantiating a `PooledRedisClientManager`? I specifically need to deplo...

How to implement auth by credential in soapclient?

How to implement auth by credential in soapclient? I found the method " WcfServiceClient.SetCredential" is commented, so I try create new ChannelFactory and assign the property "Credentials.UserName" ...

ASP.NET WindowsAuthentication custom 401 Unauthorized error page

ASP.NET WindowsAuthentication custom 401 Unauthorized error page I have an ASP.NET web-site with authentication using ActiveDirectory. , when an authenticated user opens a page - he is automatically ...

How do I log into a site with WebClient?

How do I log into a site with WebClient? I want to download something using a WebClient object in C#, but the download domain requires me to be logged in. How can I log in and keep session data using ...

8 Nov at 14:15

Getting NetworkCredential for current user (C#)

Getting NetworkCredential for current user (C#) I'm trying to invoke a webservice from a console application, and I need to provide the client with a `System.Net.NetworkCredential` object. Is it possi...

4 Jun at 08:51

How to check user is "logged in"?

How to check user is "logged in"? I am using form authentication with below method in my ASP.NET application How do I check whether user is logged in or not? And how can I get the user name of a logge...

13 Jan at 21:18

Change GitHub Account username

Change GitHub Account username I want to change my account's user name on GitHub, but I can't find how to do it. Is this possible at all? To clarify, I'm not talking about the user.name parameter in a...

12 Feb at 19:38

Servicestack: restrict MVC action by role

Servicestack: restrict MVC action by role I want to restrict an ASP.NET MVC action for a role. I think it should be something like this: How to remove access to action for some role?

Unlock Windows programmatically

Unlock Windows programmatically In my current C# code I'm able to lock a Windows user session programmatically (same as Windows + L). Since the app would still be running, is there any way to unlock t...

7 Aug at 19:28

What's the best way to specify a proxy with username and password for an **https** connection in python?

What's the best way to specify a proxy with username and password for an **https** connection in python? I read somewhere that currently urllib2 doesn't support authenticated https connection. My prox...

15 Jan at 14:12

How to unit-test an MVC controller action which depends on authentication in c#?

How to unit-test an MVC controller action which depends on authentication in c#? I'd like to write (in c#) a unit-test for an MVC controller action which might return one view or the other, depending ...

Is it possible to use an existing ASP.NET Core AuthenticationHandler with ServiceStack?

Is it possible to use an existing ASP.NET Core AuthenticationHandler with ServiceStack? I have a custom `AuthenticationHandler` built to tie into the Claims-based authorization in ASP.NET Core. Is it ...

Unauthorized (Invalid Token) when authenticating with JWT Bearer Token after update to .NET 6

Unauthorized (Invalid Token) when authenticating with JWT Bearer Token after update to .NET 6 After updating the package `Microsoft.AspNetCore.Authentication.JwtBearer` from version 3.1.14 to 6.0.1, r...

4 Jan at 13:3

How to login and authenticate to Postgresql after a fresh install?

How to login and authenticate to Postgresql after a fresh install? Did a new install of postgres 8.4 on mint ubuntu. How do I create a user for postgres and login using psql? When I type psql, it just...

How to add basic authentication header to WebRequest

How to add basic authentication header to WebRequest I have a basic WCF service and I want to test it using HttpWebRequest. The problem is that I use basic authentication. How do I add a header with b...

ServiceStack custom response on failed authentication

ServiceStack custom response on failed authentication I've created a custom authentication for servicestack, which works well. The only problem is, that I get empty responses for every route, that req...

Can you get a Windows (AD) username in PHP?

Can you get a Windows (AD) username in PHP? I have a PHP web application on an intranet that can extract the IP and host name of the current user on that page, but I was wondering if there is a way to...

3 Oct at 19:53

Authenticating in PHP using LDAP through Active Directory

Authenticating in PHP using LDAP through Active Directory I'm looking for a way to authenticate users through LDAP with PHP (with Active Directory being the provider). Ideally, it should be able to ru...

How can I make SMTP authenticated in C#

How can I make SMTP authenticated in C# I create new ASP.NET web application that use SMTP to send message. The problem is the smtp was not authenticated from who send the message. How can I make SMT...

26 Apr at 10:28

How should I handle authentication with Nancy?

How should I handle authentication with Nancy? I started coding a LoginModule for Nancy, but it occurred to me that possibly I need to perform authentication a different way. Is there an accepted way ...

16 Nov at 16:40

Authentication and Authorization with ServiceStack.MVC

Authentication and Authorization with ServiceStack.MVC AuthorizeAttribute is useless while using ServiceStack.Mvc AuthenticateAttribute is for DTO objects. There is no sample for AccountController wit...

Whats the best way to force a browser redirect after logout of ServiceStack

Whats the best way to force a browser redirect after logout of ServiceStack Currently when a user logs out the log out process works correctly but the user stays on the same screen and therefore can s...

How to programmatically log in to a website to screenscape?

How to programmatically log in to a website to screenscape? I need some information from a website that's not mine, in order to get this information I need to login to the website to gather the inform...

11 Aug at 13:37

How to clear basic authentication details in chrome

How to clear basic authentication details in chrome I'm working on a site that uses basic authentication. Using Chrome I've logged in using the basic auth. I now want to remove the basic authenticatio...

12 Oct at 12:34

Why would my REST service .NET clients send every request without authentication headers and then retry it with authentication header?

Why would my REST service .NET clients send every request without authentication headers and then retry it with authentication header? We happen to run a REST web service with API requiring that clien...

How to get the currently logged in user's user id in Django?

How to get the currently logged in user's user id in Django? How to get the currently logged-in user's id? in `models.py`: in `views.py`:

Check whether the allow anonymous is on or not in ASP.NET Core

Check whether the allow anonymous is on or not in ASP.NET Core I need a way to check if "allow anonymous" is on/off in the controller action. Whether it comes from controller attribute, action attribu...

How to change users in TortoiseSVN

How to change users in TortoiseSVN I was setting up another user to use our SVN repository. He didn't have a username/password, so I logged in with my credentials. We now have a username/password for...

Devise redirect after login fail

Devise redirect after login fail All the questions I've found are related to a successful login with the helper `after_sign_in_path_for(resource)` I have a login form in the index of the site, and whe...

How to login using Windows Authentication in .NET Core with Servicestack

How to login using Windows Authentication in .NET Core with Servicestack In previous applications using ServiceStack, me and my team have been using .NET Framework and the included AspNetWindowsAuthPr...

Full name rather than the domain id in User.Identity.Name

Full name rather than the domain id in User.Identity.Name The `User.Identity.Name` property returns the domain login id. Which class/property exposes the actual user name? For user "John Doe" who logs...

26 Nov at 12:51

Why ClaimsPrincipal.Current is returned null even when the user is authenticated?

Why ClaimsPrincipal.Current is returned null even when the user is authenticated? In an ASP.Net core 2.0 applicaiton (SPA with Angular), while User.Identity.IsAuthenticated is returning true, the Clai...

Authenticating to ServiceStack with Angular

Authenticating to ServiceStack with Angular We are looking to build an Angular 2 SPA using ServiceStack. We are primarily looking for a getting started type of instructions/demos on handling authentic...

PostgreSQL error: Fatal: role "username" does not exist

PostgreSQL error: Fatal: role "username" does not exist I'm setting up my PostgreSQL 9.1. I can't do anything with PostgreSQL: can't `createdb`, can't `createuser`; all operations return the error mes...

18 Nov at 05:36

How to programatically 'login' a user based on 'remember me' cookie when using j2ee container authentication?

How to programatically 'login' a user based on 'remember me' cookie when using j2ee container authentication? i'm using form based authntication in my WAR. i want to implement a 'remember me' cookie s...

5 Sep at 21:35

how to generate a unique token which expires after 24 hours?

how to generate a unique token which expires after 24 hours? I have a WCF Webservice which checks if the user is valid. If the user is valid I want to generate a token which expires after 24 hours. ``...

1 Feb at 10:2

Alternative to cookie based session/authentication

Alternative to cookie based session/authentication Is there an alternative to the session feature plugin in servicestack? In some scenarios I cannot use cookies to match the authorized session in my s...

Angular redirect to login page

Angular redirect to login page I come from the Asp.Net MVC world where users trying to access a page they are not authorized are automatically redirected to the login page. I am trying to reproduce th...

Built-in helper to parse User.Identity.Name into Domain\Username

Built-in helper to parse User.Identity.Name into Domain\Username Is there any built-in utility or helper to parse `HttpContext.Current.User.Identity.Name`, e.g. `domain\user` to get separately domain ...

How do you implement authentication in servicestack.net

How do you implement authentication in servicestack.net I'm investigating servicestack.net - but it's examples and articles don't seem to cover authentication - is this something handled by servicesta...