How to make script password protected


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to make script password protected
# 1  
Old 12-17-2007
How to make script password protected

Hi All,

I want to make my script password protected.

i e: if somebody runs my script it should prompt for password.

Can somebody help me in to execute the same??

Thanks in Advance Smilie
# 2  
Old 12-17-2007
hi,
I got a very simple idea.

Write something like this in the beginning of your script for the password checking.

...
ACTUAL="perftest"
read -s -p "Password: " enteredpass
echo ""

[ "$enteredpass" != "$ACTUAL" ] && echo "Sorry" && echo "exiting" || echo "Conti.."
...

Since you will be storing your password in your script itself, you have to protect your shell script by using shc.
Generic shell script compiler(shc) creates a stripped binary executable version of the script specified with -f on the command line. (shc encrypts shell scripts using RC4)

Hope this helps.

//Jadu
# 3  
Old 12-17-2007
I am not very clear about shc,

Can you tell me how to make a sciprt as shc??
# 4  
Old 12-18-2007
Well,
I have a post here,

Jadu's Workshop: How to protect a shell script

which will help you.
# 5  
Old 12-18-2007
how to Encrypt bash scripts?

Hi,

I tried encryting a bash script, and I received the below error...

-bash: shc: command not found

Is there a different command to execute bash scripts??
# 6  
Old 12-18-2007
reasonably simple password encrypter process:

you could use perl to crypt a password e.g.:

perl -e "print crypt('password','AA');'\n'"

then use perl in your script to check the password e.g.:

/usr/bin/perl -e "print 'match' if crypt('password','AA') eq 'AA6tQYSfGxd/A';"

and do the test / exit or continue with script piece

but as noted already this does not hide the contents of the script - for very basic security it'll do though...
# 7  
Old 12-21-2007
Quote:
Originally Posted by achararun
Hi,

I tried encryting a bash script, and I received the below error...

-bash: shc: command not found

Is there a different command to execute bash scripts??
achararun you have to get shc install in your box if ! present, get it from here, Francisco Rosales, home page
and follow my blog link.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Password protected excel file without encryption or zipping

All, I have requirement to send password protected excel file in an email from unix/linux box without zipping it. Any help would be appreciated. Thanks.. (8 Replies)
Discussion started by: Durgesh Gupta
8 Replies

2. Post Here to Contact Site Administrators and Moderators

Password protected excel file without encryption or zipping

All, I have requirement to send password protected excel file in an email from unix/linux box without zipping it. Any help would be appreciated. Thanks.. (1 Reply)
Discussion started by: Durgesh Gupta
1 Replies

3. Shell Programming and Scripting

Make a password protected bash script resist/refuse “bash -x” when the password is given

I want to give my long scripts to customer. The customer must not be able to read the scripts even if he has the password. The following command locks and unlocks the script but the set +x is simply ignored. The code: read -p 'Script: ' S && C=$S.crypt H='eval "$((dd if=$0 bs=1 skip=//|gpg... (7 Replies)
Discussion started by: frad
7 Replies

4. UNIX for Dummies Questions & Answers

SSH - Password Protected Directory Issue

I dug myself a hole yesterday that I can't seem to get myself out of. In a very futile attempt to create a new FTP user with limited access via SSH, I inadvertently changed permissions for who knows what and now I am having a problem accessing password protected directories. When I enter the... (1 Reply)
Discussion started by: HiddenColors
1 Replies

5. UNIX for Dummies Questions & Answers

Unzipping multiple password-protected files

I am trying to unzip ~150 files on a SUN server in Unix via a telnet program (PuTTy), so I am restricted (I believe) to single-line command functions. All of the files are password protected, and each one contains three files. Is there a way to automate the process? I have tried 7z, but that only... (0 Replies)
Discussion started by: Davman
0 Replies

6. Shell Programming and Scripting

Unzipping files <password protected>

Hie Friends, I need your help once again. I have 77 “password protected” winzip files in linux/unix server. I want to decrypt it through an automated script. Password of every file is same and it is mhd*tt. Please help me. Usually I unzip it as follows, manually one by one. unzip <file name> ... (6 Replies)
Discussion started by: anushree.a
6 Replies

7. Shell Programming and Scripting

How to make files/folders Password protected

Any idea how to make files/folders password protected... I dont want to change the permissions of the files/folders... (1 Reply)
Discussion started by: know d unknown
1 Replies

8. UNIX for Dummies Questions & Answers

Print on a printer which is password protected

Hi, I am trying to print from HP unix machine to a Toshiba printer which is password protected. How can I print? Thanks. Anuj (1 Reply)
Discussion started by: Anuj
1 Replies

9. UNIX for Dummies Questions & Answers

I inhereted a Unix server that is password protected...Help!

I inhereted a project server that has UNIX installed with a SCO OS. I am trying to learn UNIX but I cannot go beyond the password and login. The original engineers have left the company and nothing was ever written down. How can access our server? (1 Reply)
Discussion started by: fxsaint
1 Replies
Login or Register to Ask a Question