Aaron Parker
                                            Aaron Parker
                                        
                                    I think it's base64 too, everything I plug it into says it's base64. I don't understand why we aren't getting anything meaningful out of it. The value comes straight out...
I'd say the Javascript requirement there is because the challenge page uses Javascript to do some detection on the endpoint, but that typically runs in the browser. Bot protection is...
Found this: https://www.java.com/releases/releases.json
I've removed the unavailable VcRedists from 4.1 #123
There isn't a method to determine the version number of the boot strapper EXE. You can manually construct an object to pass to `Save-EvergreenApp` like this: ```PowerShell # Download the...
@AScott-WWF no releases are returned because the `.tar.gz` file is not included in the releases. These files are just a rollup of the entire repo.
`-ReturnVersionOnly` could be used to return the version number from the OpenSSL repo, and then hardcode URLs with text replacement in the JSON. Otherwise, go with the Shining Light version...
The new version makes a call like this: `https://www.rstudio.org/links/check_for_update?version=2023.12.0&os=win&format=kvp` Which returns content like this from which the version number can be extracted: `update-version=2023.12.0%2B369&update-url=https%3A%2F%2Fwww.rstudio.com%2Fproducts%2Frstudio%2Fdownload%2F&update-message=RStudio%202023.12.0%2B369%20is%20now%20available%20%28you%27re%20using%202023.11.0%29&update-urgent=0` Found in the source code here: https://github.com/rstudio/rstudio/blob/6f7af1eab02568be3de327190a96fc5dba2dc247/src/cpp/session/modules/SessionUpdates.R
I'm getting hit with a Captcha response when querying the XML. Highly likely to be because I'm outside Sweden, so creating a function for this could be challenging
Got this working with: ```powershell $params = @{ Uri = "https://vks.bankid.com" UserAgent = "BankIDSecurityProgram" ContentType = "application/xml; charset=utf-8" Body = '1.11g+o9gYX4DcDZkQexT49puYWbWpO47.14.102.4' #Headers = @{ "Accept-Language" = "sv-se" } #TransferEncoding =...