Advanced Search
Search Results
23 total results found
Linux for beginners
This is to understand Linux from Start
Try Hack Me Write-ups
Solutions to some Try Hack Me
Vulnerable Machines with solutions
Solutions for vulnerable machines
Interesting Websites
List of websites of interest
Open WebUI
Installing Open WebUI on Linux Machines
Words that teach us how to live
Kali Linux
This is for Kali Linux
Linux Advance
Docker Notes
How to use docker
How to create a docker image from a linux disto ISO
How to create a fresh linux distro from a live ISO
Try Hack Me/SimpleHelp
Write-up / THM / SimpleHelp: CVE-2024-57727 by: alfreddgreat Get the python script for POC for the vulnerability in https://github.com/imjdl/CVE-2024-57727. root@ip-10-10-65-98:~# git clone https://github.com/imjdl/CVE-2024-57727 Change directory to t...
How to make Kali a Gateway (router)
How to configure DHCP in Linux
sudo apt-get install isc-dhcp-server -y sudo vim /etc/default/isc-dhcp-server DHCPDv4_CONF=/etc/dhcp/dhcpd.confDHCPDv4_PID=/var/run/dhcpd.pidINTERFACESv4="eth0" sudo vim /etc/dhcp/dhcpd.conf option routers IP_KALI;option domain-name "kali.test";option doma...
VMware Workstation Pro FREE !!!
VMware Workstation Pro: Now Available Free for Personal Use Follow the link:
Try Hack Me/Mouse Trap
Try Hack Me / Mouse Trap by: alfreddgreat root@ip-10-10-123-135:~# nmap -sS -sC -sV 10.10.162.0 root@ip-10-10-123-135:~# nmap -sS -sC -sV -O 10.10.162.0 Starting Nmap 7.80 ( https://nmap.org ) at 2025-03-30 22:19 BST Nmap scan report for 10.10...
Installing Open WebUI 5.20 on Ubuntu 22.04
Install Ubuntu 24.04. (Note to have sufficient storage for the models) Update the ubuntu system to ensure all are up to date before installig the open-webui sudo apt update -y && sudo apt upgrade -y Install the Ollama 1. Download the installation scrip...
Try Hack Me/Billing
Write-up / THM / Billing by: Start the Virtual Machine Run an nmap scan to the VM machine From the nmap scan: nmap -sS -sC -sV IP_THM_VM_machine Ports 22, 80, and 3306 are open VM machine is a Debian Linux Connect to port 80 using a web browser ...
Very touching words
A salary is a drug your employer gives you to forget your dream. You lost 99% of your friends when you start upgrading your life.
Bandit
Bandit Level 0 ssh -p2220 bandit0@bandit.labs.overthewire.org password of bandit0 - bandit0 Bandit Level 0 - Level 1 $ ssh -p2220 bandit0@bandit.labs.overthewire.org bandit0@bandit:~$ cat /home/bandit0/readme bandit0@bandit:~$ cat /home/bandit0/r...
Try Hack Me/Brains
Write-up / THM / Brains by: alfreddgreat Start the Virtual Machine Run an nmap scan to the VM machine From the nmap scan: nmap -sS -sC -sV IP_THM_VM_machine Ports 22, 80, and 50000 are open VM machine is an Ubuntu Linux Connect to port 80 u...
Upgrading Kali from previous version to Version 2025.3
Problems When running the apt update or apt upgrade in Kali to the latest version the following error asppears. To resolve this issue we can perform the following: Get the current version of the OS with the following command. cat /etc/os-release 1. Do...
How to run all the commands in /bin and /usr/bin if the /lib has been moved accidentally
Scenario: The /lib has been moved to /lib.old If this has been done, all the commands like mv, ls and all that are in /bin and /usr/bin will not work since the /lib is needed To resolve this and move back the /lib.old to /lib perform the following. export ...
Creating a docker image from a live ISO
Download Live ISO, example Example: debian ISO: debian-live-13.1.0-amd64-standard.iso https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/ Make a directory to mount the ISO sudo mkdir /media/iso Mount the ISO to the /media/iso sudo moun...