Files
ghidra/Ghidra/RuntimeScripts/Common/server/jaas/jaas_external_program.example.conf
2019-09-04 10:30:22 -04:00

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"
;
};