Sklepmistr (20)

Sklepmistr

Hashcat

Usage: hashcat [options]... hash|hashfile|hccapxfile [dictionary|mask|directory]... - [ Options ] - Options Short / Long | Type | Description | Example ================================+======+======================================================+======================= -m, --hash-type | Num | Hash-type, references below (otherwise autodetect) | -m 1000 -a, --attack-mode | Num | Attack-mode, see references below | -a…

Continue reading...
Sklepmistr

Reverse-engineering firmware

************************************************** Reverse-engineering firmware ************************************************** https://kavigihan.medium.com/iot-hacking-reversing-a-router-firmware-df6e06cc0dc9 1) Check the device and download firmware 2) Analyze file # file <file.bin> // uses headers (if present) to identify what type of file it is 3) Check inside As you can see, right off the bat it tells us…

Continue reading...
Sklepmistr

Wi-fi attacks

sudo airmon-ng //open sudo airmon-ng check kill // ends processes blocking capture mode sudo airmon-ng start [interface] //enable monitoring - sudo airmon-ng start rtw_8822bu sudo airmon-ng stop sudo airodump-ng [interface] //start monitoring nearby wifi on interfaces sudo airodump-ng wlan1 --band a //5g newtorks only //…

Continue reading...
Sklepmistr

MC Server MGMT

MC SERVER INSTALLATION sudo add-apt-repository ppa:openjdk-r/ppa sudo apt update sudo apt install openjdk-17-jre-headless sudo apt install screen sudo ufw allow 25565 java -Xms1024M -Xmx1024M -jar <server.jar> nogui // xms4G - specify starting ram (can use M for Mb and G for Gb); Xmx4G - maximum…

Continue reading...
Sklepmistr

Zabbix

RASPBERRY PI (Bookworm) INSTALLATION Install Zabbix repository # wget https://repo.zabbix.com/zabbix/7.0/raspbian/pool/main/z/zabbix-release/zabbix-release_7.0-1+debian12_all.deb # dpkg -i zabbix-release_7.0-1+debian12_all.deb # apt update Install Zabbix server, frontend, agent # apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent Make sure you have database server up and running. Run the following on your database…

Continue reading...