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 | |
""" | |
Automatically coalesce IPs from fail2ban into subnets and flag them for | |
banning. | |
""" | |
# © 2023 Stuart Longland <[email protected]> | |
# SPDX-License-Identifier: BSD-2-Clause |
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
2023-04-02 17:06:44,073 aioax25.kiss[kiss.py: 385] DEBUG OPEN new port 0 | |
2023-04-02 17:06:44,074 aioax25.interface[router.py: 56] DEBUG Binding callsign 'VK4MSL' (regex False) SSID 4 to <bound method AX25Station._on_receive of <aioax25.station.AX25Station object at 0x7f26b28c19f0>> | |
2023-04-02 17:06:44,074 aioax25.kiss[kiss.py: 396] DEBUG Opening device | |
2023-04-02 17:06:44,074 aioax25.kiss[kiss.py: 435] DEBUG Awaiting KISS transport | |
2023-04-02 17:06:44,074 asyncmain[teststn.py: 59] INFO Waiting for connections | |
2023-04-02 17:06:44,074 aioax25.kiss[kiss.py: 488] DEBUG Delegating to KISS serial device '/dev/ax0' | |
2023-04-02 17:06:44,074 aioax25.kiss[kiss.py: 420] DEBUG Constructing protocol object | |
2023-04-02 17:06:44,075 aioax25.kiss.protocol[kiss.py: 689] DEBUG Announcing connection: SerialTransport(<_UnixSelectorEventLoop running=True closed=False debug=False>, <aioax25.kiss.KISSProtocol object at 0x7f26b28c1f60>, Serial<id=0x7f26b28c1570, open=True>(port='/dev/ax0', baudrate=9600, bytesize=8, parity='N', stop |
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
import re | |
import argparse | |
PROTOCOLS = { | |
"1": "icmp", | |
"6": "tcp", | |
"17": "udp", | |
} | |
ap = argparse.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
Location | Name | Frequency | Duplex | Offset | Tone | rToneFreq | cToneFreq | DtcsCode | DtcsPolarity | RxDtcsCode | CrossMode | Mode | TStep | Skip | Comment | URCALL | RPT1CALL | RPT2CALL | DVCODE | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 8CAWest Gap 2 | 146.95 | - | 0.6 | Tone | 91.5 | 91.5 | 23 | NN | 23 | Tone->Tone | FM | 25.0 | 0 | ||||||
1 | 8ITWest Gap U | 438.525 | - | 5.0 | Tone | 91.5 | 91.5 | 23 | NN | 23 | Tone->Tone | FM | 25.0 | 0 | ||||||
2 | 6AAMt Barker 2 | 146.825 | - | 0.6 | 88.5 | 88.5 | 23 | NN | 23 | Tone->Tone | FM | 25.0 | 0 | |||||||
3 | 6AAMt Barker U | 439.95 | - | 5.0 | 88.5 | 88.5 | 23 | NN | 23 | Tone->Tone | FM | 25.0 | 0 | |||||||
4 | 6ALMt Clarence U | 439.95 | - | 5.0 | 88.5 | 88.5 | 23 | NN | 23 | Tone->Tone | FM | 25.0 | 0 | |||||||
5 | 6AWFairfield 2 | 147.0 | - | 0.6 | 88.5 | 88.5 | 23 | NN | 23 | Tone->Tone | FM | 25.0 | 0 | |||||||
6 | 6MJManjimup 2 | 147.15 | + | 0.6 | 88.5 | 88.5 | 23 | NN | 23 | Tone->Tone | FM | 25.0 | 0 | |||||||
7 | 6AKKalgoorlie 2 | 147.0 | - | 0.6 | 88.5 | 88.5 | 23 | NN | 23 | Tone->Tone | FM | 25.0 | 0 | |||||||
8 | 6RRKalgoorlie 2 | 147.05 | + | 0.6 | 88.5 | 88.5 | 23 | NN | 23 | Tone->Tone | DMR | 25.0 | 0 |
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
#!/bin/sh | |
# This is a script I use on my own personal servers to block the following countries: | |
# Belarus: for supporting Russia | |
# China: for human rights abuses in Xinjiang | |
# Hong Kong: because China claims this is "their" territory and the HK government seems to agree | |
# Russia: Invasion of Ukraine (ohh, and BTW… Пу́тін — хуйло́ / Пу́тин — хуйло́) | |
# Provided in the public domain without any guarantee or warranty whatsoever, use at your own risk. | |
# Typical usage in `pf`: |
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
from yaml import safe_load | |
from asyncio import coroutine, gather, get_event_loop, ensure_future | |
from aiohttp.web import json_response, Application, View, WebSocketResponse | |
from aiohttp import WSMsgType, ClientSession | |
# Read a configuration file | |
config = safe_load(open('config.yml','r').read()) | |
# Set up the core application |
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
[Apr 6 20:49:17] Asterisk 16.6.2 built by _pbuild @ amd64-stable.ports.openbsd.org on a amd64 running OpenBSD on 2019-11-22 09:21:53 UTC | |
[Apr 6 20:49:17] NOTICE[-1] loader.c: 306 modules will be loaded. | |
[Apr 6 20:49:18] ERROR[-1] res_config_sqlite3.c: Missing config file 'res_config_sqlite3.conf' | |
[Apr 6 20:49:18] ERROR[-1] config_options.c: Unable to load config file 'statsd.conf' | |
[Apr 6 20:49:18] NOTICE[-1] res_statsd.c: Could not load statsd config; using defaults | |
[Apr 6 20:49:18] ERROR[-1] config_options.c: Unable to load config file 'udptl.conf' | |
[Apr 6 20:49:18] NOTICE[-1] udptl.c: Could not load udptl config; using defaults | |
[Apr 6 20:49:18] ERROR[-1] config_options.c: Unable to load config file 'acl.conf' | |
[Apr 6 20:49:18] NOTICE[-1] manager.c: Unable to open AMI configuration manager.conf, or configuration is invalid. | |
[Apr 6 20:49:18] ERROR[-1] config_options.c: Unable to load config file 'features.conf' |
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
/* vim: set tw=78 sw=4 ts=4 et: | |
* Copyright (c) 2017, VRT Systems | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions are met: | |
* 1. Redistributions of source code must retain the above copyright | |
* notice, this list of conditions and the following disclaimer. | |
* 2. Redistributions in binary form must reproduce the above copyright | |
* notice, this list of conditions and the following disclaimer in the |
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
{ | |
"cs": { | |
"p": 123, | |
"m": "a", | |
"a": "2001:db8:aaaa:bbbb::101" | |
}, | |
"ts": { | |
"c": { | |
"c1": [ | |
"p" |
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
#!/bin/sh -ex | |
: ${PYTHON2:=$( which python2 )} | |
: ${PYTHON3:=$( which python3 )} | |
pass="" | |
fail="" | |
for python in ${PYTHON2} ${PYTHON3}; do | |
for pika in 0.9.14 0.10.0 0.11.2; do |