2

In my office, we use RSA "soft token" software to authenticate connections to our UNIX servers. This requires one to enter a PIN, click a button to generate a passcode, then click another button to copy the new passcode to the Windows paster buffer, which can then be pasted into a "password" prompt.

Is there any way to perform these actions programmatically, perhaps from the command prompt? I want to be able to run "batch" programs that connect to the server.

This is a similar question, but not quite.

My guess is the anwser is "no, you can't do that", but I thought I'd ask.

Community
  • 1
  • 1
BellevueBob
  • 9,498
  • 5
  • 29
  • 56

1 Answers1

1

Look at the answer I provided to this SO Question. It essentially involves using SendKeys to simulate keystrokes to the RSA app.

Community
  • 1
  • 1
Keith Hill
  • 194,368
  • 42
  • 353
  • 369