Adam Mika
Adam Mika

Reputation: 654

Transferring sensitive information from javascript to rails

I am currently writing a Firefox extension that will sync your tab sessions across different instances of the browser. I am using a Ruby on Rails web application to sync the different URLS for each user.

The Firefox extension is using Javascript to parse out the current websites that are open. I need to send a user's login name, password, and the list of open URLs to the Rails application securely from Javascript.

Is there a way to transfer this information to the Rails app from Javascript without compromising the password?

Upvotes: 1

Views: 120

Answers (1)

ysth
ysth

Reputation: 98398

Is there a reason it wouldn't work to use https?

Upvotes: 2

Related Questions