Advanced Search
Search Results
39 total results found
Winrm Active Directory Diagnostics using HTTPS
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
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
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
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
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...