Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Web application created to introduce beginners to cybersecurity and the OWASP Top 10

NotificationsYou must be signed in to change notification settings

Flinders-Cybersecurity-Society/Hack-Me-Lightbulb

Repository files navigation

Created by:

Table of Contents

Tech Used

Production Install Guide

This guide will take you through setting up a web server to host a production ready version of the hack me light bulb demo.

Some things you'll need to have setup / access to will be:

  • A cloud provider account (This guide uses Oracle Cloud)
    • Even though this won't cost any money, be prepared to enter a debit/credit card for verification
  • Access to a Domain Name and ability to access DNS Configuration

Creating the Web Server

  1. Within your cloud provider, create an web instance

Alt textAlt text

  1. Select Ubuntu as the guide-files/image (22.04 is supported by security updates until April 2032)

Alt text

  1. (optional) For a free service with Oracle Cloud, change the shape to a Virtual Machine with Ampere Processor

Alt text

  1. Select CPUs & RAM (2022 - 2023 Server had 1 OCPU and 6GB of RAM)

Alt text

  1. Download both Private and Public SSH Keys (this will be used later for connecting to the server, DONT LOOSE THESE FILES)

Alt text

  1. Create Instance (rest of the default settings are fine, we want a public IP address)

  2. Wait for instance to start

Alt text

Logging into the Web Server & Installing Required Software

  1. Open up a terminal and with the IP address and username from the cloud provider
ssh username@IPADDRESS -i "PRIVATEKEYLOCATION.key"

Alt text

  1. Update the instance (updates everything and automatically says yes to all recommended updates)
sudo apt update && sudo apt upgrade -y
  • sometimes a restart is required, type inreboot to restart
  1. Install Apache2
sudo apt install apache2
  1. View Firewall rules and allow apache through the firewall
sudo ufw app listsudo ufw app info "Apache Full"sudo ufw allow "Apache Full"sudo ufw enable
  1. Reboot Instance
sudo reboot
  1. Wait a few mins for instance to start again
  2. Try going to the IP address in the web browser (HTTP ONLY)Alt text
  • you should see a page as show above
  • don't proceed if you dont get this page
  • could be problems with the firewall, apache2 not being installed correctly, firewall rules on the cloud provider
  1. Install MySQL and start setup
sudo apt install mysql-serversudo mysql_secure_installation
  1. Go through the process of setting up MySQL, most questions are security based and different levels of security can be setup

  2. Set a secure MySQL password that you can save and use later

  3. Once setup finished, runsudo mysql and something like this should appear:

Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 5Server version: 5.7.34-0ubuntu0.18.04.1 (Ubuntu)Copyright (c) 2000, 2021, Oracle and/or its affiliates.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>
  1. Typeexit to exit

  2. Install PHP

sudo apt install php libapache2-mod-php php-mysql
  1. Changing Apache’s Directory Index
  • you'll want to move index.php to the first entry in the line (see below)
<IfModule mod_dir.c>    DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm</IfModule>
sudo nano /etc/apache2/mods-enabled/dir.conf
  1. Restart Apache
sudo systemctl restart apache2

Adding a Domain Name and SSL/HTTPS Setup

  1. Add DNS Record to DNS Provider
  • We use cloudflare
  • Login and select flinderscybersociety.org
  • add A record using the config options below

Alt text

  1. Check if going to the domain makes you go to the webserver eg:beta-oweek.flinderscybersociety.org

  2. Get SSL Setup using certbot

sudo apt updatesudo apt install snapdsudo snap install --classic certbotsudo ln -s /snap/bin/certbot /usr/bin/certbotsudo certbot --apache
  1. Fill out the questions cert bot asks, pretty easy. If any issues restart withsudo certbot --apache

Alt text

  1. Go to website and check that it has redirected to https:// and that we have the lock icon in the browser

Alt text

Moving Web Files onto the server

  1. Move into the web directory on the servercd /var/www/html

  2. Remove all files in this foldersudo rm *

    • MAKE SURE THAT YOU ARE IN THE FOLDER AS LISTED ABOVE
  3. Go tohttps://github.com/Flinders-Cybersecurity-Society/Hack-Me-Lightbulb/releases and right click the release.zip file and copy the link

  4. cd to move back to the home directory

  5. Runwget https://github.com/Flinders-Cybersecurity-Society/Hack-Me-Lightbulb/releases/download/releases/release.zip (with the copied link)

  6. Install unzip, extract the file and move to web servers directory

sudo apt-get install unzipunzip release.zipsudo mv src/* /var/www/html/

Development Guide

About

Web application created to introduce beginners to cybersecurity and the OWASP Top 10

Topics

Resources

Stars

Watchers

Forks

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp