-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Questions #66
Comments
FreeStep does its best to provide anonymity and not to log or track users. Chats are encrypted to keep them as safe as possible from prying eyes. However, if legally subpoenaed, I'll do my best to assist law enforcement however I can. If you're concerned about traffic loads or the sensitive nature of your chats, I suggest you set up your own installation on your own server. |
In a more direct answer, if I have reason to believe that FreeStep is becoming a hub for illegal activity, I would consider shutting down the site. The current Freestep.net site is more of a demo site than anything else; my main goal is to distribute the source code, so if I was somehow made aware that I was enabling unsavory behavior, I would do my best to curb it, even if it meant taking the site down. If someone really needs the system, they should set it up on their own server. |
Hi again. a last quick question about the issue #66. is there a way to prevent users from posting links and show photo? like change anything? i really dont want it to shut it down. i rather want you to fix the server so they can't post links or drag photo. |
I think that being able to send pictures and links is a pretty important functionality - if you're running this on your own install, you can totally do that. If you're in a hurry, on your own installation, pictures can be pretty easily disabled by deleting this whole codeblock in socket.on("dataSend", function (msg) {
var currTime = Date.now();
if(((currTime - lastImageSend) < 5000) && isRateLimited) {
socket.emit("rateLimit");
} else {
lastImageSend = currTime;
var type = 1;
var name = socket.nickname;
var data = [type, name, msg];
io.sockets.in(socket.roomIn).emit("chat", data);
}
}); Detecting and blocking links is tricky, as handling and display of links is done entirely client side. You could just have the client not display them, but that doesn't stop them from getting to the client entirely. I don't think there's an easy solution for links. |
well. just dont shut the site down no matter what. i love the site and i still want to use it and its so hard to find chatsite that is encrypted and anonymous.. specially one without TOS etc. if you know any chatsite like freestep wich has no rules at all,it would b great (exept chatstep,chatcrypt and cryptocat),, that would be all. just please dont shut it down no matter what. and that sourcecode u just posted. is that the sourcecode for the chatsite? if not.. can u give me the sourcecode for it? |
Well I'm glad to hear that you like it - but if you need it so much, you should set up your own install. Adding a ToS is actually on my todo list, sorry to disappoint you :/ |
Sorry for so many questions. but i need to know few things before i end this issue for the time being.
|
No worries! Happy to answer questions. The whole source code is hosted on this site - GitHub. You can follow the directions in the readme lower on this page to grab it an set it up. For hosting, you need something that supports node.js, which I don't think you'll find for free, sorry. You could definitely look around though. |
just 1 more question and that is all. Do you know any other chatsites just like freestep.net ? and if so.. wich one and whats the site? |
I wouldn't be comfortable making any recommendations.
|
Hi
A quick question i need answer on quick.. When it comes to people chatting,share photos and all. Are they allowed to share anything? then i mean anything,no matter what it is without rooms getting banned? Can this chatsite b shut down or anything at all ?
The text was updated successfully, but these errors were encountered: