onyx_online / Q3 Rcon CLI - single file, zero dependencies
0 likes
0 forks
1 files
Last active
Use this script to send rcon commands to a game server supporting Q3 Rcon
1 | #!/usr/bin/env python3 |
2 | |
3 | # MIT License |
4 | # |
5 | # Copyright (c) 2025 Onyx and Iris |
6 | # |
7 | # Permission is hereby granted, free of charge, to any person obtaining a copy |
8 | # of this software and associated documentation files (the "Software"), to deal |
9 | # in the Software without restriction, including without limitation the rights |
10 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
onyx_online / Github Webhook Proxy
0 likes
0 forks
1 files
Last active
Github webhook proxy server (only Issues implemented)
1 | import hashlib |
2 | import hmac |
3 | import json |
4 | import os |
5 | from ipaddress import ip_address, ip_network |
6 | |
7 | import requests |
8 | from dotenv import load_dotenv |
9 | from flask import Flask, abort, request |
onyx_online / CORS Anywhere Python
0 likes
0 forks
1 files
Last active
CORS Anywhere Proxy Server in Python
1 | import argparse |
2 | from http.server import HTTPServer, SimpleHTTPRequestHandler |
3 | |
4 | parser = argparse.ArgumentParser( |
5 | prog="Simple HTTP Server", |
6 | description="Serves static files using Python3 Simple HTTP module", |
7 | ) |
8 | parser.add_argument("-d", "--directory", required=True) |
9 | args = parser.parse_args() |
onyx_online / OVH DDOS to Discord
0 likes
0 forks
1 files
Last active
Monitors OVH servers for mitigation status
1 | import ipaddress |
2 | import logging |
3 | import time |
4 | |
5 | import ovh |
6 | |
7 | try: |
8 | import tomllib |
9 | except ModuleNotFoundError: |
10 | import tomli as tomllib |
Newer
Older