Open
Description
Storing / passing passwords as String
is a common security issue because these password strings will remain in the common String pool for a long time. Instead, passwords should use char[]
or byte[]
as types. I see this mistake in quite a few places in the API, but it all starts at com.arangodb.ArangoDB.Builder#password