tmp="$(mktemp -d)" && rsync -a --exclude='.ssh' user@host:~/.[!.]* "$tmp"/ && HOME="$tmp" exec "$SHELL"
Show HN: Shittp – Volatile Dotfiles over SSH
11–20 of 97 posts
Re: Show HN: Shittp – Volatile Dotfiles over SSH
#12Re: Show HN: Shittp – Volatile Dotfiles over SSH
#13Re: Show HN: Shittp – Volatile Dotfiles over SSH
#14Re: Show HN: Shittp – Volatile Dotfiles over SSH
#15https://erock-git-dotfiles.pgs.sh/tree/main/item/dotfiles.sh...
Re: Show HN: Shittp – Volatile Dotfiles over SSH
#16How about mounting your dotfiles directory (~/.config) or even your entire home directory on the remote system using SSHFS or NFS? I'm sure somebody would have tried it or some project may already exist. Any idea why that isn't as prevalent as copying your dotfiles over?
Re: Show HN: Shittp – Volatile Dotfiles over SSH
#17How about mounting your dotfiles directory (~/.config) or even your entire home directory on the remote system using SSHFS or NFS? I'm sure somebody would have tried it or some project may already exist. Any idea why that isn't as prevalent as copying your dotfiles over?
This would enable a lot of attacks.
Re: Show HN: Shittp – Volatile Dotfiles over SSH
#18One of the engineers wrote a shell alias called “shitssh”, which would call ssh with the right options to allow the old crufty crypto algorithms to be used. This alias got passed down to new members of the team like a family heirloom.
Re: Show HN: Shittp – Volatile Dotfiles over SSH
#19Is this similar to sshrc? https://github.com/cdown/sshrc
Re: Show HN: Shittp – Volatile Dotfiles over SSH
#20e.g. I type an alias, the ssh client expands it on my local machine and send complex commands to remote. Could this be possible?
I suppose a special shell could make it work.