RSSAmplifier

Blog

Matthew Hard

Matthew Hard

matthewhard.comRSS feed ↗20 posts

Latest posts

🐍 How to Set Up a Python Virtual Environment (venv) on Windows, MacOS, and Linux (For Absolute Beginners)

Goal: After this, you’ll know how to create an isolated space on your computer to safely install Python packages — without breaking your system. ➡️ What’s a Virtual Environment? Setting up a virtual environment might sound fancy, but it’s just a way...

Enhance Your Online Security with Hardware Keys | Protect Against Cyber Threats

The use of hardware keys like the Yubikey or Google Titan could potentially prevent hundreds of thousands to millions of attacks per day globally. Every day we become more and more dependent on the digital world and because of this, ensuring the secu...

Resolving Windows Recovery Environment Issues: reagentc

The Windows Recovery Environment (WinRE) is a crucial Windows operating system tool, providing essential tools for troubleshooting and system recovery. However, users may encounter situations where WinRE becomes disabled or missing, leading to errors...

Networking Fundamentals: Subnetting

Subnetting involves dividing a network into more manageable sub-networks. Within IPv4 addressing, an IP address comprises four octets, each containing eight bits, culminating in a total of thirty-two bits. These octets are expressed in decimal format...

Powerful OSINT Tools to Help Gather Critical Information Fast

Getting the most out of Open Source Intelligence (OSINT) often boils down to picking the right tools. I've put together a list of powerful OSINT tools that have proven to be super handy for speeding up your information-gathering tasks and making them...

Gobuster Cheat Sheet

Syntax: gobuster [Mode] [URL] [Wordlist] Example: gobuster dir -u http://example.com -w wordlist.txt Options/Flags: dir: Directory brute-force mode dns: DNS subdomain brute-force mode -u: Target URL -w: Wordlist for directory and file names -t...

Hydra Cheat Sheet

Syntax: hydra -l [Username] -P [Password File] [Target] [Service] [Options] Example: hydra -l admin -P passwords.txt 192.168.1.1 ssh Options/Flags: -l: Username to test -P: Password file -s: Service (e.g., ssh, http) -V: Show login attempts -t...

Nikto Cheat Sheet

If you are looking for a more in-depth article about the usage of Nikto, see my blog about Nikto usage. Click Here Syntax: nikto -h [Target] [Options] Example: nikto -h http://example.com Options/Flags: -h: Target URL or IP address -id: Host aut...

Cybersecurity: Port Scanning with Nmap

So, I just wrote an article about how super awesome RustScan is, and I thought I would provide some usage for Nmap. Nmap is still my go-to tool, and I use it by default. But you see, if you know me, you know I'm not content with just one tool in my a...

Cybersecurity: Port Scanning with RustScan

You know, in the realm of network reconnaissance and scanning, finding the right tool can be a game-changer, especially when versatility is a must. Now, my trusty companion in the world of network scanning has always been good ol' Nmap. It's reliable...

Web Vulnerability Scanning with Nikto: A Quick and Dirty Guide

In the chaotic landscape of digital security, tools are like stars in the sky. Choosing the best tool is something only you can decide. Having said that, I would like to present one for consideration: Nikto. If you're looking for a versatile web vuln...

Protecting Your Data: What to Do When a Breach Happens

If there's one thing we all need to be on guard about these days, it's data breaches. And if you think, 'I don't need to worry about those; I have a super-secret password!' Well, you could be right, but you could also be wrong. I'm going to use the w...

Learn Docker: Quick and Dirty

Docker has revolutionized the way we deploy and manage applications. It's a powerful tool for containerization, allowing you to package and run applications and their dependencies in isolated environments called containers. If you're new to Docker an...

Hacking WIFI is too easy!

Wireless networks have become ubiquitous in our daily lives. They provide us with access to the internet and connect us to the world. However, as convenient as they are, Wi-Fi networks come with a certain amount of risks. Unauthorized access to these...

Windows Sandbox: Safeguarding Your System from Malicious Software and Threats

As a cybersecurity specialist, ensuring maximum safety when handling sketchy computer-related tasks is super important. It has never been easier thanks to Windows Sandbox’s distinct ability to provide a secure isolation environment within your device...

Exploring God Mode in Windows

Unleash the hidden potential of your Windows operating system with God Mode. This intriguing feature provides a centralized control panel with an extensive array of configuration options, offering users unprecedented control over their Windows experi...

Gmail Aliases: Unlocking the Secret to Inbox Organization and Control

I found a lot of really cool features while digging around in various online services, but one that I discovered in Gmail is particularly awesome. Ever wondered shady website you signed up for sold your email address and who you should be angry with?...

Understanding SPAM, SPIM, and SPIT: Protecting Against Unwanted Intrusions

In today's digital age, spam has become an unavoidable annoyance for internet users. Unwanted advertisements and unsolicited emails flood our inboxes, resembling the door-to-door salesmen of the internet. However, spam isn't limited to emails alone. ...

Windows Subsystem for Linux (WSL): Bridging the Gap Between Windows and Linux

In recent years, Windows Subsystem for Linux (WSL) has emerged as a powerful tool that allows Windows users to harness the capabilities of Linux right on their Windows machines. Whether you're a developer, system administrator, or an enthusiast, WSL ...

Linux for Beginners: Using grep

I am attempting to cover all of the tools that are built into the Linux operating system when you install it. However, I am also including popular or useful tools. If you haven't used grep, you will immediately see what makes it a useful and remarkab...