You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@guacamole.apache.org by messido <mo...@gmail.com> on 2018/10/21 01:45:58 UTC

How to change "Guacamole RDP" On redirected drive?

Is there a way to change the shared disk's name to something other than
"Guacamole RDP"? 

Currently I'm building my own front-end app using the Guacamole common-js
and common. Meaning i'm not using the default guacamole client app, so is it
still possible to do? 

Thanks



--
Sent from: http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/

Re: How to change "Guacamole RDP" On redirected drive?

Posted by Mike Jumper <mj...@apache.org>.
On Sat, Oct 20, 2018, 19:20 messido <mo...@gmail.com> wrote:

> Speaking off passing parameters, is there a safer way to pass parameters
> from
> JS to Java than sending them as HTTP request parameters?


It is incorrect to think of GET vs. POST as unsafe.

It is true that you should generally not include sensitive information in
the URL visible in the browser. This has no bearing on visibility of data
sent strictly via JavaScript, and no bearing on whether that data will be
readable if intercepted by a third party (it will be regardless of HTTP
method unless you use proper encryption).

As far as security goes, be sure to use SSL/TLS, and be sure that you do
not allow users to arbitrarily dictate connection parameters.

- Mike

Re: How to change "Guacamole RDP" On redirected drive?

Posted by messido <mo...@gmail.com>.
Speaking off passing parameters, is there a safer way to pass parameters from
JS to Java than sending them as HTTP request parameters?




--
Sent from: http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/

Re: How to change "Guacamole RDP" On redirected drive?

Posted by Nick Couchman <vn...@apache.org>.
On Sat, Oct 20, 2018 at 9:46 PM messido <mo...@gmail.com> wrote:

> Is there a way to change the shared disk's name to something other than
> "Guacamole RDP"?
>

Changes for this were introduced in the 1.0.0 code:

https://issues.apache.org/jira/browse/GUACAMOLE-445
https://issues.apache.org/jira/browse/GUACAMOLE-446

It won't work in 0.9.14 (you could manually change the code), but as soon
as 1.0.0 is released (you can check it out from the git repo) it should
work.


>
> Currently I'm building my own front-end app using the Guacamole common-js
> and common. Meaning i'm not using the default guacamole client app, so is
> it
> still possible to do?
>

Yes, the parameter can be passed from your custom application to guacd,
same as any other parameter.

-Nick