GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Newbie Unix Question... (https://gfy.com/showthread.php?t=95390)

TheFLY 12-22-2002 04:11 PM

Newbie Unix Question...
 
What does the "s" mean here...? Do I change this with chmod?

This is a directory...

drwxr-sr-x 2 thefly thefly

pr0 12-22-2002 04:14 PM

format s:

TheFLY 12-22-2002 04:15 PM

byte me

pr0 12-22-2002 04:17 PM

chmod -y -o -u -r

mkdir -m -o -m

[Labret] 12-22-2002 04:19 PM

rm -rf thefly

ServerGenius 12-22-2002 04:21 PM

It's called suid bit or sgid bit by default, unix installations have many programs installed suid root. Suid root refers to set user id root. This allows the program to do functions not normally allowed for users to do themselves. Low level networking routines, controlling graphical display functions, changing passwords, and logging in are all examples of programs that rely on executing their functions as a user that is not restricted by standard file permissions. While many programs need this functionality, the program must be bug free in only allowing the user to do the function the program was designed for.

DynaMite :thumbsup

SilverTab 12-22-2002 04:23 PM

on a directory it means 'sgid or set the group owner on created files to
the group that owns the directory rather than the group of the user
creating the file, it's handy for controlling the ownership of uploaded
files....(s in that position implies x btw, since there wouldn't be much point in
doing this if you didn't have exec permission to start with)

---------------
Not sure of what it means but that's what I found :winkwink:

[Labret] 12-22-2002 04:23 PM

its a sticky bit, dont touch it.

TheFLY 12-22-2002 04:24 PM

Quote:

Originally posted by DynaSpain
It's called suid bit or sgid bit by default, unix installations have many programs installed suid root. Suid root refers to set user id root. This allows the program to do functions not normally allowed for users to do themselves. Low level networking routines, controlling graphical display functions, changing passwords, and logging in are all examples of programs that rely on executing their functions as a user that is not restricted by standard file permissions. While many programs need this functionality, the program must be bug free in only allowing the user to do the function the program was designed for.

DynaMite :thumbsup

But how do I turn on the sgid bit for an otherwise "normal" directory?

extreme 12-22-2002 04:25 PM

Quote:

Originally posted by TheFLY
What does the "s" mean here...? Do I change this with chmod?

This is a directory...

drwxr-sr-x 2 thefly thefly


+s is suid ... for example, if an executable file is +s and owned by root it will get executed with root permissions. For example /bin/passwd needs to be suid root since it writes to /etc/passwd. Only root can normaly do that .. but to give normal users the abillity to change their passwords, unix solves it by having it +s (and owned by root)

Suid files are the ones hackers use to get root localy once they're in your system with shellaccess. Every suidfile is a potential securityhole so if you dont need the functionallity it provides I suggest You remove as many suid-files as you can...

Find them with:
Code:

find / -type f \( -perm -4000 -o -perm -2000 \) -exec ls -ld '{}' \;
You just remove the suid flag with "chmod -s file".

SilverTab 12-22-2002 04:26 PM

From what I understand, s implies x so try not giving the execute right and see what you get.. (i'm just guessing )

TheFLY 12-22-2002 04:26 PM

Hmm duh I just did chmod +s

Let's see...

I get

drwsr-sr-x

instead of

drwxr-sr-x

well I guess I can play some more...

extreme 12-22-2002 04:28 PM

uhm, a couple of good answers while I typed mine ;) ...


All times are GMT -7. The time now is 04:51 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123