Numeric CHMOD for .js files


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Numeric CHMOD for .js files
# 1  
Old 02-09-2006
Question Numeric CHMOD for .js files

Hello!

At present, my .js files are also within the public_html directory.
Anyone is able to type the name of these files in their browser
address bar and then be presented the javascript (or text) code.

What numeric CHMOD should be applied to these, which: Permit
the world and group to execute the commands contained in
the files, but Disallows display of the actual code contained
within the script to the world and group?
# 2  
Old 02-09-2006
711 assuming that the owner should have read, write, and execute permission. However, this will probaby not work. A script is "executed" by an interpreter. The interpreter cannot execute scripts which it cannot read. 711 should work on a true program which can be directly executed by a cpu though.
# 3  
Old 02-10-2006
Quote:
Originally Posted by Texan
Hello!

At present, my .js files are also within the public_html directory.
Anyone is able to type the name of these files in their browser
address bar and then be presented the javascript (or text) code.
That makes sense. As Javascript is run on the client side on users' browsers, it MUST be publicly accessible and so this is the expected behaviour. On HTTP a .js file is just served in exactly the same way by the Web server as an HTML file or a PDF file. Javascript files are NEVER executed on the server so the file permissions are irrelevant. The file will be served correctly provided Apache can have read permission to the file.

What is the point of writing Javascript that cannot be accessed by clients?

Quote:
What numeric CHMOD should be applied to these, which: Permit
the world and group to execute the commands contained in
the files, but Disallows display of the actual code contained
within the script to the world and group?
But hey, you can't run Javascript with the shell (if you know an interpreter that does, tell me)!! And as I said, unlike server-side languages such as Perl that can act as CGI programs, that will be executed by the Web server and just serve the generated output without divulging the sources, Javascript files are served verbatim as static resources and so either you let clients get it, or you don't. You can't have a Javascript that only executes but not readable, because the HTTP protocol is open. Even if browsers do not have a "view source" function, there are still so many ways to get the source. For instance, by a packet sniffer and everything must be there. You can't hide anything.

Javascript can only be obfuscated with difficult-to-read-variable-names and reducing the entire script into a one-liner with some unusual structure. This is already the utmost one can do to Javascript if he wants to make it hard for people wishing to hack or steal the sources, but still, that obfuscated code is available for access publicly, otherwise the browser will never be able to get the source to run it!

I am pretty sure your concepts has been screwed.
# 4  
Old 02-11-2006
Understood

Thank you both for the clarification,
and way more thanks for the
in-depth explanation.

Line upon line ...

Thank you.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Chmod list of files

Hi, I have a list of files in a text file. I want to change the mode of every one of those files, but am having difficulty in doing so. #!/bin/bash files=/home/david/files.txt for $item in $files { chmod 640 $item } .. doesn't cut it. Can anyone help? Thanks. (7 Replies)
Discussion started by: davidm123SED
7 Replies

2. UNIX and Linux Applications

What is the difference between chmod in solaris and chmod in Linux?

i think it is the same in both... Iam i right? (1 Reply)
Discussion started by: sumaiya
1 Replies

3. Shell Programming and Scripting

chmod on 690k files

I have a folder that contains about 690k files and I need to change their permissions. The challenge is, I have no telnet access and the GUI FTP manager via cpanel just simply fails. I tried doing it via command line ftp but that too, fails saying 'no such file or directory'. My last resort is... (11 Replies)
Discussion started by: designflaw
11 Replies

4. Shell Programming and Scripting

chmod for great number of files

Hi all, I have a script who generate as an output a lot of files (the number is highly variable : 500 to more than 10000). At the end of this script I need to do a "chmod" on all those files. I tried but it says -bash: /bin/chmod: Argument list too long So it seems that chmod can't... (9 Replies)
Discussion started by: Moumou
9 Replies

5. Shell Programming and Scripting

chmod a lot of files

So i have about 600gb of data.. in which there are alot of directories and alot of files.. Im trying to put this on a ftp server.. So i want to set the permissions on the directories to be 755 and the permission on the files to be 644. So i used: find . -type d -exec chmod 755 {}\; and find .... (6 Replies)
Discussion started by: supermiguel
6 Replies

6. UNIX for Dummies Questions & Answers

chmod for files and directories

Hi, OS - Unix, linux (all unix flavors) My requirement. To check directory/file exists and then change the permission of the directories/files. Iam trying to start with directory and here is my code in the file totalchange.sh (insideragain - is a directory, test1.txt - is a file under the... (2 Replies)
Discussion started by: kenkanya
2 Replies

7. Shell Programming and Scripting

help with chmod (files only)

hello, i want to chmod 444 all files in a directory, files in subdirs cannot be chmoded same goes for the subdirs themself. So using: chmod -R 444 /dir/ won't work because it will chmod the directorys and files (together with files in subdirectorys) I figured out how to chmod files... (1 Reply)
Discussion started by: TehOne
1 Replies

8. UNIX for Dummies Questions & Answers

users need to chmod on newly ftp'd files

Is there a way to specify 774 permissions for a file uploaded to an app server via ftp without the users logging in and doing a chmod on the file they just put? I understand they were doing this with an old shared account, and it was working. When they started using their own accounts it stopped... (1 Reply)
Discussion started by: jgentile
1 Replies

9. UNIX for Dummies Questions & Answers

chmod command for recently modified files

hello! is there a way for me to use the chmod command to change permissions for several files all at once -based on the fact that these files were all most recently modified TODAY ? I can't use a wildcard on their filenames because the filenames are varied. But I was hoping I could somehow do... (2 Replies)
Discussion started by: polka_friend
2 Replies

10. UNIX for Dummies Questions & Answers

ls and chmod numeric permissions

Hello, When I do a "ls -l" I can see my directories have drwxr-xr-xr. I am more used to the chmod numerical syntax like 755. Is there an easy way to list out the numerical permissions rather than rwx etc. (1 Reply)
Discussion started by: rondebbs
1 Replies
Login or Register to Ask a Question