Files
metasploit-gs/Using-Metasploit.md
T

23 lines
912 B
Markdown
Raw Normal View History

2012-03-27 11:41:48 -07:00
Start here:
2012-03-27 11:44:23 -07:00
2012-03-27 11:41:48 -07:00
* http://www.offensive-security.com/metasploit-unleashed/Main_Page
2019-01-08 12:54:48 -06:00
* https://metasploit.help.rapid7.com/docs/
2019-01-08 13:06:43 -06:00
* http://docs.kali.org/general-use/starting-metasploit-framework-in-kali
2019-01-08 13:01:22 -06:00
* https://github.com/rapid7/metasploitable3
2012-05-15 11:43:20 -07:00
* [[Evading Anti-Virus]]
Database troubleshooting
------------------------
If the database is not connecting automatically, first make sure it is running:
* Linux:`$ netstat -lnt | grep 7337` where 7337 is whatever port you told it to listen on during installation
* Windows: look for a postgres.exe process in task manager.
If postgres is not running, try starting it manually:
* Linux:`$ sudo /etc/init.d/metasploit start` or if you didn't choose to install as a service: `$ sudo /opt/metasploit*/ctlscript.sh start`
* Windows: Start -> Metasploit -> Services -> Start Services
Once postgres is running and listening, go back to msfconsole:
````
msf > db_connect
2017-02-24 14:26:55 -06:00
```