geosoft1 / authenticator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

caution

Authenticator return some informations which can unique identify your machine. For now only mac address and machine id is used. This project is an experiment and should not be used for production yet.

Useful to link a web application to an specified machine (like a hardware token). Work on Linux, Mac and Windows.

Basically is a web service which return a JSONP structure. This technique is used to avoid CORS restriction to accessing localhost from web application with other origins. This structure can be requested by others applications at login to identify the machine and further to decide if the host machine is authorised or not to use the application.

To run the program use:

./authenticator [-port=value]

Use any available port you wish using optional -port=value flag. Default (if not specified) is 8080. The authenticated application must use the same port.

To check your machine identifiers you can use:

curl localhost:8080/authenticator

Short example of use in Angular 1.4.8:

var url = "http://localhost:8080/authenticator?callback=JSON_CALLBACK";
$http.jsonp(url).success(function(data){
    console.log(data.mac,data.id);
}).error(function(data){
	console.log('forbidden');
})

New versions are different, take a look here for various Angular versions. However you must change the code for various frameworks and libraries. Feel free to do that.

About

License:GNU General Public License v3.0


Languages

Language:Go 100.0%