GithubHelp home page GithubHelp logo

Comments (4)

waja avatar waja commented on July 3, 2024

+1

from shellcheck.

HairyFotr avatar HairyFotr commented on July 3, 2024

It might be good to suggest quoting when rm has multiple parameters. It would have false positives, but it would prevent errors caused by misplaced/unquoted spaces.

from shellcheck.

koalaman avatar koalaman commented on July 3, 2024

Some support for this is added in 197b3e3. The design goal was to minimize false positives.

ShellCheck assumes that all commands will produce user's expected output if they run, but that they may fail to expand due to memory or fork limits. It also assumes that any reference to the variable in a condition means it's been checked.

Additionally, if you put literally rm -r /etc, it gives a courtesy message that can be disabled using --.

Here are the unit tests expected to produce warning:

verify "rm -r $1/$2"
verify "foo=$(echo bar); rm -r /home/$foo"
verify "foo=/home; user=$(whoami); rm -r \"$foo/$user\""
verify "rm --recursive /etc/*$config*"
verify "rm -rf /home"

These cases are expected not to produce warnings:

verifyNot "var=$(cmd); if [ -n \"$var\" ]; then rm -r /etc/$var/*; fi"
verifyNot "foo=/home; user=cow; rm -r \"$foo/$user\""
verifyNot "user=$(whoami); rm -r /home/${user:?Nope}"
verifyNot "rm -rf -- /home"  

Circumventing the check is trivial, e.g.

var=$(foo) || echo "I'm about to delete all your files!"
rm -rf /usr/$var

since the assignment was made as part of a conditional block, shellcheck assumes you know what you're doing.

from shellcheck.

HairyFotr avatar HairyFotr commented on July 3, 2024

The rm -rf / bug in Steam for Linux is making the news these days.

Shellcheck doesn't detect it. Here's a link to the line: https://github.com/indrora/steam_latest/blob/05e3d6efa60af71e11098bf7dd973828604354ce/scripts/steam.sh#L352

from shellcheck.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.