Skip to content

Instantly share code, notes, and snippets.

View nullx5's full-sized avatar
:octocat:
🎯 Keep Calm and Code in Python! 🐍

Blessed nullx5

:octocat:
🎯 Keep Calm and Code in Python! 🐍
View GitHub Profile

Conexion wifi por consola o linea de comandos

sudo apt install wpasuplicant

wpa_passphrase "ESSID" "PASSWORD" | sudo tee /etc/wpa_suplicant.conf

sudo wpa_suplicant -B -i wlp2s0 -c /etc/wpa_suplicant.conf

rkhunter chkrootkit y clamav

RKHunter es una herramienta útil para detectar rootkits, pero no sustituye a un antivirus o a medidas de seguridad más avanzadas. Es recomendable usarlo junto con herramientas como ClamAV, chkrootkit, y mantener el sistema actualizado.

sudo apt install rkhunter

sudo rkhunter --update
sudo rkhunter --propupd

Vault de Secretos en Linux pass

Uso personal pass (GPG) Infraestructura segura HashiCorp Vault Cloud AWS Secrets Manager, Azure Key Vault

sudo apt install pass
gpg --full-generate-key # pass_mysql:WbZH8NewfukOROHHxhr0
#si da error en la generacion de la key usar gpg-agent --daemon

Instalar dirbuster

sudo apt install default-jdk # version open source de java
java -version

git clone https://gitlab.com/kalilinux/packages/dirbuster.git

cd dirbuster

Instalar Fuentes Arial y Times New Roman en Libre Office

LibreOffice no incluye las fuentes Arial y Times New Roman por defecto, porque son fuentes propietarias de Microsoft. Sin embargo, puedes instalarlas fácilmente en tu sistema operativo.

sudo apt update && sudo apt install ttf-mscorefonts-installer

reiniciar Libre Office

Instalar GNS3 ubuntu

sudo add-apt-repository ppa:gns3/ppa
sudo apt update
sudo apt install gns3-gui gns3-server


sudo dpkg --add-architecture i386
@nullx5
nullx5 / rofi.md
Last active January 15, 2025 05:37

Instalar y configurar rofi


sudo apt install rofi 
rofi-theme-selector
fancy by DaveDavenport 
ALT + a
rofi -show drun -show-icons -b > /dev/null 2>&1
CTRL + TAB para cambiar de pestaña

Unir PDF offline con pdfunite

sudo apt install poppler-utils
cd path/

pdfunite file1.pdf file2.pdf file3.pdf file4.pdf output.pdf

Unir y cortar PDF offline con PDF Arranger

configurar QEMU interface bridge con iproute2 y discos con qemu-img


sudo apt update
sudo apt install qemu-kvm bridge-utils

# Crear el puente de red:
sudo ip link add name br0 type bridge