Mac svn finder
Here’s a tool that integrates svn in to your finder SCPlugin allows access to Subversion commands from the Mac OS X Finder Below are some screen captures of the SCPlugin code. Click any image for a full-size version.…
Here’s a tool that integrates svn in to your finder SCPlugin allows access to Subversion commands from the Mac OS X Finder Below are some screen captures of the SCPlugin code. Click any image for a full-size version.…
Here’s the fix CentOS 4 X86_64 rpm -Uvh rpm -Uvh rpm -Uvh rpm -Uvh rpm -Uvh rpm -Uvh rpm -Uvh rpm -Uvh rpm -Uvh rpm -Uvh rpm -Uvh …
Download files wget wget Check the MD5 or SAH1 to make sure they are legit (Don’t skip!!) md5sum ossec-hids-latest.tar.gz cat ossec-hids-latest_sum.txt Extract the files from the tar tar zxvf ossec-hids-latest.tar.gz Cd into the directory and run the…
This is a quick tutorial on how to install the OSSEC web interface on Ubuntu (covers 8.04 and 8.10): Installing Apache root@home:/# cd /tmp root@home:/tmp# apt-get install apache2 libapache2-mod-php5 # said yes to all required packages root@home:/tmp# restart Downloading…
How do you check your website for vulnerabilities for free? Check out these sites that provide free vulnerability scans:
The web has finally given rise to “instant meetings” which are basically free screen sharing collaboration web based applications. Two popular sites in this category include Mikogo and Join.Me. They both offer additional features for a paid price. …
to fix this error: fseek() expects parameter 3 to be long os_lib_alerts.php SEEK_SET Line 842 in os_lib_alerts.php Reads: fseek($fp, $seek_place, “SEEK_SET”); It should actually be: fseek($fp, $seek_place, SEEK_SET);
A ssh port forwarding example would be to map a remote host’s 3306 port to your local machines 3306 port over ssh. Remote Host: 192.168.0.1 Your Host: localhost To port forward a mysql connection on a remote host to your…
You can Tar + gzip on the fly in linux # tar cvf – somedir | gzip -c > somedir.tar.gz
To recursively delete all .svn folders below a given path follow these instructions: Linux Run this command: #rm -rf `find . -type d -name .svn` Or: # find . -type d -name .svn | xargs rm Windows 1. Open up…