-
Ideas for hobbySpace qwk network
From
Morningstarr@HOBBYSPC to
ALL on Mon Jun 22 01:07:07 2026
I have a cool Idea for our network
check out this script and guess what I am trying to achieve.
// An Idea I have
var system_list = [
// Add member BBS addresses here
"member1.hobbyspace.net",
"member2.hobbyspace.net"
];
function broadcastAlert(message) {
for (var i = 0; i < system_list.length; i++) {
var socket = new Socket();
// Connect to the standard Synchronet SIM port (default 10000 or custom)
if (socket.connect(system_list[i], 10000)) {
// Send a raw instant message packet to the target system
socket.send("ALERT:" + message + "\r\n");
socket.close();
}
}
}
// Read event arguments passed by Synchronet
var eventType = argv[0];
var userName = argv[1];
var bbsName = argv[2];
if (eventType == "logon") {
broadcastAlert("[Hobbyspace] " + userName + " just logged into " + bbsName + "!");
} else if (eventType == "post") {
var areaName = argv[3];
broadcastAlert("[Hobbyspace] " + userName + " posted a new message in " + areaName + "!");
}
---
þ Synchronet þ Hobby Space - Express Yourself hobbyspc.synchro.net
-
From
Will-E@HOBBYSPC to
Morningstarr on Mon Jun 22 10:48:14 2026
This looks like a cross-bbs notification system. By running this through some AI, it did pop up a few alerts as there is no error handling or any type of logging for troubleshooting. Also, there are no security controls such as encryption or some sort of trust model. With that being said, a threat actor would be able to spoof alerts and send them to all systems. These fake alerts could contain malicious code that could compromise host systems.
---
þ Synchronet þ Hobby Space - Express Yourself hobbyspc.synchro.net
-
From
BiggieB@HOBBYSPC/JJAMBBS to
Morningstarr on Mon Jun 22 10:43:14 2026
From what I can figure out it, looks like a real-time notification broadcaster to member sub-domains of HobbySpace.net. Kinda cool dude. Looks like it's using the Inter-BBS Messaging service that's built into Synchronet over port 1000.
I imagine any BBS system that "signs up" to be part of the HobbySPC message network would be added as a subdomain your DNS server so the pages know where to go. IE. jerseyjam.hobbyspace.net (that would be me). Then when you broadcast a message using this script I would be included in the pool of systems. You could also just use their own FQDN so you don't have to keep managing your DNS server.
BTW - do you own HobbySpace.net? I see it was registered in March 2004.
-BB
---
þ Synchronet þ Jersey Jam BBS - JerseyJam.com (1:266/325)
-
From
Morningstarr@HOBBYSPC to
BiggieB on Mon Jun 22 17:12:08 2026
I wish I did own it. You got part of it, the other is instant messaging and stuff like that.
---
þ Synchronet þ Hobby Space - Express Yourself hobbyspc.synchro.net