Skip to content
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

Closed
Ashtor opened this issue Mar 31, 2015 · 10 comments
Closed

Questions #66

Ashtor opened this issue Mar 31, 2015 · 10 comments

Comments

@Ashtor
Copy link

Ashtor commented Mar 31, 2015

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 ?

@jkingsman
Copy link
Owner

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.

@jkingsman
Copy link
Owner

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.

@Ashtor
Copy link
Author

Ashtor commented Mar 31, 2015

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.

@jkingsman
Copy link
Owner

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 server.js:

   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.

@Ashtor
Copy link
Author

Ashtor commented Mar 31, 2015

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?

@jkingsman
Copy link
Owner

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 :/

@Ashtor
Copy link
Author

Ashtor commented Mar 31, 2015

Sorry for so many questions. but i need to know few things before i end this issue for the time being.

  1. Can u give me a link to the whole sourcecode for this?
  2. What hosting site can i use wich is free where i can just upload the sourcecode easily with not so many programmes etc where the account on the hosting site doesnt expire at all?. thats the last 2 questions for now

@jkingsman
Copy link
Owner

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.

@Ashtor
Copy link
Author

Ashtor commented Mar 31, 2015

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?

@jkingsman
Copy link
Owner

I wouldn't be comfortable making any recommendations.

On Mar 31, 2015, at 10:08 AM, Ashtor notifications@github.com wrote:

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?


Reply to this email directly or view it on GitHub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants