mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-10 09:13:58 -09:00
20 lines
746 B
Plaintext
20 lines
746 B
Plaintext
// Example JAAS config file for Ghidra server when operating in -a4 authmode.
|
|
// Ghidra only uses the "auth" section from the JAAS configuration.
|
|
// You may need to adjust the PROGRAM="" to include the full path to the example script
|
|
|
|
auth {
|
|
ghidra.server.security.loginmodule.ExternalProgramLoginModule required
|
|
|
|
// Path to the external program. An absolute path is preferable.
|
|
PROGRAM="server/jaas/jaas_external_program.example.sh"
|
|
|
|
// Time to wait for external program to finish before killing it, in milliseconds.
|
|
TIMEOUT="1000"
|
|
|
|
// any arguments that the external program needs. Do not include sensitive values as an
|
|
// argument as they can be seen by other users on the system.
|
|
ARG_00="arg1" ARG_01="test arg2"
|
|
;
|
|
};
|
|
|