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 |
View 0001-remove-upgrade-option.v4.6.4.patch
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 <jfqd@blun.org> | |
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 ---- |
View immuniweb_mx_scans.md
View calc
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 "." "," |
View auth_code.rb
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", |
View sample.php
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); |
View install_openvpn.bash
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 |
View build_minio_client_on_SmartOS
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 |
View dial
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:password@10.10.10.10/adr.htm?adrnumber=${pn}" |
View disable.sh
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 | |
# IMPORTANT: Don't forget to logout from your Apple ID in the settings before running it! | |
# IMPORTANT: You will need to run this script from Recovery. In fact, macOS Catalina brings read-only filesystem which prevent this script from working from the main OS. | |
# This script needs to be run from the volume you wish to use. | |
# E.g. run it like this: cd /Volumes/Macintosh\ HD && sh /Volumes/Macintosh\ HD/Users/sabri/Desktop/disable.sh | |
# WARNING: It might disable things that you may not like. Please double check the services in the TODISABLE vars. | |
# Get active services: launchctl list | grep -v "\-\t0" | |
# Find a service: grep -lR [service] /System/Library/Launch* /Library/Launch* ~/Library/LaunchAgents |
View shodan_ip_list.txt
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
198.20.69.72/29 | |
198.20.69.96/29 | |
198.20.70.111/32 | |
198.20.70.112/29 | |
198.20.99.128/29 | |
93.120.27.62/32 | |
66.240.236.119/32 | |
71.6.135.131/32 | |
66.240.192.138/32 | |
71.6.167.142/32 |
NewerOlder