[Quick Install] Metasploit Framework on Linux System

Script (From Rapid-7 – Metasploit’s Owner)

curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && \
chmod 755 msfinstall && \
./msfinstall

During this Summer semester at my university, I have a project in Malware Analysis, and I have to build a Linux Server with Metasploit Framework. Going around on Google for searching installing tutorial, I feel a little bit stuck.

Yes… I got stuck because of unsuccessful install and I don’t know why I failed. Luckily, while I was in the very dark time, I found the script above that could be very helpful for me… and for anyone who wants to install Metasploit Framework automatically without error. Very simple and effective.

Continue reading “[Quick Install] Metasploit Framework on Linux System”

[Quick Install] Apache and MySQL on Linux System

Script (XAMPP with PHP 7.1.4):

wget https://www.apachefriends.org/xampp-files/7.1.4/xampp-linux-x64-7.1.4-0-installer.run
sudo chmod +x xampp-linux-x64-7.1.4-0-installer.run
sudo ./xampp-linux-x64-7.1.4-0-installer.run
# Press 'Y' or 'ENTER' for every prompt
sudo ln -s /opt/lampp/lampp /usr/bin/lampp
sudo lampp start

Introduction

If you are a PHP developer, you might know about Apache Web Server and MySQL Database.
If you use Linux for developing PHP, you may know about LAMP stack.
If you own a VPS or dedicated server, you must know the way to install those things.

For many years, people spend their time on installing and configuring their LAMP Stack, and it is really pain for the newbie, who has no idea about Linux system, its bash script and other kinds of stuff. They need an easier and quick solution.

Continue reading “[Quick Install] Apache and MySQL on Linux System”