-
Notifications
You must be signed in to change notification settings - Fork 6.1k
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
Changing username when connecting to Ghidra server #43
Comments
That is the correct option. Be sure you order and number the config parameters: wrapper.app.parameter.1=-a0 |
I was originally testing it without any authentication (no |
No authentication avoids the prompting, so no way to enter a different name. |
Okay, thanks for the clarification. |
Should anyone else come across this, what's happening internally is that the Ghidra client is selecting the
If you're in need of a workaround (let's say you're authenticating across computer domains for some reason), you can manually modify the # ...
# ...
# ...
# Set default encoding to UTF8
VMARGS=-Dfile.encoding=UTF8
# Set locale (only en_US is supported)
VMARGS=-Duser.country=US
VMARGS=-Duser.language=en
VMARGS=-Duser.variant=
# add a new JVM defined argument to overwrite System.getProperty('user.name')
VMARGS=-Duser.name=wyattearp
Tested and functions on Ghidra 11.2.1 with basic authentication - your mileage might vary. |
Currently, Ghidra seems to default to using your current account name when connecting to a Ghidra server instance even if you specify the
-u
option in theserver.conf
file.The text was updated successfully, but these errors were encountered: