I am working with a c#.net application right now where I have smartcard authentication working properly, by allowing users to pick their digital certificate and enter their pin. However I want to do away with allowing the user to pick their certificate and have one of their certificates picked for them automatically(every user has the same certificates). This would make it so that when a user tries to enter the site, they are simply presented with a pin prompt. Any ideas on how to go about doing this? All the users I work with use Internet Explorer 7 and have workstations with ActivIdentity and Tumbleweed.
Bypass choose a digital certificate and present user with pin prompt
1.1k Views Asked by Ben At
1
There are 1 best solutions below
Related Questions in SECURITY
- Can MVC.NET prevent SQL-injection at razor or controller level?
- Forgotten password reset page: should the user need to enter a username/email as well?
- Dynamic roles list in CustomAuthorize ASP MVC
- Access roles from multiple applications
- How to Fix TLS CBC Incorrect Padding Abuse Vulnerability on Windows 2003 Server
- Evernote Web Clipper and Content Security Policy
- Invalidate user credentials when password changes
- Spring Boot MVC non-role based security
- Correct Captcha behaviour on error
- Is macro more secure than static const if I don't want someone to know or change the hardcode value?
- In Android, ensuring only pre-decided users can only use the app
- Authenticating plain text passwords against md5 hash in DB using Apache Shiro
- Symfony2 - handle HTTP/Entity user access restrictions
- Client side computation without exposing code?
- searchable row level encryption using java?
Related Questions in AUTHENTICATION
- Access roles from multiple applications
- Different storyboard's entry points depending on a parameter
- SoundCloud Authentication Consistently Returns 401 invalid_grant For Some Users
- sendxmpp not authorized failure (Error AuthSend)
- Retrieve user information from Active Directory on login
- Log in through active directory
- Ember.js REST Auth Headers
- Validate Deezer access token on server
- Why does IIS Anonymous Authentication turn on by itself after I publish my project to server?
- Laravel - session data survives log-out/log-in, even for different users
- How can I share Azure Active Directory authentication between server side and client script?
- django rest framework - token authentication logout
- NameValuePair, HttpParams, HttpConnection Params deprecated on server request class for login app
- How to delete user from _User through Parse REST API
- Cannot login with new SQL User - SQL 2014
Related Questions in SMARTCARD
- How to validate a Smart/CAC card using input from Precise Biometrics Tactivo
- Java Card applet EEPROM vs RAM testing
- ISO/IEC 7816 commands over CCID
- C on smartcards
- Is smartcard logon in windows bound to minidrivers and MS base CSP or any CSP will work?
- number value to byte[6] array card reader
- Using A3 certificate with a Service
- How do I interpret the response from GET PROCESSING OPTIONS?
- javax.smartcardio case 4 APDU vanishing - 6700 response - warning
- Determine Facility Code and Card Number from ATR in C#
- Android - Usb CCID large data
- Create Sharepoint connector to apply Digital Signature using Smartcards or USB Tokens?
- Read serial from smartcard with javax.smartcardio
- How to use SCARD_CTL_CODE under linux?
- java pkcs11 slot detection issue with OpenSC if smartcard is removed and inserted again
Related Questions in DIGITAL-CERTIFICATE
- How to create a private certificate for connecting to a website
- Getting SSLHandshakeException in java
- Digitally Sign Document with PHP
- 0x2726 error while signing pdf file with IText
- Authentication using digital signtures
- How installed SSL certifitaces on computer
- Creating a installer which will run a specific batch file
- Webservice authentication using Digital certificate , Server Jboss Soa 5.3.1
- Set the handle of authentication window of RSACryptoServiceProvider
- No 'add certificate' button in apple iOS provisioning portal
- InfoPath 2010 - multiple digital certificates / repeating section
- keytool - see the public and private keys
- java keystore and password settings
- How to build an EV SSL certificate?
- How to programmatically verify an assembly is signed with a specific Certificate?
Related Questions in CAC
- How to validate a Smart/CAC card using input from Precise Biometrics Tactivo
- HTTPContext not finding client CAC cert in ASP.NET and iis express
- Liferay Smart Card CAC Authentication With Liferay 6.1
- Bypass choose a digital certificate and present user with pin prompt
- Get a client certificate off of a DoD CAC Card
- Apache Netbeans 12.2 with GIT and CAC
- How to retrieve CAC/Smart Card info with reader?
- Windows GIT using HTTPS client auth from smartcard token
- How to get Node.Js to allow me to provide client cert with smart card/cac
- IE7 Smartcard PIN Prompt
- CAC Smartcard Reauthenticate
- Error 401.2 with smartcard login for new users with more recent Intermediate certificate
- How to copy file from Salt-Minion [Windows] to Salt-Master. "cp.push module not working"
- CAC graph and calculation
- PIV Certificate issue with VSCODE
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Write a Java applet to do the job at client side using PKCS#11 wrapper or, if you can restrict your users to use IE, create and use an ActiveX. I have already done both. For ActiveX you have to have it digitally signed to declare it as a safe ActiveX.
It is not straight forward task but I found Java applet easier to implement. The downside is that JRE (Java Runtime Environment) should already be installed at client side and plays nice with the browser. User also has to grant permission to the applet to connect to his smart card at first run.