shifters98
How to create a custom ssh shell in elixir?
My Google-Fu has failed me and i am stuck if any one can help
I am trying to create a custom ssh shell in elixir using the erlang :ssh library so that i can ssh into my application with a restricted set of options/commands available. I can log in successfully (using passwords is fine for this use) but at that point i can not send anything to the client or receive anything from the client (at least i can not work out how).
I have read the erlang ssh library document and looked at an example library (esshd) but the information i need is not clear and the library does not work for me (and no dev help). Please see attached example code.
def init(_opts) do
Logger.info("--> Starting Communications.SSHD process")
# start the erlang library
:ssh.start()
# config the server
{ok, sshd2} = :ssh.daemon(10022,
shell: &on_shell/2,
system_dir: './priv/daemon',
user_passwords: [{'test', 'testpass'}],
user_dir: './')
# link the ssh daemon pid to ourselves
Process.link sshd2
{:ok, []}
end
def on_shell(username, {ip, port} = peer_address) do
Logger.info("Onshell Called")
# spawn a thread to handle the shell
spawn(__MODULE__, handle_shell, [])
end
# handle the shell commands
def handle_shell() do
Logger.info("Shell staretd #{inspect Process.group_leader}")
_ = :io.setopts(Process.group_leader, binary: true, encoding: :unicode)
# this never appears on client or server console
IO.puts "Interactive example SSH shell - type exit ENTER to quit"
end
Any ideas?
Thanks
Tom
Trending in Questions
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 6 of 6 Posts
l00ker
Go to hex.pm and search for “ssh” and have a look at all the various packages. Maybe one of them already does what you want or something very similar.
shifters98
Yes i have already tried that by looking at esshd and ssh_echo but can’t work out why its not working. I can connect, auth and see the shell started but have no idea how to read from or write to the ssh socket connection for the connected client. Following what the above libraries have done does not seem to work!
bjm
Hi, Did you ever make any progress with this.
Regards,
Brian
shifters98
HI Brian,
sorry - no progress - i gave up in the end
Shifters
joaohf
Hello,
I’ve implemented (in erlang) a custom ssh shell:
https://github.com/joaohf/elock/blob/mignon-21/src/elock_ssh_oob.erl
https://github.com/joaohf/elock/blob/mignon-21/src/elock_ssh_cli.erl
Based on:
https://github.com/erlang/otp/blob/master/lib/ssh/examples/ssh_sample_cli.erl
I also wrote a post (in pt_BR) related to it https://beam-mignon.netlify.app/posts/mignon_21/
Is that what you were looking for ?
shifters98
Thanks for sharing that - i will look into your code in more detail when i revisit my project
cheers
shifters