0

I am using Laravel 5.8.10, React 16.8, Laravel Echo Server 1.5.2, Redis 3.2.9, and Socket.io 2.2.0.

I am NOT using Pusher and don't want to use Pusher.

I am trying to create a basic chat system for site users. They log in normally using session authentication with email and password - all of that works fine.

There are 2 types of users: Brands and Influencers. Each has its own custom guard (web-brands & web-influencers). All session guards work normally.

I'm building the chat page using React. I can successfully join a public channel and receive messages on that public channel. However, the problem is when I try to make the channel private.

When I try to join a private channel, Laravel Echo Server sends an authentication request to: http://localhost:8000/broadcasting/auth.

But that returns the following 401 error:

{"message":"Unauthenticated."}
Client can not be authenticated, got HTTP status 401

Right now, I am trying to authenticate requests to /broadcasting/auth using a simple 'api_token' that is stored in the users tables (brands and influencers are the 2 users tables). This is a unique 60-character string.

I am trying this 'api_token' strategy because it sounds easier than setting up Laravel Passport, but perhaps I am wrong about that.

This is the constructor method from my React page:

import React, { Component } from 'react';
import Echo from "laravel-echo";
import Socketio from "socket.io-client";

constructor(props) {
        super(props);
        this.state = {
            currentConversationId: conversations[0].id,
            data: '',
        };
        this.selectConversation = this.selectConversation.bind(this);

        let echo = new Echo({
            broadcaster: 'socket.io',
            host: 'http://localhost:6001',
            client: Socketio,
            auth: {
                headers: {
                    // I currently have CSRF requirements disabled for /broadcasting/auth,
                    // but this should work fine once it is enabled anyway
                    'X-CSRF-Token': document.head.querySelector('meta[name="csrf-token"]'),

                    // I have the api_token hard-coded as I am trying to get it to work,
                    // but I have also used the javascript variable 'token' below 
                    'api_token':'uUOyxRgCkVLKvp7ICZ0gXaELBPPbWEL0tUqz2Dv4TsFFc7JO4gv5kUi3WL3Q',
                    'Authorization':'Bearer: ' +'uUOyxRgCkVLKvp7ICZ0gXaELBPPbWEL0tUqz2Dv4TsFFc7JO4gv5kUi3WL3Q',

                    //'api_token':token,
                    //'Authorization':'Bearer: ' + token,
                }
            }
        });

        // Note that the ID of 1 is hardcoded for now until I get it to work
        echo.private('brand.1')
            .listen('SimpleMessageEvent', event => {
                console.log('got something...');
                console.log(event);
                this.state.data = event;
            });
    }

Here you can see the in $php artisan route:list, the route is using auth:api middleware:

| GET|POST|HEAD | broadcasting/auth | Illuminate\Broadcasting\BroadcastController@authenticate | auth:api  

Here is my BroadcastServiceProvider.php:

<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Broadcast;

class BroadcastServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        Broadcast::routes(['middleware' => ['auth:api']]);

        require base_path('routes/channels.php');
    }
}

Here is my auth.php:

<?php

return [

    'defaults' => [
        'guard' => 'web-brands',
        'passwords' => 'brands',
    ],

    'guards' => [
        'web-brands' => [
            'driver' => 'session',
            'provider' => 'brands',
        ],

        'web-influencers' => [
            'driver' => 'session',
            'provider' => 'influencers',
        ],


        'api' => [
            'driver' => 'token',
            'provider' => 'brands2',
        ],
    ],

    'providers' => [
        'brands' => [
            'driver' => 'eloquent',
            'model' => App\Brand::class,
        ],

        'influencers' => [
            'driver' => 'eloquent',
            'model' => App\Influencer::class,
        ],
        'brands2' => [
            'driver' => 'database',
            'table' => 'brands',
        ],
    ],

    'passwords' => [
        'brands' => [
            'provider' => 'brands',
            'table' => 'password_resets',
            'expire' => 60,
        ],
        'influencers' => [
            'provider' => 'influencers',
            'table' => 'password_resets',
            'expire' => 60,
        ],
    ],

];

Here is my channels.php:

Broadcast::channel('brand.{id}',true);

Note that I have the brand.{id} set it to return true by default. I have also tried this for channels.php:

Broadcast::channel('brand.{id}', function ($brand,$id) {
    return $brand->id === Brand::find($id)->id;
});

I have already tried testing the simple api_token method by using a dummy route:

Route::get('test-test-test',function(){return 'asdf';})->middleware('auth:api');

This test works:

