I believe that you can use the System properties, the same as in ACF:
 <cfscript> prop = createObject("java", "java.lang.System").getProperties(); WriteDump( var=prop["user.name"], label="User.Name"); WriteDump( var=prop, label="All Properties" ); </cfscript> 
 source share