Questions tagged [token]

The tag has no usage guidance.

Filter by
Sorted by
Tagged with
6 votes
1 answer
1k views

What's the largest string OpenSSH can expand from a % token?

Instead of a traditional authorized_keys file on my server, I'm using a custom key verifier which sshd calls via the AuthorizedKeysCommand option. In the sshd_config, I can specify that this command ...
data princess's user avatar
0 votes
0 answers
21 views

User dashboard: how to make sure user cannot access other people's data?

A user can log in to their dashboard. When they log in, the front end pulls data from an S3 bucket corresponding to the user, like (e.g.) bucket/data/user5/data.json. This data is then rendered into a ...
BigMistake's user avatar
0 votes
1 answer
598 views

Trying to start script but keep getting error syntax error near unexpected token `stop'

#!/bin/bash # case “$1” in start) echo -n “Starting Queue Manager” /opt/mqm/bin/strmqm QMPROD1 sleep 10 echo -n “Started Queue Manager” # ...
Boro's user avatar
  • 31
0 votes
1 answer
628 views

Docker Hub login with Personal Access Token fails

Windows 11 hub.docker.com I setup Two-Factor Authentication and generated Personal Access Token (PAT) Docker Desktop is running. cmd.exe docker login --username <email for my account> Password: ...
BaltoStar's user avatar
  • 207
1 vote
1 answer
2k views

Login to HashiCorp Vault with Kubernetes Auth from Pod with Vault CLI

TL;DR: What is the proper way to login from Vault CLI in a Kubernetes Pod using the Kubernetes Auth Method. I want to create regular snapshots from my HashiCorp Vault raft storage. So I created a ...
Max N.'s user avatar
  • 131
1 vote
2 answers
3k views

Teamcity Versioned Settings: how to make use of Tokens

When storing configuration in VCS as Kotlin DSL, you're not supposed to hard code passwords and tokens, instead the "Tokens" should be used. The problem is, it's not documented properly. Let'...
alamar's user avatar
  • 69
0 votes
1 answer
488 views

Ansible: clone repo or install helm chart from private github

Any idea how to install Helm chart (tgz) from private Github repo using Ansible? Is it possible at all to do this using Github token only and not ssh key or maybe it is easier to clone private git ...
DisplayName's user avatar
0 votes
0 answers
559 views

HCL Domino: how to drop users logged in with LtpaToken

We are running a Domino server (V 10.0.1 FP3) hosting a number of Xpages applications. Apart from the admins all users are accessing those application through http only (i.e., no nrpc / Notes client ...
Lothar Mueller's user avatar
5 votes
3 answers
4k views

Is there a way to setup oAuth with Openvpn or wireguard?

I'm looking to build a set of services that require a single sign on. Basically, you login to my oAuth provider, and you have access to an openvpn connection(or wireguard) and a website, without ...
SoftwareRocks's user avatar
2 votes
1 answer
3k views

OAUTH / OIDC - Client auth using a signed JWT instead of a secret

I'm sending out the signal flare after exhausting my search efforts. I feel I'm real close to getting this working but hit the wall. Below details an example of what I'm trying to accomplish and the ...
Jarred's user avatar
  • 31
1 vote
2 answers
4k views

ONLYOFFICE - JWS secret doesn't work (can connect without)

I'm running ONLYOFFICE Document Server under an https:// vhost on nginx on Ubuntu Server 18.04 LTS. It's reachable at onlyoffice.example.com and I also have a Nextcloud instance at nextcloud.example....
Manchineel's user avatar
3 votes
1 answer
2k views

ADFS: Convert SAML Assertion to OAuth Token?

We have Microsoft Active Directory Federation Services (ADFS) as our authentication/federation provider. We use it for performing identity federation via SAML to several external vendors, SaaS ...
Shadowman's user avatar
0 votes
2 answers
367 views

AWS access token for user assuming role

How to have access token per user assuming a role in another account? I have users which have an Access Token on the root account. They have access to another account (dev) through assumed role. I'm ...
Kaymaz's user avatar
  • 243
0 votes
1 answer
3k views

"Can't authenticate you" when trying to run a DigitalOcean API command

I tried to run this command for rebuilding my droplet: curl -X POST "https://api.digitalocean.com/v2/droplets/MY_DROPLET_ID/actions" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer ...
Arcticooling's user avatar
0 votes
0 answers
231 views

Token slot_id order changes when restarting

Hello and thanks for taking the time to read this. Issue: I have 4 token devices with the same model and the same name, I rely on the slot id (and the serial) to identify wich one to use. After 5 ...
LordNeo's user avatar
  • 113
2 votes
1 answer
2k views

How do OAuth servers deal with a `refresh_token` requested multiple times?

In the OAuth2 authentication process refresh tokens should be used only once. When the refresh_token is used it will return a new access_token and a new refresh_token. This is also in the RFC6819 spec:...
Wilt's user avatar
  • 793
0 votes
1 answer
621 views

Why are SQL Server 2012 tokens are not expanding when used in agent jobs?

I am trying to use tokens in my SQL Server agent jobs as described here, but some of the tokens are not working as I expect. When running an agent job, the tokens which are supposed to expand to ...
barbecue's user avatar
  • 352
2 votes
0 answers
38 views

Protect cached content in apache

I'm facing an issue where I have some cached contents in a disk and I want to protect it with a token url. I can protect my files via htaccess, once they are not cached (direct access), but now I ...
Lucas César's user avatar
1 vote
1 answer
740 views

Use a physical cryptographic token with OpenVPN community (free) version

I am currently setting up OpenVPN to provide company access to multiple clients. Our requirement is to use certificates, password protect the client keys, as well as using dual factor (MFA) ...
lobi's user avatar
  • 1,093
0 votes
1 answer
527 views

how to configure logging on using USB token windows server 2008 R2

I have a USB token, and I want clients to use their token to log on to domain, I followed the steps from here a brief definition of what I have done yet: after installing domain and CA-server, I ...
komeil sh's user avatar
0 votes
1 answer
142 views

Identifying cause of Software opening hundreds of thousands of handles

I have a user running the latest public revision of IBM Notes (853FP4 per correction below) on a Windows 7 Pro OA installation. Under his profile and only his, when the software is run, the software ...
user428370's user avatar
5 votes
3 answers
3k views

Are OTP/OATH (RFC 4226) Hardware Tokens Re-seedable?

We set up a two-factor authentication system that uses Google Authenticator to use OTP via mobile phone apps. Some of our users however don't have smart phones so we want to be able to use hardware ...
Andrew Case's user avatar
  • 3,499
0 votes
2 answers
566 views

command line tool to extract a token out of stdin stream?

I've been using this perl script to get a token out of stream on command line 1 #!/usr/bin/perl 2 3 $i = $ARGV[0]; 4 5 while (<STDIN>) { 6 @tokens = split /\s+/; 7 print $...
Min's user avatar
  • 31
8 votes
4 answers
14k views

Use standard USB flash disk as security token

We want our users in company to login their computers by using their USB Flash Disks or something else. Is there a way to achieve this without buying a USB token from a company ?
Harun Baris Bulut's user avatar
3 votes
1 answer
405 views

Win7 UAC tokens

It is known that under win7 UAC you receive 2 tokens when you logon to the system: std user token and admin token. If I disable UAC, what should I get? only admin token? or still both with no ...
user avatar
1 vote
1 answer
272 views

Solaris compatible smart card / token

I'm looking for a smart card (+reader) and (or) usb token compatible with Solaris 10 x86 and OpenSolaris. Can someone suggest?
disserman's user avatar
  • 1,850
2 votes
5 answers
2k views

Are token-ring networks still in use? What products are available?

I'm looking for some materials on current usage of token-ring network? Is there any token-ring device in the market? If there is, what are the names?
Jichao's user avatar
  • 3,047
0 votes
2 answers
2k views

Using tokens with SSL VPN

Could somebody explain how tokens fit into the VPN world? We currently use Citrix XenApp as our remote access solution and it works very well. But we're considering adding an additional layer of ...
Rob Nicholson's user avatar
1 vote
5 answers
388 views

Which multi-factor access tokens are most suitable for use in an enterprise network?

I am interested in exploring all of the options to enable multi-factor domain authentication on an Active Directory network. I exclude no technologies from this question however I do prefer simpler ...
user13846's user avatar
  • 266