How to Install Mariadb + Phpmyadmin With Docker-Compose  [draft]

How to install mariadb + phpmyadmin with docker-compose Running web applications, such as Django , requires the use of a database management system. While many Django tutorials recommend using PostgreSQL , I have found that using the combination of MariaDB and phpMyAdmin is very user-friendly for managing your database. Although there are many tutorials available, some of them are outdated. Therefore, I have put together a quick guide to help you get started....

March 24, 2023 · Marcin M

Msf6  [draft]

Using Metasploit to scan a target for vulnerabilities: # db_nmap -v --script vuln 192.168.0.184 Good luck!! with hunting. Useful links:

December 1, 2022 · Marcin M

Nmap  [draft]

We perform a quick port scan using the nmap command as follows: nmap 64.226.97.50 The result of the scan shows that port 22 is open: PORT STATE SERVICE 22/tcp open ssh To determine what is running on port 22, we use the -sV option to enable version detection: nmap -p 22 -sV 64.226.97.50 The output of this command shows that the service running on port 22 is OpenSSH version 8.9p1 on an Ubuntu Linux system:...

December 1, 2022 · Marcin M

Ansible setup  [draft]

This guide explains how to install Ansible using Python 3 and PIP. It covers checking for Python 3, installing Ansible with PIP, and providing shell scripts for automation. It also includes an introduction to Ansible and a brief conclusion. [comment]: [//]: # We can check which version of Python3 is installed on our system by running the command: which python3 To check the version of Ansible installed on our system, we can run:...

September 24, 2022 · Marcin M

Nohup With Busybox httpd

Nohup With Busybox httpd Nohup is a command that allows you to run another command in the background, even after you log out of the terminal. It is often used to run long-running processes without being interrupted by a terminal session ending. Example Usage nohup busybox httpd -f -p 8080 & This command starts a simple HTTP server using BusyBox’s httpd command, serving files from the current directory on port 8080....

September 4, 2022 · Marcin M