Techx32's Cyber Security Tipps

All i use for Security

Cyber Security Toolkit

Welcome to the Cyber Security web. This page introduces the tools and practices I use for personal security, privacy, and learning. It is meant to help you explore safe cyber hygiene, useful apps, and the mindset behind responsible hacking.

Why cybersecurity matters

Security is not only about tools. It is also about making smart choices, protecting your devices, and understanding the risks in everyday digital life.

This page focuses on practical steps you can take right now, whether you are using a phone or a laptop.

Mobile security setup

On my Samsung Galaxy A05s (rooted), I use apps that give me more control over my device and privacy. Root access lets me modify the system, but it also means I must choose secure apps carefully.

  • F-Droid: A trusted open-source app store for security tools and utilities missing from Google Play.
  • Proton VPN: Encrypts your internet traffic and hides your IP address when using public Wi-Fi.
  • Tor Browser: Routes your browsing through multiple servers for stronger anonymity and access to restricted content.
  • Termux: A terminal emulator for Android that installs Linux-style packages and runs scripts on your phone.

Using Termux safely

Termux is useful for learning command-line tools, editing HTML, and running small Python programs on your phone. It is a good place to practice, as long as you avoid unsafe downloads and keep the system updated.

Common Termux commands I use:

pkg update
pkg install python
pkg install git

Tools for desktop and laptop

On PC and laptop, I use a few trusted tools for development, research, and secure browsing.

  • Kali Linux xfce4: A security-focused Linux distro for learning and testing tools xfce4 uses less Resources for faster performance.
  • Firefox Unlocked: A browser with stronger privacy controls and fewer restrictions.
  • VS Code: My editor for writing code, HTML, and automation scripts.
  • Built-in terminal: Access to the command line for running scripts and managing packages.
  • GitHub: Source control and storage for my scripts, websites, and projects.

Install the basic environment

For a Debian-based Linux environment, start with these essential packages.

sudo apt update
sudo apt install python3 ruby php

On many Linux, macOS, and Android systems, nano is already installed by default. If it isn't present, the command above will install it, or you can use another editor like vi or code.

After installing, you can edit web files like index.html with nano or use your preferred editor.

Why should you use One of these OS's in the list

  • Kali Linux: Great for Hacking, Testing Your Software etc
  • Arch Linux: You Get More Customizing Allowence
  • Linux Mint: its Good for New Linux Users it uses xfce, Mate, And Cinnamon
  • VM Linux (aka any Linux ISO on a VM):Great if you hate Dual Boot or Don't Want to lose data
  • Tinfoilhat Linux: Use it if you care about Privacy
  • AntiX: Looks Outdated uses IceWM and has no systemd But Gets its job done
g

How to learn and practice

Learning cybersecurity is about small consistent steps. Start with understanding the tools, then build simple projects and document what you discover.

Some good beginner goals are:

  • Set up a secure browser with privacy settings.
  • Use VPN and Tor only when needed.
  • Make a basic Python or shell script.
  • Learn the meaning of commands before running them.

Safety and ethics

This page is about learning, not hacking irresponsibly. Use security tools for protection and education, not to invade other people’s systems or privacy.

Good habits include:

  • Keep your operating system and apps updated.
  • Only download software from trusted sources.
  • Respect other people’s devices and data.
  • Explore in safe environments, like your own machine or a test lab.

Next steps

R

If you want to go deeper, try adding your own notes here, testing small scripts, or exploring the tools on the Fsociety web pages. Keep the ideas simple and keep the content useful.

Tip of the Day

Loading a new cyber security tip...

Termux nano Tipps

run nano main.py then just copy this

                        import time

                        print("Hello, World!")
                        time.sleep(2)
                        print("sudo apt install opsec ahhh")
                    

Your notes are saved locally in your browser.