Software :: Implement Mod_clamav To Protect Folder?
Jan 25, 2011
I've got apache running a webdav folder, I would like to implement mod_clamav to protect this folder - however I'm not having much success. Here's a copy of the relevant bits of code:
Code:
ClamavMode local
ClamavTmpdir /tmp/clamav
ClamavDbdir /var/clamav
ClamavExtendedLogging on
[Code].....
Logs are empty and the www.myserver.com/clamav page displays lots of statistics (all with 0 in them), I can run scans locally without any problems.
View 2 Replies
ADVERTISEMENT
May 3, 2011
i will protect my folder so if someone want to copy that folder include container, he must enter right password first oh yeah i will store it in ntfs partition and backup in exsternal hardisk anywants how to do it in both of them, please share here because i already try to use permission but it's failed
View 1 Replies
View Related
May 14, 2011
Is there any way to password protect a whole folder?
View 3 Replies
View Related
Jun 28, 2011
I want to protect one of the folders in my VPS which is running under Ubuntu server 10.04 LTS I've tried doing this using .htaccess and I am being prompted for a user name and a password but when i enter the user name and the password I get the same window again but I am sure that I am entering the correct information. this is the .htaccess file code...
this file is located in the same folder that I want to protect. code...
View 1 Replies
View Related
Apr 10, 2010
Im running apache2 on a debian webserver and i was wondering how i can password protect a folder in my www directory when someone try to access it from the web.
View 1 Replies
View Related
Jul 28, 2011
im currently trying to configure SE Linux policy for a folder so that only my user with root privileges can access it and not just root but i don't know the commend to run on the folder to change its permissions
View 4 Replies
View Related
Sep 3, 2010
I have a folder on my flash drive where I keep sensitive info (important numbers, passwords, etc.) and would like to protect this info in the event that someone gets a hold of this drive.
I figured the best method was encryption so I started experimenting with gpg, but I encountered problems as mentioned here:
[URL]
I still haven't found a solution so I'm looking into possible alternatives. As shown in the above thread, someone recommended using eCryptfs or an encfs directory. Before I spend anymore time researching this stuff, has anyone tried using these before? Do they work well and do you think these would suit my needs?
The only other alternative I can think is just compressing the folder into a password protected rar file. Would this work well or would I be leaving my data vulnerable?
ALSO, I would a prefer a solution that would still allow me to backup this folder using rsync. I like to keep and up-to-date backup of my entire flash drive by syncing it to another flash drive using rsync.
View 2 Replies
View Related
Apr 15, 2011
is there a way to password protect a file or folder from the terminal? i wanted to do this because I may have several friends depositing files on my ssh server that they don't want each other to see. Or i might have a file i don't want them to see.I installed cryptkeeper,but it can't take commands from the terminal. Anything else I can try?
View 1 Replies
View Related
Aug 13, 2011
How can I protect a file or folder from unauthorized delete.
View 9 Replies
View Related
Oct 5, 2010
I would usually just root the permissions to 000 but I need to password protect a folder on a usb drive and then open it on windows.
View 1 Replies
View Related
Apr 25, 2011
actually i upload a password protect folder software, but unfortunately it was a trial version which i didn't know . now i am unable to recover my files from that.
View 2 Replies
View Related
Jun 2, 2010
recently I am interesting at apparmor, and I have read some docs of it, but I have a question that how to protect apparmor itself? I mean only if gained root privilege then stop apparmor service, all the protection will no longer effect, if I hiding or remove root user then how to remodify profiles if needed that because have not enough privilege.
Is there apparmor maillist? maybe you can email me: <email removed for obvious reasons>
View 2 Replies
View Related
Mar 10, 2010
I have followed following steps to implement, ftp upload by test1 user.
Code:
1. Add group ftp-users
# /usr/sbin/groupadd ftp-users
2. User test1 has been added to the group of ftp-users with /home/ftp-docs as home directory
# /usr/sbin/usermod -g ftp-users -d /home/ftp-docs test1
3. Ownership and permission of /home/ftp-docs has been changed to provide read/write access to user test1 and group ftp-users
# chown test1.ftp-users /home/ftp-docs
# chmod 770 /home/ftp-docs
But My intention is for the user who login with test1 user privileges, he should not be able to browse any other directories say /, /var /etc etc. Also he should not be able to change to any other directory. How can I accomplish this ?
View 2 Replies
View Related
Apr 15, 2011
How can we implement HMIPv6 in ns2? Can we adapt it directly by implementing MIPv6 or we need any ,for example HMIPv6.cc?
View 7 Replies
View Related
Feb 16, 2010
Is there any function like mkdir() or link() for command ls? If not, how is ls implemented?
View 4 Replies
View Related
Jun 1, 2011
I would like to know how to protect networks against VPN attacks? How does big industries do it? What does the government tend to use? Are any tools open source that I may get?
View 1 Replies
View Related
Mar 7, 2011
I have a partially completed interpreter that has first-calss functions and can store scopes in variables. That way it is possible to implement a simple class like this:
Code:
MyClass = func () {
value = 0;
setValue = func (x) value = x;;
[code]....
But what about inheritance, and what if I want to know the type of the object?
View 6 Replies
View Related
Sep 25, 2010
I want to implement CBQ in my RHEL5 server so that i can manage my BW.
View 4 Replies
View Related
May 19, 2010
In ubuntu 10.04 how to protect Grub Entries...?
View 3 Replies
View Related
Sep 15, 2010
I was wondering if firestarter (software firewall) works out of the box or does it need some kind of configuration in order for it to provide protection? Is firestarter even needed with ubuntu?
View 6 Replies
View Related
Oct 20, 2010
does anyone know how to password protect the USB ports so if someone were to plug something in that is USB Ubuntu would ask for root password before allowing access to the device.
View 4 Replies
View Related
Oct 31, 2010
I was just wondering if you were to get DDoSed/Dosed would ubuntu block the packets or protect you in some way?
View 1 Replies
View Related
May 27, 2011
I am relatively new to Linux, What files/Folders should be backed up and what ones are not necessary?This is my 2nd install of 11.04 because I screwed the 1st one, so Im not sure what to backup to prevent having to reinstall if I screw up again.
View 9 Replies
View Related
Jul 28, 2010
I am doing real time programming in C++, under Linux. I have two processes, let me say A and B. A process is being started periodically, every 5ms. B process is being started every 10ms. The process A is doing data processing. The process B is reading that data and displays it. I am confused about how to run periodically processes. The problem is that the period of process A should be as much as it is possible accurate (5ms). For the process B it isn't so important. I have created independent processes, each in one .cpp file, and I am starting them from bash file. Is that OK? I don't have to make child processes in order to have parallel processes?
View 1 Replies
View Related
May 6, 2010
How can I protect a pdf from from print or copy?
View 2 Replies
View Related
Nov 24, 2010
How would I ensure that whenever any user changes the password it should meet following.
1)It should be more than 7 Characters.
2)Atleast one Upper case character,digit and special character present.
3)Password is not same as username or dictionary word .
4)User should get email after changing his password(I have already setup mail account and tested the setup).
Code:
Distribution Detail
# lsb_release -a
LSB Version: :core-3.1-ia32:core-3.1-noarch:graphics-3.1-ia32:graphics-3.1-noarch
Distributor ID: EnterpriseEnterpriseServer
Description: Enterprise Linux Enterprise Linux Server release 5.2 (Carthage)
Release: 5.2
Codename: Carthage
# uname -a
Linux OFSMUW-VMGR-51 2.6.18-92.el5PAE #1 SMP Fri May 23 22:26:05 EDT 2008 i686 i686 i386 GNU/Linux
View 8 Replies
View Related
Oct 26, 2010
Does anybody know how to implement packet reordering in NS2? I would be very glad if someone provide me with appropriate tcl script or give a link.
View 3 Replies
View Related
Jul 11, 2010
i want to implement different mobility models in ns2, but i can not it
View 2 Replies
View Related
Apr 23, 2011
How can I do it in ubuntu? OpenOffice 3.2: File - Export to PDF -> Password on copy and print doesn't help. After exporting I can easily copy text from PDF file
View 10 Replies
View Related
May 20, 2010
I am facing problem on my Linux server, those runing php sites, most of the time hacker upload file in my website and take the control, and hack the sites, shoot the thousands of mail etc
View 7 Replies
View Related