Do you even SSH?

Поділитися
Вставка
  • Опубліковано 3 лют 2025

КОМЕНТАРІ • 14

  • @somegeneralist
    @somegeneralist 2 роки тому +6

    Ok FINE - that softserve demo convinced me to try it out and I loved it.

  • @quinn-yates
    @quinn-yates 2 роки тому +4

    thank you, this was vary helpful, can't wait to see other videos on this

  • @kodder
    @kodder 2 роки тому +3

    Extremely useful video for someone who doesn't know anything about SSH. will pass it to my brother :)

    • @charmcli
      @charmcli  2 роки тому +1

      Thank youuu

    • @kodder
      @kodder 2 роки тому +1

      @@charmcli You're very much welcome!

  • @gebob19
    @gebob19 2 роки тому +2

    woooo great video bash!

  • @JonBrookes
    @JonBrookes Рік тому +1

    fascinating stuff ! I've worked with ssh for pretty much my whole time and since we departed ( thankfully ) from the general use of telnet in the bad old days and started using ssh ( and openssh libs / functions ) as soon as these became widely open source and available on Unix, Linux and notably on cygwin for then windows ( typically NT 4 then as it lacked a serous shell before powershell was really a thing ). It is great to see windows now truly using / embracing ssh in their shells and command line. So what your doing with SSH is amazing and I 'm very interested to see how I can use your tools. I believe written for the most part in Go ? What is not to like.

  • @fruitfcker5351
    @fruitfcker5351 2 роки тому +2

    My favorite is you can have a quick and dirty VPN like connection to a server with SSH

  • @cindrmon
    @cindrmon 2 роки тому +2

    mi waiting for wishlist tutorial! ssh is gonna be the future of https

  • @inqstv
    @inqstv 2 роки тому

    Every thing is fine but bash bunny is too cute 😍

  • @tsalVlog
    @tsalVlog 2 роки тому +2

    I finally earned extra nerd points - there was a time I had to use ssh tunneling to proxy HTTP-based traffic as a solution for PII data migration. don't judge. it was a dark time, in a dark place (job).

  • @srttkx
    @srttkx 2 роки тому +2

  • @marble_wraith
    @marble_wraith 2 роки тому +5

    Follow up video. Compare SSH to HTTPS

    • @tomasprochazka6198
      @tomasprochazka6198 9 місяців тому

      SSH is mote like an HTTP/2, because with HTTP/1.1 you may have only request per TPC connection in a flight. Another difference, HTTP is stateless, state is added by cookies or some session tokens. Meanwhile, SSH is more like a combination of HTTP (SSH requests) and WebSockets (SSH channels), where you can send request in a context of the WS, or the overall connection. And in SSH, both sides can open a new channel, when the connection is established.