Posts

Jenkins Decrypt Passwords in Plain text

 Go to Manage Jenkins > Script Console add this code  ----------------------------------------------------------------------------------------------------------------------------- com.cloudbees.plugins.credentials.SystemCredentialsProvider.getInstance().getCredentials().forEach{   it.properties.each { prop, val ->     if (prop == "secretBytes") {       println(prop + "=>\n" + new String(com.cloudbees.plugins.credentials.SecretBytes.fromString("${val}").getPlainData()) + "\n")     } else {       println(prop + ' = "' + val + '"')     }   }   println("-----------------------") } ----------------------------------------------------------------------------------------------------------------------------- Click on run

Problem Resizing Filesystem: "resize2fs: Permission denied to resize filesystem" During Online Resize

Image
  Environment                                                                                                                 Debian 10, 11, 12 Situation                                                                                                  The  resize2fs  command encountered a pe...

Nginx Ciphers

ssl_ciphers ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK:!SHA1:!DSS;