org.apache.sshd.server.auth.pubkey.PublickeyAuthenticator Java Examples
The following examples show how to use
org.apache.sshd.server.auth.pubkey.PublickeyAuthenticator.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: EmbeddedSftpServer.java From java-examples with MIT License | 7 votes |
@Override public void afterPropertiesSet() throws Exception { final PublicKey allowedKey = decodePublicKey(); this.server.setPublickeyAuthenticator(new PublickeyAuthenticator() { @Override public boolean authenticate(String username, PublicKey key, ServerSession session) { return key.equals(allowedKey); } }); this.server.setPort(this.port); this.server.setKeyPairProvider(new SimpleGeneratorHostKeyProvider(Files.createTempFile("host_file", ".ser"))); this.server.setSubsystemFactories(Collections.<NamedFactory<Command>>singletonList(new SftpSubsystemFactory())); server.setFileSystemFactory(new VirtualFileSystemFactory(Files.createTempDirectory("SFTP_TEMP"))); server.setCommandFactory(new ScpCommandFactory()); }
Example #2
Source File: EmbeddedSftpServer.java From java-examples with MIT License | 6 votes |
@Override public void afterPropertiesSet() throws Exception { final PublicKey allowedKey = decodePublicKey(); this.server.setPublickeyAuthenticator(new PublickeyAuthenticator() { @Override public boolean authenticate(String username, PublicKey key, ServerSession session) { return key.equals(allowedKey); } }); this.server.setPort(this.port); this.server.setKeyPairProvider(new SimpleGeneratorHostKeyProvider(Files.createTempFile("host_file", ".ser"))); this.server.setSubsystemFactories(Collections.<NamedFactory<Command>>singletonList(new SftpSubsystemFactory())); server.setFileSystemFactory(new VirtualFileSystemFactory(Files.createTempDirectory("SFTP_TEMP"))); server.setCommandFactory(new ScpCommandFactory()); }
Example #3
Source File: ESBJAVA3470.java From micro-integrator with Apache License 2.0 | 5 votes |
/** * Starts a SFTP server on port 22 * @param carbonHome */ private void setupSftpServer(String carbonHome) { SshServer sshd = SshServer.setUpDefaultServer(); sshd.setPort(FTP_PORT); //sshd.setKeyPairProvider(new FileKeyPairProvider(new // String[]{"/home/ravi/WORK/SUPPORT/JIRA/SKYTVNZDEV-26/SftpTest/dist/hostkey.ser"})); ClassLoader classLoader = getClass().getClassLoader(); log.info("Using identity file: " + classLoader.getResource("sftp/id_rsa.pub").getFile()); File file = new File(classLoader.getResource("sftp/id_rsa.pub").getFile()); sshd.setKeyPairProvider(createTestHostKeyProvider(Paths.get(file.getAbsolutePath()))); sshd.setUserAuthFactories(Arrays.asList(new UserAuthPublicKeyFactory())); sshd.setFileSystemFactory(new VirtualFileSystemFactory(Paths.get(carbonHome))); sshd.setPublickeyAuthenticator(new PublickeyAuthenticator() { public boolean authenticate(String username, PublicKey key, ServerSession session) { return "sftpuser".equals(username); } }); sshd.setCommandFactory(new ScpCommandFactory()); sshd.setSubsystemFactories(Arrays.asList(new SftpSubsystemFactory())); SftpServerRunner sftpServerRunner = new SftpServerRunner(sshd); try { sftpServerRunner.start(); } catch (Exception e) { e.printStackTrace(); } }
Example #4
Source File: SinglePublicKeyAuthTest.java From termd with Apache License 2.0 | 5 votes |
@Before public void setUp() throws Exception { sshd = setupTestServer(); PropertyResolverUtils.updateProperty(sshd, ServerFactoryManager.AUTH_METHODS, UserAuthPublicKeyFactory.NAME); sshd.setPublickeyAuthenticator(new PublickeyAuthenticator() { @SuppressWarnings("synthetic-access") @Override public boolean authenticate(String username, PublicKey key, ServerSession session) { return delegate.authenticate(username, key, session); } }); sshd.start(); port = sshd.getPort(); }
Example #5
Source File: SinglePublicKeyAuthTest.java From termd with Apache License 2.0 | 5 votes |
@Test public void testPublicKeyAuthWithCache() throws Exception { final ConcurrentHashMap<String, AtomicInteger> count = new ConcurrentHashMap<String, AtomicInteger>(); TestCachingPublicKeyAuthenticator auth = new TestCachingPublicKeyAuthenticator(new PublickeyAuthenticator() { @SuppressWarnings("synthetic-access") @Override public boolean authenticate(String username, PublicKey key, ServerSession session) { String fp = KeyUtils.getFingerPrint(key); count.putIfAbsent(fp, new AtomicInteger()); count.get(fp).incrementAndGet(); return key.equals(pairRsa.getPublic()); } }); delegate = auth; try (SshClient client = setupTestClient()) { client.start(); try (ClientSession session = client.connect(getCurrentTestName(), TEST_LOCALHOST, port).verify(7L, TimeUnit.SECONDS).getSession()) { session.addPublicKeyIdentity(pairRsaBad); session.addPublicKeyIdentity(pairRsa); session.auth().verify(5L, TimeUnit.SECONDS); assertEquals("Mismatched authentication invocations count", 2, count.size()); String fpBad = KeyUtils.getFingerPrint(pairRsaBad.getPublic()); String fpGood = KeyUtils.getFingerPrint(pairRsa.getPublic()); assertTrue("Missing bad public key", count.containsKey(fpBad)); assertTrue("Missing good public key", count.containsKey(fpGood)); assertEquals("Mismatched bad key authentication attempts", 1, count.get(fpBad).get()); assertEquals("Mismatched good key authentication attempts", 1, count.get(fpGood).get()); } finally { client.stop(); } } Thread.sleep(100L); assertTrue("Cache not empty", auth.getCache().isEmpty()); }
Example #6
Source File: ESBJAVA3470.java From product-ei with Apache License 2.0 | 5 votes |
/** * Starts a SFTP server on port 22 * @param carbonHome */ private void setupSftpServer(String carbonHome) { SshServer sshd = SshServer.setUpDefaultServer(); sshd.setPort(FTP_PORT); //sshd.setKeyPairProvider(new FileKeyPairProvider(new String[]{"/home/ravi/WORK/SUPPORT/JIRA/SKYTVNZDEV-26/SftpTest/dist/hostkey.ser"})); ClassLoader classLoader = getClass().getClassLoader(); log.info("Using identity file: " + classLoader.getResource("sftp/id_rsa.pub").getFile()); File file = new File(classLoader.getResource("sftp/id_rsa.pub").getFile()); SFTPServer sftpServer = new SFTPServer(); sshd.setKeyPairProvider(sftpServer.createTestHostKeyProvider(Paths.get(file.getAbsolutePath()))); sshd.setKeyPairProvider(createTestHostKeyProvider(Paths.get(file.getAbsolutePath()))); sshd.setUserAuthFactories( Arrays.<NamedFactory<UserAuth>>asList(new UserAuthPublicKeyFactory())); sshd.setFileSystemFactory(new VirtualFileSystemFactory(Paths.get(carbonHome))); sshd.setPublickeyAuthenticator(new PublickeyAuthenticator() { public boolean authenticate(String username, PublicKey key, ServerSession session) { return "sftpuser".equals(username); } }); sshd.setCommandFactory(new ScpCommandFactory()); sshd.setSubsystemFactories( Arrays.<NamedFactory<Command>>asList(new SftpSubsystemFactory())); try { sshd.start(); } catch (Exception e) { e.printStackTrace(); } }
Example #7
Source File: TestSshTunnel.java From datacollector with Apache License 2.0 | 5 votes |
private SshServer createSshd(PublickeyAuthenticator publickeyAuthenticator, java.security.KeyPair sshdKeyPair) { SshServer sshd = SshServer.setUpDefaultServer(); sshd.setHost("localhost"); sshd.setPort(randomPort()); KeyPairProvider keyPairProvider = KeyPairProvider.wrap(sshdKeyPair); sshd.setKeyPairProvider(keyPairProvider); sshd.setForwardingFilter(AcceptAllForwardingFilter.INSTANCE); sshd.setPublickeyAuthenticator(publickeyAuthenticator); return sshd; }
Example #8
Source File: TestSshTunnel.java From datacollector with Apache License 2.0 | 5 votes |
public void runSshd(PublickeyAuthenticator authenticator, SshCommand command) throws Exception { SshServer sshd = createSshd(authenticator, sshdKeyPair); try { sshd.start(); command.run(sshd.getHost(), sshd.getPort(), sshdFingerprint, () -> { try { sshd.stop(); } catch (Exception ex) { throw new RuntimeException("Stopping SSHD: " + ex, ex); } }); } finally { sshd.stop(); } }
Example #9
Source File: SinglePublicKeyAuthTest.java From termd with Apache License 2.0 | 5 votes |
@Before public void setUp() throws Exception { sshd = setupTestServer(); PropertyResolverUtils.updateProperty(sshd, ServerFactoryManager.AUTH_METHODS, UserAuthPublicKeyFactory.NAME); sshd.setPublickeyAuthenticator(new PublickeyAuthenticator() { @SuppressWarnings("synthetic-access") @Override public boolean authenticate(String username, PublicKey key, ServerSession session) { return delegate.authenticate(username, key, session); } }); sshd.start(); port = sshd.getPort(); }
Example #10
Source File: SinglePublicKeyAuthTest.java From termd with Apache License 2.0 | 5 votes |
@Test public void testPublicKeyAuthWithCache() throws Exception { final ConcurrentHashMap<String, AtomicInteger> count = new ConcurrentHashMap<String, AtomicInteger>(); TestCachingPublicKeyAuthenticator auth = new TestCachingPublicKeyAuthenticator(new PublickeyAuthenticator() { @SuppressWarnings("synthetic-access") @Override public boolean authenticate(String username, PublicKey key, ServerSession session) { String fp = KeyUtils.getFingerPrint(key); count.putIfAbsent(fp, new AtomicInteger()); count.get(fp).incrementAndGet(); return key.equals(pairRsa.getPublic()); } }); delegate = auth; try (SshClient client = setupTestClient()) { client.start(); try (ClientSession session = client.connect(getCurrentTestName(), TEST_LOCALHOST, port).verify(7L, TimeUnit.SECONDS).getSession()) { session.addPublicKeyIdentity(pairRsaBad); session.addPublicKeyIdentity(pairRsa); session.auth().verify(5L, TimeUnit.SECONDS); assertEquals("Mismatched authentication invocations count", 2, count.size()); String fpBad = KeyUtils.getFingerPrint(pairRsaBad.getPublic()); String fpGood = KeyUtils.getFingerPrint(pairRsa.getPublic()); assertTrue("Missing bad public key", count.containsKey(fpBad)); assertTrue("Missing good public key", count.containsKey(fpGood)); assertEquals("Mismatched bad key authentication attempts", 1, count.get(fpBad).get()); assertEquals("Mismatched good key authentication attempts", 1, count.get(fpGood).get()); } finally { client.stop(); } } Thread.sleep(100L); assertTrue("Cache not empty", auth.getCache().isEmpty()); }
Example #11
Source File: SinglePublicKeyAuthTest.java From termd with Apache License 2.0 | 4 votes |
@Test public void testPublicKeyAuthWithoutCache() throws Exception { final ConcurrentHashMap<String, AtomicInteger> count = new ConcurrentHashMap<String, AtomicInteger>(); delegate = new PublickeyAuthenticator() { @SuppressWarnings("synthetic-access") @Override public boolean authenticate(String username, PublicKey key, ServerSession session) { String fp = KeyUtils.getFingerPrint(key); count.putIfAbsent(fp, new AtomicInteger()); count.get(fp).incrementAndGet(); return key.equals(pairRsa.getPublic()); } }; try (SshClient client = setupTestClient()) { client.start(); try (ClientSession session = client.connect(getCurrentTestName(), TEST_LOCALHOST, port).verify(7L, TimeUnit.SECONDS).getSession()) { session.addPublicKeyIdentity(pairRsaBad); session.addPublicKeyIdentity(pairRsa); AuthFuture auth = session.auth(); assertTrue("Failed to authenticate on time", auth.await(5L, TimeUnit.SECONDS)); assertTrue("Authentication failed", auth.isSuccess()); } finally { client.stop(); } } assertEquals("Mismatched attempted keys count", 2, count.size()); String badFingerPrint = KeyUtils.getFingerPrint(pairRsaBad.getPublic()); Number badIndex = count.get(badFingerPrint); assertNotNull("Missing bad RSA key", badIndex); assertEquals("Mismatched attempt index for bad key", 1, badIndex.intValue()); String goodFingerPrint = KeyUtils.getFingerPrint(pairRsa.getPublic()); Number goodIndex = count.get(goodFingerPrint); assertNotNull("Missing good RSA key", goodIndex); assertEquals("Mismatched attempt index for good key", 2, goodIndex.intValue()); }
Example #12
Source File: SinglePublicKeyAuthTest.java From termd with Apache License 2.0 | 4 votes |
public TestCachingPublicKeyAuthenticator(PublickeyAuthenticator authenticator) { super(authenticator); }
Example #13
Source File: NettySshTtyBootstrap.java From aesh-readline with Apache License 2.0 | 4 votes |
public NettySshTtyBootstrap setPublicKeyAuthenticator(PublickeyAuthenticator publicKeyAuthenticator) { this.publicKeyAuthenticator = publicKeyAuthenticator; return this; }
Example #14
Source File: SinglePublicKeyAuthTest.java From termd with Apache License 2.0 | 4 votes |
@Test public void testPublicKeyAuthWithoutCache() throws Exception { final ConcurrentHashMap<String, AtomicInteger> count = new ConcurrentHashMap<String, AtomicInteger>(); delegate = new PublickeyAuthenticator() { @SuppressWarnings("synthetic-access") @Override public boolean authenticate(String username, PublicKey key, ServerSession session) { String fp = KeyUtils.getFingerPrint(key); count.putIfAbsent(fp, new AtomicInteger()); count.get(fp).incrementAndGet(); return key.equals(pairRsa.getPublic()); } }; try (SshClient client = setupTestClient()) { client.start(); try (ClientSession session = client.connect(getCurrentTestName(), TEST_LOCALHOST, port).verify(7L, TimeUnit.SECONDS).getSession()) { session.addPublicKeyIdentity(pairRsaBad); session.addPublicKeyIdentity(pairRsa); AuthFuture auth = session.auth(); assertTrue("Failed to authenticate on time", auth.await(5L, TimeUnit.SECONDS)); assertTrue("Authentication failed", auth.isSuccess()); } finally { client.stop(); } } assertEquals("Mismatched attempted keys count", 2, count.size()); String badFingerPrint = KeyUtils.getFingerPrint(pairRsaBad.getPublic()); Number badIndex = count.get(badFingerPrint); assertNotNull("Missing bad RSA key", badIndex); assertEquals("Mismatched attempt index for bad key", 1, badIndex.intValue()); String goodFingerPrint = KeyUtils.getFingerPrint(pairRsa.getPublic()); Number goodIndex = count.get(goodFingerPrint); assertNotNull("Missing good RSA key", goodIndex); assertEquals("Mismatched attempt index for good key", 2, goodIndex.intValue()); }
Example #15
Source File: SinglePublicKeyAuthTest.java From termd with Apache License 2.0 | 4 votes |
public TestCachingPublicKeyAuthenticator(PublickeyAuthenticator authenticator) { super(authenticator); }