Whois | Mailserver-Scan | Score | Issues |
---|---|---|---|
qutic development | mail.qutic.com:25 | A+ | - |
Microsoft Outlook | eff-org.mail.protection.outlook.com:25 | A | no TLSv1.3 |
mailbox.org | mx1.mailbox.org:25 | A | TLSv1, TLSv1.1 |
Posteo | mx01.posteo.de:25 | A | TLSv |
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
#!/usr/bin/env ruby | |
require 'resolv' | |
file = ARGV[0] | |
if file.nil? || file == "" | |
puts "email-mx-check /path/to/file-with-emails-line-per-line" | |
exit | |
else | |
puts "the following domains have a missing mx-entry:" |
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
#!/usr/bin/bash | |
# You may create a crontab entry like: | |
# 0 1 * * * /usr/local/bin/rc-backup | |
# and change the following four vars: | |
_URL="rc.example.com" | |
_USR="rc-backup" | |
_PWD="<long-secure-password>" | |
_CWD="/home/jfqd/rc-backup" |
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
From 162ff8353b9cf299b8b0673f7f45d981712fbb23 Mon Sep 17 00:00:00 2001 | |
From: jfqd <[email protected]> | |
Date: Tue, 9 Aug 2022 17:13:09 +0200 | |
Subject: [PATCH] remove upgrade option | |
--- | |
client/sidebar/header/UserDropdown.tsx | 2 +- | |
client/views/admin/AdministrationRouter.tsx | 2 +- | |
client/views/admin/routes.js | 5 ----- | |
client/views/admin/sidebar/AdminSidebarPages.tsx | 4 ---- |
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 | |
echo "scale=2;$@" | tr -d "." | tr "," "." | bc | tr -d "," | tr "." "," |
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
require 'shiparound_api/rest' | |
require 'rest-client' | |
require 'openssl' | |
require 'base64' | |
require 'json' | |
require 'uri' | |
# auth_code, error = ::ShiparoundApi::AuthCode.get( | |
# password: "password", | |
# api_key: "api_key", |
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
<?php | |
const PASSWORD = '!!!!!sufficiently_long_password!!!!!'; | |
const CIPHER_METHOD = 'AES-256-CBC'; | |
function encrypt($str) { | |
$iv_length = openssl_cipher_iv_length(CIPHER_METHOD); | |
$iv = mcrypt_create_iv($iv_length, MCRYPT_RAND); | |
$str = $iv.$str; | |
$val = openssl_encrypt($str, CIPHER_METHOD, PASSWORD, 0, $iv); |
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
# install homebrew if not yet done | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# fix me! | |
IP_ADDRESS="91.123.123.123" | |
LOCAL_NET="10.168.231.0" | |
CERTNAME="name.example.com" | |
brew analytics off | |
brew install openvpn |
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
go get -d github.com/minio/mc | |
GOOS=solaris GOARCH=amd64 GO111MODULE=on go get github.com/minio/mc |
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 | |
pn=$(echo $@ | tr -d " \t\n\r" | sed "s#+49#0#") | |
curl -k -m 3 "https://user:[email protected]/adr.htm?adrnumber=${pn}" |
NewerOlder