Sync Your SharePoint Sites with new OneDrive for Business Sync Client Preview

Last week at Ignite in Atlanta Microsoft unveiled their road map for OneDrive for Business and their plans to incorporate the ability to sync SharePoint sites using an updated sync client. That updated preview is now available for download and testin… Continue reading Sync Your SharePoint Sites with new OneDrive for Business Sync Client Preview

Alternatives to HTML’s deprecated <keygen> for client certs?

The keygen tag is used to make browsers generate private keys and POST the resulting CSR to the server, which can then issue a certificate. It’s now been deprecated, for rather stupid reasons but that’s besides the point.

So, what are the… Continue reading Alternatives to HTML’s deprecated <keygen> for client certs?

Can clients visit my site, and spam socket.emit(something); to my server, or is there some security behind socket.io?

I’m using Socket.IO and the client side looks like this.

<script src=”/socket.io/socket.io.js”></script>
<script>
var socket = io();
socket.emit(“sendData”, “hello!”);
</script>

I’m wondering what’s stopp… Continue reading Can clients visit my site, and spam socket.emit(something); to my server, or is there some security behind socket.io?