Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

20 total results found

Installing Open WebUI 5.20 on Ubuntu 22.04

Open WebUI

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

Try Hack Me Write-ups

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

Words that teach us how to live

 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

Linux for beginners

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

Try Hack Me Write-ups

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

Kali Linux

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...

/lib has been moved accidentally

Linux Advance

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 ...

Creating a docker image from a live ISO

Docker Notes How to create a docker image from a lin...

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...

Intro

System Center Operations Manager (SCOM)...

Concepto y funciones de Microsoft SCOM Historia y evolución de software Componentes clave de SCOM Ventajas de utilizar el SCO en la superisión TI Flujo de rabajo básico en SCOM ...

Concepto y funciones de Microsoft SCOM

System Center Operations Manager (SCOM)...

Microsoft SCOM (System Center Operations Manager) es una solución de administración de infraestructura de TI desarrollada por Microsoft. Está diseñada para monitorear y administrar el estado, el rendimiento y la disponibilidad de sistemas, servicios y ...

How to Add the SAN to the Certificate Request

Certificates

    certutil -setreg policy\EditFlags +EDITF_ATTRIBUTESUBJECTALTNAME2 net stop certsvc & net start certsvc   1. Using certreq.exe with a Configuration File This method involves creating an .inf file to define the certificate request details. Steps: ...

Test WinRM Connectivity on both HTTP (5985) and HTTPS (5986)

Winrm

Script to test: winrm_ad-test.py #!/usr/bin/env python3 """ WinRM Connectivity Tester and Active Directory Query Tool ========================================================== This script tests connectivity to a Windows Server via WinRM on both HTTP (...

How to enable winrm in windows

Winrm

Part 1 — Enable WinRM on HTTP (port 5985) This is the easy part. Run PowerShell as Administrator on the Windows Server: powershell # One-shot configuration: starts the service, sets it to auto-start, # creates the HTTP listener on...

Winrm Acrtive Directory Enumeration

Winrm

winrm_ad_enum.py #!/usr/bin/env python3 """ WinRM Active Directory Object Enumerator (HTTPS-only) ====================================================== Connects to a Windows Domain Controller over WinRM/HTTPS (port 5986) and retrieves ALL user and com...

Winrm Active Directory Enumeration using HTTP (5985)

Winrm

winrm_ad_enum-py #!/usr/bin/env python3 """ WinRM Active Directory Object Enumerator (HTTP-only, port 5985) ================================================================ Connects to a Windows Domain Controller over WinRM/HTTP (port 5985) and retriev...

Winrm Active Directory Diagnostics using HTTPS

Winrm

winrm_https_diag.py #!/usr/bin/env python3 """ WinRM/HTTPS diagnostic — run this when winrm_ad_enum.py returns nothing. Tests each layer separately and prints raw output at every step: 1. TCP reachability on 5986 2. TLS handshake + cert details...

Enable winrm on windows server

Winrm

Fix: Enable WinRM on the Windows Server You need to run these commands on the Windows Server itself (192.168.10.5), in PowerShell as Administrator: Quick path — enable HTTP listener on 5985 powershell ...

Postgres Database Manager

Postgres Database

This is a script to manage the postgres database. pgmanager.py #!/usr/bin/env python3 """ PostgreSQL Interactive CLI Manager ---------------------------------- A menu-driven tool to manage PostgreSQL databases, users, and transactions. Requirements: ...

Install ppostgress in Debian and Ubuntu Linux

Postgres Database

On Linux, after a fresh install (apt install postgresql, dnf install postgresql-server, etc.): Default user: postgres — both as a Linux system user and as the PostgreSQL superuser role. Default password: none. There is no preset password. ...

How to change the password of the user postgres

Postgres Database

Method 1: Using psql (most common) Connect to PostgreSQL and run: sql ALTER USER postgres WITH PASSWORD 'new_password_here'; Or for any other user: sql ALTER USER username WITH PASSWORD 'new_password_he...