Skip to content

Instantly share code, notes, and snippets.

@0xCR0NW0L7
0xCR0NW0L7 / DVWA_AutoInstall.sh
Created June 3, 2025 14:49
Automated Installation of DVWA Lab in Linux
#!/bin/bash
# Check if the script is running with root privileges
if [ "$EUID" -ne 0 ]; then
echo "Please run this script as root."
exit 1
fi
sudo apt update
sudo apt install -y apache2 mariadb-server mariadb-client php php-mysqli php-gd libapache2-mod-php
@0xCR0NW0L7
0xCR0NW0L7 / Linux_Pre_Install.sh
Created June 3, 2025 14:48
Pre Install Software for Linux
#!/bin/bash
# Date: 14th Sep 2023
# Author: Michael Gomes
# Use: Script to download required softwares in Linux OS
# Update System
sudo apt-get update -y
# install all nesscery cli applications
sudo apt install -y pluma htop gufw ufw timeshift git net-tools nmap
@0xCR0NW0L7
0xCR0NW0L7 / github_setup_LINUX.md
Created June 3, 2025 14:47
Setup GIT & GITHUB for LINUX System

1. Install Git

First, make sure Git is installed on your Linux machine.

For Debian/Ubuntu-based distributions:

sudo apt update
sudo apt install git
@0xCR0NW0L7
0xCR0NW0L7 / github_setup_win.md
Created June 3, 2025 14:46
Setup GIT & GITHUB for WINDOWS System

1. Install Git

Download and install Git for Windows from the official website: Git for Windows

During installation, you can use the default settings, but make sure to select "Use Git from the Windows Command Prompt" to make Git commands available in the Command Prompt.

2. Configure Git

After installing Git, open Git Bash (or Command Prompt) and configure it with your GitHub account details.