![]() |
|
#1
|
||||
|
||||
|
Securing /tmp
Hi,
Can some post a step by step or a link to securing /tmp on a CentOS 4.2 |
|
#2
|
||||
|
||||
|
Searching google, I found this rough howto that may be useful for you. If not I'm sure there are lots more out there
![]() Source: http://www.fedoraforum.org/forum/arc...p/t-44729.html Quote:
__________________
Just do what it takes to make it happen
|
|
#3
|
||||
|
||||
|
thats good information!
|
|
#4
|
||||
|
||||
|
If you're like most of us you're going to need a lot more than 100MB; we generally use 1G, if it's available.
Jeff
__________________
Jeff Lasman <directadmin@nobaloney.net> +1 951 643-5345 Third-Party DirectAdmin administration and support Dedicated Servers, Dedicated Reseller Accounts NoBaloney Internet Services P.O. Box 52200 Riverside, Calif. 92517 |
|
#5
|
||||
|
||||
|
why?
I understand the concept but why do this?? sure you'll protect the /tmp folder but what prevents other folders on the system to be used?
Most hackers get in via some insecure application, from there then write files within the site that was broken into.
__________________
Larry Ludwig Empowering Media - Managed Hosting HostASite.com - Small Business Web Hosting |
|
#6
|
||||
|
||||
|
After it restarted, it can not remount the tmpMnt
Mar 7 16:39:45 server mount: /dev/tmpMnt: No such file or directory |
|
#7
|
|||
|
|||
|
empoweri:
You would do this, because /tmp is usually the only directory you can be sure will exist and be writeable by all. And a lot of scripts that the script kiddies use try to execute programs from /tmp. dannygoh: I am guessing that you are using devfs or udev and most likely at reboot your tmpDev file and everything else in /dev was removed. I would try redoing everything, except putting the file somewhere else besides /dev, like /var or somewhere else more permanent. |
|
#8
|
||||
|
||||
|
Ouch! I didn't notice that Jon's example was using /dev as the place to put the tmpMnt file. /dev is NOT a good place; it can be rebuilt each time the OS is restarted.
Thanks for the catch, toml. Jeff
__________________
Jeff Lasman <directadmin@nobaloney.net> +1 951 643-5345 Third-Party DirectAdmin administration and support Dedicated Servers, Dedicated Reseller Accounts NoBaloney Internet Services P.O. Box 52200 Riverside, Calif. 92517 |
|
#9
|
||||
|
||||
|
Here's what I used and it's working fine for me: (you'll probably want to increase the sizes though
)Code:
cp /etc/fstab /etc/fstab.original cd /dev dd if=/dev/zero of=Tmp bs=1024 count=512000 dd if=/dev/zero of=varTmp bs=1024 count=102400 mkfs -t ext3 /dev/Tmp mkfs -t ext3 /dev/varTmp cd / cp -aR /tmp /tmp_backup mount -o loop,noexec,nosuid,rw /dev/Tmp /tmp cp -aR /tmp_backup/* /tmp/ chmod 0777 /tmp chmod +t /tmp cd /var/ cp -aR /var/tmp /var/tmp_backup mount -o loop,noexec,nosuid,rw /dev/varTmp /var/tmp cp -aR /var/tmp_backup/* /var/tmp/ chmod 0777 /var/tmp chmod +t /var/tmp df -h (Confirm everything is working) Add the mount to your /etc/fstab /dev/Tmp /tmp ext3 loop,noexec,nosuid,rw 0 0 /dev/varTmp /var/tmp ext3 loop,noexec,nosuid,rw 0 0
__________________
Just do what it takes to make it happen
|
|
#10
|
||||
|
||||
|
Jon,
/dev is actually reserved for OS use. It's a directory reserved for building a file structure that's really a look into the internals of the kernel. As that, there's nothing in the linux or unix definitions to require that it not be rebuilt every time a system is started, and toml's post is absolutely correct. I haven't studied either devfs or udev, so I'm not sure, but dannygoh's experience makes sense. I'd definitely use a different mount point. Jeff
__________________
Jeff Lasman <directadmin@nobaloney.net> +1 951 643-5345 Third-Party DirectAdmin administration and support Dedicated Servers, Dedicated Reseller Accounts NoBaloney Internet Services P.O. Box 52200 Riverside, Calif. 92517 |
|
#11
|
|||
|
|||
|
Here is my position:
[root@server ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda3 70G 26G 41G 40% / /dev/sda1 99M 22M 73M 23% /boot none 1013M 0 1013M 0% /dev/shm /usr/tmpDSK 485M 41M 419M 9% /tmp /tmp 485M 41M 419M 9% /var/tmp [root@server ~]# |
|
#12
|
||||
|
||||
|
Hello,
I run Fedora Core 3, this work fine, until reboot. Reason : I run raid-1 (hardware), how can I have this still working at reboot with RAID-1 ? Looking forward to hear someone. :-) |
|
#13
|
|||
|
|||
|
Raid-1 should have nothing to do with this not working. Raid-1 should be transparent to the underlying filesystems. What is happening on your system? What steps did you take to set it up? I assume you read this whole thread and weren't putting the tmpfs in /dev for the reasons stated above.
|
|
#14
|
||||
|
||||
|
Hello,
yes is placed them in /dev, but I'd like to ask you, where can I store them if not in /dev, because elsewhere I'm not able to do it. The command simply does not goes. Where do you advice me to place it? |
|
#15
|
|||
|
|||
|
That is your problem. Some Linux distributions uses a the devfs to recreate the /dev fileystem each time the system is booted. You should place that file somewhere else. For example:
Code:
dd if=/dev/zero of=/var/TmpFS bs=1024 count=102400 mkfs -t ext3 /var/TmpFS edit /etc/fstab: /tmp/TmpFS /tmp ext3 loop,noexec,nosuid,rw 0 0 |
|
#16
|
||||
|
||||
|
Hey ! Thanks.
I did a typo mistake with my target. This went fine : Quote:
|
|
#17
|
|||
|
|||
|
dear manika , i have followed your instrtuctions and made my tmp folder secure these . everything were runnig fine yesterday, even when i reboot the system. all the daemon start without any problem,
these morning i woke up with one of my friends call. he told my site is offline . OMG, everything messed up . none of my site is runnig . after rebooting serveral times now httpd is started but no luck with mysql i am in deep **** .. plz help .. |
|
#18
|
||||
|
||||
|
__________________
-------------------------------------------------- Floyd Morrissette Newwebsite.com Now specializing in OpenVZ AND XEN VPS technology |
|
#19
|
|||
|
|||
|
dear flyod ,
thank you so much for you help. can u please instruct me . how can i undo these folder securing things . i have to resume my website ASAP, some of my clients sites are runniung there . i will try to re-secure /tmp folder later on . thank u so much |
|
#20
|
||||
|
||||
|
I don't know why the web sites are not running unless they are required to use the /tmp directory and cannot for some reason. I cannot tell you how to fix something when I cannot be sure of what you did or what the current situation is. Since I cannot see your server anything I tell you might make things worse. Several of us here do this for a living and can help you for usually a small fee and the work is guaranteed.
I am not here to try to make money off of you. But I am not going to try to blindly tell you what to do and then get the blame when things get worse.
__________________
-------------------------------------------------- Floyd Morrissette Newwebsite.com Now specializing in OpenVZ AND XEN VPS technology |
![]() |
| Thread Tools | |
| Display Modes | |
|
|