Coldus12@lemmy.fmhy.ml to Selfhosted@lemmy.worldEnglish · 1 year agoSetting up your own VPNmessage-squaremessage-square65fedilinkarrow-up176arrow-down11file-text
arrow-up175arrow-down1message-squareSetting up your own VPNColdus12@lemmy.fmhy.ml to Selfhosted@lemmy.worldEnglish · 1 year agomessage-square65fedilinkfile-text
minus-squareWbbl@feddit.delinkfedilinkEnglisharrow-up1arrow-down11·1 year agoI use this one-liner to set up an IPsec VPN server: wget https://get.vpnsetup.net -O vpn.sh && sudo sh vpn.sh
minus-squareRikudou_Sage@lemmings.worldlinkfedilinkEnglisharrow-up24arrow-down1·1 year agoSecurity 101: Never blindly run shell scripts from a random comment on the internet.
minus-squaregravitas_deficiency@sh.itjust.workslinkfedilinkEnglisharrow-up9·1 year agoIt’s also piped to sudo so that’s super cool too
minus-squareGlitzyArmrest@lemmy.worldlinkfedilinkEnglisharrow-up4·1 year agoI sure hope there isn’t a rm -rf floating around in there somewhere… kind of like a certain past incident with major gaming client.
minus-squaregabriele97@lemmy.g97.toplinkfedilinkEnglisharrow-up1·1 year agoI want to know more 😳 do you have something? A link?
minus-squareRikudou_Sage@lemmings.worldlinkfedilinkEnglisharrow-up7·1 year agoIn the Steam Linux client, there was this line: rm -rf "$STEAMROOT/"*. If the variable $STEAMROOT isn’t defined (or is an empty string), it basically runs rm -rf "/"*, which means delete all subfolders of /.
minus-squaregabriele97@lemmy.g97.toplinkfedilinkEnglisharrow-up2·1 year ago😱😱😱😱😱😱😱😱😱 I don’t know how to express how much this shocked me
minus-squareWbbl@feddit.delinkfedilinkEnglisharrow-up3·1 year agoA good tip in itself, but you can also look at the source and feel good or bad about it. I didn’t expect so many downvotes https://github.com/hwdsl2/setup-ipsec-vpn
minus-squareBlueBockser@programming.devlinkfedilinkEnglisharrow-up1arrow-down1·1 year agoTbf, a lot of applications and tools provide installation scripts in lieu of more elaborate manual setup. Doesn’t make it safer, but if you want to install something, you have to trust the source with shell access at some point anyway.
I use this one-liner to set up an IPsec VPN server:
Security 101: Never blindly run shell scripts from a random comment on the internet.
It’s also piped to
sudo
so that’s super cool tooI sure hope there isn’t a
rm -rf
floating around in there somewhere… kind of like a certain past incident with major gaming client.I want to know more 😳 do you have something? A link?
In the Steam Linux client, there was this line:
rm -rf "$STEAMROOT/"*
.If the variable
$STEAMROOT
isn’t defined (or is an empty string), it basically runsrm -rf "/"*
, which means delete all subfolders of /.😱😱😱😱😱😱😱😱😱 I don’t know how to express how much this shocked me
A good tip in itself, but you can also look at the source and feel good or bad about it. I didn’t expect so many downvotes
https://github.com/hwdsl2/setup-ipsec-vpn
Tbf, a lot of applications and tools provide installation scripts in lieu of more elaborate manual setup. Doesn’t make it safer, but if you want to install something, you have to trust the source with shell access at some point anyway.