http://localhost:8000/test-test-test results in redirect
http://localhost:8000/test-test-test?api_token=123 results in redirect
http://localhost:8000/test-test-test?api_token=[the actual correct 60-character token] results in 'asdf'

Here is some info from my .env:

BROADCAST_DRIVER=redis
QUEUE_DRIVER=redis
CACHE_DRIVER=file
QUEUE_CONNECTION=database
SESSION_DRIVER=file
SESSION_LIFETIME=120

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

Here is my laravel-echo-server.json:

{
    "authHost": "http://localhost:8000",
    "authEndpoint": "/broadcasting/auth",
    "clients": [],
    "database": "redis",
    "databaseConfig": {
        "redis": {},
        "sqlite": {
            "databasePath": "/database/laravel-echo-server.sqlite"
        }
    },
    "devMode": true,
    "host": null,
    "port": "6001",
    "protocol": "http",
    "socketio": {},
    "sslCertPath": "",
    "sslKeyPath": "",
    "sslCertChainPath": "",
    "sslPassphrase": "",
    "subscribers": {
        "http": true,
        "redis": true
    },
    "apiOriginAllow": {
        "allowCors": false,
        "allowOrigin": "",
        "allowMethods": "",
        "allowHeaders": ""
    }
}

Perhaps I am not sending the api_token correctly in the header of the laravel echo request?

UPDATE/EDIT:

Now I have tried removing the auth:api middleware for the /broadcasting/auth route. I'm not sure if that was the correct thing to do.

That now produces a 403 error:

Client can not be authenticated, got HTTP status 403

UPDATE 2 - IMPORTANT

So I know this is not recommended, but I started changing some things inside of the laravel source files... I got it to work finally and now that I have figured it out, I would like to override the source files that I changed instead of actually changing them. I did save the originals so I can easily revert back.

One big challenge was that while changing the source files, I was not able to use the where() method, only the find() method to lookup users.

The key function that needed changing was retrieveUser() (which is located inside of Illuminate/Broadcasting/Broadcasters/Broadcaster.php.

The problem was that it kept trying to run:

return $request->user();

...but that user() function never worked, which is why it always returned a 403 forbidden error. I think it is because the actual Laravel Echo request was sent from React (in javascript frontend), so there was no user object attached to the request. In other words, it was like a guest making the request. That explains why the public channels worked, but the private ones didn't.

I never did figure out how to get the user information to be sent with the request through React, but I did figure out a workaround.

Basically what I had to do:

  1. In my controller, encrypt the ID of the user and pass it to javascript as a variable.
  2. Pass the encrypted ID variable through the Echo request as part of the header.
  3. Modify the retrieveUser() function to use find(Crypt::decrypt($id)) to lookup the user instead of ->user() (or where() which was strangely not allowed).

From what I can tell, this seems like a decent strategy from a security perspective, but perhaps readers could point out if that is actually correct.

To hack your way into a private channel, you would have to know the ID of the channel you want to listen to, then pass it as an encrypted variable in the header of the request.

Maybe a potential hacker could say that he/she wants to listen to private channel 'brand.1' and all they would have to do is encrypt the number 1 and pass it through the header. I guess I don't know how that works enough to know whether that is possible.

Anyway my goals now are:

  1. converting this into an override setup instead of explicitly changing the Laravel source code.
  2. figuring out if passing the encrypted ID through the request header is secure enough for production.

It does seem like the encrypted ID in the header (which does change every time you run the request) is more secure than simply passing through an 'api_token' which would be a value stored in the users table and is what most people seem to do.

Symphony0084
  • 1,257
  • 16
  • 33
  • 1
    Unless I missed it, you uncommented the App\Providers\BroadcastServiceProvider::class in config\app? See [link](https://stackoverflow.com/questions/41353073/laravel-echo-cannot-subscribe-to-pusher-private-channel?rq=1) – user558720 May 21 '19 at 20:58
  • Yes I sure did, thank you for making sure! – Symphony0084 May 22 '19 at 05:03
  • I got this to work but I am using Echo/Pusher front-end with Laravel/Passport back-end but my front-end vuejs code is completely independent of Laravel (ie not served by the backend). So I am not sure if this will apply to you but one thing that got me was that Echo is expecting the Event to be served with a namespace which by default is 'App\Events'. So when I tried to send the event, it would not work. So I set the namespace to '' when defining my Echo instance (or you could set the BroadcastAs with the namespace.) – user558720 May 22 '19 at 13:33
  • Also check out this thread which may help you. [link](https://github.com/laravel/framework/issues/16151) – user558720 May 22 '19 at 13:54

0 Answers0