executing encrypted files


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users executing encrypted files
# 1  
Old 03-05-2002
executing encrypted files

Hi,

Is there a way of executing encrypted files? I have encrpyted files using vi and crypt, but when I execute the encrypted file, it takes the contents literally (special characters, junk - encrpyted format).

Kind Regards,
Kawah
# 2  
Old 03-05-2002
There may be. Try the Icon Programming language at www.cs.arizona.edu/icon (Icon is C meets Perl meets ProLog meets Beta).
The reason I think it would work with Icon is that you can modify the way the program is loaded.
With a pure binary this might get rather involved, since the first part of the program would have to consist of a key prompter, a loader and dectrypter, and the application.

It is an interesting project, but you might want to be quit proficient before attempting it.

Also, what do you want to achieve?
For copy protection there already exists loads of libraries ... but for putting something together quickly and running it, I don't know.
For a shell script, you just feed the script to decrypt before executing ...

Atle
# 3  
Old 03-06-2002
Re: executing encrypted files

Try to use gzexe (compress/uncompress and run) and perhaps u will find a similar idea for crypt. Gzexe is a part of GNU ZipSmilie
# 4  
Old 03-07-2002
Thanks

Thats great, I will give it a go.

Thanks agian.

Kind Regards,
KC
# 5  
Old 03-10-2002
HOLD IT!!
What system are you using?
I may have told you darn lies and hogwash.
If it is FreeBSD, there is a compile option that lets you run gzipped executables - I just saw it!
If you run FreeBSD 386 (or maybe other BSDs?) check out

/usr/src/sys/conf/i386/LINT

and look for it.

Atle
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Executing a batch of files within a shell script with option to refire the individual files in batch

Hello everyone. I am new to shell scripting and i am required to create a shell script, the purpose of which i will explain below. I am on a solaris server btw. Before delving into the requirements, i will give youse an overview of what is currently in place and its purpose. ... (2 Replies)
Discussion started by: goddevil
2 Replies

2. Shell Programming and Scripting

Executing shell script files

Whats the difference between executing a file such as test.sh as: ./test.sh as apposed to sh test.sh i've noticed that a simple while loop will not execute for the 2nd way of doing it, but will for the first. Also what do you guys all recom (6 Replies)
Discussion started by: linuxkid
6 Replies

3. Linux

Secured encrypted files via Linux

I need to encrypt a ".txt" file with password settings and it should decrypt the file automatoically when end user types correct password. Can some one help me on this. Thank you (3 Replies)
Discussion started by: rlmadhav
3 Replies

4. Shell Programming and Scripting

Delete many files by executing script.

Hi , I am novice in Unix. Kindly , try to resolve my query. I have 3 folders. Inside these folders , I have few files respectively. Now , Instead of deleting each file by visitng the directory. I want to write a script which when executed all files gets deleted with that. For ex:- Dir -... (1 Reply)
Discussion started by: devmns
1 Replies

5. UNIX for Dummies Questions & Answers

how to compare 2 encrypted files?

I have 2 files :- 1) f1.txt and f2.txt.Both contain some text as - 2)Now I did : output: I got them to be equal. 3) I encrypted them using gpg and with the SAME paraphrase :- 4)Now I did : #cmp f1.txt.gpg f2.txt.gpg (OR) #diff f1.txt.gpg f2.txt.gpg output: I got them to be... (1 Reply)
Discussion started by: nsharath
1 Replies

6. UNIX for Dummies Questions & Answers

How to unzip multiple files (encrypted) in a directory.

Good day all. I want to unzip multiple files in a directory. Suppose there are two files: test.txt.zip and test1.txt.zip Using this command: unzip -o -P test*.zip results in the unzipping of the first file not second. It gives this error: Archive: test.txt.zip caution: filename not... (2 Replies)
Discussion started by: er_ashu
2 Replies

7. Shell Programming and Scripting

executing an encrypted script

Can we execute an encrypted shell script . I encrypted a shell scripts with crypt with keys and tried to execute it it gave me segmentation faul?? Can somebody answer this one please?? If we can is there any settings i need to change?? Thanks (2 Replies)
Discussion started by: ajnabi
2 Replies

8. UNIX for Dummies Questions & Answers

encrypted files

Hi lads me again trying to get a wee bit fancy with my scripting anyway it dosn't seem to want to run (strange as it may seem) I encrypted a file renamed it and wrote another file that unencrypts it (it contains passwords) (and b4 anyone says I am doing this for my own reasons) In a... (3 Replies)
Discussion started by: w33man
3 Replies

9. Programming

Problem executing C files in Linux

Hi there I compiled a simple .c file using the cc command, the file was compiled successfully and executable file (a.out) was generated. But When I executed the a.out file it gave me: bash: a.out: command not found Can anybody tell me what's the problem. Note that I'm using: Red Hat... (3 Replies)
Discussion started by: HAS
3 Replies

10. UNIX for Dummies Questions & Answers

executing encrypted files

Hi, Is there a way of executing encrypted files? I have encrpyted files using vi and crypt, but when I execute the encrypted file, it takes the contents literally (special characters, junk - encrpyted format). Kind Regards, Kawah (1 Reply)
Discussion started by: Kawah Cheung
1 Replies
Login or Register to Ask a Question