racerxdl / spacereset.py
0 likes
0 forks
1 files
Last active 7 months ago
SpaceEngineers Torch DS restarter for cases where the MSCV debug window prevents it from auto restart. Should be run in the same machine (linux) as the DS
| 1 | import asyncio |
| 2 | import time |
| 3 | import os, signal |
| 4 | import opengsq |
| 5 | from opengsq.responses.source import SourceInfo, GoldSourceInfo, Visibility |
| 6 | |
| 7 | |
| 8 | async def query(info): |
| 9 | host, port = str(info["host"]), int(str(info["port"])) |
| 10 | source = opengsq.Source(host, port, 15) |
racerxdl / bettercap.md
0 likes
0 forks
1 files
Last active 7 months ago
bettercap webui from docker
bettercap webui from docker
create volume
docker volume create bettercap
bootstrap/update
Only run caplets.update the first time as every time the entire system caplets folder is replaced with the downloaded contents from github, overwriting your changes, such as the credentials, with default values. You can either backup your changes and restore them later in the system folder, or simply copy the changed caplet files in bettercap’s working directory, in which case they’ll be loaded before the ones installed system wide. https://www.bettercap.org/usage/
racerxdl / onelisten.go
0 likes
0 forks
1 files
Last active 7 months ago
One program, to listen to all TCP ports. It actually doesnt listen, but sniff them. - Based on http://maycon.hacknroll.io/hacking-tricks/2019/11/05/trick-check-outgoing-ports.html
| 1 | package main |
| 2 | |
| 3 | import ( |
| 4 | "fmt" |
| 5 | "github.com/google/gopacket" |
| 6 | "github.com/google/gopacket/layers" |
| 7 | "github.com/google/gopacket/pcap" |
| 8 | "time" |
| 9 | ) |
Newer
Older