This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var aad = require('azure-ad-jwt'); | |
var jwtToken = '<<yourtoken>>'; | |
aad.verify(jwtToken, null, function(err, result) { | |
if (result) { | |
console.log("JWT is valid"); | |
} else { | |
console.log("JWT is invalid: " + err); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo Locking Machine | |
rundll32.exe user32.dll,LockWorkStation | |
echo Starting tools.... | |
ping 1.1.1.1 -n 1 -w 5000 > nul | |
echo All tools are started | |
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<root> | |
<appdef> | |
<appname>RDP</appname> | |
<equal>com.microsoft.rdc.mac</equal> | |
</appdef> | |
<item> | |
<name>RDP Session MAC Mapping</name> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script> | |
<script> | |
$(function() { | |
function normalizeHeight($left, $right) | |
{ | |
// get the max height of the two divs | |
var $maxHeight = Math.max($left.height(),$right.height()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## =================================================== | |
## Hetzner Online AG - installimage - standardconfig. | |
## =================================================== | |
## ==================== | |
## HARD DISK DRIVE(S): | |
## ==================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Certify::AuthoritiesController.before_filter :backend_rights_required | |
Certify::CertificatesController.before_filter :backend_rights_required |