I just found this website regarding security.
http://www.passwindow.com
Do you know this service? Is it good or not ?
Many thanks!
http://www.passwindow.com
Do you know this service? Is it good or not ?
Many thanks!
Kind of interesting, but limited. The key permutations are finite so I doubt it can scale to extremely large numbers without making the viewing window insufferably larger.
It will ever be adopted in the corporate world. Too many challenges.
Limited appeal to those paranoid about their personal electronic security - which should be everyone.
yeah, looks like a lot of effort.
Just came across this website and was wondering if any of you guys is using this or have heard of it.......
Hi Slavik, re effort its easier and quicker than any other 2 FA ive used, by the time any of the USB devices have registered with the OS passwindow is done. The tokens are all hardcoded at 6 or 8 digits no matter what, while passwindow can be customized for x number of digits for x authentication. And I can carry my card securely in my wallet instead of dangling around open on keychains or more usually left at home in a drawer as most pople do. But the real comparison should be for transaction authentication, USB, tokens, mobile etc they can all be MITM like spyeye etc already do. Transaction authentication is the only thing you can do to stop it and have you ever done transaction signing on the high end token devices which are the size of scientific calculators? Its a nightmare and takes up to 10 minutes if you dont enter any of the 40+ digits back and forth incorrectly. And even then this manual transaction authentication method has been successfully bypassed by trojans feeding the user garbage and then convioncing them the electronics is broken and therefore needs to be reset. Id be interested in hearing your proposal for this level of online security.
No problem Slavik, actually wondering if someone would like to write a xenForo plugin for www.shieldpass.com ?
I have a wordpress plugin and some guys are writing Joomla and Magento.
You can dissect the wordpress plugin here https://www.shieldpass.com/wordpress.html to gauge the difficulty.
No problem Slavik, actually wondering if someone would like to write a xenForo plugin for www.shieldpass.com ?
I have a wordpress plugin and some guys are writing Joomla and Magento.
You can dissect the wordpress plugin here https://www.shieldpass.com/wordpress.html to gauge the difficulty.
Are you interested in writing an add-on for shieldpass? It should be quite straightforward.I was looking at this earlier, and while I wouldn't use it for basic log in, I would possibly use it for the ACP login...
<form id="shieldpass_form" method="post">
<?php
require_once('shieldpasslib.v2.php'); //*location must be entered by you
$shieldpass_public_key = "your_public_key"; //*must be entered by you
$shieldpass_secret_key = "your_secret_key"; //*must be entered by you
$shieldpass_user_id = "your_local_user_id"; //*must synchronize with user id
$shieldpass_trans_id = ""; //*optional 3 number transaction id
if (($_POST["shieldpass_user_id"]!="")&&($_POST["shieldpass_user_response"]!="")) {
$resp = shieldpass_check_answer($shieldpass_public_key,
$shieldpass_secret_key,
$_POST["shieldpass_user_id"],
$_POST["shieldpass_user_response"]);
if (!$resp->is_valid) {
// Response is incorrect
die("Response is incorrect.<br />Detail : ".$resp->detail." ");
} else {
// Your code for successful authentication, such as validating your user session
echo "Response is correct.<br />".$resp->detail;
}
}
echo shieldpass_get_html($shieldpass_public_key,
$shieldpass_secret_key,
$shieldpass_user_id,
$shieldpass_trans_id);
?></form>
echo "Response is correct.<br />".$resp->detail;
// echo "Response is correct.<br />".$resp->detail;
header("Location: admin2.php");// or the name you like
We use essential cookies to make this site work, and optional cookies to enhance your experience.