Can a .sh file be a virus or something harmful? Is it like .exe files on Windows? If yes can someone read this script and tell me if it safe and is it effect any how on gpg security. It gives me an option to encrypt files with a right click on Ubuntu.
|
|
|
It's a bit harder to hide malware in a shell script without looking suspicious, because this is a script which can be read by people with knowledge of the scripting language. But it is not much harder; few people, even with the technical knowledge, would bother to review the code, so you could hope to go unnoticed. As a practical matter, there is less malware for Linux floating around than for Windows. This is probably mainly because Linux has a lot less of a market share than Windows on the desktop, so the payback for writing Linux malware is less. Also, there is a long-ingrained culture of sharing little improvements to the system in the Linux world, more so than in the Windows world; so the balance of probability says that this is someone sharing a little improvement and not malware. But it could be malware posing as a little improvement. In the end, you need to decide whether you can trust the site where you're getting this application, or the people who recommended this site. Favor programs that come from your distribution (i.e. that you can install from the software center), as they have undergone some review. Now regarding this specific program: I had a quick look, and it looks benign. I didn't see anything that would store your password anywhere without telling you or that would do things on your computer other than what it's advertised to do. Note that I only did a 2-minute review, which any remotely clever malware writer could get past. The program looks reasonably well-written. I wouldn't necessarily recommend this program unless you feel a pressing need that isn't addressed by packages in the Ubuntu distribution. Ubuntu comes with the seahorse |
||||
That's malware, and it's a shell script. A more advanced version might include something like:
So yes, a shell script can be malicious. It can get more complex and call on other scripting languages, libraries, or even be a shell archive that spits out and calls a regular executable. For the most part, anything you run gets the permissions of the user. |
|||
|
|
|
Of course! It can do anything you can do! Watch logs, keylog you, steal files etc.... Depending on what its Developer has written on the source code! It can do ANYTHING..... And it is very easy to make, so if you are sent a suspicious .sh file, think twice before you execute it! |
|||
|
|
A sh file can be a traditional file infecting virus:
Both articles include source code for (older) sh viruses, although one or both have a typo that keep them from working properly today. It's an easy fix, as I recall. Both articles appeared in the late, lamented Computing Systems Volume 2, Number 2, Spring, 1989 That's nearly 25 years ago. In a slightly different vein, the VAX/VMS network worms Father Xmas and WANK were both written in the VMS "shell script" language, DCL. |
|||
|
|
|
A A shell script is derived from a source file through an implicit rule
of
This shell script (with an empty extension) is from now on an executable and depending on the right of the user running it may cause severe damages to the system. A Unix shell script can be a virus, worm, a Trojan horse, a spyware, a logic bombIf a shell script is run by a privileged account, most notably Most of this bad behaviour will be easily discovered by a serious analysis of a shell script. Hence the fact that a shell script is a weapon won't stay secret. Why aren't shell script more often used to destroy all the Unixes boxes? Simply because their users don't work on their OS with the same level of privileges.
The 2 shell scripts you proposed to use don't exhibit any use of dangerous commands. They don't do any kind of home call, they don't hide any
back door on the system.
But they do collect your user password within a variable
$PASS so as to be able to use sudo without asking your password
everytime.
Anyone on your system could see through the right use of ps
arguments the value of this shell environnement variable i.e. your password.
Subsequently, any other user of your system can use your account
and aquire root privilege through sudo.
Hence I wouldn't advise you to use such a kind of shell script.
|
|||||||||||||||
|
