diff options
author | Andrea Villa <andreakarimodm@gmail.com> | 2013-02-17 12:35:10 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-02-22 22:27:43 -0600 |
commit | c9b228669fc4c8246b598c42011203bc064ad6c6 (patch) | |
tree | 2c37281d89e4d3674d25a4421ec0795583dad324 /network/metasploit/README.SLACKWARE | |
parent | 7ef84b5770dd3ef408e53342e04849202a14af88 (diff) | |
download | slackbuilds-c9b228669fc4c8246b598c42011203bc064ad6c6.tar.gz |
network/metasploit: Added (The Metasploit Framework)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/metasploit/README.SLACKWARE')
-rw-r--r-- | network/metasploit/README.SLACKWARE | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/network/metasploit/README.SLACKWARE b/network/metasploit/README.SLACKWARE new file mode 100644 index 0000000000..7e4396e081 --- /dev/null +++ b/network/metasploit/README.SLACKWARE @@ -0,0 +1,34 @@ +Please run the SlackBuild script as root user. + +You will need "postgres" user and group before running the installer, if you +haven't installed SlackBuilds PostgreSQL you should run these commands to be +compatible: + + # groupadd -g 209 postgres + # useradd -u 209 -g 209 -d /var/lib/pgsql postgres + +otherwise, you're already setup. Also, remember to add something like: + + # Start Metasploit Framework PostgreSQL + if [ -x /etc/rc.d/rc.metasploit ]; then + /etc/rc.d/rc.metasploit start + fi + +to /etc/rc.d/rc.local to start the shipped PostgreSQL daemon and something +like: + + # Stop Metasploit Framework PostgreSQL + if [ -x /etc/rc.d/rc.metasploit ]; then + /etc/rc.d/rc.metasploit stop + fi + +to /etc/rc.d/rc.local_shutdown to stop the service. +Default database server listening port is 7175, if you want to use another +port, just export the PG_PORT variable when running the SlackBuild, like this: + + # PG_PORT="5454" ./metasploit.SalckBuild + +An optional cron script to keep the framework up to date is distributed inside +the /usr/doc/metasploit-${VERSION} directory and it's called "msfupdate.sh", +there also is a logrotate config file called "msfupdate.logrotate" which can +be useful. |