How do I integrate Perfidies (Browser plug-in vulnerability scanner) into my website?

You should provide some more context to your question. I will try to help you though suggesting a way to do this. You mentioned you want to disallow users to login, so I think the best way to do this is putting the validation code in the login page as a javascript include. Keep in … Read more

href=”mailto:” is not working on any of the browsers

Provided you have registered a default email client, this usually works, if you’re using an <a> tag as follows: <a href=”https://stackoverflow.com/questions/34129707/mailto:[email protected]”>Mail me</a> To change or check the email client settings, do the following (cited from MSDN) – I have modified it slightly because it differs depending on the Windows version you’re using: Depending on the … Read more

window.onunload is not working properly in Chrome

There are some actions which are not working in chrome, inside of the unload event. Alert or confirm boxes are such things. But what is possible (AFAIK): Open popups (with window.open) – but this will just work, if the popup blocker is disabled for your site Return a simple string (in beforeunload event), which triggers … Read more

Is it possible to connect to SSH using JavaScript?

Sorry, given your constraints (client-side Javascript only), there is no way to connect to a plain old SSH server. WebSockets is not plain TCP. It’s a framed protocol with a HTTP-like handshake between the client and server that includes origin policy. Flash can make plain TCP connections, but it also has origin policy enforcement. The … Read more