Sawan Verma
Sawan Verma
We are facing the same issue with the kernel 5.4.209-116.367.amzn2.x86_64. We tried the suggested command to install kernel module yum install kernel-devel. After that falco runs but its not able...
aormsby/[email protected]. My configuration looks like following ==================================== steps: # REQUIRED step # Step 1: run a standard checkout action, provided by github - name: Checkout target repo uses: actions/checkout@v2 with:...
I am using build.sbt as well as project/*.scala file. In the build.sbt with othe stuffs I just mention the following codeArtifactUrl := "the url" but it fails with the error...
> According to the [last comment](https://github.com/hierynomus/sshj/issues/789#issuecomment-1140972711) on issue #789, it sounds like authentication with the `ssh-rsa` algorithm could still fail if the SSH server had a MaxAuthTries setting of 2:...
I tried the following but getting the same error val client = new net.schmizz.sshj.SSHClient() val config = new DefaultConfig() config.prioritizeSshRsaKeyAlgorithm() client.loadKnownHosts() client.connect(ia) client.authPublickey(userName) client net.schmizz.sshj.userauth.UserAuthException: Exhausted available authentication methods at...
2023-04-12 12:08:09.464 - 7.3.0.49 - 157412 - [bc2r-akka.actor.default-dispatcher-5] INFO n.s.sshj.transport.random.JCERandom - Creating new SecureRandom. 2023-04-12 12:08:09.464 - 7.3.0.49 - 157412 - [bc2r-akka.actor.default-dispatcher-5] DEBUG n.s.sshj.transport.random.JCERandom - Random creation took 0 ms...
I am using the BouncyCastleFipsProvider. "org.bouncycastle" % "bc-fips" % "1.0.2.3" And have added this in the code. This is our prod requirement. Security.addProvider(new BouncyCastleFipsProvider()) Earlier we were using the "com.hierynomus"...
I tested it by removing the Fips Provider. Even then the same error. Following are the logs 2023-04-12 14:52:27.638 - 7.3.0.49 - 261310 - [app] INFO n.schmizz.sshj.common.SecurityUtils - Security Provider...
Yes the log indicates so. But I am very much sure that those jars are present under the project lib directory as mentioned above.
I removed the bc-fips jar from the lib directory and then now it works. Probably it was conflicting with that. So having said that, how can we make it work...