Skip to content

Instantly share code, notes, and snippets.

View amanjuman's full-sized avatar
😉
Ill

Aman Juman amanjuman

😉
Ill
View GitHub Profile
@amanjuman
amanjuman / UrBackup.conf
Last active April 30, 2024 11:08
UrBackup Nginx Configuration
server
{
# Listen
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
# Server Name and Alias
server_name urbackup.example.com;
@amanjuman
amanjuman / import.sh
Last active April 30, 2023 01:10
MailCow Import Multiple Mailbox from CSV File
#!/bin/bash
# Set the API endpoint URL and key
ENDPOINT="https://mcow.domain.tld/api/v1/add/mailbox"
API_KEY="XXX-YYY"
# Read the CSV file line by line and create mailbox users
while IFS=',' read -r from_name from_email user_name password; do
# Extract the domain from the user_name field
domain=$(echo "$user_name" | awk -F'@' '{print $2}')
@amanjuman
amanjuman / add_domains.sh
Created April 28, 2023 21:29
MailCow Add Multiple Domain from a text file using API
#!/bin/bash
# Set your Mailcow API key and endpoint
api_key="xxx-xxx-xxxx"
api_endpoint="https://mcow.example.ltd/api/v1/add/domain"
# Set default domain values
aliases="400"
mailboxes="100"
defquota="1024"
@amanjuman
amanjuman / wg0.conf.md
Created March 28, 2023 20:14
WireGuard Port Forwarding to Connected Peer

TCP Forwarding Only

PostUp = iptables -A FORWARD -i %i -j ACCEPT; iptables -t nat -A POSTROUTING -o ens32 -j MASQUERADE; iptables -t nat -A PREROUTING -i ens32 -p tcp --match multiport --dports 1024:65535 -j DNAT --to-destination 10.0.0.10
PostDown = iptables -D FORWARD -i %i -j ACCEPT; iptables -t nat -D POSTROUTING -o ens32 -j MASQUERADE; iptables -t nat -D PREROUTING -i ens32 -p tcp --match multiport --dports 1024:65535 -j DNAT --to-destination 10.0.0.10

TCP & UDP Forwarding

PostUp = iptables -A FORWARD -i %i -j ACCEPT; iptables -t nat -A POSTROUTING -o ens32 -j MASQUERADE; iptables -t nat -A PREROUTING -i ens32 -p tcp -m multiport --dports 1024:65535 -j DNAT --to-destination 10.0.0.10; iptables -t nat -A PREROUTING -i ens32 -p udp -m multiport --dports 1024:65535 -j DNAT --to-destination 10.0.0.10
PostDown = iptables -D FORWARD -i %i -j ACCEPT; iptables -t nat -D POSTROUTING -o ens32 -j MASQUERADE; iptables -t nat -D PREROUTING -i ens32 -p tcp -m multiport --dports 1024:65535 -j DNAT --
@amanjuman
amanjuman / export_cloudflare_dns_zones.md
Created March 26, 2023 18:29
Export all CloudFlare DNS Zone IDs and Domain names in a CSV
#!/bin/bash

# Set CloudFlare API credentials
CF_API_EMAIL="YOUR_CLOUDFLARE_EMAIL"
CF_API_KEY="YOUR_CLOUDFLARE_API_KEY"

# Set output file name
OUTPUT_FILE="cloudflare_dns_zones.csv"
@amanjuman
amanjuman / delete_dns_records.md
Last active May 7, 2024 06:16
Remove all DNS records for a DNS Zone in CloudFlare using bash script

Before you start, make sure you have the following information:

CloudFlare API key DNS Zone ID

API should have Zone Read, Write permission.

#!/bin/bash
@amanjuman
amanjuman / create_dns_record.md
Last active March 26, 2023 18:23
Create a DNS record for multiple DNS zones in CloudFlare

Before you start, make sure you have the following information:

CloudFlare API key CloudFlare account email DNS Zone ID DNS record details (e.g. name, type, content, TTL) bash

#!/bin/bash
@amanjuman
amanjuman / Service KMS
Created March 19, 2023 10:22 — forked from judero01col/Service KMS
Volume License Activation Key Service - KMS
## Find Available Target Editions
DISM.exe /Online /Get-TargetEditions
## Convert Server Standard 2019 Evaluation to Server Standard 2019
DISM /online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula
## How To Activate
slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
slmgr /skms [server]:[port]
slmgr /ato
@amanjuman
amanjuman / cloudflare-dns-purge.js
Created January 12, 2023 08:01
Cloudflare delete all DNS records from web panel
// paste all of this in your browser developer console
deleteAllRecords();
async function deleteAllRecords() {
let e;
filterEditButtons().forEach((e) => e.click());
while (e = filterDeleteButtons()[0]) {
e.click();
await confirmDelete();
@amanjuman
amanjuman / apt-key and add-apt-repository Deprecation Using gpg
Created December 20, 2022 06:16
apt-key and add-apt-repository Deprecation Using gpg
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/docker-ce-archive-keyring.gpg > /dev/null
OR
apt-key list
sudo apt-key --keyring /etc/apt/trusted.gpg.d/mariadb.gpg adv --no-default-keyring --keyserver keyserver.ubuntu.com --recv F1656F24C74CD1D8
sudo chmod 644 /etc/apt/trusted.gpg.d/mariadb.gpg