Re: Are REST API an official feature of guacamole?

2021-12-17 Thread Tim Worcester
I believe the last attempt at providing this was in this MR here: https://github.com/apache/guacamole-manual/pull/123 I have used these docs in the past and they have been mostly accurate: https://github.com/ridvanaltun/guacamole-rest-api-documentation Apart from that you may need to start

Re: Custom a login page

2021-12-17 Thread Tim Worcester
This can be accomplished by using the guacamole extension capabilities documented here: https://guacamole.apache.org/doc/gug/guacamole-ext.html Small example that had been previously posted can be found here: https://github.com/Zer0CoolX/guacamole-customize-loginscreen-extension On Fri, Dec 17,

Re: Log4j vulnerability exposure

2021-12-16 Thread Tim Worcester
Not affected: https://github.com/apache/guacamole-website/pull/97 On Thu, Dec 16, 2021 at 3:52 PM Jose Moreno Delgado wrote: > Hi, I would like to know if Guacamole 1.3.0 based on Docker Glyptonodon is > affected by this recent attack based on Java for logging, log4j. > > BR. >

Re: Guacamole dynamically create connections

2021-11-11 Thread Tim Worcester
> ``` > > The only way I could think to get around this was to add a new > ModeledConnection but that required creating an admin user to be able to > add connection rows dynamically. Is that the right approach? > > On Wed, Nov 3, 2021 at 2:35 PM Tim Worcester > wro

Re: Guacamole dynamically create connections

2021-11-05 Thread Tim Worcester
ection but that required creating an admin user to be able to add connection rows dynamically. Is that the right approach? On Wed, Nov 3, 2021 at 2:35 PM Tim Worcester wrote: > I am not, I couldn't get the new connection to be inserted without hacking > up an admin user to be able to have the

Re: Guacamole dynamically create connections

2021-11-03 Thread Tim Worcester
I am not, I couldn't get the new connection to be inserted without hacking up an admin user to be able to have the RBAC to add a connection to the underlying Connection Directory. On Wed, Nov 3, 2021 at 2:30 PM Mike Jumper wrote: > On Wed, Nov 3, 2021, 08:58 Tim Worcester > wrote: >

Re: Guacamole dynamically create connections

2021-11-03 Thread Tim Worcester
the privileges to create connections. On Mon, Sep 6, 2021 at 7:50 AM Tim Worcester wrote: > Mike, > > Sorry for the delayed response, I finally got around to implementing some > of your suggestions. This is exactly what I needed! Thank you so much :) > > Cheers, > Tim > >

Re: PAM authentication + Database connection lookup?

2021-10-08 Thread Tim Worcester
Sounds like you may need to do something similar to what Mike Jumper recommended for me. https://lists.apache.org/x/thread.html/rfe1fd6c610da35d77c18307e4c19c483170fd5d38e0d8201769fd17d@%3Cuser.guacamole.apache.org%3E On Fri, Oct 8, 2021 at 12:38 PM Dustin Lang wrote: > Hi, > > I'm new to

Re: using ${GUAC_PASSWORD} or similar with SSO (SAML)

2021-09-28 Thread Tim Worcester
Unfortunately when you use an Identity Provider Guacamole itself never handles the password (by design). Guacamole 1.3.0 released with the prompt feature where when configured for SAML or OIDC RDP connections would send a prompt back to adhere to NLA. So the user will need to enter their

Re: Active Connections: Multiple guacamole-client use case

2021-09-23 Thread Tim Worcester
Thanks for the quick response Nick! I will start down the rabbit hole of implementing it then. Just wanted to check if I had missed anything in terms of configuration. On Thu, Sep 23, 2021 at 11:42 AM Nick Couchman wrote: > On Thu, Sep 23, 2021 at 9:57 AM Tim Worcester > wrote: >

Re: Guacamole dynamically create connections

2021-09-06 Thread Tim Worcester
Mike, Sorry for the delayed response, I finally got around to implementing some of your suggestions. This is exactly what I needed! Thank you so much :) Cheers, Tim On Sun, Aug 22, 2021 at 5:08 PM Mike Jumper wrote: > On Sun, Aug 22, 2021, 12:59 Tim Worcester > wrote: > >

Guacamole dynamically create connections

2021-08-22 Thread Tim Worcester
Greetings, I have been looking through the code and I have been unable to find an event that I can intercept in guacamole-ext to allow me to dynamically spin up a desktop via some code, operator or controller in reaction to a user clicking on a connection-group. Is there an event that I am

Guacd performance tuning

2021-02-05 Thread Tim Worcester
Greetings! I have been messing around with guacd 1.3.0 and TurboVNC on Centos7. My use case is that inside the desktop I open Google Chrome and then load up a map server (maps.google.com for example). I have been unable to get this to be performant. On the desktop side I have implemented

Re: Invalid OpenID token

2021-02-02 Thread Tim Worcester
Could this be related to the default value of 300 seconds for token validity? https://guacamole.apache.org/doc/gug/openid-auth.html#idm46227495608768:~:text=openid%2Dmax%2Dtoken%2Dvalidity I would try bumping that value up to match your Identity Providers settings. On Tue, Feb 2, 2021 at 5:24

Re: Guacamole and OpenID

2021-01-04 Thread Tim Worcester
to this puzzle. I am curious why the backend is responding with a 403 code when you hit the /token endpoint in Guacamole. Can you turn your logging up to DEBUG and see if any additional logs show up? On Mon, Jan 4, 2021 at 9:18 AM Tim Worcester wrote: > Whoops, sorry! > > I use LDAP for

Re: Guacamole and OpenID

2021-01-04 Thread Tim Worcester
t setting. > Looks like there no built in scope "groups" > But i can try to add it! > Can you show how it looks like on your side?(scope,mappers and other > settings?) > Thank you in advance! > > > 04.01.2021, 16:10, "Tim Worcester" : > > I have

Re: Guacamole and OpenID

2021-01-04 Thread Tim Worcester
I have seen this issue for Keycloak specifically, can you list your client scopes? It should look something like this: [image: image.png] I would make sure that email, groups and profile are in your default client scope. That resolved the issue for me. On Mon, Jan 4, 2021 at 5:23 AM Владислав

Re: Apache Guacamole 1.3.0?

2020-11-20 Thread Tim Worcester
Hi Victor, Those commits are on the staging branch of 1.3.0. I believe the scope of 1.3.0 was set a few months back and there are still some outstanding MRs that need to be merged before it satisfies that scope. I believe the 1.3.0 tag in ASF Jira is accurate so you can reference this list

Re: log user out when browser is closed

2020-11-13 Thread Tim Worcester
I think to satisfy half of this Use Case you can user a Listener in an guacamole-ext to listen to the TunnelClose events and trigger off that to invalid the session. The case that isn't covered is if they log in and don't select a connection, closing the browser then wouldn't trigger the

Re: FW: Upgrading Guacamole

2020-08-18 Thread Tim Worcester
This means you have missing entries in your en.json translation. I believe that there are some translations that may come from plugins as well, so you may also have a missing plugin. On Tue, Aug 18, 2020 at 1:12 PM Devine, Harry (FAA) wrote: > Can anyone shed some insight on how to correct the

Re: Users authenticating but unable to login to RDP Server

2020-08-16 Thread Tim Worcester
In addition to Nick’s comment, what parameters are set for the RDP connection in the Web UI? Mainly looking at the username/password fields. On Sun, Aug 16, 2020 at 7:57 PM Nick Couchman wrote: > On Fri, Aug 14, 2020 at 10:25 AM Erik Berndt > wrote: > >> Hello, >> >> We are suddenly faced

Re: Error when enter to Guacamole Web version 1.2.0

2020-08-03 Thread Tim Worcester
Guacamole deploys itself with the guacamole.min.js and guacamole.js files. As far as I know there is no way to load the page with guacamole.js pulled. I usually exec into the docker container and copy guacamole.js over guacamole.min.js and that enables me to be able to drop javascript breakpoints

Re: Login with either local accounts or OpenID

2020-07-20 Thread Tim Worcester
This won't solve your issue but Nick answered parts of your question here: http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/OpenID-Connect-and-Guacamole-Connections-Groups-td8804.html On Mon, Jul 20, 2020 at 10:07 AM jerryjungbluth wrote: > I'm possibly overlooking

Re: RDP Connection parameters mismatch v1.2.0

2020-07-03 Thread Tim Worcester
Nevermind, found my issue. Silly syntax error on my part! On Fri, Jul 3, 2020 at 7:45 AM Tim Worcester wrote: > Just updated my cluster to 1.2.0 and I am seeing this error in the guacd > logs now when trying to use my pre-existing RDP connections: > > guacd[15]: DEBUG: Processing

RDP Connection parameters mismatch v1.2.0

2020-07-03 Thread Tim Worcester
Just updated my cluster to 1.2.0 and I am seeing this error in the guacd logs now when trying to use my pre-existing RDP connections: guacd[15]: DEBUG: Processing instruction: size guacd[15]: DEBUG: Processing instruction: audio guacd[15]: DEBUG: Processing instruction: video guacd[15]: DEBUG:

Re: Connection Error

2020-06-25 Thread Tim Worcester
Since that is working for you, be aware that they are trying to push out the official release of 1.2.0 soon. So keep your eyes peeled for that! :) On Wed, Jun 24, 2020 at 11:09 PM Prince V S wrote: > I tried staging branch 1.2.0 and it is working fine. Thanks for help. > > Regards, > > Prince

Re: v1.1.0 OpenID and RDP connection password

2020-06-12 Thread Tim Worcester
d regards, > Salatiel > > On Tue, Apr 21, 2020 at 6:26 PM Tim Worcester > wrote: > > > > Greetings, > > > > I currently have my guacamole client v1.1.0 configured to point to > Keycloak > > using the OIDC configuration options. This is causing my login &

Re: Doker Image does not Connect to RDP

2020-06-03 Thread Tim Worcester
ork? > > Thanks > > Em qua., 3 de jun. de 2020 às 11:17, Tim Worcester < > timothy.worces...@gmail.com> escreveu: > >> The latest that I see on docker hub is 1.1.0: >> https://hub.docker.com/r/guacamole/guacamole/tags >> >> Unless someone else here knows where

Re: Doker Image does not Connect to RDP

2020-06-03 Thread Tim Worcester
-server and compiling it. On Wed, Jun 3, 2020 at 9:45 AM Douglas wrote: > Yes, "1.1.0". > > How i can upgrade to 1.2.0-staging? Or it have docker images for desired > version? > > thanks > > Em qua., 3 de jun. de 2020 às 10:41, Tim Worcester < > timothy.worces...

Re: Doker Image does not Connect to RDP

2020-06-03 Thread Tim Worcester
> How i can find it? > > Thanks > > DRauber > > Em qua., 3 de jun. de 2020 às 10:10, Tim Worcester < > timothy.worces...@gmail.com> escreveu: > >> Are you using the 1.2.0-staging changes or 1.1.0? >> >> There are some issues that may no

Re: Doker Image does not Connect to RDP

2020-06-03 Thread Tim Worcester
Are you using the 1.2.0-staging changes or 1.1.0? There are some issues that may not yield proper logging that have been fixed in 1.2.0-staging. On Wed, Jun 3, 2020 at 9:05 AM Douglas wrote: > Yes Nick! > > I have filled: > Name: TestRDP > Protocol:RDP > Network:Hostname: > Network:Port: 5432

Re: Guacamole FreeRDP disconnect

2020-06-02 Thread Tim Worcester
What version Guacamole are you using? Have you updated to 1.1.0 recently? For logging, I would look at the guacamole-server piece and try and pull some context logs from there and post those on this thread :) On Tue, Jun 2, 2020 at 9:38 AM Walter Laub wrote: > Yeah, in my installation. > > In

Re: Hardware Acceleration Support

2020-05-22 Thread Tim Worcester
Thanks guys! I will start diving into code for this. Just wanted to make sure I wasn't missing some magic configuration option ;) On Thu, May 21, 2020 at 4:59 PM Sean Reid wrote: > Mike, > > I think we'd have to coordinate a little bit to get there. I have it > for guacenc, but I'm familiar

Hardware Acceleration Support

2020-05-21 Thread Tim Worcester
Greetings, I am toying around with the idea of gaming on my guacamole desktop. Is there any additional configuration that I need to do in order to get guacamole-server to use a GPU for the image encoding? Are there any other parts of the application that would benefit the most from the GPU

Re: RealVnc 4.0

2020-05-18 Thread Tim Worcester
Hey Petr, Assuming you are using version 1.1.0 you are probably getting hit with the same problem I was having. Ref: http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/VNC-Error-context-debugging-td8298.html On Mon, May 18, 2020 at 12:56 PM Petr Safrata wrote: > Hello, >

Re: VNC Error context/debugging

2020-05-07 Thread Tim Worcester
That did it! Thanks Nick! On Thu, May 7, 2020 at 8:47 AM Nick Couchman wrote: > On Thu, May 7, 2020 at 8:15 AM Tim Worcester > wrote: > >> I recently upgraded my Guacamole installation from 1.0.0 to 1.1.0 and I >> am now running into an issue when running my VNC conne

VNC Error context/debugging

2020-05-07 Thread Tim Worcester
I recently upgraded my Guacamole installation from 1.0.0 to 1.1.0 and I am now running into an issue when running my VNC connection. Versions: Guacamole-client - 1.1.0 Guacamole-server - 1.1.0 libvncserver/client - 0.9.12 (client) tigervnc-server - 1.8.0 (server that guacd is connecting to)

v1.1.0 OpenID and RDP connection password

2020-04-21 Thread Tim Worcester
Greetings, I currently have my guacamole client v1.1.0 configured to point to Keycloak using the OIDC configuration options. This is causing my login information to be passed through Keycloak instead of the Guacamole Client login page. Because of this the GUAC_PASSWORD parameter is never