curl bash pipe - Security Discussion
Are curl bash pipes insecure? Security Comparison of execution of curl bash pipes versus execution of downloaded scripts.
Contents
Introduction[edit]
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Introduction
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#Introduction|Introduction]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Introduction](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Introduction)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Introduction](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Introduction)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Introduction]Introduction[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
There are some questions as well as arguments related to curl bash pipes on the internet. A concern has been raised on the subject of a curl bash pipe being inherently less secure than downloading a shell script and executing it.
Script Security Audit[edit]
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Script_Security_Audit
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#Script_Security_Audit|Script Security Audit]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Script Security Audit](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Script_Security_Audit)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Script Security Audit](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Script_Security_Audit)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Script_Security_Audit]Script Security Audit[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
There are at least two user groups.
User Group 1) Users with the ability to security audit shell scripts:
Users with the ability to review shell scripts (such as an installer shell script), can and might review shell scripts. These types of users do not need to be told:
- It's a curl bash pipe, for better security, you might want to, not run the curl bash pipe, but instead:
- download the script,
- check if there is any Malicious Unicode
in the script,
- review the source code in a text editor,
- make it executable if it looks sane
- execute it.
These groups of users already know that because knowing that is a very much more trivial skill than knowing how to audit shell scripts. Even a curl bash pipe curl somedomain.com/script.bsh | bash
is a type of shell script (though usually a rather short one) that people with review skills know how to review or rewrite.
If someone with Linux scripting skills is seeing a curl bash pipe such as for example curl somedomain.com/script.bsh | bash
then it is trivial to modify that curl bash pipe or in other words to extract the the direct link to the script somedomain.com/script.bsh
and then to manually download that script using a web browser, curl or similar.
And hopefully not falling victim too Hidden Text Attacks while using copy and paste.
User Group 2) Users without the ability to security audit shell scripts:
If a user does not have the ability to review a shell script, then there is no difference security-wise for the user anyhow. If either,
- A) The user 1) downloads the script, 2) makes the script executable and 3) then executes the script, or
- B) runs a curl bash pipe,
has the same effect. In both cases, the user was running a script without performing a security audit first.
Security Comparison[edit]
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Security_Comparison
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#Security_Comparison|Security Comparison]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Security Comparison](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Security_Comparison)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Security Comparison](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Security_Comparison)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Security_Comparison]Security Comparison[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Let's compare method A) with Method B).
Option A) curl bash pipe
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Option_A.29_curl_bash_pipe
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#Option_A.29_curl_bash_pipe|Option A) curl bash pipe]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Option A) curl bash pipe](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Option_A.29_curl_bash_pipe)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Option A) curl bash pipe](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Option_A.29_curl_bash_pipe)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Option_A.29_curl_bash_pipe]Option A) curl bash pipe[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
1. Run the following command.
Click = Copy Copied to clipboard! curl --tlsv1.3 https://www.example.com/installer | bash
2. Done.
Option B) Manual Download
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Option_B.29_Manual_Download
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#Option_B.29_Manual_Download|Option B) Manual Download]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Option B) Manual Download](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Option_B.29_Manual_Download)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Option B) Manual Download](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Option_B.29_Manual_Download)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Option_B.29_Manual_Download]Option B) Manual Download[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
1. Download the installer.
Click = Copy Copied to clipboard! curl --tlsv1.3 --remote-name https://www.example.com/installer
2. Make the installer executable.
Click = Copy Copied to clipboard! chmod +x installer
3. Run the installer.
Click = Copy Copied to clipboard! ./installer
4. Done.
Method B) is not more secure than method A) because in both cases the user has run a script without performing a security audit of the script before executing it.
Partial Content[edit]
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Partial_Content
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#Partial_Content|Partial Content]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Partial Content](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Partial_Content)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Partial Content](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Partial_Content)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Partial_Content]Partial Content[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Quote Piping curl to s(hell):
Partial content returned by the server
When using curl to pipe the script directly into your shell it is teoretically possible for the connection to be interrupted in an unpredictable way. In this case curl or other program can only output a part of the script before failing. In this case we can imagine a scenario in which a script does something that it shouldn't do. For example the following command:
$ rm -r /usr/share/program
Could become:$ rm -r /usr
This is of course a syntetic example but it is not hard to imagine a different scenario in which a command may fail in an equally devastating way.
This issue can be mitigated by wrapping all script code into functions.
Transparency[edit]
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Transparency
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#Transparency|Transparency]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Transparency](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Transparency)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Transparency](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Transparency)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Transparency]Transparency[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
When running a curl bash pipe, the user does not really know which commands will be executed.
Quote Piping curl to s(hell):
When executing an unknown script we don't know what is going to happen - we will not be able to easily find out what files were installed.
This is a fair criticism which could be mitigated by installers in two ways.
- The installer could store a backup of itself in the installer download folder. In doubt, the user can go later investigate and have a look at the script which was executed at the time.
- The installer could by default log in the installer download folder create a log which contains a complete recording of all commands which have been executed on the user's computer.
References[edit]
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#References
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#References|References]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[References](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#References)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[References](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#References)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#References]References[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
- https://medium.com/@ewindisch/curl-bash-a-victimless-crime-d6676eb607c9
- https://www.arp242.net/curl-to-sh.html
- https://security.stackexchange.com/questions/213401/is-curl-something-sudo-bash-a-reasonably-safe-installation-method
- https://www.djm.org.uk/posts/protect-yourself-from-non-obvious-dangers-curl-url-pipe-sh/
Related[edit]
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Related
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Dev%2Fcurl_bash_pipe#Related|Related]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Related](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Related)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Related](https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Related)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Dev%2Fcurl_bash_pipe?oldid=76031#Related]Related[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
- https://forums.whonix.org/t/detecting-the-use-of-curl-bash-server-side/2361/3
- Malicious Unicode
- Hidden Text Attacks
- Verifying Software Signatures


Copy as Wikitext

for Discourse, reddit, GitHub

Copy as Markdown

Copy as phpBB Click below ↴ = Open social URL with share data











We believe security software like Kicksecure needs to remain Open Source and independent. Would you help sustain and grow the project? Learn more about our 12 year success story and maybe DONATE!