-
Install inkscape
sudo apt install -y inkscape
-
Convert svg to png (with 1000x1000 size)
inkscape -z -o out.png -w 1000 -h 1000 in.svg
-
Put this in .bashrc and source it
alias slackmessage='curl -XPOST -H "Content-Type: application/json" https://hooks.slack.com/services/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -d @-'
-
To send a message
echo '{"text": "fart"}' | slackmessage
-
To send a message with variables
echo "{'text': '$HOST'}" | slackmessage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
backend "http" { | |
address = "https://gitlab.xxx.xxx/api/v4/projects/xxx/terraform/state/xxx" | |
lock_address = "https://gitlab.xxx.xxx/api/v4/projects/xxx/terraform/state/xxx/lock" | |
lock_method = "POST" | |
password = "xxx" | |
retry_max = null | |
retry_wait_max = null | |
retry_wait_min = 5 | |
skip_cert_verification = true |
- Run spoof attack python3 espoofer.py -m m -helo attack.com -mfrom [email protected] -rcptto [email protected] -data raw_msg_here -ip 127.0.0.1 -port 25
./minikube start --driver=qemu2
-
Install repository
shell: curl -s https://packagecloud.io/install/repositories/akopytov/sysbench/script.deb.sh | sudo bash
-
Install package
apt install sysbench -y
-
Create needed test database
mysql -e "create database sbtest;"
-
Grant privileges
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#https://docs.centreon.com/docs/installation/installation-of-a-central-server/using-packages/ | |
apt update && apt install lsb-release ca-certificates apt-transport-https software-properties-common wget gnupg2 | |
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/sury-php.listwget -O- https://packages.sury.org/php/apt.gpg | gpg --dearmor | tee /etc/apt/trusted.gpg.d/php.gpg > /dev/null 2>&1 | |
apt update | |
curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | sudo bash -s -- --os-type=debian --os-version=11 --mariadb-server-version="mariadb-10.5" | |
echo "deb https://apt.centreon.com/repository/22.10/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/centreon.list | |
wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /etc/apt/trusted.gpg.d/centreon.gpg > /dev/null 2>&1 | |
apt update | |
apt install -y centreon |