This file contains hidden or 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 python3 | |
from hcloud import Client | |
from hcloud.firewalls.domain import FirewallRule | |
from requests import get as r_get, HTTPError, Timeout | |
from ipaddress import ip_network | |
from systemd.journal import send | |
from datetime import datetime | |
from hcloud.hcloud import APIException | |
from argparse import ArgumentParser |
This file contains hidden or 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 python3 | |
from requests import get | |
from requests import exceptions | |
from subprocess import run | |
def fetch_newest_gitea(): | |
# change prefix as needed | |
GITEA_INSTALL = "/usr/local/bin/gitea" |
This file contains hidden or 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 python3 | |
import requests | |
import json | |
import sys | |
import datetime | |
# Updates Lima City DNS with v4 and v6 | |
# Expects the file with all the secrets in /etc/.dyndns_secrets.json | |
# | |
# { |
This file contains hidden or 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 bash | |
### 1: Drop invalid packets ### | |
/sbin/iptables -t mangle -A PREROUTING -m conntrack --ctstate INVALID -j DROP | |
### 2: Drop TCP packets that are new and are not SYN ### | |
/sbin/iptables -t mangle -A PREROUTING -p tcp ! --syn -m conntrack --ctstate NEW -j DROP | |
### 3: Drop SYN packets with suspicious MSS value ### | |
/sbin/iptables -t mangle -A PREROUTING -p tcp -m conntrack --ctstate NEW -m tcpmss ! --mss 536:65535 -j DROP |
This file contains hidden or 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
#include <iostream> | |
#include <cstddef> | |
#include <algorithm> | |
#include <string> | |
#include <exception> | |
struct Color{ | |
Color(const std::string& html_col) | |
{ | |
if (html_col.length() < 9){ |
This file contains hidden or 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
#game-input-span { | |
position: absolute; | |
display: block; | |
font-family: 'Ubuntu Mono', monospace; | |
font-size: 18px; | |
color: #2ECC40; | |
} | |
#game-input { | |
background-color: black; |
This file contains hidden or 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
//----------------------------------------------------------------- | |
int main(int argc, char** argv) | |
//----------------------------------------------------------------- | |
{ | |
// Continue as usual... | |
} | |
#ifdef _WINDOWS | |
#include "Windows.h" |