Index: src/wp-includes/user.php
===================================================================
--- src/wp-includes/user.php	(revision 45256)
+++ src/wp-includes/user.php	(working copy)
@@ -2905,6 +2905,7 @@
 		'first_name'      => __( 'User First Name' ),
 		'last_name'       => __( 'User Last Name' ),
 		'description'     => __( 'User Description' ),
+		'session_tokens'  => __( 'User Session Token' ),
 	);
 
 	$user_data_to_export = array();
@@ -2928,6 +2929,31 @@
 			case 'description':
 				$value = $user_meta[ $key ][0];
 				break;
+			case 'session_tokens':
+				if ( isset( $user_meta[ $key ] ) ) {
+						$token = maybe_unserialize( $user_meta[ $key ][0] );
+
+						$token_props = array(
+							'ip'         => __( 'IP' ),
+							'ua' => __( 'User Agent' ),
+						);
+
+						foreach ( $token as $session ) {
+							foreach ( $token_props as $tkey => $tname ) {
+								if ( isset( $session[ $tkey ] ) ) {
+									$token_data[] = sprintf(
+										/* translators: 1: An item label, 2: An item value */
+										__( '%1$s: %2$s' ),
+										$tname,
+										$session[ $tkey ]
+									);
+								}
+							}
+						}
+						/* translators: used between list items, there is a space after the comma */
+						$value = join( __( ', ' ), $token_data );
+				}
+				break;
 		}
 
 		if ( ! empty( $value ) ) {
