Follow the post OpenVPN Server [Link] and create a user for the pfSense as a client of the VPN. ADD […]
Local SPAN and Remote SPAN on Cisco Devices
SPAN (Switch Port Analyzer) is a functionality that mirrors one or more ports or VLANs into another port to be monitored […]
Spanning Tree Protocol (STP) on Cisco Devices
Types: STP Standard PVST+ (STP per VLAN – by Cisco) RSTP (STP faster) Rapid PVST+ (RSTP per VLAN – by […]
Managing MySQL and MariaDB in the Command Line (CLI)
MySQL and MariaDB are both free open-source Relational Databases. In fact, MariaDB is a fork of MySQL by original developers […]
Full Mail Server on Ubuntu 20.04 using iRedMail
iRedMail is a script that performs a huge amount of tasks and set up all sorts of services and applications […]
Metasploit + Meterpreter Cheat Sheet
Metasploit Cheat Sheet service postgresql start msfdb init msfconsole -q db_status db_nmap -sn […] / db_nmap -T4 -A -v […] […]
Reviewing Kali Tools
Categories Information Gathering Vulnerability Analysis Exploitation Tools Wireless Attacks Forensics Tools Web Applications Stress Testing Sniffing & Spoofing Password Attacks […]
Using Python with MySQL
MYSQL DATABASE WITH PYTHON Installing requirements: sudo apt update sudo apt install python3-pip sudo pip3 install mysql-connector Test importing MySQL […]
Responsive Web Design Tips
BASIC PAGE LAYOUT 1 <!DOCTYPE html> <html> <head> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <style> * { box-sizing: border-box; } .menu { […]
Cascading Style Sheets (CSS) Cheat Sheet
INLINE STYLE <h2 style=”color: red”>Header Text</h2> EMBED STYLE IN HTML <style> h2 { color: red; } </style> LINK STYLE TO […]