Raspi 3 - Initiating IoT Device » History » Version 2
Andreas Steffen, 15.08.2015 15:16
1 | 1 | Andreas Steffen | h1. IoT-Initiator Raspi 3 |
---|---|---|---|
2 | 1 | Andreas Steffen | |
3 | 1 | Andreas Steffen | strongSwan IPsec configuration file */etc/ipsec.conf* |
4 | 1 | Andreas Steffen | <pre> |
5 | 1 | Andreas Steffen | config setup |
6 | 1 | Andreas Steffen | charondebug="tnc 2, imc 2, imv 2, pts 3" |
7 | 1 | Andreas Steffen | |
8 | 1 | Andreas Steffen | conn %default |
9 | 1 | Andreas Steffen | ike=aes128-sha256-ecp256! |
10 | 1 | Andreas Steffen | esp=aes128-sha256-ecp256! |
11 | 1 | Andreas Steffen | keyexchange=ikev2 |
12 | 1 | Andreas Steffen | |
13 | 1 | Andreas Steffen | conn peer |
14 | 1 | Andreas Steffen | left=10.10.1.39 |
15 | 1 | Andreas Steffen | leftauth=eap-ttls |
16 | 1 | Andreas Steffen | leftcert=raspi3Cert.pem |
17 | 1 | Andreas Steffen | leftid=raspi3.example.com |
18 | 1 | Andreas Steffen | leftfirewall=yes |
19 | 1 | Andreas Steffen | right=10.10.1.40 |
20 | 1 | Andreas Steffen | rightauth=any |
21 | 1 | Andreas Steffen | rightid=raspi4.example.com |
22 | 1 | Andreas Steffen | type=transport |
23 | 1 | Andreas Steffen | auto=add |
24 | 1 | Andreas Steffen | </pre> |
25 | 1 | Andreas Steffen | |
26 | 1 | Andreas Steffen | strongSwan IPsec secrets file */etc/ipsec.secrets* |
27 | 1 | Andreas Steffen | <pre> |
28 | 1 | Andreas Steffen | : RSA raspi3Key.pem |
29 | 1 | Andreas Steffen | </pre> |
30 | 1 | Andreas Steffen | |
31 | 1 | Andreas Steffen | strongSwan configuration file */etc/strongswan.conf* |
32 | 1 | Andreas Steffen | <pre> |
33 | 1 | Andreas Steffen | # strongswan.conf - strongSwan configuration file |
34 | 1 | Andreas Steffen | |
35 | 1 | Andreas Steffen | charon { |
36 | 1 | Andreas Steffen | load = random nonce x509 revocation constraints pkcs1 pkcs8 pem openssl pubkey tnc-imc tnc-imv tnc-tnccs tnccs-20 eap-identity eap-ttls eap-tnc sqlite curl kernel-netlink socket-default updown stroke |
37 | 1 | Andreas Steffen | |
38 | 1 | Andreas Steffen | half_open_timeout = 90 |
39 | 1 | Andreas Steffen | |
40 | 1 | Andreas Steffen | plugins { |
41 | 1 | Andreas Steffen | eap-ttls |
42 | 1 | Andreas Steffen | { |
43 | 1 | Andreas Steffen | max_message_count = 0 |
44 | 1 | Andreas Steffen | request_peer_auth = yes |
45 | 1 | Andreas Steffen | phase2_piggyback = yes |
46 | 1 | Andreas Steffen | phase2_tnc = yes |
47 | 1 | Andreas Steffen | } |
48 | 1 | Andreas Steffen | eap-tnc { |
49 | 1 | Andreas Steffen | max_message_count = 0 |
50 | 1 | Andreas Steffen | } |
51 | 1 | Andreas Steffen | tnccs-20 { |
52 | 1 | Andreas Steffen | mutual = yes |
53 | 1 | Andreas Steffen | } |
54 | 1 | Andreas Steffen | } |
55 | 1 | Andreas Steffen | } |
56 | 1 | Andreas Steffen | |
57 | 1 | Andreas Steffen | libimcv { |
58 | 1 | Andreas Steffen | database = sqlite:///etc/pts/config.db |
59 | 1 | Andreas Steffen | policy_script = ipsec imv_policy_manager |
60 | 1 | Andreas Steffen | |
61 | 1 | Andreas Steffen | plugins { |
62 | 1 | Andreas Steffen | imc-os { |
63 | 1 | Andreas Steffen | device_pubkey = /etc/pts/aik3Pub.der |
64 | 1 | Andreas Steffen | } |
65 | 1 | Andreas Steffen | imc-attestation { |
66 | 1 | Andreas Steffen | aik_blob = /etc/pts/aik3Blob.bin |
67 | 1 | Andreas Steffen | aik_cert = /etc/pts/aik3Cert.der |
68 | 1 | Andreas Steffen | } |
69 | 1 | Andreas Steffen | imv-attestation { |
70 | 1 | Andreas Steffen | cadir = /etc/pts/cacerts |
71 | 1 | Andreas Steffen | hash_algorithm = sha1 |
72 | 1 | Andreas Steffen | } |
73 | 1 | Andreas Steffen | } |
74 | 1 | Andreas Steffen | } |
75 | 1 | Andreas Steffen | |
76 | 1 | Andreas Steffen | libtls { |
77 | 1 | Andreas Steffen | suites = TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 |
78 | 1 | Andreas Steffen | } |
79 | 1 | Andreas Steffen | |
80 | 1 | Andreas Steffen | pt-tls-client { |
81 | 1 | Andreas Steffen | load = random nonce x509 revocation constraints pkcs1 pkcs8 pem openssl pubkey tnc-imc tnc-imv tnc-tnccs tnccs-20 curl |
82 | 1 | Andreas Steffen | } |
83 | 1 | Andreas Steffen | |
84 | 1 | Andreas Steffen | attest { |
85 | 1 | Andreas Steffen | database=sqlite:///etc/pts/config.db |
86 | 1 | Andreas Steffen | } |
87 | 1 | Andreas Steffen | </pre> |
88 | 1 | Andreas Steffen | |
89 | 1 | Andreas Steffen | <pre> |
90 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[DMN] Starting IKE charon daemon (strongSwan 5.3.1, Linux 3.18.13-v7+, armv7l) |
91 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[NET] could not open socket: Address family not supported by protocol |
92 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[NET] could not open IPv6 socket, IPv6 disabled |
93 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[KNL] received netlink error: Address family not supported by protocol (97) |
94 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[KNL] unable to create IPv6 routing table rule |
95 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] TNC recommendation policy is 'default' |
96 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] loading IMVs from '/etc/tnc_config' |
97 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] added IETF attributes |
98 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] added ITA-HSR attributes |
99 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] added TCG attributes |
100 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] added TCG functional component namespace |
101 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] added ITA-HSR functional component namespace |
102 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] added ITA-HSR functional component 'Trusted GRUB Boot Loader' |
103 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] added ITA-HSR functional component 'Trusted Boot' |
104 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] added ITA-HSR functional component 'Linux IMA' |
105 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[LIB] libimcv initialized |
106 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[IMV] IMV 1 "Attestation" initialized |
107 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] loading PTS ca certificates from '/etc/pts/cacerts' |
108 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] loaded ca certificate "C=US, O=TNC Demo, CN=AIK CA" from '/etc/pts/cacerts/aikCaCert.pem' |
109 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] mandatory PTS measurement algorithm HASH_SHA1[openssl] available |
110 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] mandatory PTS measurement algorithm HASH_SHA256[openssl] available |
111 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS measurement algorithm HASH_SHA384[openssl] available |
112 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS DH group MODP_2048[openssl] available |
113 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS DH group MODP_1536[openssl] available |
114 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS DH group MODP_1024[openssl] available |
115 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] mandatory PTS DH group ECP_256[openssl] available |
116 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS DH group ECP_384[openssl] available |
117 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] IMV 1 supports 2 message types: 'TCG/PTS' 0x005597/0x00000001 'IETF/Operating System' 0x000000/0x00000001 |
118 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] IMV 1 "Attestation" loaded from '/usr/lib/ipsec/imcvs/imv-attestation.so' |
119 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] loading IMCs from '/etc/tnc_config' |
120 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[IMC] IMC 1 "OS" initialized |
121 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[IMC] processing "/etc/debian_version" file |
122 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[IMC] operating system name is 'Debian' |
123 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[IMC] operating system version is '7.8 armv7l' |
124 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] IMC 1 supports 1 message type: 'IETF/Operating System' 0x000000/0x00000001 |
125 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] IMC 1 "OS" loaded from '/usr/lib/ipsec/imcvs/imc-os.so' |
126 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[IMC] IMC 2 "Attestation" initialized |
127 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] mandatory PTS measurement algorithm HASH_SHA1[openssl] available |
128 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] mandatory PTS measurement algorithm HASH_SHA256[openssl] available |
129 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS measurement algorithm HASH_SHA384[openssl] available |
130 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS DH group MODP_2048[openssl] available |
131 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS DH group MODP_1536[openssl] available |
132 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS DH group MODP_1024[openssl] available |
133 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] mandatory PTS DH group ECP_256[openssl] available |
134 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[PTS] optional PTS DH group ECP_384[openssl] available |
135 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] IMC 2 supports 1 message type: 'TCG/PTS' 0x005597/0x00000001 |
136 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[TNC] IMC 2 "Attestation" loaded from '/usr/lib/ipsec/imcvs/imc-attestation.so' |
137 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loading ca certificates from '/etc/ipsec.d/cacerts' |
138 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loaded ca certificate "C=US, O=TNC Demo, CN=TNC Demo CA" from '/etc/ipsec.d/cacerts/demoCaCert.pem' |
139 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loaded ca certificate "C=CH, O=MSE, OU=TSM_ITSec, CN=MSE CA" from '/etc/ipsec.d/cacerts/MSE_CA_Cert.pem' |
140 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loading aa certificates from '/etc/ipsec.d/aacerts' |
141 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loading ocsp signer certificates from '/etc/ipsec.d/ocspcerts' |
142 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loading attribute certificates from '/etc/ipsec.d/acerts' |
143 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loading crls from '/etc/ipsec.d/crls' |
144 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loading secrets from '/etc/ipsec.secrets' |
145 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[CFG] loaded RSA private key from '/etc/ipsec.d/private/raspi3Key.pem' |
146 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[LIB] loaded plugins: charon random nonce x509 revocation constraints pkcs1 pkcs8 pem openssl pubkey tnc-imc tnc-imv tnc-tnccs tnccs-20 eap-identity eap-ttls eap-tnc sqlite curl kernel-netlink socket-default updown stroke |
147 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 00[JOB] spawning 16 worker threads |
148 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 06[CFG] received stroke: add connection 'peer' |
149 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 06[CFG] loaded certificate "C=US, O=TNC Demo, CN=raspi3.example.com" from 'raspi3Cert.pem' |
150 | 2 | Andreas Steffen | Aug 15 14:45:55 raspi3 charon: 06[CFG] added configuration 'peer' |
151 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 10[CFG] received stroke: initiate 'peer' |
152 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 11[IKE] initiating IKE_SA peer[1] to 10.10.1.40 |
153 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 11[ENC] generating IKE_SA_INIT request 0 [ SA KE No N(NATD_S_IP) N(NATD_D_IP) N(HASH_ALG) ] |
154 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[500] to 10.10.1.40[500] (256 bytes) |
155 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[NET] received packet: from 10.10.1.40[500] to 10.10.1.39[500] (309 bytes) |
156 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[ENC] parsed IKE_SA_INIT response 0 [ SA KE No N(NATD_S_IP) N(NATD_D_IP) CERTREQ N(HASH_ALG) N(MULT_AUTH) ] |
157 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[IKE] received cert request for "C=CH, O=MSE, OU=TSM_ITSec, CN=MSE CA" |
158 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[IKE] received cert request for "C=US, O=TNC Demo, CN=TNC Demo CA" |
159 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[IKE] sending cert request for "C=CH, O=MSE, OU=TSM_ITSec, CN=MSE CA" |
160 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[IKE] sending cert request for "C=US, O=TNC Demo, CN=TNC Demo CA" |
161 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[IKE] establishing CHILD_SA peer |
162 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[ENC] generating IKE_AUTH request 1 [ IDi N(INIT_CONTACT) CERTREQ IDr N(USE_TRANSP) SA TSi TSr N(MOBIKE_SUP) N(NO_ADD_ADDR) N(MULT_AUTH) N(EAP_ONLY) ] |
163 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (304 bytes) |
164 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (112 bytes) |
165 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 13[ENC] parsed IKE_AUTH response 1 [ IDr EAP/REQ/TTLS ] |
166 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 13[IKE] server requested EAP_TTLS authentication (id 0xDB) |
167 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 13[TLS] EAP_TTLS version is v0 |
168 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 13[IKE] allow mutual EAP-only authentication |
169 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 13[ENC] generating IKE_AUTH request 2 [ EAP/RES/TTLS ] |
170 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (208 bytes) |
171 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
172 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 14[ENC] parsed IKE_AUTH response 2 [ EAP/REQ/TTLS ] |
173 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 14[ENC] generating IKE_AUTH request 3 [ EAP/RES/TTLS ] |
174 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
175 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (480 bytes) |
176 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[ENC] parsed IKE_AUTH response 3 [ EAP/REQ/TTLS ] |
177 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[TLS] negotiated TLS 1.2 using suite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 |
178 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[TLS] received TLS server certificate 'C=US, O=TNC Demo, CN=raspi4.example.com' |
179 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[CFG] using certificate "C=US, O=TNC Demo, CN=raspi4.example.com" |
180 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[CFG] using trusted ca certificate "C=US, O=TNC Demo, CN=TNC Demo CA" |
181 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[CFG] checking certificate status of "C=US, O=TNC Demo, CN=raspi4.example.com" |
182 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[CFG] certificate status is not available |
183 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[CFG] reached self-signed root ca with a path length of 0 |
184 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[TLS] received TLS cert request for 'C=CH, O=MSE, OU=TSM_ITSec, CN=MSE CA |
185 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[TLS] received TLS cert request for 'C=US, O=TNC Demo, CN=TNC Demo CA |
186 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[TLS] sending TLS peer certificate 'C=US, O=TNC Demo, CN=raspi3.example.com' |
187 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[ENC] generating IKE_AUTH request 4 [ EAP/RES/TTLS ] |
188 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
189 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
190 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 16[ENC] parsed IKE_AUTH response 4 [ EAP/REQ/TTLS ] |
191 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 16[ENC] generating IKE_AUTH request 5 [ EAP/RES/TTLS ] |
192 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (352 bytes) |
193 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (256 bytes) |
194 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 09[ENC] parsed IKE_AUTH response 5 [ EAP/REQ/TTLS ] |
195 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 09[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/ID] |
196 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 09[IKE] server requested EAP_IDENTITY authentication (id 0x00) |
197 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 09[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/ID] |
198 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 09[ENC] generating IKE_AUTH request 6 [ EAP/RES/TTLS ] |
199 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (192 bytes) |
200 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (176 bytes) |
201 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[ENC] parsed IKE_AUTH response 6 [ EAP/REQ/TTLS ] |
202 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
203 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IKE] server requested EAP_PT_EAP authentication (id 0xB8) |
204 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TLS] EAP_PT_EAP version is v1 |
205 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] TNC client is handling outbound connection |
206 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] assigned TNCCS Connection ID 1 |
207 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] IMC 1 "OS" created a state for IF-TNCCS 2.0 Connection ID 1: +long +excl -soh |
208 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] over IF-T for Tunneled EAP 2.0 with maximum PA-TNC message size of 65490 bytes |
209 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] loaded AIK certificate from '/etc/pts/aik3Cert.der' |
210 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] loaded AIK Blob from '/etc/pts/aik3Blob.bin' |
211 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] AIK Blob: => 559 bytes @ 0x76eaf000 |
212 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 0: 01 01 00 00 00 12 00 00 00 04 00 00 00 00 01 00 ................ |
213 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 16: 01 00 02 00 00 00 0C 00 00 08 00 00 00 00 02 00 ................ |
214 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 32: 00 00 00 00 00 00 00 00 00 01 00 9B 3E 44 E6 65 ............>D.e |
215 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 48: 0F DF 14 1A 57 B4 81 E3 7A 75 2F CC FE 8E 8C DE ....W...zu/..... |
216 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 64: C8 42 17 25 43 3D 7B 83 01 F6 43 BB 38 0D 82 38 .B.%C={...C.8..8 |
217 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 80: 2E 66 DB 0D EC AE 21 22 A3 3D 1E 43 08 7C 7B F6 .f....!".=.C.|{. |
218 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 96: 78 95 73 05 37 E0 D0 22 52 AC 5A 00 0F F4 A3 92 x.s.7.."R.Z..... |
219 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 112: 5D 70 E8 56 18 34 9C A6 86 3D DE 48 45 16 BD 67 ]p.V.4...=.HE..g |
220 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 128: F1 6E B8 5D 03 82 DF 84 29 B6 8E 0A 76 FE 25 DD .n.]....)...v.%. |
221 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 144: 03 E1 81 C9 80 47 3A 9C 96 CD 0A D4 E9 ED F9 12 .....G:......... |
222 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 160: 37 C8 65 AE 16 26 A1 9F B8 6E 50 DA 96 A1 39 93 7.e..&...nP...9. |
223 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 176: D2 FC 85 13 31 28 30 D3 F0 AF D4 8E B3 9A 39 8C ....1(0.......9. |
224 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 192: 2C 4E 67 1A 03 1C 6C 60 EB CF E1 25 78 E7 2E F5 ,Ng...l`...%x... |
225 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 208: 21 C8 66 C7 A2 52 89 81 26 52 75 84 C9 77 19 A2 !.f..R..&Ru..w.. |
226 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 224: 69 45 CB 4A E6 77 8B 1F E1 CD F8 A7 0B 39 C9 B3 iE.J.w.......9.. |
227 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 240: 91 43 C9 A0 F7 62 EE 9F E4 E7 5A 29 73 BB 7F 60 .C...b....Z)s..` |
228 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 256: 12 97 F9 7C 72 43 BE C7 C1 4C 00 AD BC 7C 50 CF ...|rC...L...|P. |
229 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 272: 54 DF F2 10 56 B1 68 B2 58 CC 23 08 8D 78 4C 1A T...V.h.X.#..xL. |
230 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 288: 07 4B 20 05 3B 0E 6A C3 9E F3 6D 00 00 01 00 04 .K .;.j...m..... |
231 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 304: 81 5C 12 BC D0 DC BC 6C CC 11 2B 38 9C 13 0B DD .\.....l..+8.... |
232 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 320: CE B5 9A 9F 63 96 32 CD 17 5B 52 1A A8 E5 1F EB ....c.2..[R..... |
233 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 336: A2 88 8D EB 4E 50 F8 B6 48 F6 1A 7F A1 94 D9 A8 ....NP..H....... |
234 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 352: 7D 86 6E BE C4 23 0B DA FE 99 41 8F 31 E3 D1 F7 }.n..#....A.1... |
235 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 368: 58 B9 FD FD A5 49 5B 25 B5 6C 5C BA 8A 2A 65 F6 X....I[%.l\..*e. |
236 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 384: 89 B9 14 C7 67 63 0D 53 08 95 54 43 34 9F A4 FE ....gc.S..TC4... |
237 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 400: D9 18 95 AF 50 38 DC 73 AA 71 68 54 EF A0 C5 8F ....P8.s.qhT.... |
238 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 416: 91 59 9F 22 44 E6 CE F8 E2 33 F2 58 9D DE 8E F4 .Y."D....3.X.... |
239 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 432: C3 52 95 6B 0E 95 22 42 B6 63 FF D3 34 4B 92 87 .R.k.."B.c..4K.. |
240 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 448: 92 3E A0 55 07 92 92 52 95 FF 6F 9B C3 84 6F 8C .>.U...R..o...o. |
241 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 464: C3 87 1C 42 35 95 83 7A 89 EA 78 05 71 73 1B 07 ...B5..z..x.qs.. |
242 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 480: 29 20 B2 B0 C6 74 2C 26 04 27 BF E6 D9 B3 3D 28 ) ...t,&.'....=( |
243 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 496: 40 CA 69 40 E7 35 4F 4A F4 0B C1 E8 27 3D 9F B4 @.i@.5OJ....'=.. |
244 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 512: 28 12 E9 56 35 FF C8 77 0B 19 71 85 EF 9C DF 3C (..V5..w..q....< |
245 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 528: 41 6D 71 E0 E7 9E 12 7B 9B C0 05 A8 EA 4B 3F 4A Amq....{.....K?J |
246 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[PTS] 544: F7 1F 9C BF 3F D9 D2 B4 D2 91 60 0F 30 B3 6A ....?.....`.0.j |
247 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] IMC 2 "Attestation" created a state for IF-TNCCS 2.0 Connection ID 1: +long +excl -soh |
248 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] over IF-T for Tunneled EAP 2.0 with maximum PA-TNC message size of 65490 bytes |
249 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] IMC 1 "OS" changed state of Connection ID 1 to 'Handshake' |
250 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] IMC 2 "Attestation" changed state of Connection ID 1 to 'Handshake' |
251 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] proposing PB-TNC mutual half duplex protocol |
252 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] operating system numeric version is 7.8 |
253 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] last boot: Aug 15 07:56:52 UTC 2015, 17353 s ago |
254 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] IPv4 forwarding is disabled |
255 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] factory default password is disabled |
256 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] loaded device public key from '/etc/pts/aik3Pub.der' |
257 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IMC] device ID is 565feb9e8462870dba884ce540a0768d68829873 |
258 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PA-TNC message with ID 0x83cf019d |
259 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PA-TNC attribute type 'IETF/Product Information' 0x000000/0x00000002 |
260 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PA-TNC attribute type 'IETF/String Version' 0x000000/0x00000004 |
261 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PA-TNC attribute type 'IETF/Numeric Version' 0x000000/0x00000003 |
262 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PA-TNC attribute type 'IETF/Operational Status' 0x000000/0x00000005 |
263 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PA-TNC attribute type 'IETF/Forwarding Enabled' 0x000000/0x0000000b |
264 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PA-TNC attribute type 'IETF/Factory Default Password Enabled' 0x000000/0x0000000c |
265 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PA-TNC attribute type 'ITA-HSR/Device ID' 0x00902a/0x00000008 |
266 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PB-PA message type 'IETF/Operating System' 0x000000/0x00000001 |
267 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] PB-TNC state transition from 'Init' to 'Server Working' |
268 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] creating PB-TNC CDATA batch |
269 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] adding ITA-HSR/PB-Mutual-Capability message |
270 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] adding IETF/PB-Language-Preference message |
271 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] adding IETF/PB-PA message |
272 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[TNC] sending PB-TNC CDATA batch (283 bytes) for Connection ID 1 |
273 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
274 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[ENC] generating IKE_AUTH request 7 [ EAP/RES/TTLS ] |
275 | 2 | Andreas Steffen | Aug 15 14:46:05 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (448 bytes) |
276 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (272 bytes) |
277 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[ENC] parsed IKE_AUTH response 7 [ EAP/REQ/TTLS ] |
278 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
279 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] received TNCCS batch (108 bytes) |
280 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] TNC client is handling inbound connection |
281 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] processing PB-TNC SDATA batch for Connection ID 1 |
282 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] PB-TNC state transition from 'Server Working' to 'Client Working' |
283 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] processing ITA-HSR/PB-Mutual-Capability message (16 bytes) |
284 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] processing IETF/PB-PA message (84 bytes) |
285 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] activating mutual PB-TNC half duplex protocol |
286 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
287 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IMC] IMC 2 "Attestation" received message for Connection ID 1 from IMV 1 |
288 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] processing PA-TNC message with ID 0x42501f74 |
289 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Max Attribute Size Request' 0x005597/0x00000021 |
290 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Request PTS Protocol Capabilities' 0x005597/0x01000000 |
291 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/PTS Measurement Algorithm Request' 0x005597/0x06000000 |
292 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IMC] IMC 2 received a segmentation contract request from IMV 1 for PA message type 'TCG/PTS' 0x005597/0x00000001 |
293 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IMC] maximum attribute size of 100000000 bytes with maximum segment size of 65446 bytes |
294 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[PTS] supported PTS protocol capabilities: .VDT. |
295 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[PTS] selected PTS measurement algorithm is HASH_SHA1 |
296 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] creating PA-TNC message with ID 0x1d5fa63a |
297 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] creating PA-TNC attribute type 'TCG/Max Attribute Size Response' 0x005597/0x00000022 |
298 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] creating PA-TNC attribute type 'TCG/PTS Protocol Capabilities' 0x005597/0x02000000 |
299 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] creating PA-TNC attribute type 'TCG/PTS Measurement Algorithm' 0x005597/0x07000000 |
300 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
301 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] TNC server is handling outbound connection |
302 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] assigned TNCCS Connection ID 2 |
303 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IMV] IMV 1 "Attestation" created a state for IF-TNCCS 2.0 Connection ID 2: +long +excl -soh |
304 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IMV] over IF-T for Tunneled EAP 2.0 with maximum PA-TNC message size of 65490 bytes |
305 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IMV] user AR identity 'raspi4.example.com' of type username authenticated by certificate |
306 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IMV] machine AR identity '10.10.1.40' of type IPv4 address authenticated by unknown method |
307 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IMV] IMV 1 "Attestation" changed state of Connection ID 2 to 'Handshake' |
308 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] PB-TNC state transition from 'Init' to 'Client Working' |
309 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] creating PB-TNC SDATA batch |
310 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[TNC] sending PB-TNC SDATA batch (8 bytes) for Connection ID 2 |
311 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
312 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[ENC] generating IKE_AUTH request 8 [ EAP/RES/TTLS ] |
313 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (176 bytes) |
314 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (432 bytes) |
315 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[ENC] parsed IKE_AUTH response 8 [ EAP/REQ/TTLS ] |
316 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
317 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] received TNCCS batch (267 bytes) |
318 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] TNC server is handling inbound connection |
319 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PB-TNC CDATA batch for Connection ID 2 |
320 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
321 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing IETF/PB-Language-Preference message (31 bytes) |
322 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing IETF/PB-PA message (228 bytes) |
323 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] setting language preference to 'en' |
324 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] handling PB-PA message type 'IETF/Operating System' 0x000000/0x00000001 |
325 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] IMV 1 "Attestation" received message for Connection ID 2 from IMC 1 |
326 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PA-TNC message with ID 0x366c28ea |
327 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PA-TNC attribute type 'IETF/Product Information' 0x000000/0x00000002 |
328 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PA-TNC attribute type 'IETF/String Version' 0x000000/0x00000004 |
329 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PA-TNC attribute type 'IETF/Numeric Version' 0x000000/0x00000003 |
330 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PA-TNC attribute type 'IETF/Operational Status' 0x000000/0x00000005 |
331 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PA-TNC attribute type 'IETF/Forwarding Enabled' 0x000000/0x0000000b |
332 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PA-TNC attribute type 'IETF/Factory Default Password Enabled' 0x000000/0x0000000c |
333 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] processing PA-TNC attribute type 'ITA-HSR/Device ID' 0x00902a/0x00000008 |
334 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] operating system name is 'Debian' from vendor Debian Project |
335 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] operating system version is '7.8 armv7l' |
336 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] device ID is 762872c90011671ef219b6a2a0c3c7dda875b43c |
337 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] assigned session ID 3 to Connection ID 2 |
338 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] policy: imv_policy_manager start successful |
339 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] policy: skipping enforcment 6 |
340 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] FWDEN workitem 13 |
341 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] FMETA workitem 14 |
342 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] PCKGS workitem 15 |
343 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] TCPOP workitem 16 |
344 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] UDPOP workitem 17 |
345 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] TPMRA workitem 18 |
346 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] IMV 1 requests a segmentation contract for PA message type 'TCG/PTS' 0x005597/0x00000001 |
347 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IMV] maximum attribute size of 100000000 bytes with maximum segment size of 65446 bytes |
348 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] creating PA-TNC message with ID 0x918da8fe |
349 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] creating PA-TNC attribute type 'TCG/Max Attribute Size Request' 0x005597/0x00000021 |
350 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] creating PA-TNC attribute type 'TCG/Request PTS Protocol Capabilities' 0x005597/0x01000000 |
351 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] creating PA-TNC attribute type 'TCG/PTS Measurement Algorithm Request' 0x005597/0x06000000 |
352 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
353 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] TNC client is handling outbound connection |
354 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
355 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] creating PB-TNC CDATA batch |
356 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] adding IETF/PB-PA message |
357 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[TNC] sending PB-TNC CDATA batch (92 bytes) for Connection ID 1 |
358 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
359 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[ENC] generating IKE_AUTH request 9 [ EAP/RES/TTLS ] |
360 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (256 bytes) |
361 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (256 bytes) |
362 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[ENC] parsed IKE_AUTH response 9 [ EAP/REQ/TTLS ] |
363 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
364 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] received TNCCS batch (87 bytes) |
365 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] TNC client is handling inbound connection |
366 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] processing PB-TNC SDATA batch for Connection ID 1 |
367 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] PB-TNC state transition from 'Server Working' to 'Client Working' |
368 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] processing IETF/PB-PA message (79 bytes) |
369 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
370 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[IMC] IMC 2 "Attestation" received message for Connection ID 1 from IMV 1 |
371 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] processing PA-TNC message with ID 0xaff3c130 |
372 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] processing PA-TNC attribute type 'TCG/Request File Metadata' 0x005597/0x00700000 |
373 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] processing PA-TNC attribute type 'TCG/DH Nonce Parameters Request' 0x005597/0x03000000 |
374 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[IMC] metadata request for file '/etc/tnc_config' |
375 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[PTS] selected PTS DH group is ECP_256 |
376 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[PTS] nonce length is 20 |
377 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] creating PA-TNC message with ID 0x5e3ee705 |
378 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] creating PA-TNC attribute type 'TCG/Unix-Style File Metadata' 0x005597/0x00900000 |
379 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] creating PA-TNC attribute type 'TCG/DH Nonce Parameters Response' 0x005597/0x04000000 |
380 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
381 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] TNC server is handling outbound connection |
382 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] PB-TNC state transition from 'Server Working' to 'Client Working' |
383 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] creating PB-TNC SDATA batch |
384 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] adding IETF/PB-PA message |
385 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[TNC] sending PB-TNC SDATA batch (92 bytes) for Connection ID 2 |
386 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
387 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[ENC] generating IKE_AUTH request 10 [ EAP/RES/TTLS ] |
388 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (256 bytes) |
389 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (256 bytes) |
390 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[ENC] parsed IKE_AUTH response 10 [ EAP/REQ/TTLS ] |
391 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
392 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] received TNCCS batch (92 bytes) |
393 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] TNC server is handling inbound connection |
394 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] processing PB-TNC CDATA batch for Connection ID 2 |
395 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
396 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] processing IETF/PB-PA message (84 bytes) |
397 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
398 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IMV] IMV 1 "Attestation" received message for Connection ID 2 from IMC 2 to IMV 1 |
399 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] processing PA-TNC message with ID 0xf94741eb |
400 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] processing PA-TNC attribute type 'TCG/Max Attribute Size Response' 0x005597/0x00000022 |
401 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] processing PA-TNC attribute type 'TCG/PTS Protocol Capabilities' 0x005597/0x02000000 |
402 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] processing PA-TNC attribute type 'TCG/PTS Measurement Algorithm' 0x005597/0x07000000 |
403 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IMV] IMV 1 received a segmentation contract response from IMC 2 for PA message type 'TCG/PTS' 0x005597/0x00000001 |
404 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IMV] maximum attribute size of 100000000 bytes with maximum segment size of 65446 bytes |
405 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[PTS] supported PTS protocol capabilities: .VDT. |
406 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[PTS] selected PTS measurement algorithm is HASH_SHA1 |
407 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IMV] IMV 1 handles FMETA workitem 14 |
408 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IMV] IMV 1 requests metadata for file '/etc/tnc_config' |
409 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IMV] IMV 1 handled FMETA workitem 14: allow - file metadata requested |
410 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IMV] IMV 1 handles TPMRA workitem 18 |
411 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] creating PA-TNC message with ID 0xda2a70e9 |
412 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] creating PA-TNC attribute type 'TCG/Request File Metadata' 0x005597/0x00700000 |
413 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] creating PA-TNC attribute type 'TCG/DH Nonce Parameters Request' 0x005597/0x03000000 |
414 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
415 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] TNC client is handling outbound connection |
416 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
417 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] creating PB-TNC CDATA batch |
418 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] adding IETF/PB-PA message |
419 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[TNC] sending PB-TNC CDATA batch (226 bytes) for Connection ID 1 |
420 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
421 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[ENC] generating IKE_AUTH request 11 [ EAP/RES/TTLS ] |
422 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (400 bytes) |
423 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (336 bytes) |
424 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[ENC] parsed IKE_AUTH response 11 [ EAP/REQ/TTLS ] |
425 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
426 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] received TNCCS batch (172 bytes) |
427 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] TNC client is handling inbound connection |
428 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] processing PB-TNC SDATA batch for Connection ID 1 |
429 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] PB-TNC state transition from 'Server Working' to 'Client Working' |
430 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] processing IETF/PB-PA message (164 bytes) |
431 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
432 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[IMC] IMC 2 "Attestation" received message for Connection ID 1 from IMV 1 |
433 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] processing PA-TNC message with ID 0xd27d5b33 |
434 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] processing PA-TNC attribute type 'TCG/DH Nonce Finish' 0x005597/0x05000000 |
435 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] processing PA-TNC attribute type 'TCG/Get TPM Version Information' 0x005597/0x08000000 |
436 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] processing PA-TNC attribute type 'TCG/Get Attestation Identity Key' 0x005597/0x0d000000 |
437 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] selected DH hash algorithm is HASH_SHA1 |
438 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] initiator nonce: => 20 bytes @ 0x11d940 |
439 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] 0: 01 97 8C C2 90 09 6D 02 F0 0A 40 E1 8C 90 5F 15 ......m...@..._. |
440 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] 16: FB 4E 28 AD .N(. |
441 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] responder nonce: => 20 bytes @ 0x11d410 |
442 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] 0: 3D D0 72 39 3A E1 A0 E2 0B 30 B4 D4 D9 22 9F E0 =.r9:....0...".. |
443 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] 16: B6 D1 2A 01 ..*. |
444 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] shared DH secret: => 32 bytes @ 0x11e038 |
445 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] 0: 5F 0F D8 1E B5 39 B4 E2 86 BF 0C 92 9E E3 3A EA _....9........:. |
446 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] 16: D7 23 93 EB C2 85 F5 09 EC DB C0 B1 E5 51 50 DE .#...........QP. |
447 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] secret assessment value: => 20 bytes @ 0x11c5e0 |
448 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] 0: D8 9D 1E 70 CE 78 C3 13 F2 79 BA 5D 7C E5 05 7C ...p.x...y.]|..| |
449 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] 16: E0 E0 83 77 ...w |
450 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[PTS] TPM Version Info: Chip Version: 1.2.133.32, Spec Level: 2, Errata Rev: 3, Vendor ID: IFX |
451 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] creating PA-TNC message with ID 0x641bcea1 |
452 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] creating PA-TNC attribute type 'TCG/TPM Version Information' 0x005597/0x09000000 |
453 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] creating PA-TNC attribute type 'TCG/Attestation Identity Key' 0x005597/0x0e000000 |
454 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
455 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] TNC server is handling outbound connection |
456 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] PB-TNC state transition from 'Server Working' to 'Client Working' |
457 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] creating PB-TNC SDATA batch |
458 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] adding IETF/PB-PA message |
459 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[TNC] sending PB-TNC SDATA batch (87 bytes) for Connection ID 2 |
460 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
461 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[ENC] generating IKE_AUTH request 12 [ EAP/RES/TTLS ] |
462 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (256 bytes) |
463 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (400 bytes) |
464 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[ENC] parsed IKE_AUTH response 12 [ EAP/REQ/TTLS ] |
465 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
466 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] received TNCCS batch (226 bytes) |
467 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] TNC server is handling inbound connection |
468 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] processing PB-TNC CDATA batch for Connection ID 2 |
469 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
470 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] processing IETF/PB-PA message (218 bytes) |
471 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
472 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[IMV] IMV 1 "Attestation" received message for Connection ID 2 from IMC 2 to IMV 1 |
473 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] processing PA-TNC message with ID 0x676268aa |
474 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] processing PA-TNC attribute type 'TCG/Unix-Style File Metadata' 0x005597/0x00900000 |
475 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] processing PA-TNC attribute type 'TCG/DH Nonce Parameters Response' 0x005597/0x04000000 |
476 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[IMV] metadata request returned 1 file: |
477 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[IMV] 'tnc_config' (177 bytes) owner 0, group 0, type Regular |
478 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[IMV] created Jun 16 20:09:17 2015, modified Jun 16 20:09:17 2015, accessed Jun 16 20:09:17 2015 |
479 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] selected DH hash algorithm is HASH_SHA1 |
480 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] selected PTS DH group is ECP_256 |
481 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] nonce length is 20 |
482 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] initiator nonce: => 20 bytes @ 0x11d890 |
483 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] 0: 27 B7 51 A0 C8 66 92 54 F0 57 C1 49 9D 2A 7D 3A '.Q..f.T.W.I.*}: |
484 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] 16: F1 38 81 26 .8.& |
485 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] responder nonce: => 20 bytes @ 0x11e418 |
486 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] 0: 96 48 1F 52 8C A6 D5 6E 5F A4 17 2B AF BE 26 71 .H.R...n_..+..&q |
487 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] 16: 49 73 01 42 Is.B |
488 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] shared DH secret: => 32 bytes @ 0x127170 |
489 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] 0: AA FE 9F 01 D7 CC 22 17 FF 35 CF 9C 70 41 7B 11 ......"..5..pA{. |
490 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] 16: D0 3C B6 32 BF 3D 80 BF 73 32 1E 95 F3 20 9E D1 .<.2.=..s2... .. |
491 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] secret assessment value: => 20 bytes @ 0x11e9f0 |
492 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] 0: B2 E0 AB DF 89 C5 1D B2 A3 51 FD A9 C8 3B F8 7F .........Q...;.. |
493 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[PTS] 16: 68 50 6C DE hPl. |
494 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] creating PA-TNC message with ID 0xe1b84e91 |
495 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] creating PA-TNC attribute type 'TCG/DH Nonce Finish' 0x005597/0x05000000 |
496 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] creating PA-TNC attribute type 'TCG/Get TPM Version Information' 0x005597/0x08000000 |
497 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] creating PA-TNC attribute type 'TCG/Get Attestation Identity Key' 0x005597/0x0d000000 |
498 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
499 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] TNC client is handling outbound connection |
500 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
501 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] creating PB-TNC CDATA batch |
502 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] adding IETF/PB-PA message |
503 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[TNC] sending PB-TNC CDATA batch (902 bytes) for Connection ID 1 |
504 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
505 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[ENC] generating IKE_AUTH request 13 [ EAP/RES/TTLS ] |
506 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1072 bytes) |
507 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (256 bytes) |
508 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[ENC] parsed IKE_AUTH response 13 [ EAP/REQ/TTLS ] |
509 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
510 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] received TNCCS batch (80 bytes) |
511 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] TNC client is handling inbound connection |
512 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] processing PB-TNC SDATA batch for Connection ID 1 |
513 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] PB-TNC state transition from 'Server Working' to 'Client Working' |
514 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] processing IETF/PB-PA message (72 bytes) |
515 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
516 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[IMC] IMC 2 "Attestation" received message for Connection ID 1 from IMV 1 |
517 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] processing PA-TNC message with ID 0xed256fac |
518 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] processing PA-TNC attribute type 'TCG/Request Functional Component Evidence' 0x005597/0x00100000 |
519 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[TNC] processing PA-TNC attribute type 'TCG/Generate Attestation Evidence' 0x005597/0x00200000 |
520 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[IMC] evidence requested for 1 functional components |
521 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] * ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
522 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] loaded ima measurements '/sys/kernel/security/ima/binary_runtime_measurements' (434 entries) |
523 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
524 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
525 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: dd:ee:60:04:dc:3b:d4:ee:30:04:06:cd:93:18:1c:5a:21:87:b5:9b |
526 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:boot_aggregate' |
527 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
528 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
529 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 65:ee:0c:a2:cd:ac:0d:67:f8:1a:fd:53:7b:96:75:6f:3b:b8:0f:82 |
530 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/init' |
531 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
532 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
533 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6b:a1:a0:58:89:a8:f2:57:53:42:b5:dc:5f:3e:de:54:89:8a:ee:29 |
534 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/sh' |
535 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
536 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
537 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 85:e6:6e:7a:96:98:8b:0a:af:c8:88:46:5d:7a:fe:b5:e9:d3:c2:3e |
538 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/klibc-sO6SifHCdmbehHGtm0y1yHu6vb0.so' |
539 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
540 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
541 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 68:4a:c3:8d:48:55:be:e0:21:93:4f:52:a0:d2:3d:66:86:0c:b2:82 |
542 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/mkdir' |
543 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
544 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
545 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 4b:f9:e0:ee:b2:29:ce:9d:b3:32:4d:c7:89:b7:e5:85:46:7e:67:ea |
546 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/mount' |
547 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
548 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
549 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f6:79:f9:cb:f3:45:8b:6c:f1:2b:c8:c7:25:ac:17:03:b8:ee:44:3b |
550 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/udev/udev.conf' |
551 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
552 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
553 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1b:58:34:3c:0b:26:f2:82:9e:44:92:14:14:93:73:66:d9:a6:12:3e |
554 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/conf/arch.conf' |
555 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
556 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
557 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 07:5c:e3:03:d5:16:29:7f:60:6e:ef:d6:64:a6:f9:a6:1b:a7:87:95 |
558 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/conf/initramfs.conf' |
559 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
560 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
561 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8e:36:36:07:ce:6a:2d:e3:03:91:a1:1c:64:75:3c:e2:e2:02:08:87 |
562 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/functions' |
563 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
564 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
565 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0d:16:c7:df:df:07:a1:f8:47:70:04:ef:c9:fb:1a:18:ea:f6:74:55 |
566 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/cat' |
567 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
568 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
569 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8a:6a:02:1d:e5:80:60:e8:06:24:5e:30:79:d5:23:fa:2c:3a:9f:ef |
570 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-top/ORDER' |
571 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
572 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
573 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d0:dc:06:f1:a3:92:d4:50:54:48:57:2c:d5:20:b1:ba:6e:53:ff:14 |
574 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-top/all_generic_ide' |
575 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
576 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
577 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ff:19:54:90:8c:fe:4d:2e:37:c8:0e:05:40:41:e1:2d:59:f6:0f:e3 |
578 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-top/blacklist' |
579 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
580 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
581 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b9:7b:5e:84:9f:e9:ed:82:30:09:f1:88:f5:e3:bb:c4:5a:ec:fc:d2 |
582 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-top/keymap' |
583 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
584 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
585 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 77:66:42:2c:b3:fd:a6:ce:26:a1:0d:a4:65:b7:a9:45:c9:d3:36:37 |
586 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-top/udev' |
587 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
588 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
589 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 86:5d:0d:73:cc:01:24:8e:01:fe:2c:db:e9:5e:e1:f5:37:11:11:1f |
590 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/udevd' |
591 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
592 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
593 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 70:8e:97:48:bb:27:0e:55:d1:e5:e8:54:15:2b:ec:c9:08:6b:e4:f9 |
594 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/ld-linux-armhf.so.3' |
595 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
596 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
597 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 04:92:98:b0:7e:fe:40:eb:8e:97:ed:74:d7:f3:b7:cf:f4:5c:07:0c |
598 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/ld.so.cache' |
599 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
600 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
601 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 20:ef:47:e0:ec:ba:67:89:cc:63:12:4b:d3:4b:03:7f:db:48:56:24 |
602 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libselinux.so.1' |
603 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
604 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
605 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8a:17:94:db:04:b0:eb:af:9c:7b:c4:04:29:7f:c4:7a:1a:b5:6c:1d |
606 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/librt.so.1' |
607 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
608 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
609 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f6:6f:cb:6b:4c:c6:a4:0b:15:6a:6c:70:30:e2:94:a6:5f:4b:17:3e |
610 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libgcc_s.so.1' |
611 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
612 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
613 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 24:6d:27:bb:ac:e5:09:57:e0:62:cc:41:24:2b:90:99:cd:31:79:a9 |
614 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libc.so.6' |
615 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
616 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
617 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e4:71:6c:df:22:64:cc:e4:0b:44:9f:75:27:0d:40:89:46:54:4e:2f |
618 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libdl.so.2' |
619 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
620 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
621 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 73:7f:69:c5:09:f3:53:8d:b2:22:87:68:b2:02:0f:4b:71:86:fa:50 |
622 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libpthread.so.0' |
623 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
624 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
625 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d0:46:b9:f3:cb:40:e8:64:59:90:25:95:85:9f:5f:36:4b:3d:4a:2e |
626 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.devname' |
627 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
628 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
629 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e4:55:f4:96:49:b7:b1:4c:d3:cb:a6:90:ff:3a:ed:16:f7:46:ba:0c |
630 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/udevadm' |
631 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
632 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
633 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 40:e6:15:d9:1a:7e:f9:91:00:ab:94:7d:d5:68:8b:ee:52:fd:1b:f5 |
634 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/rules.d/50-udev-default.rules' |
635 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
636 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
637 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 46:8d:c8:da:14:c9:6c:1b:ba:05:c2:c0:b9:9c:8d:55:df:6b:e0:99 |
638 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/rules.d/55-dm.rules' |
639 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
640 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
641 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3e:c3:17:c2:aa:50:3b:77:b1:98:4e:c5:99:aa:f4:54:6e:58:9b:c9 |
642 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/rules.d/60-persistent-storage-dm.rules' |
643 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
644 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
645 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 15:03:18:5e:09:4d:38:c6:b6:87:d2:e5:6a:2f:d1:26:58:17:4c:dc |
646 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/rules.d/60-persistent-storage.rules' |
647 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
648 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
649 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5c:eb:68:b0:02:3c:7e:05:60:5e:21:97:a4:85:82:65:a5:ef:ca:cf |
650 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/rules.d/80-drivers.rules' |
651 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
652 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
653 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d7:5b:c7:f7:b5:71:a6:ca:8e:1e:42:23:12:63:fb:e4:e2:03:66:4e |
654 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/rules.d/91-permissions.rules' |
655 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
656 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
657 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 45:88:b4:27:29:be:ef:1d:73:d6:4e:93:16:10:31:b7:40:34:3c:53 |
658 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/kmod' |
659 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
660 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
661 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fb:e7:6a:ed:50:72:a7:46:c7:8e:66:b9:dc:20:0d:80:17:9a:79:e3 |
662 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libkmod.so.2' |
663 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
664 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
665 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 43:64:c9:7f:26:36:7b:f4:51:fd:2a:a0:a0:53:b1:da:e9:be:27:e6 |
666 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modprobe.d/aliases.conf' |
667 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
668 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
669 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 04:a4:47:6d:8e:c9:21:62:d7:75:2e:fa:dd:89:46:8a:36:cf:7f:be |
670 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/modprobe.d/alsa-base-blacklist.conf' |
671 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
672 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
673 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 59:80:f0:50:33:fb:e9:f7:a3:4b:a6:1d:fd:21:13:9b:54:af:a6:b1 |
674 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/modprobe.d/alsa-base.conf' |
675 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
676 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
677 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 63:cd:9b:94:0d:76:ce:13:ec:fe:c2:56:cf:8b:f1:06:20:13:21:1d |
678 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/blkid' |
679 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
680 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
681 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 00:24:9b:63:c2:2d:dc:63:e0:9f:2c:95:50:34:13:5e:46:5e:e0:eb |
682 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/modprobe.d/fbdev-blacklist.conf' |
683 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
684 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
685 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3e:5c:ab:c1:ae:4b:60:49:ea:cf:c7:98:b9:3a:64:b8:1b:5f:30:01 |
686 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libblkid.so.1' |
687 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
688 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
689 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 08:cb:d9:2d:24:c0:5d:b8:4d:fe:11:57:be:67:d3:8a:95:b4:5a:f2 |
690 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/modprobe.d/ipv6.conf' |
691 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
692 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
693 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0a:eb:43:56:9d:3f:b2:42:15:03:65:e7:c6:0f:5e:b6:f1:9a:90:a8 |
694 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libuuid.so.1' |
695 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
696 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
697 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 47:eb:41:3c:08:da:76:ed:fc:9e:e6:b2:1d:95:eb:2a:19:01:e1:89 |
698 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/modprobe.d/raspi-blacklist.conf' |
699 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
700 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
701 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 27:4f:ae:72:8e:11:51:d7:eb:19:62:4c:33:81:9f:59:d9:97:23:e0 |
702 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.dep.bin' |
703 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
704 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
705 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9d:f6:d3:57:2c:a2:8c:22:70:4c:e1:52:0c:b0:fa:76:2f:60:30:c4 |
706 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.alias.bin' |
707 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
708 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
709 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ba:48:4c:a4:9a:0b:92:74:34:72:34:25:ef:6d:f9:02:42:55:93:71 |
710 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.symbols.bin' |
711 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
712 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
713 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 64:d1:1e:8f:81:35:8f:1a:0b:1a:f2:87:b3:f2:fc:3f:b2:51:1a:28 |
714 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.builtin.bin' |
715 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
716 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
717 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 4c:42:a4:dc:d8:67:9e:04:ce:59:28:d8:d3:c9:2b:b6:da:5b:31:28 |
718 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-premount/ORDER' |
719 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
720 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
721 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fb:28:68:3c:6b:04:30:08:c3:ac:4e:13:aa:f5:40:1c:d9:e8:91:2e |
722 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-premount/plymouth' |
723 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
724 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
725 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b7:58:f9:77:dd:07:20:8a:5a:80:63:f7:a0:ac:ee:0b:02:6b:c6:ac |
726 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/local' |
727 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
728 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
729 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2f:6b:a7:c6:2c:d5:61:74:ff:1b:6c:3a:c3:eb:ac:f7:49:f7:d9:7e |
730 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/fstype' |
731 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
732 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
733 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d9:12:0d:c7:13:31:40:2d:06:c5:7c:19:cd:e1:71:46:a0:35:0d:10 |
734 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.dep' |
735 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
736 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
737 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c6:64:60:9d:e8:0c:08:c7:66:7b:df:da:d5:3a:01:b1:f3:20:5f:80 |
738 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/local-premount/ORDER' |
739 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
740 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
741 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e9:6d:33:80:a8:ab:61:ac:3d:3d:ed:ec:11:c5:14:92:49:17:48:fd |
742 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/local-premount/resume' |
743 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
744 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
745 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 80:12:4c:90:b0:b6:fa:87:1b:4e:13:11:0a:f8:64:fa:07:39:4a:f3 |
746 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-bottom/ORDER' |
747 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
748 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
749 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fd:25:dd:cf:2f:ad:c3:05:fa:ef:aa:ed:20:8c:01:4f:50:f7:99:b8 |
750 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/scripts/init-bottom/ima_policy' |
751 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
752 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
753 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8a:a3:05:98:ca:cb:56:27:b1:49:ea:b6:26:fa:63:99:5c:71:e5:e3 |
754 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/chroot' |
755 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
756 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
757 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b9:4d:3f:1e:3e:7c:a0:6d:ca:5c:0d:b5:8a:00:8a:07:7a:20:84:3c |
758 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/sbin/load_policy' |
759 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
760 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
761 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5f:9a:17:21:e9:55:61:28:77:2a:53:b8:c5:eb:d3:78:4d:f6:d4:de |
762 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/ld-2.13.so' |
763 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
764 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
765 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 93:09:09:18:3a:b6:16:82:4e:73:73:93:07:b2:87:72:fe:62:87:06 |
766 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/etc/ld.so.preload' |
767 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
768 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
769 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5f:fa:26:ad:af:3c:f6:4d:55:72:89:43:c1:dd:7b:1b:f1:af:a4:99 |
770 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/usr/lib/arm-linux-gnueabihf/libcofi_rpi.so' |
771 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
772 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
773 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d0:04:df:f7:10:e0:2a:60:30:db:09:6d:4d:6f:af:b1:46:fe:f8:88 |
774 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/etc/ld.so.cache' |
775 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
776 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
777 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fc:1e:79:6e:95:72:25:f0:1c:ce:e6:d6:c9:b2:c0:06:19:a9:e5:5c |
778 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/libsepol.so.1' |
779 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
780 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
781 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6b:37:3d:d8:fd:60:0f:f0:f7:5b:d5:96:36:fe:22:60:16:1a:55:04 |
782 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/libselinux.so.1' |
783 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
784 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
785 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a4:f3:a1:9e:16:12:7f:fb:45:4f:6b:b9:d7:2f:a4:f0:e1:eb:03:fe |
786 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/libc-2.13.so' |
787 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
788 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
789 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: cd:bd:72:68:67:a3:6c:80:1f:44:ff:ac:7c:97:89:61:9f:31:72:38 |
790 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/libdl-2.13.so' |
791 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
792 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
793 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 84:66:c8:b2:fc:a2:52:eb:91:3d:c8:40:84:c2:86:cd:7b:67:52:76 |
794 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/etc/selinux/config' |
795 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
796 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
797 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 80:d9:ed:12:f8:73:6c:c2:68:da:29:84:6d:52:6c:6b:01:95:df:9c |
798 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/root/etc/selinux/default/policy/policy.26' |
799 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
800 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
801 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 93:70:72:3f:d6:fd:21:37:c9:3a:28:6a:cc:1b:a2:7a:09:35:1e:de |
802 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/init' |
803 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
804 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
805 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d4:97:cc:ac:12:61:5c:28:85:15:6d:4a:ea:7a:f7:9a:8d:4a:3f:ba |
806 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/rcS' |
807 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
808 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
809 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1e:5a:2c:5a:f8:cf:3b:f0:26:5a:5b:7b:7b:23:9e:3b:e8:cd:8a:c1 |
810 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/dash' |
811 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
812 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
813 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 20:a8:ca:0b:11:04:b3:86:ad:54:d8:a1:ae:55:43:a0:4e:57:90:33 |
814 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/rc' |
815 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
816 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
817 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1c:30:ed:9c:40:5b:da:14:0c:69:f8:32:bd:bb:7a:ab:e7:83:5b:d2 |
818 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/stty' |
819 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
820 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
821 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: aa:4b:b3:a5:f3:c6:75:9c:a3:79:83:e6:72:6e:53:3f:53:c2:b8:74 |
822 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/run-parts' |
823 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
824 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
825 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2e:6b:cb:34:b8:94:7d:44:bf:f3:4a:6a:8b:22:8f:ca:85:b8:f4:21 |
826 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/startpar' |
827 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
828 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
829 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c8:40:10:49:2c:bd:6a:5f:f7:40:41:29:88:22:76:53:5a:3e:b3:cb |
830 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/tput' |
831 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
832 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
833 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 55:09:cc:2f:e7:4a:e5:3c:38:63:8c:80:2a:64:f6:cf:e5:09:f4:db |
834 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libtinfo.so.5.9' |
835 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
836 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
837 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b6:9a:fd:c1:61:ea:51:88:83:0d:89:1c:98:85:e9:d9:28:42:44:74 |
838 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/echo' |
839 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
840 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
841 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: bb:c5:01:5c:ab:e0:52:82:7a:32:c0:b7:52:ca:27:f9:3a:42:5f:a7 |
842 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnss_compat-2.13.so' |
843 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
844 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
845 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1d:7f:8b:3e:cf:b8:06:0c:82:18:e3:34:22:1c:01:59:a3:91:7b:49 |
846 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnsl-2.13.so' |
847 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
848 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
849 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5c:48:b7:a6:c2:5e:61:36:be:57:f8:2d:d5:ef:c4:97:28:56:05:5b |
850 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnss_nis-2.13.so' |
851 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
852 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
853 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 36:65:24:bd:b2:cb:8b:73:bf:c5:5d:64:3e:f2:92:f9:f3:e9:e5:77 |
854 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnss_files-2.13.so' |
855 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
856 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
857 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f8:cf:95:ae:ce:4b:06:90:c9:34:31:e2:d3:12:0c:ea:ec:54:18:f0 |
858 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/mountkernfs.sh' |
859 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
860 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
861 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 55:6e:01:65:3d:49:50:71:c7:64:d8:74:b8:5b:d0:8d:ef:a6:4e:02 |
862 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/fake-hwclock' |
863 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
864 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
865 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d2:de:ef:26:00:23:37:da:76:c2:8f:f2:ef:63:27:53:60:9e:b8:94 |
866 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/hostname.sh' |
867 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
868 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
869 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2c:27:ad:86:3e:b4:18:01:26:7f:a1:5b:ba:01:68:eb:ce:46:34:f2 |
870 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/cat' |
871 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
872 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
873 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 29:2e:97:e0:c4:4b:ab:ab:47:55:e1:ff:7f:2a:2d:25:08:16:c2:09 |
874 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/fake-hwclock' |
875 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
876 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
877 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5e:2d:66:ca:36:71:61:14:40:53:03:19:d0:f3:05:26:02:2b:dc:50 |
878 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/sed' |
879 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
880 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
881 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 34:63:4e:b1:dc:c4:59:a0:60:3b:de:01:95:c4:57:98:82:a4:60:55 |
882 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/grep' |
883 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
884 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
885 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f4:cd:6e:af:31:a8:24:8b:e6:4c:69:52:7b:d4:66:49:19:cc:0f:8c |
886 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/hostname' |
887 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
888 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
889 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6d:ff:18:c7:9c:f3:25:35:f8:6d:c3:a0:44:10:83:0c:86:4f:ce:ab |
890 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/date' |
891 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
892 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
893 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a2:ec:dd:25:1b:21:da:4f:85:64:24:fb:70:8f:19:67:dc:80:a6:82 |
894 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/librt-2.13.so' |
895 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
896 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
897 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8d:b0:51:1b:10:e4:c5:db:64:db:fc:00:2d:47:5f:26:c7:6b:f4:34 |
898 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libpthread-2.13.so' |
899 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
900 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
901 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d6:ad:ae:90:46:8a:45:8e:55:30:6b:c3:00:c7:23:7b:66:a7:ae:0f |
902 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/ls' |
903 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
904 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
905 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 05:24:4c:10:4d:16:65:e8:a1:da:ed:9d:5a:94:aa:3b:d2:cc:fb:a1 |
906 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libacl.so.1.1.0' |
907 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
908 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
909 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9f:87:dc:af:70:5c:33:34:05:f5:28:0c:ae:5c:3a:7c:63:ba:aa:2c |
910 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libattr.so.1.1.0' |
911 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
912 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
913 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 47:3f:8e:2f:35:bc:8c:dc:0a:80:8d:7b:30:77:b1:7a:b8:1a:fa:23 |
914 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/uname' |
915 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
916 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
917 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: bf:bf:38:f0:0f:5b:52:82:a8:5a:2e:ea:2e:dc:e7:6d:cb:1d:ec:95 |
918 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/mountpoint' |
919 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
920 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
921 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e1:61:c7:cb:77:88:c6:02:36:42:5e:8a:5f:5f:83:67:b4:5d:44:7f |
922 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/setfiles' |
923 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
924 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
925 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7d:d0:09:e4:ac:92:68:0a:d1:1d:f6:7f:91:7b:b5:8f:35:37:0e:f2 |
926 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/libaudit.so.0.0.0' |
927 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
928 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
929 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5c:8f:9c:b1:c0:3d:88:fa:b7:e4:dc:32:1b:0d:06:d4:31:32:a3:f5 |
930 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/mkdir' |
931 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
932 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
933 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b2:87:3b:a0:8f:66:07:18:cc:4a:09:95:ba:05:17:68:a0:fe:d8:4a |
934 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/touch' |
935 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
936 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
937 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1d:ae:ce:31:0b:88:f6:5c:6e:49:c3:4c:5b:65:63:69:84:ab:fa:c4 |
938 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/mount' |
939 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
940 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
941 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: aa:1a:9c:32:87:9d:aa:c9:86:8f:5e:56:43:7e:e7:01:9b:21:8d:c5 |
942 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libblkid.so.1.1.0' |
943 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
944 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
945 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 4a:46:f9:b9:c0:9b:ae:f1:51:c4:2e:ee:fb:cd:3f:cd:dd:b3:e1:a7 |
946 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libmount.so.1.1.0' |
947 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
948 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
949 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 51:9c:1f:5c:0c:37:3e:39:0d:d5:bc:72:86:c5:4d:8f:29:88:0f:23 |
950 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libuuid.so.1.3.0' |
951 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
952 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
953 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6f:f4:fd:99:4d:a0:ae:2c:07:12:5d:1e:d3:71:44:0f:41:00:ca:49 |
954 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/udev' |
955 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
956 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
957 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0e:7a:9c:6d:dc:7d:6f:d9:b8:6c:ff:0e:15:d6:93:10:32:eb:d5:89 |
958 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/ps' |
959 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
960 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
961 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5e:78:58:ed:ec:f7:ab:74:40:ca:4c:21:b9:21:50:72:41:cc:a8:8c |
962 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/egrep' |
963 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
964 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
965 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 68:e3:fc:5e:26:c8:ea:6e:58:ec:3b:12:37:6a:8e:13:b2:c3:db:2b |
966 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libprocps.so.0.0.1' |
967 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
968 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
969 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 76:23:a7:f7:f4:85:52:f4:b5:cd:9d:b2:70:fc:bc:08:5a:f0:38:f7 |
970 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/create_static_nodes' |
971 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
972 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
973 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1f:26:18:35:b0:9e:d2:1f:42:65:e7:da:07:81:8d:3a:f2:af:90:1c |
974 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/mknod' |
975 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
976 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
977 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8d:a1:91:ad:1c:a7:1c:ee:a6:62:30:31:13:07:9b:a8:f8:40:c6:ba |
978 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.devname' |
979 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
980 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
981 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 39:d8:8d:60:2e:78:55:b2:b5:85:dd:3d:8c:3d:e3:22:0b:40:4b:6a |
982 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/write_dev_root_rule' |
983 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
984 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
985 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7f:20:ad:47:0f:ee:c2:02:5e:c1:7c:52:d1:99:95:1f:a0:88:49:7c |
986 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/mv' |
987 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
988 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
989 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a0:ee:de:0d:7a:a4:fd:59:b0:23:36:c3:e7:62:f8:1c:3b:90:75:1a |
990 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/ln' |
991 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
992 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
993 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 4c:ac:a1:bc:1f:90:28:ed:08:c8:5e:65:6b:fe:ae:8c:69:6a:ff:41 |
994 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libkmod.so.2.1.3' |
995 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
996 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
997 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0a:3b:56:60:8d:27:cd:16:f5:5e:6c:85:79:36:ff:fc:4d:6e:e9:3d |
998 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.dep.bin' |
999 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1000 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1001 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1f:33:5c:4a:60:8e:b2:39:e1:c1:e9:35:ce:a6:7f:5e:9d:ec:a3:cb |
1002 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.alias.bin' |
1003 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1004 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1005 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f7:79:e3:c0:81:f9:c9:d1:c5:3a:62:29:d1:f8:8c:35:50:29:53:74 |
1006 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.symbols.bin' |
1007 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1008 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1009 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a9:56:0c:30:a3:ff:07:9a:cc:fd:10:e6:13:b1:58:cf:f1:f7:4d:1c |
1010 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/usb-db' |
1011 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1012 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1013 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1c:69:ff:de:dc:26:1b:95:87:2a:40:57:c2:70:cd:dc:01:e0:d2:92 |
1014 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/udisks-part-id' |
1015 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1016 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1017 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c0:7f:aa:47:82:bd:03:9b:5d:a6:9f:a5:95:d9:64:70:83:ec:75:91 |
1018 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/drivers/uio/uio.ko' |
1019 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1020 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1021 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3b:7c:8f:f1:f0:2b:4a:11:68:28:34:ba:27:88:8f:3a:89:60:dc:dd |
1022 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/drivers/uio/uio_pdrv_genirq.ko' |
1023 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1024 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1025 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 07:49:12:78:ab:26:fa:8a:4b:f4:2b:3d:1f:c9:2c:ba:88:d7:94:8e |
1026 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/ifplugd.agent' |
1027 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1028 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1029 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 09:f4:b2:67:6b:ba:59:54:ae:e1:88:e9:1f:ab:7b:2e:a8:e3:6d:f9 |
1030 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/chown' |
1031 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1032 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1033 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b8:cd:81:38:e1:de:11:b5:ad:05:7e:fd:bc:90:e7:87:20:01:5f:18 |
1034 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/udev/net.agent' |
1035 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1036 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1037 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b5:89:52:1c:10:e7:ed:4b:93:9f:d4:3e:fc:b3:3a:f1:c6:ed:0a:78 |
1038 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libglib-2.0.so.0.4000.0' |
1039 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1040 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1041 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 68:1a:53:1d:d7:9f:81:84:8f:9f:94:1d:57:b2:25:83:4d:91:a0:e4 |
1042 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/sleep' |
1043 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1044 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1045 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f3:e1:e6:c5:e2:ae:94:27:76:38:70:ba:e3:20:0b:4b:ee:eb:d4:dd |
1046 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/chmod' |
1047 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1048 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1049 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a1:56:91:89:e6:a8:02:0b:d2:60:06:4a:e6:1e:15:8c:93:aa:e3:3f |
1050 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libudev.so.0.13.0' |
1051 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1052 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1053 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9c:e8:93:f6:9c:60:69:8f:35:fe:25:87:0c:8a:b8:e2:11:1c:be:6d |
1054 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libparted.so.0.0.1' |
1055 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1056 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1057 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: cd:1b:e9:e4:45:ab:90:b6:52:a2:f7:34:bb:6e:df:29:c9:ee:6d:d6 |
1058 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libpcre.so.3.13.1' |
1059 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1060 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1061 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: be:a3:4a:0c:d0:7e:5d:c3:ab:8b:09:1a:ae:fb:04:26:07:90:fa:db |
1062 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libdevmapper.so.1.02.1' |
1063 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1064 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1065 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: bf:e4:c3:86:a3:bb:1f:78:5f:e6:64:59:6d:89:84:18:ee:90:12:b6 |
1066 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/keyboard-setup' |
1067 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1068 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1069 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2a:a4:89:e2:19:2d:ab:92:9a:49:d4:04:32:91:8f:a6:a0:86:25:26 |
1070 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/setupcon' |
1071 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1072 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1073 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 00:86:fd:85:3d:11:57:7b:d0:2d:83:3f:79:a5:12:19:4b:90:f1:bf |
1074 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/killall5' |
1075 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1076 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1077 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 77:99:29:6c:21:0b:a6:18:d4:aa:22:49:1d:73:2a:dc:41:a6:3b:33 |
1078 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/tty' |
1079 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1080 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1081 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: cc:8d:47:20:e5:e3:69:6d:be:9b:9f:7c:a6:a4:91:61:60:3a:04:69 |
1082 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/kbd_mode' |
1083 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1084 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1085 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f9:f0:68:7e:2b:6d:de:19:07:bc:ab:4b:62:6f:fa:e1:7f:e8:a1:67 |
1086 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/loadkeys' |
1087 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1088 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1089 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3a:25:92:4b:7d:19:39:25:a0:83:47:04:1e:8b:7d:e3:77:b1:65:c6 |
1090 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/gzip' |
1091 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1092 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1093 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ec:c5:ce:a6:96:54:15:7a:ed:46:a3:12:7b:c2:c8:43:9a:f3:c0:d4 |
1094 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/mountdevsubfs.sh' |
1095 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1096 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1097 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8c:00:98:9c:4b:be:4c:cc:fc:98:1b:17:e3:fb:25:c6:4c:1d:0d:e2 |
1098 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/stat' |
1099 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1100 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1101 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a2:f4:d8:9f:c5:bb:5e:34:ce:6a:87:67:02:ac:0c:3e:cb:3d:91:44 |
1102 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/rm' |
1103 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1104 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1105 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 10:24:25:b4:0f:c7:d6:c7:d6:ae:5a:0c:ae:34:c0:db:df:f0:73:2a |
1106 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/checkroot.sh' |
1107 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1108 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1109 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7b:00:ad:25:88:7a:eb:27:75:a5:eb:f3:4f:74:24:81:df:24:07:4f |
1110 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/swapon' |
1111 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1112 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1113 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a9:f5:bc:79:78:8c:b8:e3:c3:f0:a1:14:45:85:3f:4b:85:7b:5b:de |
1114 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/logsave' |
1115 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1116 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1117 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5e:92:58:f0:ef:ac:7e:78:93:1d:b4:5a:53:66:af:1e:e6:c6:7c:80 |
1118 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/fsck' |
1119 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1120 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1121 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 72:cf:c7:74:04:a7:5e:d5:66:b6:86:4c:26:7c:6d:8b:14:eb:b6:3a |
1122 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/e2fsck' |
1123 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1124 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1125 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d1:b0:ba:20:a1:e6:be:69:1c:f9:fa:a5:ad:3a:6b:14:34:c5:7b:8f |
1126 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libext2fs.so.2.4' |
1127 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1128 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1129 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0f:d2:e3:50:17:76:94:41:d5:1a:0b:b9:2a:db:61:47:07:c3:e7:c4 |
1130 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libcom_err.so.2.1' |
1131 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1132 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1133 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3c:91:4c:57:47:7e:75:93:96:c1:ae:fb:e8:21:a7:c8:3d:38:55:93 |
1134 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libe2p.so.2.3' |
1135 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1136 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1137 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9a:e3:d6:24:65:1d:92:1d:11:c1:9e:54:3f:1f:cd:36:e1:f1:b2:1c |
1138 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/readlink' |
1139 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1140 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1141 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ae:50:47:09:a7:d0:73:c2:43:f9:61:f2:21:06:66:87:5a:c5:31:92 |
1142 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/which' |
1143 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1144 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1145 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 61:ae:d0:07:80:86:92:44:e1:54:2f:e8:fb:74:1f:a0:d2:15:04:d2 |
1146 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/checkroot-bootclean.sh' |
1147 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1148 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1149 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b1:40:0b:0f:49:b8:e5:fd:b5:7d:d4:ab:6b:a0:a4:ae:8c:a8:2a:76 |
1150 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/kmod' |
1151 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1152 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1153 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e1:48:65:0e:d4:e4:4f:58:82:80:c3:14:2b:ee:c5:d9:0f:b3:31:3a |
1154 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/mtab.sh' |
1155 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1156 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1157 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: cf:d4:c1:c5:be:42:58:7d:c0:f4:f4:8b:30:63:e6:74:9b:ec:35:54 |
1158 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/find' |
1159 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1160 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1161 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 10:91:d6:f6:22:ea:23:e1:48:f3:04:ce:5e:04:c0:14:17:bb:b7:2f |
1162 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libm-2.13.so' |
1163 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1164 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1165 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c9:ec:e0:17:83:80:a3:8b:d4:b5:ff:a8:28:2e:82:ec:c7:3d:af:3d |
1166 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/snd.ko' |
1167 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1168 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1169 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 02:4f:7e:49:78:41:2a:48:bb:02:a9:2b:de:ff:43:f9:47:e1:a0:06 |
1170 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/snd-timer.ko' |
1171 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1172 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1173 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 58:62:ba:88:85:f8:bd:44:0e:b7:7a:7f:43:28:50:b5:66:b7:4c:cb |
1174 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/seq/snd-seq-device.ko' |
1175 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1176 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1177 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 52:ce:53:d1:3c:ca:15:26:6f:0d:94:1a:64:3c:fa:78:6a:92:66:35 |
1178 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/seq/snd-seq.ko' |
1179 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1180 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1181 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c8:c3:88:20:ff:67:28:03:ac:00:e1:b9:6b:41:34:43:11:c9:74:2c |
1182 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/snd-pcm.ko' |
1183 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1184 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1185 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 97:6e:45:b2:2d:5e:6e:9f:d3:fb:d1:67:22:03:9b:9e:65:f9:e7:a7 |
1186 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/arm/snd-bcm2835.ko' |
1187 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1188 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1189 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3f:8f:bc:0b:74:34:6d:d8:14:ce:b4:c5:4f:bc:66:d6:28:e7:7c:09 |
1190 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/alsactl' |
1191 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1192 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1193 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0a:66:70:60:48:7d:09:da:cf:99:4d:59:14:49:e7:18:7c:c2:bd:c8 |
1194 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/drivers/char/hw_random/bcm2708-rng.ko' |
1195 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1196 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1197 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7e:b2:5d:b3:10:a0:e0:00:ff:87:5c:ea:32:56:09:91:8e:b9:01:08 |
1198 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libasound.so.2.0.0' |
1199 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1200 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1201 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fb:0f:3c:49:08:98:71:c5:f2:2d:0d:d8:cd:20:5c:16:e3:71:5f:5a |
1202 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/checkfs.sh' |
1203 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1204 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1205 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 07:cb:e6:a9:af:d5:11:9c:fd:4e:a7:03:24:b4:99:1b:71:e3:bf:2f |
1206 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/dosfsck' |
1207 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1208 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1209 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6d:8e:a9:23:95:14:10:f3:fa:f6:b5:62:5b:de:fd:26:37:1c:30:47 |
1210 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/mountall.sh' |
1211 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1212 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1213 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c7:68:cc:71:17:b9:ae:aa:66:2a:5e:2e:2b:16:26:f7:2b:3b:5f:26 |
1214 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/rmdir' |
1215 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1216 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1217 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 71:db:98:d0:69:cf:e9:59:76:32:4a:63:f0:95:76:31:27:e4:41:f7 |
1218 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/df' |
1219 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1220 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1221 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0a:c2:51:53:81:6b:95:f0:51:b1:e7:9b:03:69:39:55:9d:a0:a1:56 |
1222 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/mountall-bootclean.sh' |
1223 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1224 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1225 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 61:52:40:6a:54:3f:25:fa:d2:32:19:0c:0d:ea:63:46:e7:3e:b4:c1 |
1226 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/procps' |
1227 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1228 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1229 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 87:80:d4:0b:37:0b:b7:bb:e1:cc:5f:42:d5:25:ae:c2:08:20:7a:3e |
1230 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/udev-mtab' |
1231 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1232 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1233 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6e:78:89:e4:39:b7:d9:c8:be:c8:31:73:d1:cb:a0:47:1f:dd:a6:28 |
1234 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/urandom' |
1235 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1236 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1237 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a3:f3:d1:db:8a:c1:1c:21:f0:11:b0:23:b2:34:20:e4:00:78:72:1d |
1238 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/sysctl' |
1239 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1240 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1241 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 58:5b:0f:b6:36:d0:9f:33:da:60:72:79:27:51:20:e7:91:9a:f5:16 |
1242 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/dd' |
1243 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1244 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1245 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d5:3d:07:fb:25:60:d5:54:6d:c8:71:29:37:55:60:6a:64:4c:6b:c1 |
1246 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/networking' |
1247 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1248 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1249 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 40:b7:fe:ce:9b:0c:57:a8:90:95:f2:f8:cd:44:3e:4f:0a:42:0d:a7 |
1250 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/ifup' |
1251 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1252 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1253 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7e:5b:66:b5:c3:ba:fa:0c:1f:90:34:d4:20:26:d9:d1:bf:d7:ca:cc |
1254 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/network/if-pre-up.d/wireless-tools' |
1255 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1256 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1257 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 54:21:5a:69:21:0d:30:53:51:50:1b:de:74:99:5c:6c:46:d5:29:b2 |
1258 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/wpa_supplicant/ifupdown.sh' |
1259 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1260 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1261 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 80:b4:e7:07:f4:49:cb:2f:c3:d8:d9:57:64:94:69:86:ef:a3:10:8b |
1262 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/ip' |
1263 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1264 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1265 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d1:80:91:ae:d3:d3:dc:fe:6e:22:81:61:da:02:ba:d1:62:c3:3e:77 |
1266 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libresolv-2.13.so' |
1267 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1268 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1269 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 75:de:80:ad:d1:46:53:29:e3:e6:10:04:6d:5f:70:35:00:8f:63:ab |
1270 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/network/if-up.d/mountnfs' |
1271 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1272 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1273 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b4:53:33:82:9a:75:f6:bf:4b:f6:87:8f:5e:90:c3:85:e4:0e:40:86 |
1274 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/network/if-up.d/openssh-server' |
1275 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1276 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1277 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 4d:c1:e5:3f:58:73:3f:9b:d5:d3:a3:85:32:1c:1e:c7:09:e8:05:9e |
1278 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/network/if-up.d/upstart' |
1279 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1280 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1281 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1e:71:52:bf:ac:59:1f:62:95:ab:6e:39:b5:35:12:fa:51:be:51:2b |
1282 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/ifplugd' |
1283 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1284 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1285 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 32:13:b7:39:a7:8e:90:da:3b:b6:c3:8c:ae:14:79:9d:57:59:bb:ec |
1286 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/libdaemon.so.0.5.0' |
1287 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1288 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1289 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 23:59:93:ae:d1:d9:f4:f3:7f:ab:b5:02:fc:c1:1a:a1:f8:72:0b:3c |
1290 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/mountnfs.sh' |
1291 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1292 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1293 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 62:a2:96:7d:96:a1:e2:d8:4f:f2:cc:4e:5a:26:0b:b0:f2:1e:ad:41 |
1294 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/ifplugd/ifplugd.action' |
1295 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1296 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1297 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 99:22:c8:ad:71:d4:72:d6:cb:ac:57:98:75:46:92:7d:03:ed:a9:6b |
1298 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/wpa_supplicant/action_wpa.sh' |
1299 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1300 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1301 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3b:63:c4:84:98:7a:de:75:16:5b:c3:bb:ef:d0:8d:60:2b:02:15:4a |
1302 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/mountnfs-bootclean.sh' |
1303 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1304 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1305 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6c:79:f0:d7:63:31:96:c8:60:19:f1:03:3a:9b:82:39:1d:64:ea:18 |
1306 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/ifplugd/action.d/ifupdown' |
1307 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1308 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1309 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9e:37:da:a3:f0:c3:07:68:25:88:01:a4:fb:c9:18:86:2b:94:91:81 |
1310 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/alsa-utils' |
1311 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1312 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1313 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d5:1d:0f:f9:0f:7b:fc:ed:87:f6:5c:42:57:35:1c:0c:99:33:3d:f0 |
1314 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/bootmisc.sh' |
1315 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1316 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1317 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: dc:bb:97:42:8b:20:a9:25:dc:7d:c6:5c:4b:f2:82:ae:2d:0d:c4:37 |
1318 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/chgrp' |
1319 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1320 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1321 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 81:70:7a:a9:ac:20:56:7f:72:d7:ef:2f:c8:8a:a9:a0:e7:c9:a8:3c |
1322 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/kbd' |
1323 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1324 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1325 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 69:00:e6:c1:71:ec:9a:79:c8:22:9c:3f:67:2a:14:8e:0e:7f:16:d8 |
1326 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/locale' |
1327 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1328 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1329 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 20:96:eb:76:f0:fe:79:7c:e6:8e:43:74:91:0d:3f:67:b1:bb:ef:d9 |
1330 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/fgconsole' |
1331 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1332 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1333 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 24:98:c2:69:68:a9:9c:55:98:60:57:57:a5:91:f8:c8:b3:28:f8:94 |
1334 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/mawk' |
1335 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1336 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1337 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 46:c1:e6:ab:a2:a8:35:fa:8b:ec:9e:65:c8:4a:5f:75:31:bf:6b:f4 |
1338 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/tr' |
1339 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1340 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1341 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 48:8c:8c:d3:94:6e:1d:90:60:9d:84:0e:c4:36:62:a7:51:ef:91:07 |
1342 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/setterm' |
1343 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1344 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1345 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: cf:1d:c8:60:e0:af:7e:99:f5:50:ff:3d:54:1b:9d:8d:aa:91:74:e3 |
1346 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/console-setup' |
1347 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1348 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1349 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6b:ac:4d:92:9b:06:22:6c:57:69:9e:5f:16:63:f5:42:8a:af:1e:1f |
1350 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/plymouth-log' |
1351 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1352 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1353 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b1:b7:58:99:ab:de:eb:c1:12:fa:49:ba:a4:0b:d4:2e:a1:ff:4a:71 |
1354 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/raspi-config' |
1355 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1356 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1357 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b8:ae:02:05:d3:70:1d:21:50:a3:4d:36:07:98:be:79:a1:de:da:af |
1358 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/selinux-basics' |
1359 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1360 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1361 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 21:92:41:0b:53:e9:a3:e6:83:93:db:4f:68:37:d2:47:d5:7c:eb:c9 |
1362 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/x11-common' |
1363 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1364 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1365 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a6:0d:6b:87:45:fb:45:8c:2b:fa:2f:95:ab:66:22:3f:41:2d:cd:7d |
1366 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/plymouth' |
1367 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1368 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1369 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 88:f7:6f:44:48:1e:5e:dc:de:5d:8e:d2:80:9f:c6:e8:14:84:77:09 |
1370 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/timeout' |
1371 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1372 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1373 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 14:db:f6:a5:07:71:ac:0d:c4:4d:42:ae:66:7a:58:e2:e3:6c:8c:2c |
1374 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libply.so.2.1.0' |
1375 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1376 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1377 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8b:a0:84:07:5e:04:42:07:11:94:6f:6a:ab:10:c2:30:b0:25:72:14 |
1378 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/thd' |
1379 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1380 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1381 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0b:1c:16:74:22:c9:59:d2:0b:de:b2:3c:e1:ac:1b:74:fd:48:60:bb |
1382 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/sudo' |
1383 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1384 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1385 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1d:b5:a6:5f:06:47:58:81:7e:04:3c:ae:86:53:4a:c8:5d:25:ef:24 |
1386 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libutil-2.13.so' |
1387 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1388 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1389 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 04:68:50:ae:69:6d:46:96:cd:7d:ac:3c:c1:3a:1b:be:05:07:23:5f |
1390 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/sudo/sudoers.so' |
1391 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1392 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1393 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 4b:0d:c3:29:d3:52:dc:f7:00:f7:a7:fd:24:ce:68:d1:a0:cb:d7:c6 |
1394 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libpam.so.0.83.0' |
1395 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1396 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1397 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c5:e1:07:2a:35:91:e8:69:17:1f:97:ae:a6:41:40:a7:7c:34:c0:2e |
1398 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_unix.so' |
1399 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1400 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1401 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6f:1c:0b:53:29:80:b3:53:b6:5b:22:1a:c8:16:69:e8:38:21:e0:58 |
1402 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libcrypt-2.13.so' |
1403 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1404 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1405 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 02:c7:0c:39:ad:2d:d9:bd:ec:95:52:25:ed:70:81:81:b5:b9:c1:40 |
1406 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_deny.so' |
1407 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1408 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1409 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: dd:d6:ac:ee:37:02:33:75:3c:c2:d7:6b:94:1d:c0:d1:4b:4c:21:f8 |
1410 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_permit.so' |
1411 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1412 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1413 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b9:f7:d2:99:78:e0:b8:95:f9:dc:b5:3a:2d:6d:15:2f:ee:07:1b:b9 |
1414 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_loginuid.so' |
1415 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1416 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1417 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c1:60:b8:aa:87:ab:7b:83:c9:a7:9f:b9:0c:ab:2b:f1:f1:9c:de:f7 |
1418 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/dhclient' |
1419 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1420 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1421 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e2:57:5a:c8:a6:12:06:be:1d:96:23:d4:e6:0a:35:77:bc:14:22:eb |
1422 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/tee' |
1423 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1424 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1425 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8a:a2:ef:3a:7e:14:20:45:06:db:52:bd:db:d6:35:4a:87:ab:49:9d |
1426 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/dhclient-script' |
1427 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1428 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1429 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c4:81:ed:6d:6a:b8:8a:b0:04:cb:f0:10:fc:d5:05:c7:33:c6:4b:63 |
1430 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/bash' |
1431 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1432 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1433 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2a:10:13:e0:dd:57:83:02:e8:7c:da:53:7c:a1:a8:f9:a1:1f:51:81 |
1434 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/auditd' |
1435 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1436 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1437 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: bf:2d:8e:f9:20:a5:d9:9c:3a:a6:ad:15:27:95:25:a9:48:bd:3f:9c |
1438 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/bootlogs' |
1439 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1440 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1441 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1e:f8:df:e3:e8:9c:c1:43:15:39:77:e2:ed:23:af:75:f8:9a:88:92 |
1442 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/cgroup-bin' |
1443 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1444 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1445 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f3:91:64:0e:19:47:9e:47:51:d5:49:62:91:6d:5a:a5:f9:5e:3a:93 |
1446 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/ifplugd' |
1447 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1448 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1449 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 11:27:86:ed:c1:f3:52:4e:5b:29:10:45:e3:cb:6f:e3:08:eb:4c:9c |
1450 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/motd' |
1451 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1452 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1453 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 89:90:db:71:fe:65:99:e5:55:67:f4:19:fe:1e:e0:00:6f:53:eb:b5 |
1454 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/opencryptoki' |
1455 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1456 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1457 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2a:26:50:75:74:c3:71:dc:78:e0:6e:ee:1a:a8:6c:98:65:97:56:8d |
1458 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/rsyslog' |
1459 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1460 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1461 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 29:6b:f3:38:12:b5:3c:80:21:56:e5:dc:58:0c:84:b5:51:9d:df:a5 |
1462 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/sudo' |
1463 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1464 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1465 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 73:1f:84:8f:0a:44:d3:82:61:39:dc:96:93:f0:62:ec:a4:04:e1:02 |
1466 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/triggerhappy' |
1467 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1468 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1469 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 02:7f:3a:a4:73:6e:89:81:4b:a6:f1:63:71:7e:a6:e2:6e:42:43:61 |
1470 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/trousers' |
1471 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1472 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1473 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a6:69:19:43:db:c7:09:99:09:31:e8:59:a8:f9:a4:0e:f8:93:62:92 |
1474 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/start-stop-daemon' |
1475 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1476 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1477 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 01:2a:17:8f:65:fb:31:e9:6a:6c:8c:49:a0:bf:14:38:26:1f:83:30 |
1478 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/savelog' |
1479 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1480 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1481 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f5:80:e3:86:87:03:af:70:4b:96:a9:5a:a6:a1:c5:24:1d:9d:1f:25 |
1482 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/id' |
1483 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1484 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1485 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: af:fa:f3:fb:13:af:5e:c7:f3:22:8c:1d:f7:ef:0c:38:3c:ef:46:b7 |
1486 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/umount' |
1487 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1488 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1489 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 50:71:ed:b1:25:5c:a4:22:35:4c:a3:a9:df:f0:35:9e:30:46:be:1c |
1490 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/pkcs11_startup' |
1491 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1492 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1493 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a7:87:53:86:54:02:9e:39:9f:01:a4:86:d4:7d:52:c2:de:c3:6c:6b |
1494 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/rsyslogd' |
1495 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1496 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1497 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c0:48:b4:dd:5f:dd:fb:be:1c:24:40:df:9f:57:7d:a4:ea:32:3f:e3 |
1498 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/auditd' |
1499 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1500 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1501 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a7:2c:28:bf:e8:85:b2:e5:0a:03:7b:d2:84:f3:d7:5c:45:e3:f6:5b |
1502 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/basename' |
1503 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1504 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1505 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5b:c8:e2:10:9f:41:65:52:3c:01:92:31:f9:3d:c6:0a:ca:53:01:83 |
1506 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/tcsd' |
1507 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1508 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1509 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d3:72:89:1c:34:49:76:89:c6:2b:71:ad:0c:28:56:53:19:94:a0:7e |
1510 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libz.so.1.2.7' |
1511 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1512 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1513 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 65:33:3a:a0:12:ef:e5:c8:22:d1:c4:07:77:3b:3b:23:8f:1a:7e:dd |
1514 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libwrap.so.0.7.6' |
1515 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1516 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1517 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8f:c1:61:4d:3b:4a:ca:ff:d7:18:78:60:3b:6c:c6:a8:08:ab:8b:8d |
1518 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/pkcs_slot' |
1519 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1520 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1521 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 69:ff:79:fc:cc:07:4f:80:43:60:eb:a5:f2:f0:35:0d:69:55:63:00 |
1522 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/dirname' |
1523 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1524 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1525 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d9:1d:68:43:c6:0d:a0:93:20:84:ba:13:6c:0c:f7:27:94:b9:01:70 |
1526 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/rsyslog/lmnet.so' |
1527 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1528 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1529 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 34:7e:5f:db:80:e0:de:8e:f0:70:bf:2c:fe:6a:37:97:bd:53:06:61 |
1530 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libcrypto.so.1.0.0' |
1531 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1532 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1533 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3b:5c:ce:f4:47:ac:01:d8:51:b9:3d:a2:16:60:50:f2:b0:da:7e:c2 |
1534 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/rsyslog/imuxsock.so' |
1535 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1536 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1537 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: be:93:81:bd:53:37:d1:2e:59:dd:10:1e:44:68:95:0a:1e:a8:ab:49 |
1538 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libkrb5.so.3.3' |
1539 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1540 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1541 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 40:65:3c:8b:d6:ce:b1:e1:26:0e:48:8f:b0:34:81:2b:bd:35:b4:88 |
1542 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/pkcsslotd' |
1543 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1544 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1545 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e6:f1:fb:cc:bd:1f:00:a1:cc:ea:60:1e:64:a1:6d:d1:61:44:6b:9a |
1546 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/dmesg' |
1547 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1548 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1549 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 08:70:79:9d:ea:86:1a:0d:ed:ab:41:9d:52:be:f8:13:d1:d0:0a:cf |
1550 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/rsyslog/imklog.so' |
1551 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1552 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1553 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5a:fe:a9:1b:9d:95:10:f7:6b:cd:d5:a1:a3:86:37:22:ff:6d:af:e9 |
1554 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgssapi_krb5.so.2.2' |
1555 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1556 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1557 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d9:c0:42:7e:7e:d7:dc:22:0a:3f:6c:a0:e7:1b:c7:54:43:24:c0:dc |
1558 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libk5crypto.so.3.1' |
1559 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1560 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1561 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8b:c9:ee:3e:4a:8e:1c:09:21:b3:c0:73:28:eb:0a:83:ae:8a:08:f5 |
1562 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libkrb5support.so.0.1' |
1563 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1564 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1565 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7e:d7:48:e2:cb:82:81:c6:be:99:fe:f4:9e:ea:5a:6e:36:31:c8:f4 |
1566 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libkeyutils.so.1.4' |
1567 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1568 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1569 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a3:d1:9e:3b:2f:98:bc:4d:e6:36:88:77:e5:23:a6:8c:c5:f2:2c:57 |
1570 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/audispd' |
1571 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1572 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1573 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: cd:39:9b:0a:99:e4:5a:b5:b5:76:c3:56:80:2c:c8:a2:2e:b6:e1:63 |
1574 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/auditctl' |
1575 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1576 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1577 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2b:00:d3:9c:d8:94:a3:48:fe:6a:19:7a:1f:bc:da:04:fb:b7:f7:20 |
1578 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/apache2' |
1579 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1580 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1581 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a9:f9:0b:12:40:64:14:84:5b:8c:28:50:4b:a3:9f:23:e7:a1:9e:ac |
1582 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/env' |
1583 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1584 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1585 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: de:92:00:45:96:b8:9a:ba:70:e4:f5:0e:ff:9b:68:57:6d:95:cd:a7 |
1586 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/apache2ctl' |
1587 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1588 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1589 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b5:10:c3:23:de:8c:84:12:8f:6f:bd:92:95:7f:fd:38:e8:fd:a8:7b |
1590 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/mktemp' |
1591 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1592 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1593 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 32:4b:dd:e8:66:9e:80:9f:b4:7f:fb:7f:05:05:19:1a:c6:4e:9c:7f |
1594 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/mpm-worker/apache2' |
1595 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1596 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1597 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ad:44:32:ec:4c:d5:fa:40:e6:fa:22:f1:d2:5f:be:cb:ba:8e:79:7e |
1598 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/libaprutil-1.so.0.4.1' |
1599 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1600 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1601 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 03:c3:d9:e7:12:24:c8:44:5c:3b:96:95:0a:77:81:e5:07:db:b8:d6 |
1602 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/libapr-1.so.0.4.6' |
1603 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1604 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1605 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2d:1f:23:e4:f6:36:04:19:a4:0d:05:b6:d2:dc:a7:51:82:cb:6c:ef |
1606 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libexpat.so.1.6.0' |
1607 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1608 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1609 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 45:5a:0a:32:1e:78:95:50:bc:a7:c8:bd:68:be:1a:23:1a:7c:59:df |
1610 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_alias.so' |
1611 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1612 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1613 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3f:6a:4c:3f:20:f6:48:52:0e:cd:1c:5d:a4:05:05:8b:5e:42:2e:b0 |
1614 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_auth_basic.so' |
1615 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1616 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1617 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: dc:7a:57:f2:9d:e7:b4:34:1c:1f:39:fe:3a:a5:12:46:9b:20:c7:2c |
1618 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_authn_file.so' |
1619 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1620 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1621 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 31:42:2d:69:b2:d7:2d:db:42:03:4b:32:aa:c7:69:25:31:ff:e5:8b |
1622 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_authz_default.so' |
1623 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1624 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1625 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f1:20:ad:a5:d7:3d:b5:b7:47:8d:36:94:6f:17:d6:bf:c3:c9:3e:3a |
1626 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_authz_groupfile.so' |
1627 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1628 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1629 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6b:cf:6f:76:b5:8e:1a:6e:97:e8:7d:28:42:d7:43:3b:c7:ae:a9:e6 |
1630 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_authz_host.so' |
1631 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1632 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1633 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6b:ba:e1:02:b7:5a:99:be:c7:95:6f:2d:c0:a0:d9:19:20:1d:a0:3d |
1634 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_authz_user.so' |
1635 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1636 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1637 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ec:42:f4:a1:fd:21:cb:b1:81:35:39:db:43:f0:c1:b0:d9:56:2e:1b |
1638 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_autoindex.so' |
1639 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1640 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1641 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9d:04:23:ff:1f:4a:bc:a7:a9:8a:e5:d7:80:b3:44:58:aa:e4:ee:6d |
1642 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_cgid.so' |
1643 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1644 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1645 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8d:db:57:cb:38:af:e5:d5:49:7d:bb:1e:57:77:98:d6:0b:1c:19:19 |
1646 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_deflate.so' |
1647 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1648 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1649 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3a:c7:1f:1f:25:7c:6b:5c:ac:c4:c1:04:72:23:2c:07:d1:4c:a0:68 |
1650 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_dir.so' |
1651 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1652 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1653 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0d:d6:d1:09:65:7f:e8:1e:6a:f4:9f:af:16:36:a6:03:1b:60:04:64 |
1654 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_env.so' |
1655 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1656 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1657 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1c:17:87:4d:36:43:5a:93:58:de:45:62:bf:1b:c6:fd:94:81:5b:d9 |
1658 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_mime.so' |
1659 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1660 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1661 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0a:ca:a2:b8:59:67:ff:c6:18:2f:48:5e:71:77:93:1d:bd:ff:0c:05 |
1662 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_negotiation.so' |
1663 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1664 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1665 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e9:d8:5d:17:c9:00:c7:a7:98:2b:9a:2b:35:1d:ab:c7:1b:31:69:2c |
1666 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_reqtimeout.so' |
1667 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1668 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1669 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3a:88:f3:c0:1a:c9:ee:be:46:97:dd:48:eb:30:87:53:f2:43:bd:9e |
1670 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_setenvif.so' |
1671 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1672 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1673 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f6:3e:00:d4:e4:96:e7:e3:5b:ef:85:23:7a:7c:f3:a8:9d:31:01:b4 |
1674 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_status.so' |
1675 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1676 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1677 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c9:4c:ac:d0:50:3a:da:af:29:87:48:60:69:fa:dc:97:08:4a:0b:57 |
1678 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/apache2/modules/mod_wsgi.so-2.7' |
1679 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1680 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1681 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6d:66:86:c4:25:62:ef:a4:18:39:90:e8:3f:66:38:e7:c8:19:69:1b |
1682 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/libpython2.7.so.1.0' |
1683 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1684 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1685 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7a:30:4b:e8:7f:e5:83:83:36:a8:8b:a3:4a:bb:86:f5:c9:ca:e7:81 |
1686 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/cron' |
1687 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1688 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1689 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 27:f4:eb:66:eb:fd:ab:91:78:56:a5:90:48:5e:c5:24:1d:a7:3c:d7 |
1690 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/dbus' |
1691 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1692 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1693 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 21:46:97:d7:ee:12:e4:fb:d4:d0:0f:c4:21:d1:76:cc:3e:31:2a:32 |
1694 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/dphys-swapfile' |
1695 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1696 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1697 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: eb:e3:8f:e8:1d:a7:ea:ae:fb:27:ef:0d:36:42:66:fe:91:14:23:e2 |
1698 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/mcstrans' |
1699 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1700 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1701 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 00:b5:44:c7:21:66:0f:bc:94:41:b0:b7:c2:25:fb:dc:6d:6c:c0:ab |
1702 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/openbsd-inetd' |
1703 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1704 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1705 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 39:74:bf:81:68:56:43:c3:47:14:47:bd:86:91:c5:31:1a:c9:65:ad |
1706 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/ntp' |
1707 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1708 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1709 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e6:1a:7f:9d:74:46:8a:7f:65:d1:2e:41:91:78:f0:c1:88:73:b7:1d |
1710 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/rng-tools' |
1711 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1712 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1713 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 85:51:d7:bc:c5:41:0d:bc:da:6b:6c:74:fa:ab:5f:f8:5e:70:25:29 |
1714 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/restorecond' |
1715 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1716 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1717 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 25:28:84:38:34:69:f5:5a:db:47:ab:13:6c:67:5e:69:be:90:03:6b |
1718 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/rsync' |
1719 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1720 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1721 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 58:9d:f6:b2:11:04:01:b7:b6:d7:63:67:58:c5:2a:ea:86:14:0f:cb |
1722 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/ssh' |
1723 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1724 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1725 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 84:09:8f:7a:6d:c6:16:82:1e:2a:f4:df:e2:d1:f9:29:5a:63:6b:b0 |
1726 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/tail' |
1727 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1728 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1729 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 31:98:2e:81:72:f9:a6:4e:68:c5:1f:77:5a:75:cb:e7:6b:45:d0:7d |
1730 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/cut' |
1731 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1732 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1733 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f6:c9:32:cd:1e:16:82:3d:5c:88:66:a9:be:d9:f1:df:71:aa:06:43 |
1734 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/dphys-swapfile' |
1735 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1736 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1737 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d3:e2:c9:61:69:3d:82:7a:50:f3:bc:60:fc:0e:5c:3f:00:29:b0:ab |
1738 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/dbus-uuidgen' |
1739 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1740 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1741 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 52:0b:d5:b8:b7:b8:e4:63:43:6e:73:75:83:95:a5:14:cf:d5:5e:cd |
1742 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/selinuxenabled' |
1743 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1744 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1745 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 26:08:92:9d:0c:62:d5:ea:4c:e5:94:a9:e1:3e:29:3c:6e:40:71:d8 |
1746 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/getent' |
1747 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1748 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1749 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c9:4e:2c:74:dc:ea:eb:36:38:6b:b4:fd:ab:f0:d7:fb:9c:76:5f:c3 |
1750 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/inetd' |
1751 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1752 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1753 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9f:1a:ae:04:12:96:eb:ba:39:60:a1:26:59:32:7d:f5:2b:1c:52:e1 |
1754 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/rngd' |
1755 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1756 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1757 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ba:1e:9b:55:13:72:1e:06:94:af:be:12:6a:97:b5:ef:84:2b:5d:03 |
1758 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/sshd' |
1759 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1760 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1761 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: cd:76:0e:d8:6e:71:51:50:6b:00:62:e9:6e:55:21:8c:5a:ff:ce:ea |
1762 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/expr' |
1763 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1764 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1765 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2d:a1:3e:a8:16:cf:28:54:f5:be:23:ef:b0:87:c0:c4:6b:f8:6f:7c |
1766 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/cron' |
1767 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1768 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1769 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a5:a5:76:2e:7b:3b:f9:ee:3f:4b:7e:43:1b:0e:71:59:36:72:ac:9e |
1770 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libdbus-1.so.3.7.2' |
1771 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1772 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1773 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ea:d5:49:85:81:dd:fb:f2:c9:c2:e0:83:45:c0:10:0d:bb:a8:b0:fb |
1774 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/install' |
1775 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1776 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1777 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7c:0d:d5:f9:ca:ff:ef:ea:4d:cf:eb:ae:04:b7:a1:af:ed:0f:f8:81 |
1778 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/restorecond' |
1779 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1780 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1781 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 65:ef:1e:4c:76:f0:e0:9e:35:bb:18:b4:d3:60:1e:49:fe:79:70:4a |
1782 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/ntpd' |
1783 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1784 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1785 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6b:e0:52:20:1e:1d:b5:3d:5f:d3:3c:f1:3d:d8:d8:1d:bc:0b:93:f5 |
1786 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/dbus-daemon' |
1787 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1788 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1789 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: eb:33:70:ee:a8:ed:0d:3d:77:bf:d1:63:8c:be:f8:97:e8:52:7d:1a |
1790 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libdbus-glib-1.so.2.2.2' |
1791 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1792 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1793 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0a:66:5a:2b:37:67:2a:da:87:a6:4a:c0:26:81:fb:74:80:11:8b:ee |
1794 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/libopts.so.25.10.0' |
1795 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1796 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1797 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ea:4b:8b:63:3e:ff:db:94:37:51:e7:09:ff:b8:d1:4e:3b:57:67:2d |
1798 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libsystemd-login.so.0.2.1' |
1799 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1800 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1801 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9a:6c:00:41:7c:5e:5a:bf:e2:29:69:6e:d3:0a:d5:15:fd:fc:18:31 |
1802 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/mcstransd' |
1803 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1804 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1805 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2a:c9:8b:25:e8:18:ca:7b:3e:4f:0c:69:3e:d7:bd:65:5b:25:e9:a5 |
1806 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libcap.so.2.22' |
1807 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1808 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1809 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a6:fa:6e:79:46:f5:30:14:97:9b:02:52:4f:c7:aa:f4:77:56:fe:50 |
1810 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgio-2.0.so.0.4000.0' |
1811 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1812 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1813 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b8:1d:54:25:2a:a1:13:99:0c:41:34:d3:c1:cc:65:05:ad:75:45:de |
1814 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnss_dns-2.13.so' |
1815 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1816 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1817 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6e:c8:06:6a:91:8e:58:1c:59:f3:ac:91:30:6e:32:d9:15:3f:5a:13 |
1818 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgobject-2.0.so.0.4000.0' |
1819 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1820 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1821 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 02:1b:c7:f9:3b:a8:92:c6:fc:08:e6:55:e2:7b:43:fa:f4:f5:97:25 |
1822 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgmodule-2.0.so.0.4000.0' |
1823 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1824 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1825 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6c:62:36:3f:84:63:e7:67:18:9b:de:4a:45:cb:97:77:a4:33:52:75 |
1826 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libffi.so.5.0.10' |
1827 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1828 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1829 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 44:ba:ec:ea:cd:3c:ee:7c:88:58:54:6d:c9:99:57:14:83:61:34:68 |
1830 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/plymouth' |
1831 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1832 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1833 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f1:d2:7e:61:2d:83:40:73:0b:c3:6e:74:10:3b:9e:88:c0:c5:d2:6e |
1834 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/rc.local' |
1835 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1836 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1837 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d2:b3:4f:78:86:43:1b:66:dc:c3:d8:b4:da:7a:ec:4c:94:c1:29:28 |
1838 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/init.d/rmnologin' |
1839 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1840 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1841 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 94:40:69:7f:e0:ff:4d:28:fd:c9:a2:ec:0c:7b:07:57:90:00:17:d7 |
1842 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/rc.local' |
1843 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1844 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1845 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f3:71:5a:1e:5f:76:0c:7b:35:80:8d:3f:8d:2a:df:bd:b6:d9:39:69 |
1846 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/getty' |
1847 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1848 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1849 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9a:b5:27:a4:68:5e:98:98:a2:3b:88:41:c3:43:4b:30:5d:5d:84:5e |
1850 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_env.so' |
1851 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1852 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1853 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7b:ce:66:d4:c6:4c:49:b0:53:a4:3f:32:d8:62:4a:4a:37:a3:8f:40 |
1854 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_nologin.so' |
1855 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1856 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1857 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7b:c1:e5:ff:d7:9b:6d:1f:79:02:89:f1:71:0d:42:e0:db:8f:5e:a2 |
1858 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_motd.so' |
1859 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1860 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1861 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 46:ba:b8:d2:a9:a5:d5:09:ca:90:1e:60:5e:de:8d:d7:e4:8d:77:cc |
1862 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_mail.so' |
1863 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1864 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1865 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 31:9c:72:bd:d8:6d:c0:08:93:0b:ca:f1:8f:09:b7:f1:6d:73:87:93 |
1866 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_limits.so' |
1867 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1868 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1869 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 56:59:26:6c:15:e1:89:bf:16:96:cb:d9:20:1a:d8:aa:4f:28:f2:e6 |
1870 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/dircolors' |
1871 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1872 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1873 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 69:20:35:90:e7:3a:a1:0d:47:91:c4:e9:dc:34:27:84:cb:64:41:d3 |
1874 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/ipsec' |
1875 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1876 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1877 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b2:bb:df:85:e1:44:34:7a:67:7c:f1:82:78:11:dd:5d:a6:7f:22:ad |
1878 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/libexec/ipsec/starter' |
1879 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1880 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1881 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 83:d3:c2:62:1f:70:6f:86:3b:39:5b:6c:20:fc:8f:2f:ed:1a:04:18 |
1882 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/libstrongswan.so.0.0.0' |
1883 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1884 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1885 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b0:e1:8a:57:92:a8:fb:b1:f4:03:7a:5f:1b:5e:5c:d9:80:23:3e:79 |
1886 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/libhydra.so.0.0.0' |
1887 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1888 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1889 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 55:c0:44:44:b2:a4:78:9f:06:76:3a:20:b5:4d:36:1e:40:7f:15:64 |
1890 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/key/af_key.ko' |
1891 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1892 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1893 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: dd:0c:2d:f8:70:c1:de:a2:ec:ba:d1:1b:d1:2d:66:0d:62:c2:28:4e |
1894 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/ah4.ko' |
1895 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1896 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1897 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 89:09:12:fe:9c:f5:c0:04:70:3c:da:db:6a:d0:92:b9:d5:d5:71:a9 |
1898 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/esp4.ko' |
1899 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1900 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1901 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 23:ba:be:8a:36:41:36:d9:0d:d3:94:30:12:bb:fa:25:63:ca:67:60 |
1902 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/xfrm/xfrm_ipcomp.ko' |
1903 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1904 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1905 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ec:83:39:c1:7a:d1:c1:77:72:d8:2c:d5:e7:96:df:6e:92:4a:2d:4a |
1906 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/ipcomp.ko' |
1907 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1908 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1909 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3f:54:fa:18:61:f5:e9:df:d1:2e:4b:25:ec:e0:57:cc:f2:0d:22:82 |
1910 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/tunnel4.ko' |
1911 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1912 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1913 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fe:5e:9d:31:8f:69:27:e4:3c:ca:c9:83:14:b8:ad:0d:a3:dc:ce:e7 |
1914 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/xfrm4_tunnel.ko' |
1915 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1916 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1917 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ee:9c:80:80:cc:e7:b2:56:34:79:42:a2:85:a7:15:ee:09:68:02:9a |
1918 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/libexec/ipsec/charon' |
1919 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1920 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1921 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1d:80:b0:dc:83:20:da:11:09:01:05:1f:66:c5:fd:6e:7e:3f:24:b9 |
1922 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/libcharon.so.0.0.0' |
1923 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1924 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1925 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0c:88:e4:8a:3c:6a:ab:09:ee:fc:84:72:ba:84:5e:9e:2d:c4:34:1c |
1926 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-random.so' |
1927 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1928 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1929 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c0:37:f6:e2:ae:3e:96:1e:99:70:cf:93:2c:a7:c9:dc:f8:29:00:48 |
1930 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-nonce.so' |
1931 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1932 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1933 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 4c:ee:7f:e7:96:26:4c:8c:1d:a2:2f:30:81:1b:86:15:00:c9:ea:2d |
1934 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-x509.so' |
1935 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1936 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1937 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c1:ea:75:d0:af:25:4b:7e:a8:94:77:ab:93:fc:e4:fb:fe:a2:9c:af |
1938 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-revocation.so' |
1939 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1940 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1941 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 88:37:2e:49:33:f6:5e:83:66:45:78:13:08:86:34:80:5a:f8:d9:f9 |
1942 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-constraints.so' |
1943 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1944 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1945 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ed:46:71:f0:0d:f4:80:46:0b:5f:6d:30:63:c1:98:b2:0e:e4:33:50 |
1946 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-pkcs1.so' |
1947 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1948 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1949 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f8:ae:21:6b:84:eb:df:ff:67:dd:72:29:ea:03:4e:b2:00:68:81:62 |
1950 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-pkcs8.so' |
1951 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1952 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1953 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 80:3c:91:fd:94:4f:ac:87:bc:8c:b0:51:f8:a2:5e:b8:3d:3d:60:01 |
1954 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-pem.so' |
1955 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1956 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1957 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 71:79:8b:3d:a1:1f:cb:00:87:cf:a2:17:b8:df:34:ea:a3:91:a5:a8 |
1958 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-openssl.so' |
1959 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1960 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1961 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5e:51:78:cb:3a:05:d6:b2:61:cf:0e:89:12:65:2c:78:cd:cf:28:e8 |
1962 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-pubkey.so' |
1963 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1964 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1965 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 26:0e:f8:6e:66:6d:d2:aa:81:1a:12:af:6a:1c:68:c4:45:bb:18:df |
1966 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-tnc-imc.so' |
1967 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1968 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1969 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d8:32:e6:30:24:3e:a5:35:97:98:c5:9d:17:db:d4:01:2e:da:2a:fe |
1970 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/libtnccs.so.0.0.0' |
1971 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1972 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1973 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f0:69:52:01:7a:24:fb:fb:f3:cf:46:89:bb:66:c5:3a:41:e9:3a:13 |
1974 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-tnc-imv.so' |
1975 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1976 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1977 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e5:3f:e4:6b:93:3d:8b:59:48:2f:22:83:59:00:dc:df:4c:46:87:30 |
1978 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-tnc-tnccs.so' |
1979 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1980 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1981 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 38:80:0c:d9:7a:25:72:ca:30:e8:18:f2:19:0b:37:64:92:99:06:c7 |
1982 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-tnccs-20.so' |
1983 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1984 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1985 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 4f:25:d3:cc:bc:75:a4:5d:1e:a5:69:cd:65:fa:1d:69:3c:91:1c:28 |
1986 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-eap-identity.so' |
1987 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1988 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1989 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 11:6f:78:d8:03:1e:54:b9:15:d4:1d:a0:9a:3f:5b:b2:5d:13:af:91 |
1990 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-eap-ttls.so' |
1991 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1992 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1993 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7a:1b:d6:9b:6f:88:91:0d:6e:98:4d:ee:99:42:31:0e:7d:ac:54:72 |
1994 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/libtls.so.0.0.0' |
1995 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
1996 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
1997 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 2a:21:3f:2f:48:60:8b:22:30:27:d7:03:b5:31:f2:91:c9:34:6b:c8 |
1998 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-eap-tnc.so' |
1999 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2000 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2001 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fa:8b:a6:c5:ce:ce:af:95:fc:ff:ec:c0:7b:40:5f:d7:c5:0c:fe:4c |
2002 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-sqlite.so' |
2003 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2004 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2005 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 33:9b:e6:60:dd:53:9c:08:c9:9e:f1:1c:ff:6c:ec:d5:4f:68:b3:4f |
2006 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libsqlite3.so.0.8.6' |
2007 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2008 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2009 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c8:6e:8c:58:e7:90:05:99:9a:87:84:c1:f6:c7:97:93:fc:bc:94:9e |
2010 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-curl.so' |
2011 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2012 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2013 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3a:05:a3:5d:2c:17:db:c1:86:9c:9b:a7:9e:ef:1e:b0:42:3d:45:48 |
2014 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libcurl.so.4.2.0' |
2015 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2016 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2017 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 60:7c:a9:c8:1c:80:0a:75:3c:12:e3:f4:00:ef:ec:94:cc:e3:3a:8b |
2018 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libidn.so.11.6.8' |
2019 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2020 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2021 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8c:cf:c6:fd:c1:de:4d:58:82:74:21:d6:19:b0:04:68:c7:e5:94:d3 |
2022 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libssh2.so.1.0.1' |
2023 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2024 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2025 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fa:ae:61:be:a0:82:aa:a2:64:ff:90:39:40:a8:ea:c0:54:3a:9b:d4 |
2026 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/liblber-2.4.so.2.8.3' |
2027 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2028 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2029 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 94:a5:64:b4:70:49:01:b9:b3:be:56:ce:c1:80:1d:3e:53:82:4c:de |
2030 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libldap_r-2.4.so.2.8.3' |
2031 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2032 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2033 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ed:30:6a:ee:0e:c5:a3:3c:84:06:55:9b:b3:0c:fd:92:78:84:2d:55 |
2034 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libssl.so.1.0.0' |
2035 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2036 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2037 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: bb:34:7c:bd:80:30:84:60:ef:ac:c0:88:b8:d1:1d:f9:80:f5:9d:61 |
2038 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/librtmp.so.0' |
2039 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2040 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2041 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7e:32:cb:a9:01:58:ae:0d:80:e9:66:27:63:d0:0b:31:4d:90:c8:5d |
2042 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libgcrypt.so.11.7.0' |
2043 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2044 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2045 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 9e:9f:13:4d:e5:f9:2b:21:5e:9c:5d:e5:65:7c:f6:ec:dc:7f:a0:a6 |
2046 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libsasl2.so.2.0.25' |
2047 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2048 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2049 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 60:58:d8:e0:f2:28:09:eb:e4:fc:d9:70:33:dc:39:0e:04:bb:41:2c |
2050 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgnutls.so.26.22.4' |
2051 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2052 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2053 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ee:63:87:d6:38:69:31:48:5c:a1:b2:86:84:3c:3e:38:de:8d:f3:1e |
2054 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libgpg-error.so.0.8.0' |
2055 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2056 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2057 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f0:71:36:04:5d:1d:6a:f0:5d:5c:9c:f8:e5:19:1f:d9:d7:ad:21:74 |
2058 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libtasn1.so.3.1.16' |
2059 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2060 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2061 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 41:42:4a:23:a7:4f:5b:8b:cc:ce:46:70:0a:c5:5a:b8:70:24:44:42 |
2062 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libp11-kit.so.0.0.0' |
2063 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2064 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2065 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3a:99:93:1e:4c:1b:be:dd:2e:fd:c5:e5:20:67:f0:3c:d9:f2:be:2b |
2066 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-kernel-netlink.so' |
2067 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2068 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2069 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: b6:9b:4b:60:b2:e5:21:af:55:1a:b6:32:5d:46:e2:b4:98:32:7a:6b |
2070 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-socket-default.so' |
2071 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2072 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2073 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c2:b6:70:a5:91:d4:54:19:77:b2:06:9d:89:63:a5:21:5e:21:2c:4d |
2074 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-updown.so' |
2075 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2076 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2077 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d8:53:23:97:5d:c7:02:46:92:14:f8:2c:ec:d1:40:8a:29:c3:dc:e1 |
2078 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-stroke.so' |
2079 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2080 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2081 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7f:ca:32:05:2c:88:30:f4:60:7c:61:8c:da:80:65:3e:90:f8:5b:24 |
2082 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/imcvs/imv-attestation.so' |
2083 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2084 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2085 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 38:0d:d9:b2:62:24:7e:48:67:25:eb:32:f6:cb:80:74:2c:9c:d4:c3 |
2086 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/libimcv.so.0.0.0' |
2087 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2088 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2089 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7e:b4:4d:ca:ef:11:d5:62:97:ae:cc:93:f8:bf:17:37:54:57:a9:d3 |
2090 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libtspi.so.1.2.0' |
2091 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2092 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2093 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f0:dc:1c:eb:18:bc:bc:c7:f0:13:b9:d6:7a:80:36:71:0d:47:4d:c1 |
2094 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/imcvs/imc-os.so' |
2095 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2096 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2097 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f3:32:1b:e7:59:87:f1:93:04:5f:ea:d4:9d:1a:99:26:ad:ee:8d:e4 |
2098 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/ipsec/imcvs/imc-attestation.so' |
2099 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2100 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2101 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7a:fc:49:eb:8f:e6:74:3f:ac:91:41:a2:c0:ac:92:28:33:fd:7b:33 |
2102 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/libexec/ipsec/stroke' |
2103 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2104 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2105 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 5b:bb:31:46:ef:6b:2e:73:5a:49:9a:96:bb:cc:1c:21:3a:b9:c8:ec |
2106 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/libexec/ipsec/imv_policy_manager' |
2107 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2108 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2109 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a5:f5:48:3a:db:2f:5b:4d:4d:99:ca:02:c1:2b:51:e0:94:de:9a:3d |
2110 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/crypto/sha256_generic.ko' |
2111 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2112 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2113 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 44:5e:88:de:0a:ba:ad:2a:f5:a7:6a:7d:be:ec:f3:13:32:e0:17:1a |
2114 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/xfrm4_mode_transport.ko' |
2115 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2116 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2117 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: ac:98:d9:bc:08:10:22:0f:8d:85:2d:28:12:17:59:26:f5:bb:db:63 |
2118 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/crypto/authenc.ko' |
2119 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2120 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2121 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: fd:54:d1:93:4f:7e:ba:b9:16:fb:45:3f:d3:c3:d5:ed:38:be:4f:27 |
2122 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/libexec/ipsec/_updown' |
2123 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2124 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2125 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 82:4c:54:c5:25:ad:75:98:93:e2:63:46:25:1e:d6:88:7f:c1:97:2a |
2126 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/sbin/xtables-multi' |
2127 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2128 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2129 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 79:a1:f6:86:3e:90:02:59:d4:b1:6d:c6:e6:17:e6:57:b7:4e:a3:03 |
2130 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/libip4tc.so.0.1.0' |
2131 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2132 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2133 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 00:15:0f:35:34:79:b7:27:8b:eb:3b:c3:a9:7b:2c:db:0e:ea:bb:fb |
2134 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/libip6tc.so.0.1.0' |
2135 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2136 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2137 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 97:42:19:a6:3f:ea:ed:1f:88:c3:2b:e8:0b:8c:7e:8d:09:7a:c8:17 |
2138 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/libxtables.so.7.0.0' |
2139 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2140 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2141 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6c:94:f3:ac:9f:83:d4:56:2e:10:c9:c3:44:ca:4d:30:eb:74:06:a9 |
2142 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/xtables/libxt_policy.so' |
2143 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2144 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2145 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 0f:3b:87:ef:36:df:bb:c0:14:1b:bd:cd:be:fc:c0:19:65:77:da:c8 |
2146 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/xtables/libxt_standard.so' |
2147 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2148 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2149 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: c8:e8:88:e5:1a:74:82:31:13:c1:a8:ca:8a:af:7a:e3:db:30:b4:fc |
2150 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/netfilter/x_tables.ko' |
2151 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2152 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2153 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 99:df:b9:61:2f:13:cc:45:a7:57:b1:81:d9:2a:ae:9f:e0:4d:b9:51 |
2154 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/netfilter/ip_tables.ko' |
2155 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2156 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2157 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f6:ae:e7:d5:86:17:27:8e:4d:bc:c0:7f:46:21:d0:d4:db:8f:e5:0e |
2158 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/netfilter/iptable_filter.ko' |
2159 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2160 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2161 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 84:05:c8:02:f0:74:c8:3b:1b:4f:c2:1a:e9:e1:44:ab:03:2c:2c:c7 |
2162 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/netfilter/xt_policy.ko' |
2163 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2164 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2165 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 3b:a8:51:c4:5d:25:30:89:9b:39:47:24:2c:de:f8:d9:75:eb:e7:fe |
2166 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/logger' |
2167 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2168 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2169 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a5:74:29:0b:cb:20:3f:bc:b3:3a:0c:9e:0f:7c:b1:1a:da:43:7c:69 |
2170 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_io.so' |
2171 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2172 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2173 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 07:43:59:13:7b:81:55:e8:c7:74:c2:8b:0a:28:20:f8:19:29:1f:bc |
2174 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/datetime.so' |
2175 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2176 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2177 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 8e:70:0f:f1:38:a3:6f:5d:8c:f9:39:c7:a1:6a:2a:b2:2a:8f:de:d7 |
2178 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_ssl.so' |
2179 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2180 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2181 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 04:65:4f:bc:43:25:8f:d6:ca:e1:d7:97:da:f2:c2:f3:59:0c:f6:f9 |
2182 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_json.so' |
2183 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2184 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2185 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1b:c7:6f:79:91:0c:44:18:1b:39:2a:b6:c7:f1:6b:c9:8a:90:4f:63 |
2186 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_hashlib.so' |
2187 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2188 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2189 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 6c:57:02:3e:56:c7:93:4b:78:ba:7e:7b:78:f9:9d:5e:b8:c0:b9:89 |
2190 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_sqlite3.so' |
2191 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2192 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2193 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 05:82:f5:f7:b7:1b:44:02:aa:be:fe:ff:60:10:a9:3f:40:8e:52:7f |
2194 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/local/lib/python2.7/dist-packages/lxml/etree.so' |
2195 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2196 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2197 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: f4:f5:89:83:9b:a7:e4:11:b5:9a:57:3b:58:f8:09:32:7f:70:6a:51 |
2198 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libxslt.so.1.1.26' |
2199 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2200 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2201 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e6:76:45:e9:31:8c:52:a9:ce:e0:18:6d:4e:7c:19:3a:07:cf:6f:8f |
2202 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libexslt.so.0.8.15' |
2203 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2204 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2205 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 7c:56:d5:be:6f:ea:1f:5b:69:80:7e:e9:22:9d:a5:f6:28:85:e5:5d |
2206 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libxml2.so.2.8.0' |
2207 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2208 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2209 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 53:f5:1f:0e:d6:d4:db:f4:af:3f:e0:4d:7f:9a:f4:fe:0b:41:1f:d9 |
2210 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/liblzma.so.5.0.0' |
2211 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2212 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2213 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: dc:22:68:7d:46:dd:5d:f4:ac:65:c4:73:91:41:46:d6:f9:53:96:6b |
2214 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_elementtree.so' |
2215 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2216 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2217 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 37:e3:d4:53:cc:47:e4:9e:b1:a9:7d:89:cb:10:67:59:b1:35:3e:38 |
2218 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/pyexpat.so' |
2219 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2220 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2221 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 75:db:9a:27:72:da:22:03:fd:c6:f1:fe:4a:8e:5d:7e:6f:42:70:4b |
2222 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/sqlite3' |
2223 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2224 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2225 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d2:a5:97:75:4b:9e:f6:db:c8:cb:52:a9:29:1e:6f:6e:89:18:a5:f2 |
2226 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/lib/arm-linux-gnueabihf/libreadline.so.6.2' |
2227 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2228 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2229 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 34:c4:93:e8:ef:14:6d:16:44:dd:bb:e5:95:d5:86:f8:c8:f7:13:e3 |
2230 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/etc/cron.hourly/fake-hwclock' |
2231 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2232 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2233 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 67:1d:52:1e:15:8a:b4:e1:17:80:41:95:ba:3d:40:5b:1c:b4:57:34 |
2234 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/vim.basic' |
2235 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2236 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2237 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: d4:ce:58:6c:ae:fb:1d:76:92:b0:a3:ea:33:73:1f:53:26:69:b6:e2 |
2238 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgpm.so.2' |
2239 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2240 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2241 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 15:fb:dd:00:0a:db:b6:73:2d:63:62:e0:ac:b6:32:b7:62:f4:1b:fd |
2242 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/gconv/ISO8859-1.so' |
2243 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2244 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2245 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a4:4e:1b:ca:62:3d:3f:cd:81:62:d2:8d:d5:04:5c:04:26:1e:53:19 |
2246 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/bin/scp' |
2247 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2248 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2249 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: a1:eb:ae:77:6e:40:be:b5:fa:ae:29:e0:36:d3:b8:fa:42:c9:5d:ee |
2250 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/less' |
2251 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2252 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2253 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: 1a:71:6c:9c:9f:6d:4f:2e:4a:88:42:49:b0:00:8d:5e:ec:05:7e:eb |
2254 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/usr/sbin/service' |
2255 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2256 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] measurement time: Jan 01 01:00:04 1970 |
2257 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] PCR 10 extended with: e8:f5:f2:02:d4:c1:18:d5:f7:55:5c:2d:4a:a0:d3:12:d4:13:06:ce |
2258 | 2 | Andreas Steffen | Aug 15 14:46:08 raspi3 charon: 14[PTS] 'sha1:/bin/cp' |
2259 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] Hash of PCR Composite: 58:f2:83:91:d6:a8:df:3d:3e:c6:33:c7:24:93:9f:9c:22:a2:01:20 |
2260 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] TPM Quote Info: => 52 bytes @ 0x135360 |
2261 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 0: 00 36 51 55 54 32 D8 9D 1E 70 CE 78 C3 13 F2 79 .6QUT2...p.x...y |
2262 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 16: BA 5D 7C E5 05 7C E0 E0 83 77 00 03 00 04 00 01 .]|..|...w...... |
2263 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 32: 58 F2 83 91 D6 A8 DF 3D 3E C6 33 C7 24 93 9F 9C X......=>.3.$... |
2264 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 48: 22 A2 01 20 ".. |
2265 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] TPM Quote Signature: => 256 bytes @ 0x14b5d0 |
2266 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 0: 88 6E 6B 2E 33 AC AD 94 E6 A1 38 3E CD EC 9F E9 .nk.3.....8>.... |
2267 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 16: F0 92 E9 E4 4A 66 05 50 0B 30 F2 DF 50 DC 80 4E ....Jf.P.0..P..N |
2268 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 32: F1 AC BE 93 99 06 DF 41 AD 49 F9 DE 09 F1 18 15 .......A.I...... |
2269 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 48: 2B B9 97 D9 DD A9 E9 7F 3D ED B8 BF EB FF 7E C6 +.......=.....~. |
2270 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 64: A1 1A 77 87 67 9B 24 78 46 AC C0 AA 25 FA 87 5F ..w.g.$xF...%.._ |
2271 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 80: E3 F4 F8 33 35 30 C3 31 BE DE 77 A5 2E 4F 8D 3B ...350.1..w..O.; |
2272 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 96: F5 52 36 F4 8E C4 FA D4 A1 61 1C 4B 71 A2 52 8B .R6......a.Kq.R. |
2273 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 112: 80 AD A6 DD 8D E5 D8 47 4F 2B 9C 17 CF BF AC 10 .......GO+...... |
2274 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 128: C6 31 4B 01 C3 59 C3 FD F7 D2 65 C1 F0 32 12 8B .1K..Y....e..2.. |
2275 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 144: 8F 54 49 A7 40 F9 BD 43 86 79 A1 FD 51 05 DB 65 .TI.@..C.y..Q..e |
2276 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 160: C8 A4 C1 67 44 96 89 4D F4 E7 DB D5 AE 67 35 17 ...gD..M.....g5. |
2277 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 176: D7 D3 68 23 E9 1F 98 9E E6 7C 86 89 EE A4 31 68 ..h#.....|....1h |
2278 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 192: 15 B6 F6 E3 10 86 F0 FE C3 9B C2 7D 5B FB 33 BA ...........}[.3. |
2279 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 208: 88 BE 5C D9 71 54 7F BF 72 31 5F 8E 58 4A E9 A4 ..\.qT..r1_.XJ.. |
2280 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 224: B0 8E 3B 55 03 90 AD E1 C8 A0 C7 9C 83 13 DE 0F ..;U............ |
2281 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[PTS] 240: 60 D8 A4 E2 4C CD E4 E2 A4 BA 11 BE 3D D4 A5 A7 `...L.......=... |
2282 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC message with ID 0x2d059578 |
2283 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2284 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2285 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2286 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2287 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2288 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2289 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2290 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2291 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2292 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2293 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2294 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2295 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2296 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2297 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2298 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2299 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2300 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2301 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2302 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2303 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2304 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2305 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2306 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2307 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2308 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2309 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2310 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2311 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2312 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2313 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2314 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2315 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2316 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2317 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2318 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2319 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2320 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2321 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2322 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2323 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2324 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2325 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2326 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2327 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2328 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2329 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2330 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2331 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2332 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2333 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2334 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2335 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2336 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2337 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2338 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2339 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2340 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2341 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2342 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2343 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2344 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2345 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2346 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2347 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2348 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2349 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2350 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2351 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2352 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2353 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2354 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2355 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2356 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2357 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2358 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2359 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2360 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2361 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2362 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2363 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2364 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2365 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2366 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2367 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2368 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2369 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2370 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2371 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2372 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2373 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2374 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2375 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2376 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2377 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2378 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2379 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2380 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2381 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2382 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2383 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2384 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2385 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2386 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2387 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2388 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2389 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2390 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2391 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2392 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2393 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2394 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2395 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2396 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2397 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2398 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2399 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2400 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2401 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2402 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2403 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2404 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2405 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2406 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2407 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2408 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2409 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2410 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2411 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2412 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2413 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2414 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2415 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2416 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2417 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2418 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2419 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2420 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2421 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2422 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2423 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2424 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2425 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2426 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2427 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2428 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2429 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2430 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2431 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2432 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2433 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2434 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2435 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2436 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2437 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2438 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2439 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2440 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2441 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2442 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2443 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2444 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2445 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2446 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2447 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2448 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2449 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2450 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2451 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2452 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2453 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2454 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2455 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2456 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2457 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2458 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2459 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2460 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2461 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2462 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2463 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2464 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2465 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2466 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2467 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2468 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2469 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2470 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2471 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2472 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2473 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2474 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2475 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2476 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2477 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2478 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2479 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2480 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2481 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2482 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2483 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2484 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2485 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2486 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2487 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2488 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2489 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2490 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2491 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2492 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2493 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2494 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2495 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2496 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2497 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2498 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2499 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2500 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2501 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2502 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2503 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2504 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2505 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2506 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2507 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2508 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2509 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2510 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2511 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2512 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2513 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2514 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2515 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2516 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2517 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2518 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2519 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2520 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2521 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2522 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2523 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2524 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2525 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2526 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2527 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2528 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2529 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2530 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2531 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2532 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2533 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2534 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2535 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2536 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2537 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2538 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2539 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2540 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2541 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2542 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2543 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2544 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2545 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2546 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2547 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2548 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2549 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2550 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2551 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2552 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2553 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2554 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2555 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2556 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2557 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2558 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2559 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2560 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2561 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2562 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2563 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2564 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2565 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2566 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2567 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2568 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2569 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2570 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2571 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2572 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2573 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2574 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2575 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2576 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2577 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2578 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2579 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2580 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2581 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2582 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2583 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2584 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2585 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2586 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2587 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2588 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2589 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2590 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2591 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2592 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2593 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2594 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2595 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2596 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2597 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2598 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2599 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2600 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2601 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2602 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2603 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2604 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2605 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2606 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2607 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2608 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2609 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2610 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2611 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2612 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2613 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2614 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2615 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2616 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2617 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2618 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2619 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2620 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2621 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2622 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2623 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2624 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2625 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2626 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2627 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2628 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2629 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2630 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2631 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2632 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2633 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2634 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2635 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2636 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2637 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2638 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2639 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2640 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2641 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2642 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2643 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2644 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2645 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2646 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2647 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2648 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2649 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2650 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2651 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2652 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2653 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2654 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2655 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2656 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2657 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2658 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2659 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2660 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2661 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2662 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2663 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2664 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2665 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2666 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2667 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2668 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2669 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2670 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2671 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2672 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2673 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2674 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2675 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2676 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2677 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2678 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2679 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2680 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2681 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2682 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2683 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2684 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2685 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2686 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2687 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2688 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2689 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2690 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2691 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2692 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2693 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2694 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2695 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2696 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2697 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2698 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2699 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2700 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2701 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2702 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2703 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2704 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2705 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2706 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2707 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2708 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2709 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2710 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2711 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2712 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2713 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2714 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2715 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2716 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
2717 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PA-TNC attribute type 'TCG/Simple Evidence Final' 0x005597/0x00400000 |
2718 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
2719 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] TNC server is handling outbound connection |
2720 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] PB-TNC state transition from 'Server Working' to 'Client Working' |
2721 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] creating PB-TNC SDATA batch |
2722 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] adding IETF/PB-PA message |
2723 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[TNC] sending PB-TNC SDATA batch (172 bytes) for Connection ID 2 |
2724 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
2725 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[ENC] generating IKE_AUTH request 14 [ EAP/RES/TTLS ] |
2726 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (336 bytes) |
2727 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1072 bytes) |
2728 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[ENC] parsed IKE_AUTH response 14 [ EAP/REQ/TTLS ] |
2729 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
2730 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] received TNCCS batch (902 bytes) |
2731 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] TNC server is handling inbound connection |
2732 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] processing PB-TNC CDATA batch for Connection ID 2 |
2733 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
2734 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] processing IETF/PB-PA message (894 bytes) |
2735 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
2736 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[IMV] IMV 1 "Attestation" received message for Connection ID 2 from IMC 2 to IMV 1 |
2737 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] processing PA-TNC message with ID 0x951e0284 |
2738 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] processing PA-TNC attribute type 'TCG/TPM Version Information' 0x005597/0x09000000 |
2739 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] processing PA-TNC attribute type 'TCG/Attestation Identity Key' 0x005597/0x0e000000 |
2740 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[PTS] TPM Version Info: Chip Version: 1.2.133.32, Spec Level: 2, Errata Rev: 3, Vendor ID: IFX |
2741 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[IMV] verifying AIK with keyid 76:28:72:c9:00:11:67:1e:f2:19:b6:a2:a0:c3:c7:dd:a8:75:b4:3c |
2742 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[IMV] AIK public key is trusted |
2743 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[CFG] using trusted certificate "C=US, O=TNC Demo, CN=AIK CA" |
2744 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[IMV] AIK certificate is trusted |
2745 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[IMV] evidence request by |
2746 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
2747 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] creating PA-TNC message with ID 0xc8f4500b |
2748 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] creating PA-TNC attribute type 'TCG/Request Functional Component Evidence' 0x005597/0x00100000 |
2749 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] creating PA-TNC attribute type 'TCG/Generate Attestation Evidence' 0x005597/0x00200000 |
2750 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
2751 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] TNC client is handling outbound connection |
2752 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
2753 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] creating PB-TNC CDATA batch |
2754 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] adding IETF/PB-PA message |
2755 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[TNC] sending PB-TNC CDATA batch (47615 bytes) for Connection ID 1 |
2756 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
2757 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[ENC] generating IKE_AUTH request 15 [ EAP/RES/TTLS ] |
2758 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2759 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2760 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 13[ENC] parsed IKE_AUTH response 15 [ EAP/REQ/TTLS ] |
2761 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 13[ENC] generating IKE_AUTH request 16 [ EAP/RES/TTLS ] |
2762 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2763 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2764 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 15[ENC] parsed IKE_AUTH response 16 [ EAP/REQ/TTLS ] |
2765 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 15[ENC] generating IKE_AUTH request 17 [ EAP/RES/TTLS ] |
2766 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2767 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2768 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 16[ENC] parsed IKE_AUTH response 17 [ EAP/REQ/TTLS ] |
2769 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 16[ENC] generating IKE_AUTH request 18 [ EAP/RES/TTLS ] |
2770 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2771 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2772 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[ENC] parsed IKE_AUTH response 18 [ EAP/REQ/TTLS ] |
2773 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[ENC] generating IKE_AUTH request 19 [ EAP/RES/TTLS ] |
2774 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2775 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2776 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 09[ENC] parsed IKE_AUTH response 19 [ EAP/REQ/TTLS ] |
2777 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 09[ENC] generating IKE_AUTH request 20 [ EAP/RES/TTLS ] |
2778 | 2 | Andreas Steffen | Aug 15 14:46:09 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2779 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2780 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[ENC] parsed IKE_AUTH response 20 [ EAP/REQ/TTLS ] |
2781 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[ENC] generating IKE_AUTH request 21 [ EAP/RES/TTLS ] |
2782 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2783 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2784 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[ENC] parsed IKE_AUTH response 21 [ EAP/REQ/TTLS ] |
2785 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[ENC] generating IKE_AUTH request 22 [ EAP/RES/TTLS ] |
2786 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2787 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2788 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[ENC] parsed IKE_AUTH response 22 [ EAP/REQ/TTLS ] |
2789 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[ENC] generating IKE_AUTH request 23 [ EAP/RES/TTLS ] |
2790 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2791 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2792 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[ENC] parsed IKE_AUTH response 23 [ EAP/REQ/TTLS ] |
2793 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[ENC] generating IKE_AUTH request 24 [ EAP/RES/TTLS ] |
2794 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2795 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2796 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[ENC] parsed IKE_AUTH response 24 [ EAP/REQ/TTLS ] |
2797 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[ENC] generating IKE_AUTH request 25 [ EAP/RES/TTLS ] |
2798 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2799 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2800 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[ENC] parsed IKE_AUTH response 25 [ EAP/REQ/TTLS ] |
2801 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[ENC] generating IKE_AUTH request 26 [ EAP/RES/TTLS ] |
2802 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2803 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2804 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[ENC] parsed IKE_AUTH response 26 [ EAP/REQ/TTLS ] |
2805 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[ENC] generating IKE_AUTH request 27 [ EAP/RES/TTLS ] |
2806 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2807 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2808 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[ENC] parsed IKE_AUTH response 27 [ EAP/REQ/TTLS ] |
2809 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[ENC] generating IKE_AUTH request 28 [ EAP/RES/TTLS ] |
2810 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2811 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2812 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[ENC] parsed IKE_AUTH response 28 [ EAP/REQ/TTLS ] |
2813 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[ENC] generating IKE_AUTH request 29 [ EAP/RES/TTLS ] |
2814 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2815 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2816 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[ENC] parsed IKE_AUTH response 29 [ EAP/REQ/TTLS ] |
2817 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[ENC] generating IKE_AUTH request 30 [ EAP/RES/TTLS ] |
2818 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2819 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2820 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[ENC] parsed IKE_AUTH response 30 [ EAP/REQ/TTLS ] |
2821 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[ENC] generating IKE_AUTH request 31 [ EAP/RES/TTLS ] |
2822 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2823 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2824 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[ENC] parsed IKE_AUTH response 31 [ EAP/REQ/TTLS ] |
2825 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[ENC] generating IKE_AUTH request 32 [ EAP/RES/TTLS ] |
2826 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2827 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2828 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[ENC] parsed IKE_AUTH response 32 [ EAP/REQ/TTLS ] |
2829 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[ENC] generating IKE_AUTH request 33 [ EAP/RES/TTLS ] |
2830 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2831 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2832 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[ENC] parsed IKE_AUTH response 33 [ EAP/REQ/TTLS ] |
2833 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[ENC] generating IKE_AUTH request 34 [ EAP/RES/TTLS ] |
2834 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2835 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2836 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[ENC] parsed IKE_AUTH response 34 [ EAP/REQ/TTLS ] |
2837 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[ENC] generating IKE_AUTH request 35 [ EAP/RES/TTLS ] |
2838 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2839 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2840 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[ENC] parsed IKE_AUTH response 35 [ EAP/REQ/TTLS ] |
2841 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[ENC] generating IKE_AUTH request 36 [ EAP/RES/TTLS ] |
2842 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2843 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2844 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[ENC] parsed IKE_AUTH response 36 [ EAP/REQ/TTLS ] |
2845 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[ENC] generating IKE_AUTH request 37 [ EAP/RES/TTLS ] |
2846 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2847 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2848 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[ENC] parsed IKE_AUTH response 37 [ EAP/REQ/TTLS ] |
2849 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[ENC] generating IKE_AUTH request 38 [ EAP/RES/TTLS ] |
2850 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2851 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2852 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[ENC] parsed IKE_AUTH response 38 [ EAP/REQ/TTLS ] |
2853 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[ENC] generating IKE_AUTH request 39 [ EAP/RES/TTLS ] |
2854 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2855 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2856 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[ENC] parsed IKE_AUTH response 39 [ EAP/REQ/TTLS ] |
2857 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[ENC] generating IKE_AUTH request 40 [ EAP/RES/TTLS ] |
2858 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2859 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2860 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[ENC] parsed IKE_AUTH response 40 [ EAP/REQ/TTLS ] |
2861 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[ENC] generating IKE_AUTH request 41 [ EAP/RES/TTLS ] |
2862 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2863 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2864 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[ENC] parsed IKE_AUTH response 41 [ EAP/REQ/TTLS ] |
2865 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[ENC] generating IKE_AUTH request 42 [ EAP/RES/TTLS ] |
2866 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2867 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2868 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[ENC] parsed IKE_AUTH response 42 [ EAP/REQ/TTLS ] |
2869 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[ENC] generating IKE_AUTH request 43 [ EAP/RES/TTLS ] |
2870 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2871 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2872 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[ENC] parsed IKE_AUTH response 43 [ EAP/REQ/TTLS ] |
2873 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[ENC] generating IKE_AUTH request 44 [ EAP/RES/TTLS ] |
2874 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2875 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2876 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[ENC] parsed IKE_AUTH response 44 [ EAP/REQ/TTLS ] |
2877 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[ENC] generating IKE_AUTH request 45 [ EAP/RES/TTLS ] |
2878 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2879 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2880 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[ENC] parsed IKE_AUTH response 45 [ EAP/REQ/TTLS ] |
2881 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[ENC] generating IKE_AUTH request 46 [ EAP/RES/TTLS ] |
2882 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2883 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2884 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[ENC] parsed IKE_AUTH response 46 [ EAP/REQ/TTLS ] |
2885 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[ENC] generating IKE_AUTH request 47 [ EAP/RES/TTLS ] |
2886 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2887 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2888 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[ENC] parsed IKE_AUTH response 47 [ EAP/REQ/TTLS ] |
2889 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[ENC] generating IKE_AUTH request 48 [ EAP/RES/TTLS ] |
2890 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2891 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2892 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[ENC] parsed IKE_AUTH response 48 [ EAP/REQ/TTLS ] |
2893 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[ENC] generating IKE_AUTH request 49 [ EAP/RES/TTLS ] |
2894 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2895 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2896 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[ENC] parsed IKE_AUTH response 49 [ EAP/REQ/TTLS ] |
2897 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[ENC] generating IKE_AUTH request 50 [ EAP/RES/TTLS ] |
2898 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2899 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2900 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[ENC] parsed IKE_AUTH response 50 [ EAP/REQ/TTLS ] |
2901 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[ENC] generating IKE_AUTH request 51 [ EAP/RES/TTLS ] |
2902 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2903 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2904 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[ENC] parsed IKE_AUTH response 51 [ EAP/REQ/TTLS ] |
2905 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[ENC] generating IKE_AUTH request 52 [ EAP/RES/TTLS ] |
2906 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2907 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2908 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[ENC] parsed IKE_AUTH response 52 [ EAP/REQ/TTLS ] |
2909 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[ENC] generating IKE_AUTH request 53 [ EAP/RES/TTLS ] |
2910 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2911 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2912 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[ENC] parsed IKE_AUTH response 53 [ EAP/REQ/TTLS ] |
2913 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[ENC] generating IKE_AUTH request 54 [ EAP/RES/TTLS ] |
2914 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2915 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2916 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[ENC] parsed IKE_AUTH response 54 [ EAP/REQ/TTLS ] |
2917 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[ENC] generating IKE_AUTH request 55 [ EAP/RES/TTLS ] |
2918 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2919 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2920 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[ENC] parsed IKE_AUTH response 55 [ EAP/REQ/TTLS ] |
2921 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[ENC] generating IKE_AUTH request 56 [ EAP/RES/TTLS ] |
2922 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2923 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2924 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[ENC] parsed IKE_AUTH response 56 [ EAP/REQ/TTLS ] |
2925 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[ENC] generating IKE_AUTH request 57 [ EAP/RES/TTLS ] |
2926 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2927 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2928 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[ENC] parsed IKE_AUTH response 57 [ EAP/REQ/TTLS ] |
2929 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[ENC] generating IKE_AUTH request 58 [ EAP/RES/TTLS ] |
2930 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2931 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2932 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[ENC] parsed IKE_AUTH response 58 [ EAP/REQ/TTLS ] |
2933 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[ENC] generating IKE_AUTH request 59 [ EAP/RES/TTLS ] |
2934 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2935 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2936 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[ENC] parsed IKE_AUTH response 59 [ EAP/REQ/TTLS ] |
2937 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[ENC] generating IKE_AUTH request 60 [ EAP/RES/TTLS ] |
2938 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2939 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
2940 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[ENC] parsed IKE_AUTH response 60 [ EAP/REQ/TTLS ] |
2941 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[ENC] generating IKE_AUTH request 61 [ EAP/RES/TTLS ] |
2942 | 2 | Andreas Steffen | Aug 15 14:46:10 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2943 | 2 | Andreas Steffen | Aug 15 14:46:14 raspi3 charon: 13[IKE] retransmit 1 of request with message ID 61 |
2944 | 2 | Andreas Steffen | Aug 15 14:46:14 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (1104 bytes) |
2945 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (256 bytes) |
2946 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[ENC] parsed IKE_AUTH response 61 [ EAP/REQ/TTLS ] |
2947 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
2948 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] received TNCCS batch (88 bytes) |
2949 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] TNC client is handling inbound connection |
2950 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] processing PB-TNC RESULT batch for Connection ID 1 |
2951 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] PB-TNC state transition from 'Server Working' to 'Decided' |
2952 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] processing IETF/PB-PA message (48 bytes) |
2953 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] processing IETF/PB-Assessment-Result message (16 bytes) |
2954 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] processing IETF/PB-Access-Recommendation message (16 bytes) |
2955 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
2956 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[IMC] IMC 2 "Attestation" received message for Connection ID 1 from IMV 1 |
2957 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] processing PA-TNC message with ID 0x57254d62 |
2958 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] processing PA-TNC attribute type 'IETF/Assessment Result' 0x000000/0x00000009 |
2959 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[IMC] ***** assessment of IMC 2 "Attestation" from IMV 1 ***** |
2960 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[IMC] assessment result is 'compliant' |
2961 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[IMC] ***** end of assessment ***** |
2962 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] PB-TNC assessment result is 'compliant' |
2963 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] PB-TNC access recommendation is 'Access Allowed' |
2964 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[IMC] IMC 1 "OS" changed state of Connection ID 1 to 'Allowed' |
2965 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[IMC] IMC 2 "Attestation" changed state of Connection ID 1 to 'Allowed' |
2966 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] TNC server is handling outbound connection |
2967 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] PB-TNC state transition from 'Server Working' to 'Client Working' |
2968 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] creating PB-TNC SDATA batch |
2969 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] adding IETF/PB-PA message |
2970 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[TNC] sending PB-TNC SDATA batch (80 bytes) for Connection ID 2 |
2971 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
2972 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[ENC] generating IKE_AUTH request 62 [ EAP/RES/TTLS ] |
2973 | 2 | Andreas Steffen | Aug 15 14:46:16 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (256 bytes) |
2974 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
2975 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[ENC] parsed IKE_AUTH response 62 [ EAP/REQ/TTLS ] |
2976 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[ENC] generating IKE_AUTH request 63 [ EAP/RES/TTLS ] |
2977 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
2978 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
2979 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[ENC] parsed IKE_AUTH response 63 [ EAP/REQ/TTLS ] |
2980 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[ENC] generating IKE_AUTH request 64 [ EAP/RES/TTLS ] |
2981 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
2982 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
2983 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[ENC] parsed IKE_AUTH response 64 [ EAP/REQ/TTLS ] |
2984 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[ENC] generating IKE_AUTH request 65 [ EAP/RES/TTLS ] |
2985 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
2986 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
2987 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[ENC] parsed IKE_AUTH response 65 [ EAP/REQ/TTLS ] |
2988 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[ENC] generating IKE_AUTH request 66 [ EAP/RES/TTLS ] |
2989 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
2990 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
2991 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 07[ENC] parsed IKE_AUTH response 66 [ EAP/REQ/TTLS ] |
2992 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 07[ENC] generating IKE_AUTH request 67 [ EAP/RES/TTLS ] |
2993 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
2994 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
2995 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[ENC] parsed IKE_AUTH response 67 [ EAP/REQ/TTLS ] |
2996 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[ENC] generating IKE_AUTH request 68 [ EAP/RES/TTLS ] |
2997 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
2998 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
2999 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 11[ENC] parsed IKE_AUTH response 68 [ EAP/REQ/TTLS ] |
3000 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 11[ENC] generating IKE_AUTH request 69 [ EAP/RES/TTLS ] |
3001 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3002 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3003 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 05[ENC] parsed IKE_AUTH response 69 [ EAP/REQ/TTLS ] |
3004 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 05[ENC] generating IKE_AUTH request 70 [ EAP/RES/TTLS ] |
3005 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3006 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3007 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 12[ENC] parsed IKE_AUTH response 70 [ EAP/REQ/TTLS ] |
3008 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 12[ENC] generating IKE_AUTH request 71 [ EAP/RES/TTLS ] |
3009 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3010 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3011 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 13[ENC] parsed IKE_AUTH response 71 [ EAP/REQ/TTLS ] |
3012 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 13[ENC] generating IKE_AUTH request 72 [ EAP/RES/TTLS ] |
3013 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3014 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3015 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 15[ENC] parsed IKE_AUTH response 72 [ EAP/REQ/TTLS ] |
3016 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 15[ENC] generating IKE_AUTH request 73 [ EAP/RES/TTLS ] |
3017 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3018 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3019 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[ENC] parsed IKE_AUTH response 73 [ EAP/REQ/TTLS ] |
3020 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[ENC] generating IKE_AUTH request 74 [ EAP/RES/TTLS ] |
3021 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3022 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3023 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[ENC] parsed IKE_AUTH response 74 [ EAP/REQ/TTLS ] |
3024 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[ENC] generating IKE_AUTH request 75 [ EAP/RES/TTLS ] |
3025 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3026 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3027 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[ENC] parsed IKE_AUTH response 75 [ EAP/REQ/TTLS ] |
3028 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[ENC] generating IKE_AUTH request 76 [ EAP/RES/TTLS ] |
3029 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3030 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3031 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[ENC] parsed IKE_AUTH response 76 [ EAP/REQ/TTLS ] |
3032 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[ENC] generating IKE_AUTH request 77 [ EAP/RES/TTLS ] |
3033 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3034 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3035 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 07[ENC] parsed IKE_AUTH response 77 [ EAP/REQ/TTLS ] |
3036 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 07[ENC] generating IKE_AUTH request 78 [ EAP/RES/TTLS ] |
3037 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3038 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3039 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[ENC] parsed IKE_AUTH response 78 [ EAP/REQ/TTLS ] |
3040 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[IKE] need more AVP data |
3041 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[ENC] generating IKE_AUTH request 79 [ EAP/RES/TTLS ] |
3042 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3043 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3044 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 11[ENC] parsed IKE_AUTH response 79 [ EAP/REQ/TTLS ] |
3045 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 11[ENC] generating IKE_AUTH request 80 [ EAP/RES/TTLS ] |
3046 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3047 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3048 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 05[ENC] parsed IKE_AUTH response 80 [ EAP/REQ/TTLS ] |
3049 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 05[ENC] generating IKE_AUTH request 81 [ EAP/RES/TTLS ] |
3050 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3051 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3052 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 12[ENC] parsed IKE_AUTH response 81 [ EAP/REQ/TTLS ] |
3053 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 12[ENC] generating IKE_AUTH request 82 [ EAP/RES/TTLS ] |
3054 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3055 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3056 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 13[ENC] parsed IKE_AUTH response 82 [ EAP/REQ/TTLS ] |
3057 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 13[ENC] generating IKE_AUTH request 83 [ EAP/RES/TTLS ] |
3058 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3059 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3060 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 15[ENC] parsed IKE_AUTH response 83 [ EAP/REQ/TTLS ] |
3061 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 15[ENC] generating IKE_AUTH request 84 [ EAP/RES/TTLS ] |
3062 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3063 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3064 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[ENC] parsed IKE_AUTH response 84 [ EAP/REQ/TTLS ] |
3065 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[ENC] generating IKE_AUTH request 85 [ EAP/RES/TTLS ] |
3066 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3067 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3068 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[ENC] parsed IKE_AUTH response 85 [ EAP/REQ/TTLS ] |
3069 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[ENC] generating IKE_AUTH request 86 [ EAP/RES/TTLS ] |
3070 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3071 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3072 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[ENC] parsed IKE_AUTH response 86 [ EAP/REQ/TTLS ] |
3073 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[ENC] generating IKE_AUTH request 87 [ EAP/RES/TTLS ] |
3074 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3075 | 2 | Andreas Steffen | Aug 15 14:46:17 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3076 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[ENC] parsed IKE_AUTH response 87 [ EAP/REQ/TTLS ] |
3077 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[ENC] generating IKE_AUTH request 88 [ EAP/RES/TTLS ] |
3078 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3079 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3080 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[ENC] parsed IKE_AUTH response 88 [ EAP/REQ/TTLS ] |
3081 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[ENC] generating IKE_AUTH request 89 [ EAP/RES/TTLS ] |
3082 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3083 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3084 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 06[ENC] parsed IKE_AUTH response 89 [ EAP/REQ/TTLS ] |
3085 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 06[ENC] generating IKE_AUTH request 90 [ EAP/RES/TTLS ] |
3086 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3087 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3088 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 11[ENC] parsed IKE_AUTH response 90 [ EAP/REQ/TTLS ] |
3089 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 11[ENC] generating IKE_AUTH request 91 [ EAP/RES/TTLS ] |
3090 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3091 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3092 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 05[ENC] parsed IKE_AUTH response 91 [ EAP/REQ/TTLS ] |
3093 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 05[ENC] generating IKE_AUTH request 92 [ EAP/RES/TTLS ] |
3094 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3095 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3096 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 12[ENC] parsed IKE_AUTH response 92 [ EAP/REQ/TTLS ] |
3097 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 12[ENC] generating IKE_AUTH request 93 [ EAP/RES/TTLS ] |
3098 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3099 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3100 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 13[ENC] parsed IKE_AUTH response 93 [ EAP/REQ/TTLS ] |
3101 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 13[ENC] generating IKE_AUTH request 94 [ EAP/RES/TTLS ] |
3102 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3103 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3104 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[ENC] parsed IKE_AUTH response 94 [ EAP/REQ/TTLS ] |
3105 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[IKE] need more AVP data |
3106 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[ENC] generating IKE_AUTH request 95 [ EAP/RES/TTLS ] |
3107 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3108 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3109 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 16[ENC] parsed IKE_AUTH response 95 [ EAP/REQ/TTLS ] |
3110 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 16[ENC] generating IKE_AUTH request 96 [ EAP/RES/TTLS ] |
3111 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3112 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3113 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 14[ENC] parsed IKE_AUTH response 96 [ EAP/REQ/TTLS ] |
3114 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 14[ENC] generating IKE_AUTH request 97 [ EAP/RES/TTLS ] |
3115 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3116 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3117 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 09[ENC] parsed IKE_AUTH response 97 [ EAP/REQ/TTLS ] |
3118 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 09[ENC] generating IKE_AUTH request 98 [ EAP/RES/TTLS ] |
3119 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3120 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3121 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[ENC] parsed IKE_AUTH response 98 [ EAP/REQ/TTLS ] |
3122 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[ENC] generating IKE_AUTH request 99 [ EAP/RES/TTLS ] |
3123 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3124 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3125 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[ENC] parsed IKE_AUTH response 99 [ EAP/REQ/TTLS ] |
3126 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[ENC] generating IKE_AUTH request 100 [ EAP/RES/TTLS ] |
3127 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3128 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 06[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3129 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 06[ENC] parsed IKE_AUTH response 100 [ EAP/REQ/TTLS ] |
3130 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 06[ENC] generating IKE_AUTH request 101 [ EAP/RES/TTLS ] |
3131 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 06[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3132 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3133 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 11[ENC] parsed IKE_AUTH response 101 [ EAP/REQ/TTLS ] |
3134 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 11[ENC] generating IKE_AUTH request 102 [ EAP/RES/TTLS ] |
3135 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3136 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3137 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 05[ENC] parsed IKE_AUTH response 102 [ EAP/REQ/TTLS ] |
3138 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 05[ENC] generating IKE_AUTH request 103 [ EAP/RES/TTLS ] |
3139 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3140 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3141 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 12[ENC] parsed IKE_AUTH response 103 [ EAP/REQ/TTLS ] |
3142 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 12[ENC] generating IKE_AUTH request 104 [ EAP/RES/TTLS ] |
3143 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 12[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3144 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 13[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3145 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 13[ENC] parsed IKE_AUTH response 104 [ EAP/REQ/TTLS ] |
3146 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 13[ENC] generating IKE_AUTH request 105 [ EAP/RES/TTLS ] |
3147 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 13[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3148 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3149 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[ENC] parsed IKE_AUTH response 105 [ EAP/REQ/TTLS ] |
3150 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[ENC] generating IKE_AUTH request 106 [ EAP/RES/TTLS ] |
3151 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3152 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 16[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3153 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 16[ENC] parsed IKE_AUTH response 106 [ EAP/REQ/TTLS ] |
3154 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 16[ENC] generating IKE_AUTH request 107 [ EAP/RES/TTLS ] |
3155 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 16[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3156 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 14[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3157 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 14[ENC] parsed IKE_AUTH response 107 [ EAP/REQ/TTLS ] |
3158 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 14[ENC] generating IKE_AUTH request 108 [ EAP/RES/TTLS ] |
3159 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 14[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3160 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3161 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 09[ENC] parsed IKE_AUTH response 108 [ EAP/REQ/TTLS ] |
3162 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 09[ENC] generating IKE_AUTH request 109 [ EAP/RES/TTLS ] |
3163 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 09[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3164 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1104 bytes) |
3165 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[ENC] parsed IKE_AUTH response 109 [ EAP/REQ/TTLS ] |
3166 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[ENC] generating IKE_AUTH request 110 [ EAP/RES/TTLS ] |
3167 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 08[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
3168 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (1040 bytes) |
3169 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[ENC] parsed IKE_AUTH response 110 [ EAP/REQ/TTLS ] |
3170 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[IKE] need more AVP data |
3171 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
3172 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] received TNCCS batch (49524 bytes) |
3173 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] TNC server is handling inbound connection |
3174 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PB-TNC CDATA batch for Connection ID 2 |
3175 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] PB-TNC state transition from 'Client Working' to 'Server Working' |
3176 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing IETF/PB-PA message (49516 bytes) |
3177 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] handling PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
3178 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[IMV] IMV 1 "Attestation" received message for Connection ID 2 from IMC 2 to IMV 1 |
3179 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC message with ID 0xed64f7ab |
3180 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3181 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3182 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3183 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: dd:ee:60:04:dc:3b:d4:ee:30:04:06:cd:93:18:1c:5a:21:87:b5:9b |
3184 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:boot_aggregate' |
3185 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3186 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3187 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3188 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 65:ee:0c:a2:cd:ac:0d:67:f8:1a:fd:53:7b:96:75:6f:3b:b8:0f:82 |
3189 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/init' |
3190 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3191 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3192 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3193 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6b:a1:a0:58:89:a8:f2:57:53:42:b5:dc:5f:3e:de:54:89:8a:ee:29 |
3194 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/sh' |
3195 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3196 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3197 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3198 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 85:e6:6e:7a:96:98:8b:0a:af:c8:88:46:5d:7a:fe:b5:e9:d3:c2:3e |
3199 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/klibc-sO6SifHCdmbehHGtm0y1yHu6vb0.so' |
3200 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3201 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3202 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3203 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 68:4a:c3:8d:48:55:be:e0:21:93:4f:52:a0:d2:3d:66:86:0c:b2:82 |
3204 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/mkdir' |
3205 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3206 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3207 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3208 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 4b:f9:e0:ee:b2:29:ce:9d:b3:32:4d:c7:89:b7:e5:85:46:7e:67:ea |
3209 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/mount' |
3210 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3211 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3212 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3213 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f6:79:f9:cb:f3:45:8b:6c:f1:2b:c8:c7:25:ac:17:03:b8:ee:44:3b |
3214 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/udev/udev.conf' |
3215 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3216 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3217 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3218 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1b:58:34:3c:0b:26:f2:82:9e:44:92:14:14:93:73:66:d9:a6:12:3e |
3219 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/conf/arch.conf' |
3220 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3221 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3222 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3223 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f8:18:0d:3a:77:03:f6:37:b9:f7:00:87:73:da:14:3c:0d:d9:18:e6 |
3224 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/conf/initramfs.conf' |
3225 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3226 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3227 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3228 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8e:36:36:07:ce:6a:2d:e3:03:91:a1:1c:64:75:3c:e2:e2:02:08:87 |
3229 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/functions' |
3230 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3231 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3232 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3233 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0d:16:c7:df:df:07:a1:f8:47:70:04:ef:c9:fb:1a:18:ea:f6:74:55 |
3234 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/cat' |
3235 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3236 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3237 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3238 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8a:6a:02:1d:e5:80:60:e8:06:24:5e:30:79:d5:23:fa:2c:3a:9f:ef |
3239 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-top/ORDER' |
3240 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3241 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3242 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3243 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d0:dc:06:f1:a3:92:d4:50:54:48:57:2c:d5:20:b1:ba:6e:53:ff:14 |
3244 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-top/all_generic_ide' |
3245 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3246 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3247 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3248 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ff:19:54:90:8c:fe:4d:2e:37:c8:0e:05:40:41:e1:2d:59:f6:0f:e3 |
3249 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-top/blacklist' |
3250 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3251 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3252 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3253 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b9:7b:5e:84:9f:e9:ed:82:30:09:f1:88:f5:e3:bb:c4:5a:ec:fc:d2 |
3254 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-top/keymap' |
3255 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3256 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3257 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3258 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 77:66:42:2c:b3:fd:a6:ce:26:a1:0d:a4:65:b7:a9:45:c9:d3:36:37 |
3259 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-top/udev' |
3260 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3261 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3262 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3263 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 86:5d:0d:73:cc:01:24:8e:01:fe:2c:db:e9:5e:e1:f5:37:11:11:1f |
3264 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/udevd' |
3265 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3266 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3267 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3268 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 70:8e:97:48:bb:27:0e:55:d1:e5:e8:54:15:2b:ec:c9:08:6b:e4:f9 |
3269 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/ld-linux-armhf.so.3' |
3270 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3271 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3272 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3273 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 04:92:98:b0:7e:fe:40:eb:8e:97:ed:74:d7:f3:b7:cf:f4:5c:07:0c |
3274 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/ld.so.cache' |
3275 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3276 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3277 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3278 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 20:ef:47:e0:ec:ba:67:89:cc:63:12:4b:d3:4b:03:7f:db:48:56:24 |
3279 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libselinux.so.1' |
3280 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3281 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3282 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3283 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8a:17:94:db:04:b0:eb:af:9c:7b:c4:04:29:7f:c4:7a:1a:b5:6c:1d |
3284 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/librt.so.1' |
3285 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3286 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3287 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3288 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f6:6f:cb:6b:4c:c6:a4:0b:15:6a:6c:70:30:e2:94:a6:5f:4b:17:3e |
3289 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libgcc_s.so.1' |
3290 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3291 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3292 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3293 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 24:6d:27:bb:ac:e5:09:57:e0:62:cc:41:24:2b:90:99:cd:31:79:a9 |
3294 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libc.so.6' |
3295 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3296 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3297 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3298 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e4:71:6c:df:22:64:cc:e4:0b:44:9f:75:27:0d:40:89:46:54:4e:2f |
3299 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libdl.so.2' |
3300 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3301 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3302 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3303 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 73:7f:69:c5:09:f3:53:8d:b2:22:87:68:b2:02:0f:4b:71:86:fa:50 |
3304 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libpthread.so.0' |
3305 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3306 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3307 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3308 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d0:46:b9:f3:cb:40:e8:64:59:90:25:95:85:9f:5f:36:4b:3d:4a:2e |
3309 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.devname' |
3310 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3311 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3312 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3313 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e4:55:f4:96:49:b7:b1:4c:d3:cb:a6:90:ff:3a:ed:16:f7:46:ba:0c |
3314 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/udevadm' |
3315 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3316 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3317 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3318 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 40:e6:15:d9:1a:7e:f9:91:00:ab:94:7d:d5:68:8b:ee:52:fd:1b:f5 |
3319 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/rules.d/50-udev-default.rules' |
3320 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3321 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3322 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3323 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 46:8d:c8:da:14:c9:6c:1b:ba:05:c2:c0:b9:9c:8d:55:df:6b:e0:99 |
3324 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/rules.d/55-dm.rules' |
3325 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3326 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3327 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3328 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3e:c3:17:c2:aa:50:3b:77:b1:98:4e:c5:99:aa:f4:54:6e:58:9b:c9 |
3329 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/rules.d/60-persistent-storage-dm.rules' |
3330 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3331 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3332 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3333 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 15:03:18:5e:09:4d:38:c6:b6:87:d2:e5:6a:2f:d1:26:58:17:4c:dc |
3334 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/rules.d/60-persistent-storage.rules' |
3335 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3336 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3337 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3338 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5c:eb:68:b0:02:3c:7e:05:60:5e:21:97:a4:85:82:65:a5:ef:ca:cf |
3339 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/rules.d/80-drivers.rules' |
3340 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3341 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3342 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3343 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d7:5b:c7:f7:b5:71:a6:ca:8e:1e:42:23:12:63:fb:e4:e2:03:66:4e |
3344 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/rules.d/91-permissions.rules' |
3345 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3346 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3347 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3348 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 45:88:b4:27:29:be:ef:1d:73:d6:4e:93:16:10:31:b7:40:34:3c:53 |
3349 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/kmod' |
3350 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3351 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3352 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3353 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fb:e7:6a:ed:50:72:a7:46:c7:8e:66:b9:dc:20:0d:80:17:9a:79:e3 |
3354 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libkmod.so.2' |
3355 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3356 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3357 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3358 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 63:cd:9b:94:0d:76:ce:13:ec:fe:c2:56:cf:8b:f1:06:20:13:21:1d |
3359 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/blkid' |
3360 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3361 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3362 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3363 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 43:64:c9:7f:26:36:7b:f4:51:fd:2a:a0:a0:53:b1:da:e9:be:27:e6 |
3364 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modprobe.d/aliases.conf' |
3365 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3366 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3367 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3368 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3e:5c:ab:c1:ae:4b:60:49:ea:cf:c7:98:b9:3a:64:b8:1b:5f:30:01 |
3369 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libblkid.so.1' |
3370 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3371 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3372 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3373 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 04:a4:47:6d:8e:c9:21:62:d7:75:2e:fa:dd:89:46:8a:36:cf:7f:be |
3374 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/modprobe.d/alsa-base-blacklist.conf' |
3375 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3376 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3377 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3378 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0a:eb:43:56:9d:3f:b2:42:15:03:65:e7:c6:0f:5e:b6:f1:9a:90:a8 |
3379 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libuuid.so.1' |
3380 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3381 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3382 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3383 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 59:80:f0:50:33:fb:e9:f7:a3:4b:a6:1d:fd:21:13:9b:54:af:a6:b1 |
3384 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/modprobe.d/alsa-base.conf' |
3385 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3386 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3387 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3388 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 00:24:9b:63:c2:2d:dc:63:e0:9f:2c:95:50:34:13:5e:46:5e:e0:eb |
3389 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/modprobe.d/fbdev-blacklist.conf' |
3390 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3391 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3392 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3393 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 08:cb:d9:2d:24:c0:5d:b8:4d:fe:11:57:be:67:d3:8a:95:b4:5a:f2 |
3394 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/modprobe.d/ipv6.conf' |
3395 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3396 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3397 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3398 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 47:eb:41:3c:08:da:76:ed:fc:9e:e6:b2:1d:95:eb:2a:19:01:e1:89 |
3399 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/modprobe.d/raspi-blacklist.conf' |
3400 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3401 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3402 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3403 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 27:4f:ae:72:8e:11:51:d7:eb:19:62:4c:33:81:9f:59:d9:97:23:e0 |
3404 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.dep.bin' |
3405 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3406 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3407 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3408 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9d:f6:d3:57:2c:a2:8c:22:70:4c:e1:52:0c:b0:fa:76:2f:60:30:c4 |
3409 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.alias.bin' |
3410 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3411 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3412 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3413 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ba:48:4c:a4:9a:0b:92:74:34:72:34:25:ef:6d:f9:02:42:55:93:71 |
3414 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.symbols.bin' |
3415 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3416 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3417 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3418 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 64:d1:1e:8f:81:35:8f:1a:0b:1a:f2:87:b3:f2:fc:3f:b2:51:1a:28 |
3419 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.builtin.bin' |
3420 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3421 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3422 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3423 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 4c:42:a4:dc:d8:67:9e:04:ce:59:28:d8:d3:c9:2b:b6:da:5b:31:28 |
3424 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-premount/ORDER' |
3425 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3426 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3427 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3428 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fb:28:68:3c:6b:04:30:08:c3:ac:4e:13:aa:f5:40:1c:d9:e8:91:2e |
3429 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-premount/plymouth' |
3430 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3431 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3432 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3433 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b7:58:f9:77:dd:07:20:8a:5a:80:63:f7:a0:ac:ee:0b:02:6b:c6:ac |
3434 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/local' |
3435 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3436 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3437 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3438 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2f:6b:a7:c6:2c:d5:61:74:ff:1b:6c:3a:c3:eb:ac:f7:49:f7:d9:7e |
3439 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/fstype' |
3440 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3441 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3442 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3443 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d9:12:0d:c7:13:31:40:2d:06:c5:7c:19:cd:e1:71:46:a0:35:0d:10 |
3444 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/modules.dep' |
3445 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3446 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3447 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3448 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c6:64:60:9d:e8:0c:08:c7:66:7b:df:da:d5:3a:01:b1:f3:20:5f:80 |
3449 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/local-premount/ORDER' |
3450 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3451 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3452 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3453 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e9:6d:33:80:a8:ab:61:ac:3d:3d:ed:ec:11:c5:14:92:49:17:48:fd |
3454 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/local-premount/resume' |
3455 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3456 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3457 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3458 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 80:12:4c:90:b0:b6:fa:87:1b:4e:13:11:0a:f8:64:fa:07:39:4a:f3 |
3459 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-bottom/ORDER' |
3460 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3461 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3462 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3463 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fd:25:dd:cf:2f:ad:c3:05:fa:ef:aa:ed:20:8c:01:4f:50:f7:99:b8 |
3464 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/scripts/init-bottom/ima_policy' |
3465 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3466 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3467 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3468 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8a:a3:05:98:ca:cb:56:27:b1:49:ea:b6:26:fa:63:99:5c:71:e5:e3 |
3469 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/chroot' |
3470 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3471 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3472 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3473 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b9:4d:3f:1e:3e:7c:a0:6d:ca:5c:0d:b5:8a:00:8a:07:7a:20:84:3c |
3474 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/sbin/load_policy' |
3475 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3476 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3477 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3478 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5f:9a:17:21:e9:55:61:28:77:2a:53:b8:c5:eb:d3:78:4d:f6:d4:de |
3479 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/ld-2.13.so' |
3480 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3481 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3482 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3483 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 93:09:09:18:3a:b6:16:82:4e:73:73:93:07:b2:87:72:fe:62:87:06 |
3484 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/etc/ld.so.preload' |
3485 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3486 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3487 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3488 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5f:fa:26:ad:af:3c:f6:4d:55:72:89:43:c1:dd:7b:1b:f1:af:a4:99 |
3489 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/usr/lib/arm-linux-gnueabihf/libcofi_rpi.so' |
3490 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3491 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3492 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3493 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1b:b7:04:f4:82:10:6f:e1:1a:6a:96:53:2d:d2:91:0b:9b:92:4d:d1 |
3494 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/etc/ld.so.cache' |
3495 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3496 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3497 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3498 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fc:1e:79:6e:95:72:25:f0:1c:ce:e6:d6:c9:b2:c0:06:19:a9:e5:5c |
3499 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/libsepol.so.1' |
3500 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3501 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3502 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3503 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6b:37:3d:d8:fd:60:0f:f0:f7:5b:d5:96:36:fe:22:60:16:1a:55:04 |
3504 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/libselinux.so.1' |
3505 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3506 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3507 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3508 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a4:f3:a1:9e:16:12:7f:fb:45:4f:6b:b9:d7:2f:a4:f0:e1:eb:03:fe |
3509 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/libc-2.13.so' |
3510 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3511 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3512 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3513 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: cd:bd:72:68:67:a3:6c:80:1f:44:ff:ac:7c:97:89:61:9f:31:72:38 |
3514 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/lib/arm-linux-gnueabihf/libdl-2.13.so' |
3515 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3516 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3517 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3518 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 84:66:c8:b2:fc:a2:52:eb:91:3d:c8:40:84:c2:86:cd:7b:67:52:76 |
3519 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/etc/selinux/config' |
3520 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3521 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3522 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3523 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: bc:7b:cc:2f:7b:8a:91:07:21:ae:12:b4:01:93:d8:2e:b0:da:b7:ff |
3524 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/root/etc/selinux/default/policy/policy.26' |
3525 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3526 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3527 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3528 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 93:70:72:3f:d6:fd:21:37:c9:3a:28:6a:cc:1b:a2:7a:09:35:1e:de |
3529 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/init' |
3530 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3531 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3532 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3533 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d4:97:cc:ac:12:61:5c:28:85:15:6d:4a:ea:7a:f7:9a:8d:4a:3f:ba |
3534 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/rcS' |
3535 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3536 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3537 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3538 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1e:5a:2c:5a:f8:cf:3b:f0:26:5a:5b:7b:7b:23:9e:3b:e8:cd:8a:c1 |
3539 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/dash' |
3540 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3541 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3542 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3543 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 20:a8:ca:0b:11:04:b3:86:ad:54:d8:a1:ae:55:43:a0:4e:57:90:33 |
3544 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/rc' |
3545 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3546 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3547 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3548 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1c:30:ed:9c:40:5b:da:14:0c:69:f8:32:bd:bb:7a:ab:e7:83:5b:d2 |
3549 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/stty' |
3550 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3551 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3552 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3553 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: aa:4b:b3:a5:f3:c6:75:9c:a3:79:83:e6:72:6e:53:3f:53:c2:b8:74 |
3554 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/run-parts' |
3555 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3556 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3557 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3558 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2e:6b:cb:34:b8:94:7d:44:bf:f3:4a:6a:8b:22:8f:ca:85:b8:f4:21 |
3559 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/startpar' |
3560 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3561 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3562 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3563 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c8:40:10:49:2c:bd:6a:5f:f7:40:41:29:88:22:76:53:5a:3e:b3:cb |
3564 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/tput' |
3565 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3566 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3567 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3568 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 55:09:cc:2f:e7:4a:e5:3c:38:63:8c:80:2a:64:f6:cf:e5:09:f4:db |
3569 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libtinfo.so.5.9' |
3570 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3571 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3572 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3573 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b6:9a:fd:c1:61:ea:51:88:83:0d:89:1c:98:85:e9:d9:28:42:44:74 |
3574 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/echo' |
3575 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3576 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3577 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3578 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: bb:c5:01:5c:ab:e0:52:82:7a:32:c0:b7:52:ca:27:f9:3a:42:5f:a7 |
3579 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnss_compat-2.13.so' |
3580 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3581 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3582 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3583 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1d:7f:8b:3e:cf:b8:06:0c:82:18:e3:34:22:1c:01:59:a3:91:7b:49 |
3584 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnsl-2.13.so' |
3585 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3586 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3587 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3588 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5c:48:b7:a6:c2:5e:61:36:be:57:f8:2d:d5:ef:c4:97:28:56:05:5b |
3589 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnss_nis-2.13.so' |
3590 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3591 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3592 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3593 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 36:65:24:bd:b2:cb:8b:73:bf:c5:5d:64:3e:f2:92:f9:f3:e9:e5:77 |
3594 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnss_files-2.13.so' |
3595 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3596 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3597 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3598 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f8:cf:95:ae:ce:4b:06:90:c9:34:31:e2:d3:12:0c:ea:ec:54:18:f0 |
3599 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/mountkernfs.sh' |
3600 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3601 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3602 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3603 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 55:6e:01:65:3d:49:50:71:c7:64:d8:74:b8:5b:d0:8d:ef:a6:4e:02 |
3604 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/fake-hwclock' |
3605 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3606 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3607 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3608 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d2:de:ef:26:00:23:37:da:76:c2:8f:f2:ef:63:27:53:60:9e:b8:94 |
3609 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/hostname.sh' |
3610 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3611 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3612 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3613 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2c:27:ad:86:3e:b4:18:01:26:7f:a1:5b:ba:01:68:eb:ce:46:34:f2 |
3614 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/cat' |
3615 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3616 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3617 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3618 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 29:2e:97:e0:c4:4b:ab:ab:47:55:e1:ff:7f:2a:2d:25:08:16:c2:09 |
3619 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/fake-hwclock' |
3620 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3621 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3622 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3623 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5e:2d:66:ca:36:71:61:14:40:53:03:19:d0:f3:05:26:02:2b:dc:50 |
3624 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/sed' |
3625 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3626 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3627 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3628 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 34:63:4e:b1:dc:c4:59:a0:60:3b:de:01:95:c4:57:98:82:a4:60:55 |
3629 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/grep' |
3630 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3631 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3632 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3633 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f4:cd:6e:af:31:a8:24:8b:e6:4c:69:52:7b:d4:66:49:19:cc:0f:8c |
3634 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/hostname' |
3635 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3636 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3637 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3638 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6d:ff:18:c7:9c:f3:25:35:f8:6d:c3:a0:44:10:83:0c:86:4f:ce:ab |
3639 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/date' |
3640 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3641 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3642 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3643 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a2:ec:dd:25:1b:21:da:4f:85:64:24:fb:70:8f:19:67:dc:80:a6:82 |
3644 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/librt-2.13.so' |
3645 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3646 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3647 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3648 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8d:b0:51:1b:10:e4:c5:db:64:db:fc:00:2d:47:5f:26:c7:6b:f4:34 |
3649 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libpthread-2.13.so' |
3650 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3651 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3652 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3653 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d6:ad:ae:90:46:8a:45:8e:55:30:6b:c3:00:c7:23:7b:66:a7:ae:0f |
3654 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/ls' |
3655 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3656 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3657 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3658 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 05:24:4c:10:4d:16:65:e8:a1:da:ed:9d:5a:94:aa:3b:d2:cc:fb:a1 |
3659 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libacl.so.1.1.0' |
3660 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3661 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3662 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3663 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9f:87:dc:af:70:5c:33:34:05:f5:28:0c:ae:5c:3a:7c:63:ba:aa:2c |
3664 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libattr.so.1.1.0' |
3665 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3666 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3667 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3668 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 47:3f:8e:2f:35:bc:8c:dc:0a:80:8d:7b:30:77:b1:7a:b8:1a:fa:23 |
3669 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/uname' |
3670 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3671 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3672 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3673 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: bf:bf:38:f0:0f:5b:52:82:a8:5a:2e:ea:2e:dc:e7:6d:cb:1d:ec:95 |
3674 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/mountpoint' |
3675 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3676 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3677 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3678 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e1:61:c7:cb:77:88:c6:02:36:42:5e:8a:5f:5f:83:67:b4:5d:44:7f |
3679 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/setfiles' |
3680 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3681 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3682 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3683 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7d:d0:09:e4:ac:92:68:0a:d1:1d:f6:7f:91:7b:b5:8f:35:37:0e:f2 |
3684 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/libaudit.so.0.0.0' |
3685 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3686 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3687 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3688 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5c:8f:9c:b1:c0:3d:88:fa:b7:e4:dc:32:1b:0d:06:d4:31:32:a3:f5 |
3689 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/mkdir' |
3690 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3691 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3692 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3693 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b2:87:3b:a0:8f:66:07:18:cc:4a:09:95:ba:05:17:68:a0:fe:d8:4a |
3694 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/touch' |
3695 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3696 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3697 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3698 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1d:ae:ce:31:0b:88:f6:5c:6e:49:c3:4c:5b:65:63:69:84:ab:fa:c4 |
3699 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/mount' |
3700 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3701 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3702 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3703 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: aa:1a:9c:32:87:9d:aa:c9:86:8f:5e:56:43:7e:e7:01:9b:21:8d:c5 |
3704 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libblkid.so.1.1.0' |
3705 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3706 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3707 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3708 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 4a:46:f9:b9:c0:9b:ae:f1:51:c4:2e:ee:fb:cd:3f:cd:dd:b3:e1:a7 |
3709 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libmount.so.1.1.0' |
3710 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3711 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3712 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3713 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 51:9c:1f:5c:0c:37:3e:39:0d:d5:bc:72:86:c5:4d:8f:29:88:0f:23 |
3714 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libuuid.so.1.3.0' |
3715 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3716 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3717 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3718 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6f:f4:fd:99:4d:a0:ae:2c:07:12:5d:1e:d3:71:44:0f:41:00:ca:49 |
3719 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/udev' |
3720 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3721 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3722 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3723 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0e:7a:9c:6d:dc:7d:6f:d9:b8:6c:ff:0e:15:d6:93:10:32:eb:d5:89 |
3724 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/ps' |
3725 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3726 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3727 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3728 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5e:78:58:ed:ec:f7:ab:74:40:ca:4c:21:b9:21:50:72:41:cc:a8:8c |
3729 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/egrep' |
3730 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3731 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3732 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3733 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 68:e3:fc:5e:26:c8:ea:6e:58:ec:3b:12:37:6a:8e:13:b2:c3:db:2b |
3734 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libprocps.so.0.0.1' |
3735 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3736 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3737 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3738 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 76:23:a7:f7:f4:85:52:f4:b5:cd:9d:b2:70:fc:bc:08:5a:f0:38:f7 |
3739 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/create_static_nodes' |
3740 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3741 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3742 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3743 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1f:26:18:35:b0:9e:d2:1f:42:65:e7:da:07:81:8d:3a:f2:af:90:1c |
3744 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/mknod' |
3745 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3746 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3747 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3748 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 39:d8:8d:60:2e:78:55:b2:b5:85:dd:3d:8c:3d:e3:22:0b:40:4b:6a |
3749 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/write_dev_root_rule' |
3750 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3751 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3752 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3753 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7f:20:ad:47:0f:ee:c2:02:5e:c1:7c:52:d1:99:95:1f:a0:88:49:7c |
3754 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/mv' |
3755 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3756 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3757 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3758 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 4c:ac:a1:bc:1f:90:28:ed:08:c8:5e:65:6b:fe:ae:8c:69:6a:ff:41 |
3759 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libkmod.so.2.1.3' |
3760 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3761 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3762 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3763 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a0:ee:de:0d:7a:a4:fd:59:b0:23:36:c3:e7:62:f8:1c:3b:90:75:1a |
3764 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/ln' |
3765 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3766 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3767 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3768 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c0:7f:aa:47:82:bd:03:9b:5d:a6:9f:a5:95:d9:64:70:83:ec:75:91 |
3769 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/drivers/uio/uio.ko' |
3770 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3771 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3772 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3773 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3b:7c:8f:f1:f0:2b:4a:11:68:28:34:ba:27:88:8f:3a:89:60:dc:dd |
3774 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/drivers/uio/uio_pdrv_genirq.ko' |
3775 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3776 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3777 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3778 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a9:56:0c:30:a3:ff:07:9a:cc:fd:10:e6:13:b1:58:cf:f1:f7:4d:1c |
3779 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/usb-db' |
3780 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3781 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3782 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3783 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 65:fe:37:76:c4:67:f4:16:36:4b:49:68:f0:82:ce:33:d1:b9:a5:1c |
3784 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/th-cmd' |
3785 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3786 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3787 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3788 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 09:f4:b2:67:6b:ba:59:54:ae:e1:88:e9:1f:ab:7b:2e:a8:e3:6d:f9 |
3789 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/chown' |
3790 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3791 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3792 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3793 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1c:69:ff:de:dc:26:1b:95:87:2a:40:57:c2:70:cd:dc:01:e0:d2:92 |
3794 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/udisks-part-id' |
3795 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3796 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3797 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3798 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 07:49:12:78:ab:26:fa:8a:4b:f4:2b:3d:1f:c9:2c:ba:88:d7:94:8e |
3799 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/ifplugd.agent' |
3800 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3801 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3802 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3803 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f3:e1:e6:c5:e2:ae:94:27:76:38:70:ba:e3:20:0b:4b:ee:eb:d4:dd |
3804 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/chmod' |
3805 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3806 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3807 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3808 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 48:3f:cd:13:b6:5e:6d:d2:3e:de:a6:a7:31:58:63:ef:40:c6:df:16 |
3809 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/drivers/input/joydev.ko' |
3810 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3811 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3812 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3813 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fd:91:c0:54:a2:a3:9b:2d:40:3a:b7:ff:fa:36:d0:a4:38:47:8c:70 |
3814 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/drivers/input/evdev.ko' |
3815 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3816 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3817 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3818 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b8:cd:81:38:e1:de:11:b5:ad:05:7e:fd:bc:90:e7:87:20:01:5f:18 |
3819 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/net.agent' |
3820 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3821 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3822 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3823 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b5:89:52:1c:10:e7:ed:4b:93:9f:d4:3e:fc:b3:3a:f1:c6:ed:0a:78 |
3824 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libglib-2.0.so.0.4000.0' |
3825 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3826 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3827 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3828 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 68:1a:53:1d:d7:9f:81:84:8f:9f:94:1d:57:b2:25:83:4d:91:a0:e4 |
3829 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/sleep' |
3830 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3831 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3832 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3833 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a1:56:91:89:e6:a8:02:0b:d2:60:06:4a:e6:1e:15:8c:93:aa:e3:3f |
3834 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libudev.so.0.13.0' |
3835 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3836 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3837 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3838 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9c:e8:93:f6:9c:60:69:8f:35:fe:25:87:0c:8a:b8:e2:11:1c:be:6d |
3839 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libparted.so.0.0.1' |
3840 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3841 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3842 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3843 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: cd:1b:e9:e4:45:ab:90:b6:52:a2:f7:34:bb:6e:df:29:c9:ee:6d:d6 |
3844 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libpcre.so.3.13.1' |
3845 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3846 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3847 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3848 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9b:a1:79:e9:f1:71:c8:28:a2:65:f3:df:c2:32:af:51:7b:d3:b7:9d |
3849 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/udev/keymap' |
3850 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3851 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3852 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3853 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: be:a3:4a:0c:d0:7e:5d:c3:ab:8b:09:1a:ae:fb:04:26:07:90:fa:db |
3854 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libdevmapper.so.1.02.1' |
3855 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3856 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3857 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3858 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: bf:e4:c3:86:a3:bb:1f:78:5f:e6:64:59:6d:89:84:18:ee:90:12:b6 |
3859 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/keyboard-setup' |
3860 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3861 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3862 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3863 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2a:a4:89:e2:19:2d:ab:92:9a:49:d4:04:32:91:8f:a6:a0:86:25:26 |
3864 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/setupcon' |
3865 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3866 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3867 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3868 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 00:86:fd:85:3d:11:57:7b:d0:2d:83:3f:79:a5:12:19:4b:90:f1:bf |
3869 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/killall5' |
3870 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3871 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3872 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3873 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 77:99:29:6c:21:0b:a6:18:d4:aa:22:49:1d:73:2a:dc:41:a6:3b:33 |
3874 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/tty' |
3875 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3876 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3877 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3878 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: cc:8d:47:20:e5:e3:69:6d:be:9b:9f:7c:a6:a4:91:61:60:3a:04:69 |
3879 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/kbd_mode' |
3880 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3881 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3882 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3883 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f9:f0:68:7e:2b:6d:de:19:07:bc:ab:4b:62:6f:fa:e1:7f:e8:a1:67 |
3884 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/loadkeys' |
3885 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3886 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3887 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3888 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3a:25:92:4b:7d:19:39:25:a0:83:47:04:1e:8b:7d:e3:77:b1:65:c6 |
3889 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/gzip' |
3890 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3891 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3892 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3893 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ec:c5:ce:a6:96:54:15:7a:ed:46:a3:12:7b:c2:c8:43:9a:f3:c0:d4 |
3894 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/mountdevsubfs.sh' |
3895 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3896 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3897 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3898 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8c:00:98:9c:4b:be:4c:cc:fc:98:1b:17:e3:fb:25:c6:4c:1d:0d:e2 |
3899 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/stat' |
3900 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3901 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3902 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3903 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a2:f4:d8:9f:c5:bb:5e:34:ce:6a:87:67:02:ac:0c:3e:cb:3d:91:44 |
3904 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/rm' |
3905 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3906 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3907 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3908 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 10:24:25:b4:0f:c7:d6:c7:d6:ae:5a:0c:ae:34:c0:db:df:f0:73:2a |
3909 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/checkroot.sh' |
3910 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3911 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3912 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3913 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7b:00:ad:25:88:7a:eb:27:75:a5:eb:f3:4f:74:24:81:df:24:07:4f |
3914 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/swapon' |
3915 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3916 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3917 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3918 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a9:f5:bc:79:78:8c:b8:e3:c3:f0:a1:14:45:85:3f:4b:85:7b:5b:de |
3919 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/logsave' |
3920 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3921 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3922 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3923 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5e:92:58:f0:ef:ac:7e:78:93:1d:b4:5a:53:66:af:1e:e6:c6:7c:80 |
3924 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/fsck' |
3925 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3926 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3927 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3928 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 72:cf:c7:74:04:a7:5e:d5:66:b6:86:4c:26:7c:6d:8b:14:eb:b6:3a |
3929 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/e2fsck' |
3930 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3931 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3932 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3933 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d1:b0:ba:20:a1:e6:be:69:1c:f9:fa:a5:ad:3a:6b:14:34:c5:7b:8f |
3934 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libext2fs.so.2.4' |
3935 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3936 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3937 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3938 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0f:d2:e3:50:17:76:94:41:d5:1a:0b:b9:2a:db:61:47:07:c3:e7:c4 |
3939 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libcom_err.so.2.1' |
3940 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3941 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3942 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3943 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3c:91:4c:57:47:7e:75:93:96:c1:ae:fb:e8:21:a7:c8:3d:38:55:93 |
3944 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libe2p.so.2.3' |
3945 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3946 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3947 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3948 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9a:e3:d6:24:65:1d:92:1d:11:c1:9e:54:3f:1f:cd:36:e1:f1:b2:1c |
3949 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/readlink' |
3950 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3951 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3952 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3953 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ae:50:47:09:a7:d0:73:c2:43:f9:61:f2:21:06:66:87:5a:c5:31:92 |
3954 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/which' |
3955 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3956 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3957 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3958 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 61:ae:d0:07:80:86:92:44:e1:54:2f:e8:fb:74:1f:a0:d2:15:04:d2 |
3959 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/checkroot-bootclean.sh' |
3960 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3961 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3962 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3963 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b1:40:0b:0f:49:b8:e5:fd:b5:7d:d4:ab:6b:a0:a4:ae:8c:a8:2a:76 |
3964 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/kmod' |
3965 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3966 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3967 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3968 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e1:48:65:0e:d4:e4:4f:58:82:80:c3:14:2b:ee:c5:d9:0f:b3:31:3a |
3969 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/mtab.sh' |
3970 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3971 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3972 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3973 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: cf:d4:c1:c5:be:42:58:7d:c0:f4:f4:8b:30:63:e6:74:9b:ec:35:54 |
3974 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/find' |
3975 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3976 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3977 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3978 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c9:ec:e0:17:83:80:a3:8b:d4:b5:ff:a8:28:2e:82:ec:c7:3d:af:3d |
3979 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/snd.ko' |
3980 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3981 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3982 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3983 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 10:91:d6:f6:22:ea:23:e1:48:f3:04:ce:5e:04:c0:14:17:bb:b7:2f |
3984 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libm-2.13.so' |
3985 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3986 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3987 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3988 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 02:4f:7e:49:78:41:2a:48:bb:02:a9:2b:de:ff:43:f9:47:e1:a0:06 |
3989 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/snd-timer.ko' |
3990 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3991 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3992 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3993 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 58:62:ba:88:85:f8:bd:44:0e:b7:7a:7f:43:28:50:b5:66:b7:4c:cb |
3994 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/seq/snd-seq-device.ko' |
3995 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
3996 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
3997 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
3998 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 52:ce:53:d1:3c:ca:15:26:6f:0d:94:1a:64:3c:fa:78:6a:92:66:35 |
3999 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/seq/snd-seq.ko' |
4000 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4001 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4002 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4003 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c8:c3:88:20:ff:67:28:03:ac:00:e1:b9:6b:41:34:43:11:c9:74:2c |
4004 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/core/snd-pcm.ko' |
4005 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4006 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4007 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4008 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 97:6e:45:b2:2d:5e:6e:9f:d3:fb:d1:67:22:03:9b:9e:65:f9:e7:a7 |
4009 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/sound/arm/snd-bcm2835.ko' |
4010 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4011 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4012 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4013 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3f:8f:bc:0b:74:34:6d:d8:14:ce:b4:c5:4f:bc:66:d6:28:e7:7c:09 |
4014 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/alsactl' |
4015 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4016 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4017 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4018 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0a:66:70:60:48:7d:09:da:cf:99:4d:59:14:49:e7:18:7c:c2:bd:c8 |
4019 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/drivers/char/hw_random/bcm2708-rng.ko' |
4020 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4021 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4022 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4023 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7e:b2:5d:b3:10:a0:e0:00:ff:87:5c:ea:32:56:09:91:8e:b9:01:08 |
4024 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libasound.so.2.0.0' |
4025 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4026 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4027 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4028 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fb:0f:3c:49:08:98:71:c5:f2:2d:0d:d8:cd:20:5c:16:e3:71:5f:5a |
4029 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/checkfs.sh' |
4030 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4031 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4032 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4033 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 07:cb:e6:a9:af:d5:11:9c:fd:4e:a7:03:24:b4:99:1b:71:e3:bf:2f |
4034 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/dosfsck' |
4035 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4036 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4037 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4038 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6d:8e:a9:23:95:14:10:f3:fa:f6:b5:62:5b:de:fd:26:37:1c:30:47 |
4039 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/mountall.sh' |
4040 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4041 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4042 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4043 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c7:68:cc:71:17:b9:ae:aa:66:2a:5e:2e:2b:16:26:f7:2b:3b:5f:26 |
4044 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/rmdir' |
4045 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4046 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4047 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4048 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 71:db:98:d0:69:cf:e9:59:76:32:4a:63:f0:95:76:31:27:e4:41:f7 |
4049 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/df' |
4050 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4051 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4052 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4053 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0a:c2:51:53:81:6b:95:f0:51:b1:e7:9b:03:69:39:55:9d:a0:a1:56 |
4054 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/mountall-bootclean.sh' |
4055 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4056 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4057 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4058 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 61:52:40:6a:54:3f:25:fa:d2:32:19:0c:0d:ea:63:46:e7:3e:b4:c1 |
4059 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/procps' |
4060 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4061 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4062 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4063 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 87:80:d4:0b:37:0b:b7:bb:e1:cc:5f:42:d5:25:ae:c2:08:20:7a:3e |
4064 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/udev-mtab' |
4065 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4066 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4067 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4068 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6e:78:89:e4:39:b7:d9:c8:be:c8:31:73:d1:cb:a0:47:1f:dd:a6:28 |
4069 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/urandom' |
4070 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4071 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4072 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4073 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a3:f3:d1:db:8a:c1:1c:21:f0:11:b0:23:b2:34:20:e4:00:78:72:1d |
4074 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/sysctl' |
4075 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4076 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4077 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4078 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 58:5b:0f:b6:36:d0:9f:33:da:60:72:79:27:51:20:e7:91:9a:f5:16 |
4079 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/dd' |
4080 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4081 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4082 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4083 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d5:3d:07:fb:25:60:d5:54:6d:c8:71:29:37:55:60:6a:64:4c:6b:c1 |
4084 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/networking' |
4085 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4086 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4087 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4088 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 40:b7:fe:ce:9b:0c:57:a8:90:95:f2:f8:cd:44:3e:4f:0a:42:0d:a7 |
4089 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/ifup' |
4090 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4091 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4092 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4093 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7e:5b:66:b5:c3:ba:fa:0c:1f:90:34:d4:20:26:d9:d1:bf:d7:ca:cc |
4094 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/network/if-pre-up.d/wireless-tools' |
4095 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4096 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4097 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4098 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 54:21:5a:69:21:0d:30:53:51:50:1b:de:74:99:5c:6c:46:d5:29:b2 |
4099 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/wpa_supplicant/ifupdown.sh' |
4100 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4101 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4102 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4103 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 80:b4:e7:07:f4:49:cb:2f:c3:d8:d9:57:64:94:69:86:ef:a3:10:8b |
4104 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/ip' |
4105 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4106 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4107 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4108 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d1:80:91:ae:d3:d3:dc:fe:6e:22:81:61:da:02:ba:d1:62:c3:3e:77 |
4109 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libresolv-2.13.so' |
4110 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4111 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4112 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4113 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 91:69:1e:59:b5:4e:52:66:db:19:e8:97:12:d0:ef:12:09:3c:61:ef |
4114 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/network/if-up.d/000resolvconf' |
4115 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4116 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4117 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4118 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 95:dd:bf:fd:b2:88:10:69:4b:a7:0e:9f:2c:aa:d7:96:ca:8b:2f:27 |
4119 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/network/if-up.d/avahi-daemon' |
4120 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4121 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4122 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4123 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 75:de:80:ad:d1:46:53:29:e3:e6:10:04:6d:5f:70:35:00:8f:63:ab |
4124 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/network/if-up.d/mountnfs' |
4125 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4126 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4127 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4128 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1e:71:52:bf:ac:59:1f:62:95:ab:6e:39:b5:35:12:fa:51:be:51:2b |
4129 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/ifplugd' |
4130 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4131 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4132 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4133 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 32:13:b7:39:a7:8e:90:da:3b:b6:c3:8c:ae:14:79:9d:57:59:bb:ec |
4134 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/libdaemon.so.0.5.0' |
4135 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4136 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4137 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4138 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b4:53:33:82:9a:75:f6:bf:4b:f6:87:8f:5e:90:c3:85:e4:0e:40:86 |
4139 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/network/if-up.d/openssh-server' |
4140 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4141 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4142 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4143 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 4d:c1:e5:3f:58:73:3f:9b:d5:d3:a3:85:32:1c:1e:c7:09:e8:05:9e |
4144 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/network/if-up.d/upstart' |
4145 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4146 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4147 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4148 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a6:69:19:43:db:c7:09:99:09:31:e8:59:a8:f9:a4:0e:f8:93:62:92 |
4149 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/start-stop-daemon' |
4150 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4151 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4152 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4153 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 62:a2:96:7d:96:a1:e2:d8:4f:f2:cc:4e:5a:26:0b:b0:f2:1e:ad:41 |
4154 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/ifplugd/ifplugd.action' |
4155 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4156 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4157 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4158 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 14:92:d9:ba:1b:c8:e5:1f:b0:93:4c:ff:cf:fe:40:8e:82:1e:ae:b4 |
4159 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/avahi/avahi-daemon-check-dns.sh' |
4160 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4161 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4162 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4163 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 99:22:c8:ad:71:d4:72:d6:cb:ac:57:98:75:46:92:7d:03:ed:a9:6b |
4164 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/wpa_supplicant/action_wpa.sh' |
4165 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4166 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4167 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4168 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 95:89:3c:c2:b4:3a:6c:94:5c:88:eb:70:da:39:02:26:3a:cd:3a:4b |
4169 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/wpa_supplicant' |
4170 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4171 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4172 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4173 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 65:76:21:c9:b6:cc:c4:66:c8:b8:6f:ea:91:ad:24:be:11:c1:45:1b |
4174 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/ifconfig' |
4175 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4176 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4177 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4178 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6c:79:f0:d7:63:31:96:c8:60:19:f1:03:3a:9b:82:39:1d:64:ea:18 |
4179 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/ifplugd/action.d/ifupdown' |
4180 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4181 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4182 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4183 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 03:88:dc:a3:33:09:70:98:3e:9d:5f:33:fc:95:53:a3:36:86:dd:5e |
4184 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnl-3.so.200.5.2' |
4185 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4186 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4187 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4188 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f8:78:ad:9e:37:dd:49:82:e8:ee:74:ee:7f:6f:fd:0c:c3:01:75:d6 |
4189 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/route' |
4190 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4191 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4192 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4193 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 69:d3:87:bf:aa:81:58:bb:ae:06:4f:6d:c1:af:b2:51:2c:3f:be:7a |
4194 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnl-genl-3.so.200.5.2' |
4195 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4196 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4197 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4198 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: eb:03:e7:23:be:ae:c2:7b:9e:de:41:4d:71:5b:de:66:44:78:53:d9 |
4199 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libpcsclite.so.1.0.0' |
4200 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4201 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4202 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4203 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ed:30:6a:ee:0e:c5:a3:3c:84:06:55:9b:b3:0c:fd:92:78:84:2d:55 |
4204 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libssl.so.1.0.0' |
4205 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4206 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4207 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4208 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 34:7e:5f:db:80:e0:de:8e:f0:70:bf:2c:fe:6a:37:97:bd:53:06:61 |
4209 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libcrypto.so.1.0.0' |
4210 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4211 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4212 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4213 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a5:a5:76:2e:7b:3b:f9:ee:3f:4b:7e:43:1b:0e:71:59:36:72:ac:9e |
4214 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libdbus-1.so.3.7.2' |
4215 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4216 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4217 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4218 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d3:72:89:1c:34:49:76:89:c6:2b:71:ad:0c:28:56:53:19:94:a0:7e |
4219 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libz.so.1.2.7' |
4220 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4221 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4222 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4223 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 23:59:93:ae:d1:d9:f4:f3:7f:ab:b5:02:fc:c1:1a:a1:f8:72:0b:3c |
4224 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/mountnfs.sh' |
4225 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4226 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4227 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4228 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3b:63:c4:84:98:7a:de:75:16:5b:c3:bb:ef:d0:8d:60:2b:02:15:4a |
4229 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/mountnfs-bootclean.sh' |
4230 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4231 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4232 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4233 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9e:37:da:a3:f0:c3:07:68:25:88:01:a4:fb:c9:18:86:2b:94:91:81 |
4234 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/alsa-utils' |
4235 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4236 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4237 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4238 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d5:1d:0f:f9:0f:7b:fc:ed:87:f6:5c:42:57:35:1c:0c:99:33:3d:f0 |
4239 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/bootmisc.sh' |
4240 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4241 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4242 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4243 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: dc:bb:97:42:8b:20:a9:25:dc:7d:c6:5c:4b:f2:82:ae:2d:0d:c4:37 |
4244 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/chgrp' |
4245 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4246 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4247 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4248 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 81:70:7a:a9:ac:20:56:7f:72:d7:ef:2f:c8:8a:a9:a0:e7:c9:a8:3c |
4249 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/kbd' |
4250 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4251 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4252 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4253 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 69:00:e6:c1:71:ec:9a:79:c8:22:9c:3f:67:2a:14:8e:0e:7f:16:d8 |
4254 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/locale' |
4255 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4256 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4257 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4258 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 20:96:eb:76:f0:fe:79:7c:e6:8e:43:74:91:0d:3f:67:b1:bb:ef:d9 |
4259 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/fgconsole' |
4260 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4261 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4262 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4263 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 24:98:c2:69:68:a9:9c:55:98:60:57:57:a5:91:f8:c8:b3:28:f8:94 |
4264 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/mawk' |
4265 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4266 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4267 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4268 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 46:c1:e6:ab:a2:a8:35:fa:8b:ec:9e:65:c8:4a:5f:75:31:bf:6b:f4 |
4269 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/tr' |
4270 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4271 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4272 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4273 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 48:8c:8c:d3:94:6e:1d:90:60:9d:84:0e:c4:36:62:a7:51:ef:91:07 |
4274 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/setterm' |
4275 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4276 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4277 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4278 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: cf:1d:c8:60:e0:af:7e:99:f5:50:ff:3d:54:1b:9d:8d:aa:91:74:e3 |
4279 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/console-setup' |
4280 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4281 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4282 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4283 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6b:ac:4d:92:9b:06:22:6c:57:69:9e:5f:16:63:f5:42:8a:af:1e:1f |
4284 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/plymouth-log' |
4285 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4286 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4287 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4288 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b1:b7:58:99:ab:de:eb:c1:12:fa:49:ba:a4:0b:d4:2e:a1:ff:4a:71 |
4289 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/raspi-config' |
4290 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4291 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4292 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4293 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b8:ae:02:05:d3:70:1d:21:50:a3:4d:36:07:98:be:79:a1:de:da:af |
4294 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/selinux-basics' |
4295 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4296 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4297 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4298 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 21:92:41:0b:53:e9:a3:e6:83:93:db:4f:68:37:d2:47:d5:7c:eb:c9 |
4299 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/x11-common' |
4300 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4301 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4302 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4303 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a6:0d:6b:87:45:fb:45:8c:2b:fa:2f:95:ab:66:22:3f:41:2d:cd:7d |
4304 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/plymouth' |
4305 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4306 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4307 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4308 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 88:f7:6f:44:48:1e:5e:dc:de:5d:8e:d2:80:9f:c6:e8:14:84:77:09 |
4309 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/timeout' |
4310 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4311 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4312 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4313 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 14:db:f6:a5:07:71:ac:0d:c4:4d:42:ae:66:7a:58:e2:e3:6c:8c:2c |
4314 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libply.so.2.1.0' |
4315 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4316 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4317 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4318 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8b:a0:84:07:5e:04:42:07:11:94:6f:6a:ab:10:c2:30:b0:25:72:14 |
4319 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/thd' |
4320 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4321 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4322 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4323 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0b:1c:16:74:22:c9:59:d2:0b:de:b2:3c:e1:ac:1b:74:fd:48:60:bb |
4324 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/sudo' |
4325 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4326 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4327 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4328 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1d:b5:a6:5f:06:47:58:81:7e:04:3c:ae:86:53:4a:c8:5d:25:ef:24 |
4329 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libutil-2.13.so' |
4330 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4331 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4332 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4333 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 04:68:50:ae:69:6d:46:96:cd:7d:ac:3c:c1:3a:1b:be:05:07:23:5f |
4334 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/sudo/sudoers.so' |
4335 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4336 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4337 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4338 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 4b:0d:c3:29:d3:52:dc:f7:00:f7:a7:fd:24:ce:68:d1:a0:cb:d7:c6 |
4339 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libpam.so.0.83.0' |
4340 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4341 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4342 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4343 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c5:e1:07:2a:35:91:e8:69:17:1f:97:ae:a6:41:40:a7:7c:34:c0:2e |
4344 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_unix.so' |
4345 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4346 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4347 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4348 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6f:1c:0b:53:29:80:b3:53:b6:5b:22:1a:c8:16:69:e8:38:21:e0:58 |
4349 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libcrypt-2.13.so' |
4350 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4351 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4352 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4353 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 02:c7:0c:39:ad:2d:d9:bd:ec:95:52:25:ed:70:81:81:b5:b9:c1:40 |
4354 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_deny.so' |
4355 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4356 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4357 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4358 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: dd:d6:ac:ee:37:02:33:75:3c:c2:d7:6b:94:1d:c0:d1:4b:4c:21:f8 |
4359 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_permit.so' |
4360 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4361 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4362 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4363 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e2:57:5a:c8:a6:12:06:be:1d:96:23:d4:e6:0a:35:77:bc:14:22:eb |
4364 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/tee' |
4365 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4366 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4367 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4368 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: bf:2d:8e:f9:20:a5:d9:9c:3a:a6:ad:15:27:95:25:a9:48:bd:3f:9c |
4369 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/bootlogs' |
4370 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4371 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4372 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4373 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1e:f8:df:e3:e8:9c:c1:43:15:39:77:e2:ed:23:af:75:f8:9a:88:92 |
4374 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/cgroup-bin' |
4375 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4376 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4377 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4378 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: df:6b:8d:fc:d3:6c:e0:60:e0:92:f9:10:56:11:cf:e6:da:d0:05:1d |
4379 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/dhcpcd' |
4380 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4381 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4382 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4383 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f3:91:64:0e:19:47:9e:47:51:d5:49:62:91:6d:5a:a5:f9:5e:3a:93 |
4384 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/ifplugd' |
4385 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4386 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4387 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4388 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 11:27:86:ed:c1:f3:52:4e:5b:29:10:45:e3:cb:6f:e3:08:eb:4c:9c |
4389 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/motd' |
4390 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4391 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4392 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4393 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 89:90:db:71:fe:65:99:e5:55:67:f4:19:fe:1e:e0:00:6f:53:eb:b5 |
4394 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/opencryptoki' |
4395 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4396 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4397 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4398 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2a:26:50:75:74:c3:71:dc:78:e0:6e:ee:1a:a8:6c:98:65:97:56:8d |
4399 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/rsyslog' |
4400 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4401 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4402 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4403 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 29:6b:f3:38:12:b5:3c:80:21:56:e5:dc:58:0c:84:b5:51:9d:df:a5 |
4404 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/sudo' |
4405 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4406 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4407 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4408 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 73:1f:84:8f:0a:44:d3:82:61:39:dc:96:93:f0:62:ec:a4:04:e1:02 |
4409 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/triggerhappy' |
4410 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4411 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4412 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4413 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 02:7f:3a:a4:73:6e:89:81:4b:a6:f1:63:71:7e:a6:e2:6e:42:43:61 |
4414 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/trousers' |
4415 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4416 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4417 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4418 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 01:2a:17:8f:65:fb:31:e9:6a:6c:8c:49:a0:bf:14:38:26:1f:83:30 |
4419 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/savelog' |
4420 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4421 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4422 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4423 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e9:00:f9:8a:52:7c:fa:3a:9c:8c:e2:e3:65:5c:4d:11:46:1a:8a:0b |
4424 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/dhcpcd5' |
4425 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4426 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4427 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4428 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: af:fa:f3:fb:13:af:5e:c7:f3:22:8c:1d:f7:ef:0c:38:3c:ef:46:b7 |
4429 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/umount' |
4430 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4431 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4432 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4433 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f5:80:e3:86:87:03:af:70:4b:96:a9:5a:a6:a1:c5:24:1d:9d:1f:25 |
4434 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/id' |
4435 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4436 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4437 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4438 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 50:71:ed:b1:25:5c:a4:22:35:4c:a3:a9:df:f0:35:9e:30:46:be:1c |
4439 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/pkcs11_startup' |
4440 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4441 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4442 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4443 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a7:87:53:86:54:02:9e:39:9f:01:a4:86:d4:7d:52:c2:de:c3:6c:6b |
4444 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/rsyslogd' |
4445 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4446 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4447 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4448 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a7:2c:28:bf:e8:85:b2:e5:0a:03:7b:d2:84:f3:d7:5c:45:e3:f6:5b |
4449 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/basename' |
4450 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4451 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4452 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4453 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5b:c8:e2:10:9f:41:65:52:3c:01:92:31:f9:3d:c6:0a:ca:53:01:83 |
4454 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/tcsd' |
4455 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4456 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4457 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4458 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f6:2c:01:c9:fe:50:c9:b0:45:64:b6:4e:eb:52:50:3c:c8:f6:41:2f |
4459 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/rfkill/rfkill.ko' |
4460 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4461 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4462 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4463 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c4:81:ed:6d:6a:b8:8a:b0:04:cb:f0:10:fc:d5:05:c7:33:c6:4b:63 |
4464 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/bash' |
4465 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4466 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4467 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4468 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d9:1d:68:43:c6:0d:a0:93:20:84:ba:13:6c:0c:f7:27:94:b9:01:70 |
4469 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/rsyslog/lmnet.so' |
4470 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4471 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4472 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4473 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 69:ff:79:fc:cc:07:4f:80:43:60:eb:a5:f2:f0:35:0d:69:55:63:00 |
4474 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/dirname' |
4475 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4476 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4477 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4478 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 83:0b:d4:1e:60:10:3f:21:f3:19:49:b2:f5:80:f1:b6:cf:0e:2d:76 |
4479 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/wireless/cfg80211.ko' |
4480 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4481 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4482 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4483 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8f:c1:61:4d:3b:4a:ca:ff:d7:18:78:60:3b:6c:c6:a8:08:ab:8b:8d |
4484 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/pkcs_slot' |
4485 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4486 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4487 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4488 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3b:5c:ce:f4:47:ac:01:d8:51:b9:3d:a2:16:60:50:f2:b0:da:7e:c2 |
4489 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/rsyslog/imuxsock.so' |
4490 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4491 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4492 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4493 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e6:f1:fb:cc:bd:1f:00:a1:cc:ea:60:1e:64:a1:6d:d1:61:44:6b:9a |
4494 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/dmesg' |
4495 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4496 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4497 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4498 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 08:70:79:9d:ea:86:1a:0d:ed:ab:41:9d:52:be:f8:13:d1:d0:0a:cf |
4499 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/rsyslog/imklog.so' |
4500 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4501 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4502 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4503 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ed:28:c9:93:5e:36:b0:43:7d:7b:c2:9f:83:01:d4:e3:14:a9:89:1f |
4504 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/dhcpcd/dhcpcd-run-hooks' |
4505 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4506 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4507 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4508 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 40:65:3c:8b:d6:ce:b1:e1:26:0e:48:8f:b0:34:81:2b:bd:35:b4:88 |
4509 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/pkcsslotd' |
4510 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4511 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4512 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4513 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 54:b2:4a:05:b1:ae:b6:7f:a9:5c:3c:fe:db:3b:75:7a:63:db:24:ec |
4514 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/resolvconf' |
4515 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4516 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4517 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4518 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2b:00:d3:9c:d8:94:a3:48:fe:6a:19:7a:1f:bc:da:04:fb:b7:f7:20 |
4519 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/apache2' |
4520 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4521 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4522 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4523 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a9:f9:0b:12:40:64:14:84:5b:8c:28:50:4b:a3:9f:23:e7:a1:9e:ac |
4524 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/env' |
4525 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4526 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4527 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4528 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: de:92:00:45:96:b8:9a:ba:70:e4:f5:0e:ff:9b:68:57:6d:95:cd:a7 |
4529 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/apache2ctl' |
4530 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4531 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4532 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4533 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b5:10:c3:23:de:8c:84:12:8f:6f:bd:92:95:7f:fd:38:e8:fd:a8:7b |
4534 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/mktemp' |
4535 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4536 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4537 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4538 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 32:4b:dd:e8:66:9e:80:9f:b4:7f:fb:7f:05:05:19:1a:c6:4e:9c:7f |
4539 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/mpm-worker/apache2' |
4540 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4541 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4542 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4543 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ad:44:32:ec:4c:d5:fa:40:e6:fa:22:f1:d2:5f:be:cb:ba:8e:79:7e |
4544 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/libaprutil-1.so.0.4.1' |
4545 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4546 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4547 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4548 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 03:c3:d9:e7:12:24:c8:44:5c:3b:96:95:0a:77:81:e5:07:db:b8:d6 |
4549 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/libapr-1.so.0.4.6' |
4550 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4551 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4552 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4553 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2d:1f:23:e4:f6:36:04:19:a4:0d:05:b6:d2:dc:a7:51:82:cb:6c:ef |
4554 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libexpat.so.1.6.0' |
4555 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4556 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4557 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4558 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 45:5a:0a:32:1e:78:95:50:bc:a7:c8:bd:68:be:1a:23:1a:7c:59:df |
4559 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_alias.so' |
4560 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4561 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4562 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4563 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3f:6a:4c:3f:20:f6:48:52:0e:cd:1c:5d:a4:05:05:8b:5e:42:2e:b0 |
4564 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_auth_basic.so' |
4565 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4566 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4567 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4568 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: dc:7a:57:f2:9d:e7:b4:34:1c:1f:39:fe:3a:a5:12:46:9b:20:c7:2c |
4569 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_authn_file.so' |
4570 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4571 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4572 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4573 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 31:42:2d:69:b2:d7:2d:db:42:03:4b:32:aa:c7:69:25:31:ff:e5:8b |
4574 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_authz_default.so' |
4575 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4576 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4577 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4578 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f1:20:ad:a5:d7:3d:b5:b7:47:8d:36:94:6f:17:d6:bf:c3:c9:3e:3a |
4579 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_authz_groupfile.so' |
4580 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4581 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4582 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4583 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6b:cf:6f:76:b5:8e:1a:6e:97:e8:7d:28:42:d7:43:3b:c7:ae:a9:e6 |
4584 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_authz_host.so' |
4585 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4586 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4587 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4588 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6b:ba:e1:02:b7:5a:99:be:c7:95:6f:2d:c0:a0:d9:19:20:1d:a0:3d |
4589 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_authz_user.so' |
4590 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4591 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4592 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4593 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ec:42:f4:a1:fd:21:cb:b1:81:35:39:db:43:f0:c1:b0:d9:56:2e:1b |
4594 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_autoindex.so' |
4595 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4596 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4597 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4598 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9d:04:23:ff:1f:4a:bc:a7:a9:8a:e5:d7:80:b3:44:58:aa:e4:ee:6d |
4599 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_cgid.so' |
4600 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4601 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4602 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4603 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8d:db:57:cb:38:af:e5:d5:49:7d:bb:1e:57:77:98:d6:0b:1c:19:19 |
4604 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_deflate.so' |
4605 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4606 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4607 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4608 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3a:c7:1f:1f:25:7c:6b:5c:ac:c4:c1:04:72:23:2c:07:d1:4c:a0:68 |
4609 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_dir.so' |
4610 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4611 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4612 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4613 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0d:d6:d1:09:65:7f:e8:1e:6a:f4:9f:af:16:36:a6:03:1b:60:04:64 |
4614 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_env.so' |
4615 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4616 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4617 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4618 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1c:17:87:4d:36:43:5a:93:58:de:45:62:bf:1b:c6:fd:94:81:5b:d9 |
4619 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_mime.so' |
4620 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4621 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4622 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4623 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0a:ca:a2:b8:59:67:ff:c6:18:2f:48:5e:71:77:93:1d:bd:ff:0c:05 |
4624 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_negotiation.so' |
4625 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4626 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4627 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4628 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e9:d8:5d:17:c9:00:c7:a7:98:2b:9a:2b:35:1d:ab:c7:1b:31:69:2c |
4629 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_reqtimeout.so' |
4630 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4631 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4632 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4633 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3a:88:f3:c0:1a:c9:ee:be:46:97:dd:48:eb:30:87:53:f2:43:bd:9e |
4634 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_setenvif.so' |
4635 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4636 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4637 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4638 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f6:3e:00:d4:e4:96:e7:e3:5b:ef:85:23:7a:7c:f3:a8:9d:31:01:b4 |
4639 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_status.so' |
4640 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4641 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4642 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4643 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c9:4c:ac:d0:50:3a:da:af:29:87:48:60:69:fa:dc:97:08:4a:0b:57 |
4644 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/apache2/modules/mod_wsgi.so-2.7' |
4645 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4646 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4647 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4648 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6d:66:86:c4:25:62:ef:a4:18:39:90:e8:3f:66:38:e7:c8:19:69:1b |
4649 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/libpython2.7.so.1.0' |
4650 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4651 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4652 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4653 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 27:f4:eb:66:eb:fd:ab:91:78:56:a5:90:48:5e:c5:24:1d:a7:3c:d7 |
4654 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/dbus' |
4655 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4656 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4657 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4658 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7a:30:4b:e8:7f:e5:83:83:36:a8:8b:a3:4a:bb:86:f5:c9:ca:e7:81 |
4659 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/cron' |
4660 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4661 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4662 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4663 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 21:46:97:d7:ee:12:e4:fb:d4:d0:0f:c4:21:d1:76:cc:3e:31:2a:32 |
4664 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/dphys-swapfile' |
4665 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4666 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4667 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4668 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: eb:e3:8f:e8:1d:a7:ea:ae:fb:27:ef:0d:36:42:66:fe:91:14:23:e2 |
4669 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/mcstrans' |
4670 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4671 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4672 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4673 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 39:74:bf:81:68:56:43:c3:47:14:47:bd:86:91:c5:31:1a:c9:65:ad |
4674 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/ntp' |
4675 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4676 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4677 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4678 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 00:b5:44:c7:21:66:0f:bc:94:41:b0:b7:c2:25:fb:dc:6d:6c:c0:ab |
4679 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/openbsd-inetd' |
4680 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4681 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4682 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4683 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 85:51:d7:bc:c5:41:0d:bc:da:6b:6c:74:fa:ab:5f:f8:5e:70:25:29 |
4684 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/restorecond' |
4685 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4686 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4687 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4688 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e6:1a:7f:9d:74:46:8a:7f:65:d1:2e:41:91:78:f0:c1:88:73:b7:1d |
4689 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/rng-tools' |
4690 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4691 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4692 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4693 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f6:c9:32:cd:1e:16:82:3d:5c:88:66:a9:be:d9:f1:df:71:aa:06:43 |
4694 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/dphys-swapfile' |
4695 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4696 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4697 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4698 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 25:28:84:38:34:69:f5:5a:db:47:ab:13:6c:67:5e:69:be:90:03:6b |
4699 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/rsync' |
4700 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4701 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4702 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4703 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 58:9d:f6:b2:11:04:01:b7:b6:d7:63:67:58:c5:2a:ea:86:14:0f:cb |
4704 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/ssh' |
4705 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4706 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4707 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4708 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 84:09:8f:7a:6d:c6:16:82:1e:2a:f4:df:e2:d1:f9:29:5a:63:6b:b0 |
4709 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/tail' |
4710 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4711 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4712 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4713 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 31:98:2e:81:72:f9:a6:4e:68:c5:1f:77:5a:75:cb:e7:6b:45:d0:7d |
4714 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/cut' |
4715 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4716 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4717 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4718 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 52:0b:d5:b8:b7:b8:e4:63:43:6e:73:75:83:95:a5:14:cf:d5:5e:cd |
4719 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/selinuxenabled' |
4720 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4721 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4722 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4723 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 26:08:92:9d:0c:62:d5:ea:4c:e5:94:a9:e1:3e:29:3c:6e:40:71:d8 |
4724 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/getent' |
4725 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4726 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4727 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4728 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d3:e2:c9:61:69:3d:82:7a:50:f3:bc:60:fc:0e:5c:3f:00:29:b0:ab |
4729 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/dbus-uuidgen' |
4730 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4731 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4732 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4733 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c9:4e:2c:74:dc:ea:eb:36:38:6b:b4:fd:ab:f0:d7:fb:9c:76:5f:c3 |
4734 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/inetd' |
4735 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4736 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4737 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4738 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9f:1a:ae:04:12:96:eb:ba:39:60:a1:26:59:32:7d:f5:2b:1c:52:e1 |
4739 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/rngd' |
4740 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4741 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4742 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4743 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ba:1e:9b:55:13:72:1e:06:94:af:be:12:6a:97:b5:ef:84:2b:5d:03 |
4744 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/sshd' |
4745 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4746 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4747 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4748 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: cd:76:0e:d8:6e:71:51:50:6b:00:62:e9:6e:55:21:8c:5a:ff:ce:ea |
4749 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/expr' |
4750 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4751 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4752 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4753 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ea:d5:49:85:81:dd:fb:f2:c9:c2:e0:83:45:c0:10:0d:bb:a8:b0:fb |
4754 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/install' |
4755 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4756 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4757 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4758 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2d:a1:3e:a8:16:cf:28:54:f5:be:23:ef:b0:87:c0:c4:6b:f8:6f:7c |
4759 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/cron' |
4760 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4761 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4762 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4763 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7c:0d:d5:f9:ca:ff:ef:ea:4d:cf:eb:ae:04:b7:a1:af:ed:0f:f8:81 |
4764 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/restorecond' |
4765 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4766 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4767 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4768 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 65:ef:1e:4c:76:f0:e0:9e:35:bb:18:b4:d3:60:1e:49:fe:79:70:4a |
4769 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/ntpd' |
4770 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4771 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4772 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4773 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 65:33:3a:a0:12:ef:e5:c8:22:d1:c4:07:77:3b:3b:23:8f:1a:7e:dd |
4774 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libwrap.so.0.7.6' |
4775 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4776 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4777 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4778 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6b:e0:52:20:1e:1d:b5:3d:5f:d3:3c:f1:3d:d8:d8:1d:bc:0b:93:f5 |
4779 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/dbus-daemon' |
4780 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4781 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4782 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4783 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: eb:33:70:ee:a8:ed:0d:3d:77:bf:d1:63:8c:be:f8:97:e8:52:7d:1a |
4784 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libdbus-glib-1.so.2.2.2' |
4785 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4786 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4787 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4788 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9a:6c:00:41:7c:5e:5a:bf:e2:29:69:6e:d3:0a:d5:15:fd:fc:18:31 |
4789 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/mcstransd' |
4790 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4791 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4792 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4793 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0a:66:5a:2b:37:67:2a:da:87:a6:4a:c0:26:81:fb:74:80:11:8b:ee |
4794 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/libopts.so.25.10.0' |
4795 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4796 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4797 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4798 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5a:fe:a9:1b:9d:95:10:f7:6b:cd:d5:a1:a3:86:37:22:ff:6d:af:e9 |
4799 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgssapi_krb5.so.2.2' |
4800 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4801 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4802 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4803 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ea:4b:8b:63:3e:ff:db:94:37:51:e7:09:ff:b8:d1:4e:3b:57:67:2d |
4804 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libsystemd-login.so.0.2.1' |
4805 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4806 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4807 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4808 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2a:c9:8b:25:e8:18:ca:7b:3e:4f:0c:69:3e:d7:bd:65:5b:25:e9:a5 |
4809 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libcap.so.2.22' |
4810 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4811 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4812 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4813 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a6:fa:6e:79:46:f5:30:14:97:9b:02:52:4f:c7:aa:f4:77:56:fe:50 |
4814 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgio-2.0.so.0.4000.0' |
4815 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4816 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4817 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4818 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: be:93:81:bd:53:37:d1:2e:59:dd:10:1e:44:68:95:0a:1e:a8:ab:49 |
4819 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libkrb5.so.3.3' |
4820 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4821 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4822 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4823 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6e:c8:06:6a:91:8e:58:1c:59:f3:ac:91:30:6e:32:d9:15:3f:5a:13 |
4824 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgobject-2.0.so.0.4000.0' |
4825 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4826 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4827 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4828 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d9:c0:42:7e:7e:d7:dc:22:0a:3f:6c:a0:e7:1b:c7:54:43:24:c0:dc |
4829 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libk5crypto.so.3.1' |
4830 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4831 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4832 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4833 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 02:1b:c7:f9:3b:a8:92:c6:fc:08:e6:55:e2:7b:43:fa:f4:f5:97:25 |
4834 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgmodule-2.0.so.0.4000.0' |
4835 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4836 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4837 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4838 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8b:c9:ee:3e:4a:8e:1c:09:21:b3:c0:73:28:eb:0a:83:ae:8a:08:f5 |
4839 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libkrb5support.so.0.1' |
4840 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4841 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4842 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4843 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 40:09:1c:12:09:8d:09:d7:e3:30:d2:9d:d9:e5:34:4d:02:72:11:5e |
4844 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/libnss_mdns4_minimal.so.2' |
4845 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4846 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4847 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4848 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6c:62:36:3f:84:63:e7:67:18:9b:de:4a:45:cb:97:77:a4:33:52:75 |
4849 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libffi.so.5.0.10' |
4850 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4851 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4852 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4853 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 41:da:22:a2:a0:66:11:c1:98:12:23:ac:38:24:a5:c3:27:57:70:40 |
4854 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/avahi-daemon' |
4855 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4856 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4857 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4858 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7e:d7:48:e2:cb:82:81:c6:be:99:fe:f4:9e:ea:5a:6e:36:31:c8:f4 |
4859 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libkeyutils.so.1.4' |
4860 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4861 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4862 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4863 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b8:1d:54:25:2a:a1:13:99:0c:41:34:d3:c1:cc:65:05:ad:75:45:de |
4864 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libnss_dns-2.13.so' |
4865 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4866 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4867 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4868 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b1:81:6c:d3:78:fc:40:ea:d1:48:09:67:a8:c7:91:a9:81:86:3f:14 |
4869 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/avahi-daemon' |
4870 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4871 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4872 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4873 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 80:8a:3d:05:75:96:ef:06:74:64:e7:58:09:35:13:42:c6:ef:65:a5 |
4874 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libavahi-common.so.3.5.3' |
4875 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4876 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4877 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4878 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e9:da:3d:08:4e:90:d3:4d:dc:a1:71:33:ae:a0:9f:76:5d:c8:10:fb |
4879 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libavahi-core.so.7.0.2' |
4880 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4881 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4882 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4883 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6d:f3:23:0b:cc:12:72:17:7a:37:0e:ed:ec:6b:bb:bc:68:8d:cf:d4 |
4884 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/libnss_mdns.so.2' |
4885 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4886 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4887 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4888 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 44:ba:ec:ea:cd:3c:ee:7c:88:58:54:6d:c9:99:57:14:83:61:34:68 |
4889 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/plymouth' |
4890 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4891 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4892 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4893 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f1:d2:7e:61:2d:83:40:73:0b:c3:6e:74:10:3b:9e:88:c0:c5:d2:6e |
4894 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/rc.local' |
4895 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4896 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4897 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4898 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d2:b3:4f:78:86:43:1b:66:dc:c3:d8:b4:da:7a:ec:4c:94:c1:29:28 |
4899 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/init.d/rmnologin' |
4900 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4901 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4902 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4903 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 94:40:69:7f:e0:ff:4d:28:fd:c9:a2:ec:0c:7b:07:57:90:00:17:d7 |
4904 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/rc.local' |
4905 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4906 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4907 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4908 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f3:71:5a:1e:5f:76:0c:7b:35:80:8d:3f:8d:2a:df:bd:b6:d9:39:69 |
4909 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/getty' |
4910 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4911 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4912 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4913 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e9:4b:cc:87:d3:31:b1:03:33:c0:06:04:de:68:e6:37:6a:18:28:e2 |
4914 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/libnss_mdns4.so.2' |
4915 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4916 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4917 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4918 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9a:b5:27:a4:68:5e:98:98:a2:3b:88:41:c3:43:4b:30:5d:5d:84:5e |
4919 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_env.so' |
4920 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4921 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4922 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4923 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7b:ce:66:d4:c6:4c:49:b0:53:a4:3f:32:d8:62:4a:4a:37:a3:8f:40 |
4924 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_nologin.so' |
4925 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4926 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4927 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4928 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7b:c1:e5:ff:d7:9b:6d:1f:79:02:89:f1:71:0d:42:e0:db:8f:5e:a2 |
4929 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_motd.so' |
4930 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4931 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4932 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4933 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 46:ba:b8:d2:a9:a5:d5:09:ca:90:1e:60:5e:de:8d:d7:e4:8d:77:cc |
4934 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_mail.so' |
4935 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4936 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4937 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4938 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 31:9c:72:bd:d8:6d:c0:08:93:0b:ca:f1:8f:09:b7:f1:6d:73:87:93 |
4939 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/security/pam_limits.so' |
4940 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4941 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4942 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4943 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 56:59:26:6c:15:e1:89:bf:16:96:cb:d9:20:1a:d8:aa:4f:28:f2:e6 |
4944 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/dircolors' |
4945 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4946 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4947 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4948 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 69:20:35:90:e7:3a:a1:0d:47:91:c4:e9:dc:34:27:84:cb:64:41:d3 |
4949 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/ipsec' |
4950 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4951 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4952 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4953 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b2:bb:df:85:e1:44:34:7a:67:7c:f1:82:78:11:dd:5d:a6:7f:22:ad |
4954 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/libexec/ipsec/starter' |
4955 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4956 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4957 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4958 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 83:d3:c2:62:1f:70:6f:86:3b:39:5b:6c:20:fc:8f:2f:ed:1a:04:18 |
4959 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/libstrongswan.so.0.0.0' |
4960 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4961 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4962 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4963 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b0:e1:8a:57:92:a8:fb:b1:f4:03:7a:5f:1b:5e:5c:d9:80:23:3e:79 |
4964 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/libhydra.so.0.0.0' |
4965 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4966 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4967 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4968 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 55:c0:44:44:b2:a4:78:9f:06:76:3a:20:b5:4d:36:1e:40:7f:15:64 |
4969 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/key/af_key.ko' |
4970 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4971 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4972 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4973 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: dd:0c:2d:f8:70:c1:de:a2:ec:ba:d1:1b:d1:2d:66:0d:62:c2:28:4e |
4974 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/ah4.ko' |
4975 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4976 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4977 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4978 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 89:09:12:fe:9c:f5:c0:04:70:3c:da:db:6a:d0:92:b9:d5:d5:71:a9 |
4979 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/esp4.ko' |
4980 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4981 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4982 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4983 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 23:ba:be:8a:36:41:36:d9:0d:d3:94:30:12:bb:fa:25:63:ca:67:60 |
4984 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/xfrm/xfrm_ipcomp.ko' |
4985 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4986 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4987 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4988 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ec:83:39:c1:7a:d1:c1:77:72:d8:2c:d5:e7:96:df:6e:92:4a:2d:4a |
4989 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/ipcomp.ko' |
4990 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4991 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4992 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4993 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3f:54:fa:18:61:f5:e9:df:d1:2e:4b:25:ec:e0:57:cc:f2:0d:22:82 |
4994 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/tunnel4.ko' |
4995 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
4996 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
4997 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
4998 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fe:5e:9d:31:8f:69:27:e4:3c:ca:c9:83:14:b8:ad:0d:a3:dc:ce:e7 |
4999 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/xfrm4_tunnel.ko' |
5000 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5001 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5002 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5003 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ee:9c:80:80:cc:e7:b2:56:34:79:42:a2:85:a7:15:ee:09:68:02:9a |
5004 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/libexec/ipsec/charon' |
5005 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5006 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5007 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5008 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1d:80:b0:dc:83:20:da:11:09:01:05:1f:66:c5:fd:6e:7e:3f:24:b9 |
5009 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/libcharon.so.0.0.0' |
5010 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5011 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5012 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5013 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0c:88:e4:8a:3c:6a:ab:09:ee:fc:84:72:ba:84:5e:9e:2d:c4:34:1c |
5014 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-random.so' |
5015 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5016 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5017 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5018 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c0:37:f6:e2:ae:3e:96:1e:99:70:cf:93:2c:a7:c9:dc:f8:29:00:48 |
5019 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-nonce.so' |
5020 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5021 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5022 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5023 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 4c:ee:7f:e7:96:26:4c:8c:1d:a2:2f:30:81:1b:86:15:00:c9:ea:2d |
5024 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-x509.so' |
5025 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5026 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5027 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5028 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c1:ea:75:d0:af:25:4b:7e:a8:94:77:ab:93:fc:e4:fb:fe:a2:9c:af |
5029 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-revocation.so' |
5030 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5031 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5032 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5033 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 88:37:2e:49:33:f6:5e:83:66:45:78:13:08:86:34:80:5a:f8:d9:f9 |
5034 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-constraints.so' |
5035 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5036 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5037 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5038 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ed:46:71:f0:0d:f4:80:46:0b:5f:6d:30:63:c1:98:b2:0e:e4:33:50 |
5039 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-pkcs1.so' |
5040 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5041 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5042 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5043 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f8:ae:21:6b:84:eb:df:ff:67:dd:72:29:ea:03:4e:b2:00:68:81:62 |
5044 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-pkcs8.so' |
5045 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5046 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5047 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5048 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 80:3c:91:fd:94:4f:ac:87:bc:8c:b0:51:f8:a2:5e:b8:3d:3d:60:01 |
5049 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-pem.so' |
5050 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5051 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5052 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5053 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 71:79:8b:3d:a1:1f:cb:00:87:cf:a2:17:b8:df:34:ea:a3:91:a5:a8 |
5054 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-openssl.so' |
5055 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5056 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5057 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5058 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5e:51:78:cb:3a:05:d6:b2:61:cf:0e:89:12:65:2c:78:cd:cf:28:e8 |
5059 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-pubkey.so' |
5060 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5061 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5062 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5063 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 26:0e:f8:6e:66:6d:d2:aa:81:1a:12:af:6a:1c:68:c4:45:bb:18:df |
5064 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-tnc-imc.so' |
5065 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5066 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5067 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5068 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d8:32:e6:30:24:3e:a5:35:97:98:c5:9d:17:db:d4:01:2e:da:2a:fe |
5069 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/libtnccs.so.0.0.0' |
5070 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5071 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5072 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5073 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f0:69:52:01:7a:24:fb:fb:f3:cf:46:89:bb:66:c5:3a:41:e9:3a:13 |
5074 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-tnc-imv.so' |
5075 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5076 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5077 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5078 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e5:3f:e4:6b:93:3d:8b:59:48:2f:22:83:59:00:dc:df:4c:46:87:30 |
5079 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-tnc-tnccs.so' |
5080 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5081 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5082 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5083 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 38:80:0c:d9:7a:25:72:ca:30:e8:18:f2:19:0b:37:64:92:99:06:c7 |
5084 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-tnccs-20.so' |
5085 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5086 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5087 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5088 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 4f:25:d3:cc:bc:75:a4:5d:1e:a5:69:cd:65:fa:1d:69:3c:91:1c:28 |
5089 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-eap-identity.so' |
5090 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5091 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5092 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5093 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 11:6f:78:d8:03:1e:54:b9:15:d4:1d:a0:9a:3f:5b:b2:5d:13:af:91 |
5094 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-eap-ttls.so' |
5095 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5096 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5097 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5098 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7a:1b:d6:9b:6f:88:91:0d:6e:98:4d:ee:99:42:31:0e:7d:ac:54:72 |
5099 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/libtls.so.0.0.0' |
5100 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5101 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5102 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5103 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 2a:21:3f:2f:48:60:8b:22:30:27:d7:03:b5:31:f2:91:c9:34:6b:c8 |
5104 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-eap-tnc.so' |
5105 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5106 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5107 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5108 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fa:8b:a6:c5:ce:ce:af:95:fc:ff:ec:c0:7b:40:5f:d7:c5:0c:fe:4c |
5109 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-sqlite.so' |
5110 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5111 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5112 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5113 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 33:9b:e6:60:dd:53:9c:08:c9:9e:f1:1c:ff:6c:ec:d5:4f:68:b3:4f |
5114 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libsqlite3.so.0.8.6' |
5115 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5116 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5117 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5118 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c8:6e:8c:58:e7:90:05:99:9a:87:84:c1:f6:c7:97:93:fc:bc:94:9e |
5119 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-curl.so' |
5120 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5121 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5122 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5123 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3a:05:a3:5d:2c:17:db:c1:86:9c:9b:a7:9e:ef:1e:b0:42:3d:45:48 |
5124 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libcurl.so.4.2.0' |
5125 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5126 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5127 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5128 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 60:7c:a9:c8:1c:80:0a:75:3c:12:e3:f4:00:ef:ec:94:cc:e3:3a:8b |
5129 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libidn.so.11.6.8' |
5130 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5131 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5132 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5133 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8c:cf:c6:fd:c1:de:4d:58:82:74:21:d6:19:b0:04:68:c7:e5:94:d3 |
5134 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libssh2.so.1.0.1' |
5135 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5136 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5137 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5138 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fa:ae:61:be:a0:82:aa:a2:64:ff:90:39:40:a8:ea:c0:54:3a:9b:d4 |
5139 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/liblber-2.4.so.2.8.3' |
5140 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5141 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5142 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5143 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 94:a5:64:b4:70:49:01:b9:b3:be:56:ce:c1:80:1d:3e:53:82:4c:de |
5144 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libldap_r-2.4.so.2.8.3' |
5145 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5146 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5147 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5148 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: bb:34:7c:bd:80:30:84:60:ef:ac:c0:88:b8:d1:1d:f9:80:f5:9d:61 |
5149 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/librtmp.so.0' |
5150 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5151 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5152 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5153 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7e:32:cb:a9:01:58:ae:0d:80:e9:66:27:63:d0:0b:31:4d:90:c8:5d |
5154 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libgcrypt.so.11.7.0' |
5155 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5156 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5157 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5158 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 9e:9f:13:4d:e5:f9:2b:21:5e:9c:5d:e5:65:7c:f6:ec:dc:7f:a0:a6 |
5159 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libsasl2.so.2.0.25' |
5160 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5161 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5162 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5163 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 60:58:d8:e0:f2:28:09:eb:e4:fc:d9:70:33:dc:39:0e:04:bb:41:2c |
5164 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgnutls.so.26.22.4' |
5165 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5166 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5167 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5168 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ee:63:87:d6:38:69:31:48:5c:a1:b2:86:84:3c:3e:38:de:8d:f3:1e |
5169 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libgpg-error.so.0.8.0' |
5170 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5171 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5172 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5173 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f0:71:36:04:5d:1d:6a:f0:5d:5c:9c:f8:e5:19:1f:d9:d7:ad:21:74 |
5174 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libtasn1.so.3.1.16' |
5175 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5176 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5177 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5178 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 41:42:4a:23:a7:4f:5b:8b:cc:ce:46:70:0a:c5:5a:b8:70:24:44:42 |
5179 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libp11-kit.so.0.0.0' |
5180 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5181 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5182 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5183 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3a:99:93:1e:4c:1b:be:dd:2e:fd:c5:e5:20:67:f0:3c:d9:f2:be:2b |
5184 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-kernel-netlink.so' |
5185 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5186 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5187 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5188 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: b6:9b:4b:60:b2:e5:21:af:55:1a:b6:32:5d:46:e2:b4:98:32:7a:6b |
5189 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-socket-default.so' |
5190 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5191 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5192 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5193 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c2:b6:70:a5:91:d4:54:19:77:b2:06:9d:89:63:a5:21:5e:21:2c:4d |
5194 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-updown.so' |
5195 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5196 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5197 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5198 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d8:53:23:97:5d:c7:02:46:92:14:f8:2c:ec:d1:40:8a:29:c3:dc:e1 |
5199 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/plugins/libstrongswan-stroke.so' |
5200 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5201 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5202 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5203 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7f:ca:32:05:2c:88:30:f4:60:7c:61:8c:da:80:65:3e:90:f8:5b:24 |
5204 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/imcvs/imv-attestation.so' |
5205 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5206 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5207 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5208 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 38:0d:d9:b2:62:24:7e:48:67:25:eb:32:f6:cb:80:74:2c:9c:d4:c3 |
5209 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/libimcv.so.0.0.0' |
5210 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5211 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5212 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5213 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7e:b4:4d:ca:ef:11:d5:62:97:ae:cc:93:f8:bf:17:37:54:57:a9:d3 |
5214 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libtspi.so.1.2.0' |
5215 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5216 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5217 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5218 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f0:dc:1c:eb:18:bc:bc:c7:f0:13:b9:d6:7a:80:36:71:0d:47:4d:c1 |
5219 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/imcvs/imc-os.so' |
5220 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5221 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5222 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5223 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f3:32:1b:e7:59:87:f1:93:04:5f:ea:d4:9d:1a:99:26:ad:ee:8d:e4 |
5224 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/ipsec/imcvs/imc-attestation.so' |
5225 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5226 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5227 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5228 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 5b:bb:31:46:ef:6b:2e:73:5a:49:9a:96:bb:cc:1c:21:3a:b9:c8:ec |
5229 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/libexec/ipsec/imv_policy_manager' |
5230 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5231 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5232 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5233 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a5:f5:48:3a:db:2f:5b:4d:4d:99:ca:02:c1:2b:51:e0:94:de:9a:3d |
5234 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/crypto/sha256_generic.ko' |
5235 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5236 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5237 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5238 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 44:5e:88:de:0a:ba:ad:2a:f5:a7:6a:7d:be:ec:f3:13:32:e0:17:1a |
5239 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/xfrm4_mode_transport.ko' |
5240 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5241 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5242 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5243 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: ac:98:d9:bc:08:10:22:0f:8d:85:2d:28:12:17:59:26:f5:bb:db:63 |
5244 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/crypto/authenc.ko' |
5245 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5246 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5247 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5248 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: fd:54:d1:93:4f:7e:ba:b9:16:fb:45:3f:d3:c3:d5:ed:38:be:4f:27 |
5249 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/libexec/ipsec/_updown' |
5250 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5251 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5252 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5253 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 82:4c:54:c5:25:ad:75:98:93:e2:63:46:25:1e:d6:88:7f:c1:97:2a |
5254 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/sbin/xtables-multi' |
5255 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5256 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5257 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5258 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 79:a1:f6:86:3e:90:02:59:d4:b1:6d:c6:e6:17:e6:57:b7:4e:a3:03 |
5259 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/libip4tc.so.0.1.0' |
5260 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5261 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5262 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5263 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 00:15:0f:35:34:79:b7:27:8b:eb:3b:c3:a9:7b:2c:db:0e:ea:bb:fb |
5264 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/libip6tc.so.0.1.0' |
5265 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5266 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5267 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5268 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 97:42:19:a6:3f:ea:ed:1f:88:c3:2b:e8:0b:8c:7e:8d:09:7a:c8:17 |
5269 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/libxtables.so.7.0.0' |
5270 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5271 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5272 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5273 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6c:94:f3:ac:9f:83:d4:56:2e:10:c9:c3:44:ca:4d:30:eb:74:06:a9 |
5274 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/xtables/libxt_policy.so' |
5275 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5276 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5277 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5278 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 0f:3b:87:ef:36:df:bb:c0:14:1b:bd:cd:be:fc:c0:19:65:77:da:c8 |
5279 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/xtables/libxt_standard.so' |
5280 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5281 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5282 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5283 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: c8:e8:88:e5:1a:74:82:31:13:c1:a8:ca:8a:af:7a:e3:db:30:b4:fc |
5284 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/netfilter/x_tables.ko' |
5285 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5286 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5287 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5288 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 99:df:b9:61:2f:13:cc:45:a7:57:b1:81:d9:2a:ae:9f:e0:4d:b9:51 |
5289 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/netfilter/ip_tables.ko' |
5290 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5291 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5292 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5293 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f6:ae:e7:d5:86:17:27:8e:4d:bc:c0:7f:46:21:d0:d4:db:8f:e5:0e |
5294 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/ipv4/netfilter/iptable_filter.ko' |
5295 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5296 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5297 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5298 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 84:05:c8:02:f0:74:c8:3b:1b:4f:c2:1a:e9:e1:44:ab:03:2c:2c:c7 |
5299 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/modules/3.18.13-v7+/kernel/net/netfilter/xt_policy.ko' |
5300 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5301 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5302 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5303 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 3b:a8:51:c4:5d:25:30:89:9b:39:47:24:2c:de:f8:d9:75:eb:e7:fe |
5304 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/logger' |
5305 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5306 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5307 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5308 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a5:74:29:0b:cb:20:3f:bc:b3:3a:0c:9e:0f:7c:b1:1a:da:43:7c:69 |
5309 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_io.so' |
5310 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5311 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5312 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5313 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 07:43:59:13:7b:81:55:e8:c7:74:c2:8b:0a:28:20:f8:19:29:1f:bc |
5314 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/datetime.so' |
5315 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5316 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5317 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5318 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 8e:70:0f:f1:38:a3:6f:5d:8c:f9:39:c7:a1:6a:2a:b2:2a:8f:de:d7 |
5319 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_ssl.so' |
5320 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5321 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5322 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5323 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 04:65:4f:bc:43:25:8f:d6:ca:e1:d7:97:da:f2:c2:f3:59:0c:f6:f9 |
5324 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_json.so' |
5325 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5326 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5327 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5328 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1b:c7:6f:79:91:0c:44:18:1b:39:2a:b6:c7:f1:6b:c9:8a:90:4f:63 |
5329 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_hashlib.so' |
5330 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5331 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5332 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5333 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 6c:57:02:3e:56:c7:93:4b:78:ba:7e:7b:78:f9:9d:5e:b8:c0:b9:89 |
5334 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_sqlite3.so' |
5335 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5336 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5337 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5338 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 05:82:f5:f7:b7:1b:44:02:aa:be:fe:ff:60:10:a9:3f:40:8e:52:7f |
5339 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/local/lib/python2.7/dist-packages/lxml/etree.so' |
5340 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5341 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5342 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5343 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: f4:f5:89:83:9b:a7:e4:11:b5:9a:57:3b:58:f8:09:32:7f:70:6a:51 |
5344 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libxslt.so.1.1.26' |
5345 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5346 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5347 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5348 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e6:76:45:e9:31:8c:52:a9:ce:e0:18:6d:4e:7c:19:3a:07:cf:6f:8f |
5349 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libexslt.so.0.8.15' |
5350 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5351 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5352 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5353 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7c:56:d5:be:6f:ea:1f:5b:69:80:7e:e9:22:9d:a5:f6:28:85:e5:5d |
5354 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libxml2.so.2.8.0' |
5355 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5356 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5357 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5358 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 53:f5:1f:0e:d6:d4:db:f4:af:3f:e0:4d:7f:9a:f4:fe:0b:41:1f:d9 |
5359 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/liblzma.so.5.0.0' |
5360 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5361 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5362 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5363 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: dc:22:68:7d:46:dd:5d:f4:ac:65:c4:73:91:41:46:d6:f9:53:96:6b |
5364 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/_elementtree.so' |
5365 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5366 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5367 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5368 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 37:e3:d4:53:cc:47:e4:9e:b1:a9:7d:89:cb:10:67:59:b1:35:3e:38 |
5369 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/python2.7/lib-dynload/pyexpat.so' |
5370 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5371 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5372 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5373 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 34:c4:93:e8:ef:14:6d:16:44:dd:bb:e5:95:d5:86:f8:c8:f7:13:e3 |
5374 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/etc/cron.hourly/fake-hwclock' |
5375 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5376 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5377 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5378 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a1:eb:ae:77:6e:40:be:b5:fa:ae:29:e0:36:d3:b8:fa:42:c9:5d:ee |
5379 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/less' |
5380 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5381 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5382 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5383 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: a4:4e:1b:ca:62:3d:3f:cd:81:62:d2:8d:d5:04:5c:04:26:1e:53:19 |
5384 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/scp' |
5385 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5386 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5387 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5388 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e9:44:14:7c:96:64:f2:f4:fd:f8:d5:62:ff:0b:4a:82:b9:8a:2f:67 |
5389 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/ssh' |
5390 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5391 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5392 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5393 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 75:db:9a:27:72:da:22:03:fd:c6:f1:fe:4a:8e:5d:7e:6f:42:70:4b |
5394 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/sqlite3' |
5395 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5396 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5397 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5398 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d2:a5:97:75:4b:9e:f6:db:c8:cb:52:a9:29:1e:6f:6e:89:18:a5:f2 |
5399 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/lib/arm-linux-gnueabihf/libreadline.so.6.2' |
5400 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5401 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5402 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5403 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 67:1d:52:1e:15:8a:b4:e1:17:80:41:95:ba:3d:40:5b:1c:b4:57:34 |
5404 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/vim.basic' |
5405 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5406 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5407 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5408 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: d4:ce:58:6c:ae:fb:1d:76:92:b0:a3:ea:33:73:1f:53:26:69:b6:e2 |
5409 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/libgpm.so.2' |
5410 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5411 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5412 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5413 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 15:fb:dd:00:0a:db:b6:73:2d:63:62:e0:ac:b6:32:b7:62:f4:1b:fd |
5414 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/lib/arm-linux-gnueabihf/gconv/ISO8859-1.so' |
5415 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5416 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5417 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5418 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 1a:71:6c:9c:9f:6d:4f:2e:4a:88:42:49:b0:00:8d:5e:ec:05:7e:eb |
5419 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/sbin/service' |
5420 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5421 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5422 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5423 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: e8:f5:f2:02:d4:c1:18:d5:f7:55:5c:2d:4a:a0:d3:12:d4:13:06:ce |
5424 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/bin/cp' |
5425 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5426 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5427 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5428 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 55:f4:cd:fd:82:d2:99:e1:33:b6:82:67:95:e6:5d:03:5c:bb:d2:c2 |
5429 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/bin/clear_console' |
5430 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Component Evidence' 0x005597/0x00300000 |
5431 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ITA-HSR functional component 'Linux IMA' [K.] 'Operating System' |
5432 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] measurement time: Jan 01 01:00:04 1970 |
5433 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] PCR 10 extended with: 7a:fc:49:eb:8f:e6:74:3f:ac:91:41:a2:c0:ac:92:28:33:fd:7b:33 |
5434 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 'sha1:/usr/libexec/ipsec/stroke' |
5435 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[TNC] processing PA-TNC attribute type 'TCG/Simple Evidence Final' 0x005597/0x00400000 |
5436 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] checking boot aggregate evidence measurement |
5437 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 65:ee:0c:a2:cd:ac:0d:67:f8:1a:fd:53:7b:96:75:6f:3b:b8:0f:82 for '/init' not found |
5438 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 6b:a1:a0:58:89:a8:f2:57:53:42:b5:dc:5f:3e:de:54:89:8a:ee:29 for '/bin/sh' is ok |
5439 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 85:e6:6e:7a:96:98:8b:0a:af:c8:88:46:5d:7a:fe:b5:e9:d3:c2:3e for '/lib/klibc-sO6SifHCdmbehHGtm0y1yHu6vb0.so' is ok |
5440 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 68:4a:c3:8d:48:55:be:e0:21:93:4f:52:a0:d2:3d:66:86:0c:b2:82 for '/bin/mkdir' is ok |
5441 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 4b:f9:e0:ee:b2:29:ce:9d:b3:32:4d:c7:89:b7:e5:85:46:7e:67:ea for '/bin/mount' is ok |
5442 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] f6:79:f9:cb:f3:45:8b:6c:f1:2b:c8:c7:25:ac:17:03:b8:ee:44:3b for '/etc/udev/udev.conf' not found |
5443 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 1b:58:34:3c:0b:26:f2:82:9e:44:92:14:14:93:73:66:d9:a6:12:3e for '/conf/arch.conf' not found |
5444 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] f8:18:0d:3a:77:03:f6:37:b9:f7:00:87:73:da:14:3c:0d:d9:18:e6 for '/conf/initramfs.conf' not found |
5445 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 8e:36:36:07:ce:6a:2d:e3:03:91:a1:1c:64:75:3c:e2:e2:02:08:87 for '/scripts/functions' not found |
5446 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 0d:16:c7:df:df:07:a1:f8:47:70:04:ef:c9:fb:1a:18:ea:f6:74:55 for '/bin/cat' is ok |
5447 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 8a:6a:02:1d:e5:80:60:e8:06:24:5e:30:79:d5:23:fa:2c:3a:9f:ef for '/scripts/init-top/ORDER' not found |
5448 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] d0:dc:06:f1:a3:92:d4:50:54:48:57:2c:d5:20:b1:ba:6e:53:ff:14 for '/scripts/init-top/all_generic_ide' not found |
5449 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] ff:19:54:90:8c:fe:4d:2e:37:c8:0e:05:40:41:e1:2d:59:f6:0f:e3 for '/scripts/init-top/blacklist' not found |
5450 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] b9:7b:5e:84:9f:e9:ed:82:30:09:f1:88:f5:e3:bb:c4:5a:ec:fc:d2 for '/scripts/init-top/keymap' not found |
5451 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 77:66:42:2c:b3:fd:a6:ce:26:a1:0d:a4:65:b7:a9:45:c9:d3:36:37 for '/scripts/init-top/udev' not found |
5452 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 86:5d:0d:73:cc:01:24:8e:01:fe:2c:db:e9:5e:e1:f5:37:11:11:1f for '/sbin/udevd' is ok |
5453 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 70:8e:97:48:bb:27:0e:55:d1:e5:e8:54:15:2b:ec:c9:08:6b:e4:f9 for '/lib/ld-linux-armhf.so.3' is ok |
5454 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 04:92:98:b0:7e:fe:40:eb:8e:97:ed:74:d7:f3:b7:cf:f4:5c:07:0c for '/etc/ld.so.cache' not found |
5455 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 20:ef:47:e0:ec:ba:67:89:cc:63:12:4b:d3:4b:03:7f:db:48:56:24 for '/lib/arm-linux-gnueabihf/libselinux.so.1' is ok |
5456 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 8a:17:94:db:04:b0:eb:af:9c:7b:c4:04:29:7f:c4:7a:1a:b5:6c:1d for '/lib/arm-linux-gnueabihf/librt.so.1' is ok |
5457 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] f6:6f:cb:6b:4c:c6:a4:0b:15:6a:6c:70:30:e2:94:a6:5f:4b:17:3e for '/lib/arm-linux-gnueabihf/libgcc_s.so.1' is ok |
5458 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 24:6d:27:bb:ac:e5:09:57:e0:62:cc:41:24:2b:90:99:cd:31:79:a9 for '/lib/arm-linux-gnueabihf/libc.so.6' is ok |
5459 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] e4:71:6c:df:22:64:cc:e4:0b:44:9f:75:27:0d:40:89:46:54:4e:2f for '/lib/arm-linux-gnueabihf/libdl.so.2' is ok |
5460 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 73:7f:69:c5:09:f3:53:8d:b2:22:87:68:b2:02:0f:4b:71:86:fa:50 for '/lib/arm-linux-gnueabihf/libpthread.so.0' is ok |
5461 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] d0:46:b9:f3:cb:40:e8:64:59:90:25:95:85:9f:5f:36:4b:3d:4a:2e for '/lib/modules/3.18.13-v7+/modules.devname' not found |
5462 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] e4:55:f4:96:49:b7:b1:4c:d3:cb:a6:90:ff:3a:ed:16:f7:46:ba:0c for '/sbin/udevadm' is ok |
5463 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 40:e6:15:d9:1a:7e:f9:91:00:ab:94:7d:d5:68:8b:ee:52:fd:1b:f5 for '/lib/udev/rules.d/50-udev-default.rules' not found |
5464 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 46:8d:c8:da:14:c9:6c:1b:ba:05:c2:c0:b9:9c:8d:55:df:6b:e0:99 for '/lib/udev/rules.d/55-dm.rules' not found |
5465 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 3e:c3:17:c2:aa:50:3b:77:b1:98:4e:c5:99:aa:f4:54:6e:58:9b:c9 for '/lib/udev/rules.d/60-persistent-storage-dm.rules' not found |
5466 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 15:03:18:5e:09:4d:38:c6:b6:87:d2:e5:6a:2f:d1:26:58:17:4c:dc for '/lib/udev/rules.d/60-persistent-storage.rules' not found |
5467 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] 5c:eb:68:b0:02:3c:7e:05:60:5e:21:97:a4:85:82:65:a5:ef:ca:cf for '/lib/udev/rules.d/80-drivers.rules' not found |
5468 | 2 | Andreas Steffen | Aug 15 14:46:18 raspi3 charon: 07[PTS] d7:5b:c7:f7:b5:71:a6:ca:8e:1e:42:23:12:63:fb:e4:e2:03:66:4e for '/lib/udev/rules.d/91-permissions.rules' not found |
5469 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 45:88:b4:27:29:be:ef:1d:73:d6:4e:93:16:10:31:b7:40:34:3c:53 for '/bin/kmod' is ok |
5470 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] fb:e7:6a:ed:50:72:a7:46:c7:8e:66:b9:dc:20:0d:80:17:9a:79:e3 for '/lib/arm-linux-gnueabihf/libkmod.so.2' is ok |
5471 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 63:cd:9b:94:0d:76:ce:13:ec:fe:c2:56:cf:8b:f1:06:20:13:21:1d for '/sbin/blkid' is ok |
5472 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 43:64:c9:7f:26:36:7b:f4:51:fd:2a:a0:a0:53:b1:da:e9:be:27:e6 for '/lib/modprobe.d/aliases.conf' not found |
5473 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 3e:5c:ab:c1:ae:4b:60:49:ea:cf:c7:98:b9:3a:64:b8:1b:5f:30:01 for '/lib/arm-linux-gnueabihf/libblkid.so.1' is ok |
5474 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 04:a4:47:6d:8e:c9:21:62:d7:75:2e:fa:dd:89:46:8a:36:cf:7f:be for '/etc/modprobe.d/alsa-base-blacklist.conf' not found |
5475 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 0a:eb:43:56:9d:3f:b2:42:15:03:65:e7:c6:0f:5e:b6:f1:9a:90:a8 for '/lib/arm-linux-gnueabihf/libuuid.so.1' is ok |
5476 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 59:80:f0:50:33:fb:e9:f7:a3:4b:a6:1d:fd:21:13:9b:54:af:a6:b1 for '/etc/modprobe.d/alsa-base.conf' not found |
5477 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 00:24:9b:63:c2:2d:dc:63:e0:9f:2c:95:50:34:13:5e:46:5e:e0:eb for '/etc/modprobe.d/fbdev-blacklist.conf' not found |
5478 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 08:cb:d9:2d:24:c0:5d:b8:4d:fe:11:57:be:67:d3:8a:95:b4:5a:f2 for '/etc/modprobe.d/ipv6.conf' not found |
5479 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 47:eb:41:3c:08:da:76:ed:fc:9e:e6:b2:1d:95:eb:2a:19:01:e1:89 for '/etc/modprobe.d/raspi-blacklist.conf' not found |
5480 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 27:4f:ae:72:8e:11:51:d7:eb:19:62:4c:33:81:9f:59:d9:97:23:e0 for '/lib/modules/3.18.13-v7+/modules.dep.bin' not found |
5481 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 9d:f6:d3:57:2c:a2:8c:22:70:4c:e1:52:0c:b0:fa:76:2f:60:30:c4 for '/lib/modules/3.18.13-v7+/modules.alias.bin' not found |
5482 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] ba:48:4c:a4:9a:0b:92:74:34:72:34:25:ef:6d:f9:02:42:55:93:71 for '/lib/modules/3.18.13-v7+/modules.symbols.bin' not found |
5483 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 64:d1:1e:8f:81:35:8f:1a:0b:1a:f2:87:b3:f2:fc:3f:b2:51:1a:28 for '/lib/modules/3.18.13-v7+/modules.builtin.bin' not found |
5484 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 4c:42:a4:dc:d8:67:9e:04:ce:59:28:d8:d3:c9:2b:b6:da:5b:31:28 for '/scripts/init-premount/ORDER' not found |
5485 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] fb:28:68:3c:6b:04:30:08:c3:ac:4e:13:aa:f5:40:1c:d9:e8:91:2e for '/scripts/init-premount/plymouth' not found |
5486 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] b7:58:f9:77:dd:07:20:8a:5a:80:63:f7:a0:ac:ee:0b:02:6b:c6:ac for '/scripts/local' not found |
5487 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 2f:6b:a7:c6:2c:d5:61:74:ff:1b:6c:3a:c3:eb:ac:f7:49:f7:d9:7e for '/bin/fstype' not found |
5488 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] d9:12:0d:c7:13:31:40:2d:06:c5:7c:19:cd:e1:71:46:a0:35:0d:10 for '/lib/modules/3.18.13-v7+/modules.dep' not found |
5489 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] c6:64:60:9d:e8:0c:08:c7:66:7b:df:da:d5:3a:01:b1:f3:20:5f:80 for '/scripts/local-premount/ORDER' not found |
5490 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] e9:6d:33:80:a8:ab:61:ac:3d:3d:ed:ec:11:c5:14:92:49:17:48:fd for '/scripts/local-premount/resume' not found |
5491 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 80:12:4c:90:b0:b6:fa:87:1b:4e:13:11:0a:f8:64:fa:07:39:4a:f3 for '/scripts/init-bottom/ORDER' not found |
5492 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] fd:25:dd:cf:2f:ad:c3:05:fa:ef:aa:ed:20:8c:01:4f:50:f7:99:b8 for '/scripts/init-bottom/ima_policy' not found |
5493 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 8a:a3:05:98:ca:cb:56:27:b1:49:ea:b6:26:fa:63:99:5c:71:e5:e3 for '/bin/chroot' not found |
5494 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] b9:4d:3f:1e:3e:7c:a0:6d:ca:5c:0d:b5:8a:00:8a:07:7a:20:84:3c for '/root/sbin/load_policy' not found |
5495 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 5f:9a:17:21:e9:55:61:28:77:2a:53:b8:c5:eb:d3:78:4d:f6:d4:de for '/root/lib/arm-linux-gnueabihf/ld-2.13.so' not found |
5496 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 93:09:09:18:3a:b6:16:82:4e:73:73:93:07:b2:87:72:fe:62:87:06 for '/root/etc/ld.so.preload' not found |
5497 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 5f:fa:26:ad:af:3c:f6:4d:55:72:89:43:c1:dd:7b:1b:f1:af:a4:99 for '/root/usr/lib/arm-linux-gnueabihf/libcofi_rpi.so' not found |
5498 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 1b:b7:04:f4:82:10:6f:e1:1a:6a:96:53:2d:d2:91:0b:9b:92:4d:d1 for '/root/etc/ld.so.cache' not found |
5499 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] fc:1e:79:6e:95:72:25:f0:1c:ce:e6:d6:c9:b2:c0:06:19:a9:e5:5c for '/root/lib/arm-linux-gnueabihf/libsepol.so.1' not found |
5500 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 6b:37:3d:d8:fd:60:0f:f0:f7:5b:d5:96:36:fe:22:60:16:1a:55:04 for '/root/lib/arm-linux-gnueabihf/libselinux.so.1' not found |
5501 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] a4:f3:a1:9e:16:12:7f:fb:45:4f:6b:b9:d7:2f:a4:f0:e1:eb:03:fe for '/root/lib/arm-linux-gnueabihf/libc-2.13.so' not found |
5502 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] cd:bd:72:68:67:a3:6c:80:1f:44:ff:ac:7c:97:89:61:9f:31:72:38 for '/root/lib/arm-linux-gnueabihf/libdl-2.13.so' not found |
5503 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 84:66:c8:b2:fc:a2:52:eb:91:3d:c8:40:84:c2:86:cd:7b:67:52:76 for '/root/etc/selinux/config' not found |
5504 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] bc:7b:cc:2f:7b:8a:91:07:21:ae:12:b4:01:93:d8:2e:b0:da:b7:ff for '/root/etc/selinux/default/policy/policy.26' not found |
5505 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 93:70:72:3f:d6:fd:21:37:c9:3a:28:6a:cc:1b:a2:7a:09:35:1e:de for '/sbin/init' is ok |
5506 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] d4:97:cc:ac:12:61:5c:28:85:15:6d:4a:ea:7a:f7:9a:8d:4a:3f:ba for '/etc/init.d/rcS' is ok |
5507 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 1e:5a:2c:5a:f8:cf:3b:f0:26:5a:5b:7b:7b:23:9e:3b:e8:cd:8a:c1 for '/bin/dash' is ok |
5508 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 20:a8:ca:0b:11:04:b3:86:ad:54:d8:a1:ae:55:43:a0:4e:57:90:33 for '/etc/init.d/rc' is ok |
5509 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 1c:30:ed:9c:40:5b:da:14:0c:69:f8:32:bd:bb:7a:ab:e7:83:5b:d2 for '/bin/stty' is ok |
5510 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] aa:4b:b3:a5:f3:c6:75:9c:a3:79:83:e6:72:6e:53:3f:53:c2:b8:74 for '/bin/run-parts' is ok |
5511 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 2e:6b:cb:34:b8:94:7d:44:bf:f3:4a:6a:8b:22:8f:ca:85:b8:f4:21 for '/sbin/startpar' is ok |
5512 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] c8:40:10:49:2c:bd:6a:5f:f7:40:41:29:88:22:76:53:5a:3e:b3:cb for '/usr/bin/tput' is ok |
5513 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 55:09:cc:2f:e7:4a:e5:3c:38:63:8c:80:2a:64:f6:cf:e5:09:f4:db for '/lib/arm-linux-gnueabihf/libtinfo.so.5.9' is ok |
5514 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] b6:9a:fd:c1:61:ea:51:88:83:0d:89:1c:98:85:e9:d9:28:42:44:74 for '/bin/echo' is ok |
5515 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] bb:c5:01:5c:ab:e0:52:82:7a:32:c0:b7:52:ca:27:f9:3a:42:5f:a7 for '/lib/arm-linux-gnueabihf/libnss_compat-2.13.so' is ok |
5516 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 1d:7f:8b:3e:cf:b8:06:0c:82:18:e3:34:22:1c:01:59:a3:91:7b:49 for '/lib/arm-linux-gnueabihf/libnsl-2.13.so' is ok |
5517 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 5c:48:b7:a6:c2:5e:61:36:be:57:f8:2d:d5:ef:c4:97:28:56:05:5b for '/lib/arm-linux-gnueabihf/libnss_nis-2.13.so' is ok |
5518 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 36:65:24:bd:b2:cb:8b:73:bf:c5:5d:64:3e:f2:92:f9:f3:e9:e5:77 for '/lib/arm-linux-gnueabihf/libnss_files-2.13.so' is ok |
5519 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] f8:cf:95:ae:ce:4b:06:90:c9:34:31:e2:d3:12:0c:ea:ec:54:18:f0 for '/etc/init.d/mountkernfs.sh' is ok |
5520 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 55:6e:01:65:3d:49:50:71:c7:64:d8:74:b8:5b:d0:8d:ef:a6:4e:02 for '/etc/init.d/fake-hwclock' is ok |
5521 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] d2:de:ef:26:00:23:37:da:76:c2:8f:f2:ef:63:27:53:60:9e:b8:94 for '/etc/init.d/hostname.sh' is ok |
5522 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 2c:27:ad:86:3e:b4:18:01:26:7f:a1:5b:ba:01:68:eb:ce:46:34:f2 for '/bin/cat' is ok |
5523 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 29:2e:97:e0:c4:4b:ab:ab:47:55:e1:ff:7f:2a:2d:25:08:16:c2:09 for '/sbin/fake-hwclock' is ok |
5524 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 5e:2d:66:ca:36:71:61:14:40:53:03:19:d0:f3:05:26:02:2b:dc:50 for '/bin/sed' is ok |
5525 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 34:63:4e:b1:dc:c4:59:a0:60:3b:de:01:95:c4:57:98:82:a4:60:55 for '/bin/grep' is ok |
5526 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] f4:cd:6e:af:31:a8:24:8b:e6:4c:69:52:7b:d4:66:49:19:cc:0f:8c for '/bin/hostname' is ok |
5527 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 6d:ff:18:c7:9c:f3:25:35:f8:6d:c3:a0:44:10:83:0c:86:4f:ce:ab for '/bin/date' is ok |
5528 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] a2:ec:dd:25:1b:21:da:4f:85:64:24:fb:70:8f:19:67:dc:80:a6:82 for '/lib/arm-linux-gnueabihf/librt-2.13.so' is ok |
5529 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 8d:b0:51:1b:10:e4:c5:db:64:db:fc:00:2d:47:5f:26:c7:6b:f4:34 for '/lib/arm-linux-gnueabihf/libpthread-2.13.so' is ok |
5530 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] d6:ad:ae:90:46:8a:45:8e:55:30:6b:c3:00:c7:23:7b:66:a7:ae:0f for '/bin/ls' is ok |
5531 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 05:24:4c:10:4d:16:65:e8:a1:da:ed:9d:5a:94:aa:3b:d2:cc:fb:a1 for '/lib/arm-linux-gnueabihf/libacl.so.1.1.0' is ok |
5532 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 9f:87:dc:af:70:5c:33:34:05:f5:28:0c:ae:5c:3a:7c:63:ba:aa:2c for '/lib/arm-linux-gnueabihf/libattr.so.1.1.0' is ok |
5533 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 47:3f:8e:2f:35:bc:8c:dc:0a:80:8d:7b:30:77:b1:7a:b8:1a:fa:23 for '/bin/uname' is ok |
5534 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] bf:bf:38:f0:0f:5b:52:82:a8:5a:2e:ea:2e:dc:e7:6d:cb:1d:ec:95 for '/bin/mountpoint' is ok |
5535 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] e1:61:c7:cb:77:88:c6:02:36:42:5e:8a:5f:5f:83:67:b4:5d:44:7f for '/sbin/setfiles' is ok |
5536 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 7d:d0:09:e4:ac:92:68:0a:d1:1d:f6:7f:91:7b:b5:8f:35:37:0e:f2 for '/lib/libaudit.so.0.0.0' is ok |
5537 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 5c:8f:9c:b1:c0:3d:88:fa:b7:e4:dc:32:1b:0d:06:d4:31:32:a3:f5 for '/bin/mkdir' is ok |
5538 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] b2:87:3b:a0:8f:66:07:18:cc:4a:09:95:ba:05:17:68:a0:fe:d8:4a for '/bin/touch' is ok |
5539 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 1d:ae:ce:31:0b:88:f6:5c:6e:49:c3:4c:5b:65:63:69:84:ab:fa:c4 for '/bin/mount' is ok |
5540 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] aa:1a:9c:32:87:9d:aa:c9:86:8f:5e:56:43:7e:e7:01:9b:21:8d:c5 for '/lib/arm-linux-gnueabihf/libblkid.so.1.1.0' is ok |
5541 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 4a:46:f9:b9:c0:9b:ae:f1:51:c4:2e:ee:fb:cd:3f:cd:dd:b3:e1:a7 for '/lib/arm-linux-gnueabihf/libmount.so.1.1.0' is ok |
5542 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 51:9c:1f:5c:0c:37:3e:39:0d:d5:bc:72:86:c5:4d:8f:29:88:0f:23 for '/lib/arm-linux-gnueabihf/libuuid.so.1.3.0' is ok |
5543 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 6f:f4:fd:99:4d:a0:ae:2c:07:12:5d:1e:d3:71:44:0f:41:00:ca:49 for '/etc/init.d/udev' is ok |
5544 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 0e:7a:9c:6d:dc:7d:6f:d9:b8:6c:ff:0e:15:d6:93:10:32:eb:d5:89 for '/bin/ps' is ok |
5545 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 5e:78:58:ed:ec:f7:ab:74:40:ca:4c:21:b9:21:50:72:41:cc:a8:8c for '/bin/egrep' is ok |
5546 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 68:e3:fc:5e:26:c8:ea:6e:58:ec:3b:12:37:6a:8e:13:b2:c3:db:2b for '/lib/arm-linux-gnueabihf/libprocps.so.0.0.1' is ok |
5547 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 76:23:a7:f7:f4:85:52:f4:b5:cd:9d:b2:70:fc:bc:08:5a:f0:38:f7 for '/lib/udev/create_static_nodes' is ok |
5548 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 1f:26:18:35:b0:9e:d2:1f:42:65:e7:da:07:81:8d:3a:f2:af:90:1c for '/bin/mknod' is ok |
5549 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 39:d8:8d:60:2e:78:55:b2:b5:85:dd:3d:8c:3d:e3:22:0b:40:4b:6a for '/lib/udev/write_dev_root_rule' is ok |
5550 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 7f:20:ad:47:0f:ee:c2:02:5e:c1:7c:52:d1:99:95:1f:a0:88:49:7c for '/bin/mv' is ok |
5551 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 4c:ac:a1:bc:1f:90:28:ed:08:c8:5e:65:6b:fe:ae:8c:69:6a:ff:41 for '/lib/arm-linux-gnueabihf/libkmod.so.2.1.3' is ok |
5552 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] a0:ee:de:0d:7a:a4:fd:59:b0:23:36:c3:e7:62:f8:1c:3b:90:75:1a for '/bin/ln' is ok |
5553 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] c0:7f:aa:47:82:bd:03:9b:5d:a6:9f:a5:95:d9:64:70:83:ec:75:91 for '/lib/modules/3.18.13-v7+/kernel/drivers/uio/uio.ko' is ok |
5554 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 3b:7c:8f:f1:f0:2b:4a:11:68:28:34:ba:27:88:8f:3a:89:60:dc:dd for '/lib/modules/3.18.13-v7+/kernel/drivers/uio/uio_pdrv_genirq.ko' is ok |
5555 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] a9:56:0c:30:a3:ff:07:9a:cc:fd:10:e6:13:b1:58:cf:f1:f7:4d:1c for '/lib/udev/usb-db' is ok |
5556 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 65:fe:37:76:c4:67:f4:16:36:4b:49:68:f0:82:ce:33:d1:b9:a5:1c for '/usr/sbin/th-cmd' is ok |
5557 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 09:f4:b2:67:6b:ba:59:54:ae:e1:88:e9:1f:ab:7b:2e:a8:e3:6d:f9 for '/bin/chown' is ok |
5558 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 1c:69:ff:de:dc:26:1b:95:87:2a:40:57:c2:70:cd:dc:01:e0:d2:92 for '/lib/udev/udisks-part-id' is ok |
5559 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 07:49:12:78:ab:26:fa:8a:4b:f4:2b:3d:1f:c9:2c:ba:88:d7:94:8e for '/lib/udev/ifplugd.agent' is ok |
5560 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] f3:e1:e6:c5:e2:ae:94:27:76:38:70:ba:e3:20:0b:4b:ee:eb:d4:dd for '/bin/chmod' is ok |
5561 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 48:3f:cd:13:b6:5e:6d:d2:3e:de:a6:a7:31:58:63:ef:40:c6:df:16 for '/lib/modules/3.18.13-v7+/kernel/drivers/input/joydev.ko' is ok |
5562 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] fd:91:c0:54:a2:a3:9b:2d:40:3a:b7:ff:fa:36:d0:a4:38:47:8c:70 for '/lib/modules/3.18.13-v7+/kernel/drivers/input/evdev.ko' is ok |
5563 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] b8:cd:81:38:e1:de:11:b5:ad:05:7e:fd:bc:90:e7:87:20:01:5f:18 for '/lib/udev/net.agent' is ok |
5564 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] b5:89:52:1c:10:e7:ed:4b:93:9f:d4:3e:fc:b3:3a:f1:c6:ed:0a:78 for '/lib/arm-linux-gnueabihf/libglib-2.0.so.0.4000.0' is ok |
5565 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 68:1a:53:1d:d7:9f:81:84:8f:9f:94:1d:57:b2:25:83:4d:91:a0:e4 for '/bin/sleep' is ok |
5566 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] a1:56:91:89:e6:a8:02:0b:d2:60:06:4a:e6:1e:15:8c:93:aa:e3:3f for '/lib/arm-linux-gnueabihf/libudev.so.0.13.0' is ok |
5567 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 9c:e8:93:f6:9c:60:69:8f:35:fe:25:87:0c:8a:b8:e2:11:1c:be:6d for '/lib/arm-linux-gnueabihf/libparted.so.0.0.1' is ok |
5568 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] cd:1b:e9:e4:45:ab:90:b6:52:a2:f7:34:bb:6e:df:29:c9:ee:6d:d6 for '/lib/arm-linux-gnueabihf/libpcre.so.3.13.1' is ok |
5569 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 9b:a1:79:e9:f1:71:c8:28:a2:65:f3:df:c2:32:af:51:7b:d3:b7:9d for '/lib/udev/keymap' is ok |
5570 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] be:a3:4a:0c:d0:7e:5d:c3:ab:8b:09:1a:ae:fb:04:26:07:90:fa:db for '/lib/arm-linux-gnueabihf/libdevmapper.so.1.02.1' is ok |
5571 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] bf:e4:c3:86:a3:bb:1f:78:5f:e6:64:59:6d:89:84:18:ee:90:12:b6 for '/etc/init.d/keyboard-setup' is ok |
5572 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 2a:a4:89:e2:19:2d:ab:92:9a:49:d4:04:32:91:8f:a6:a0:86:25:26 for '/bin/setupcon' is ok |
5573 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 00:86:fd:85:3d:11:57:7b:d0:2d:83:3f:79:a5:12:19:4b:90:f1:bf for '/sbin/killall5' is ok |
5574 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 77:99:29:6c:21:0b:a6:18:d4:aa:22:49:1d:73:2a:dc:41:a6:3b:33 for '/usr/bin/tty' is ok |
5575 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] cc:8d:47:20:e5:e3:69:6d:be:9b:9f:7c:a6:a4:91:61:60:3a:04:69 for '/bin/kbd_mode' is ok |
5576 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] f9:f0:68:7e:2b:6d:de:19:07:bc:ab:4b:62:6f:fa:e1:7f:e8:a1:67 for '/bin/loadkeys' is ok |
5577 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 3a:25:92:4b:7d:19:39:25:a0:83:47:04:1e:8b:7d:e3:77:b1:65:c6 for '/bin/gzip' is ok |
5578 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] ec:c5:ce:a6:96:54:15:7a:ed:46:a3:12:7b:c2:c8:43:9a:f3:c0:d4 for '/etc/init.d/mountdevsubfs.sh' is ok |
5579 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 8c:00:98:9c:4b:be:4c:cc:fc:98:1b:17:e3:fb:25:c6:4c:1d:0d:e2 for '/usr/bin/stat' is ok |
5580 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] a2:f4:d8:9f:c5:bb:5e:34:ce:6a:87:67:02:ac:0c:3e:cb:3d:91:44 for '/bin/rm' is ok |
5581 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 10:24:25:b4:0f:c7:d6:c7:d6:ae:5a:0c:ae:34:c0:db:df:f0:73:2a for '/etc/init.d/checkroot.sh' is ok |
5582 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 7b:00:ad:25:88:7a:eb:27:75:a5:eb:f3:4f:74:24:81:df:24:07:4f for '/sbin/swapon' is ok |
5583 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] a9:f5:bc:79:78:8c:b8:e3:c3:f0:a1:14:45:85:3f:4b:85:7b:5b:de for '/sbin/logsave' is ok |
5584 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 5e:92:58:f0:ef:ac:7e:78:93:1d:b4:5a:53:66:af:1e:e6:c6:7c:80 for '/sbin/fsck' is ok |
5585 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] 72:cf:c7:74:04:a7:5e:d5:66:b6:86:4c:26:7c:6d:8b:14:eb:b6:3a for '/sbin/e2fsck' is ok |
5586 | 2 | Andreas Steffen | Aug 15 14:46:19 raspi3 charon: 07[PTS] d1:b0:ba:20:a1:e6:be:69:1c:f9:fa:a5:ad:3a:6b:14:34:c5:7b:8f for '/lib/arm-linux-gnueabihf/libext2fs.so.2.4' is ok |
5587 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 0f:d2:e3:50:17:76:94:41:d5:1a:0b:b9:2a:db:61:47:07:c3:e7:c4 for '/lib/arm-linux-gnueabihf/libcom_err.so.2.1' is ok |
5588 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 3c:91:4c:57:47:7e:75:93:96:c1:ae:fb:e8:21:a7:c8:3d:38:55:93 for '/lib/arm-linux-gnueabihf/libe2p.so.2.3' is ok |
5589 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 9a:e3:d6:24:65:1d:92:1d:11:c1:9e:54:3f:1f:cd:36:e1:f1:b2:1c for '/bin/readlink' is ok |
5590 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] ae:50:47:09:a7:d0:73:c2:43:f9:61:f2:21:06:66:87:5a:c5:31:92 for '/bin/which' is ok |
5591 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 61:ae:d0:07:80:86:92:44:e1:54:2f:e8:fb:74:1f:a0:d2:15:04:d2 for '/etc/init.d/checkroot-bootclean.sh' is ok |
5592 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] b1:40:0b:0f:49:b8:e5:fd:b5:7d:d4:ab:6b:a0:a4:ae:8c:a8:2a:76 for '/etc/init.d/kmod' is ok |
5593 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] e1:48:65:0e:d4:e4:4f:58:82:80:c3:14:2b:ee:c5:d9:0f:b3:31:3a for '/etc/init.d/mtab.sh' is ok |
5594 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] cf:d4:c1:c5:be:42:58:7d:c0:f4:f4:8b:30:63:e6:74:9b:ec:35:54 for '/usr/bin/find' is ok |
5595 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] c9:ec:e0:17:83:80:a3:8b:d4:b5:ff:a8:28:2e:82:ec:c7:3d:af:3d for '/lib/modules/3.18.13-v7+/kernel/sound/core/snd.ko' is ok |
5596 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 10:91:d6:f6:22:ea:23:e1:48:f3:04:ce:5e:04:c0:14:17:bb:b7:2f for '/lib/arm-linux-gnueabihf/libm-2.13.so' is ok |
5597 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 02:4f:7e:49:78:41:2a:48:bb:02:a9:2b:de:ff:43:f9:47:e1:a0:06 for '/lib/modules/3.18.13-v7+/kernel/sound/core/snd-timer.ko' is ok |
5598 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 58:62:ba:88:85:f8:bd:44:0e:b7:7a:7f:43:28:50:b5:66:b7:4c:cb for '/lib/modules/3.18.13-v7+/kernel/sound/core/seq/snd-seq-device.ko' is ok |
5599 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 52:ce:53:d1:3c:ca:15:26:6f:0d:94:1a:64:3c:fa:78:6a:92:66:35 for '/lib/modules/3.18.13-v7+/kernel/sound/core/seq/snd-seq.ko' is ok |
5600 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] c8:c3:88:20:ff:67:28:03:ac:00:e1:b9:6b:41:34:43:11:c9:74:2c for '/lib/modules/3.18.13-v7+/kernel/sound/core/snd-pcm.ko' is ok |
5601 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 97:6e:45:b2:2d:5e:6e:9f:d3:fb:d1:67:22:03:9b:9e:65:f9:e7:a7 for '/lib/modules/3.18.13-v7+/kernel/sound/arm/snd-bcm2835.ko' is ok |
5602 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 3f:8f:bc:0b:74:34:6d:d8:14:ce:b4:c5:4f:bc:66:d6:28:e7:7c:09 for '/usr/sbin/alsactl' is ok |
5603 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 0a:66:70:60:48:7d:09:da:cf:99:4d:59:14:49:e7:18:7c:c2:bd:c8 for '/lib/modules/3.18.13-v7+/kernel/drivers/char/hw_random/bcm2708-rng.ko' is ok |
5604 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 7e:b2:5d:b3:10:a0:e0:00:ff:87:5c:ea:32:56:09:91:8e:b9:01:08 for '/usr/lib/arm-linux-gnueabihf/libasound.so.2.0.0' is ok |
5605 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] fb:0f:3c:49:08:98:71:c5:f2:2d:0d:d8:cd:20:5c:16:e3:71:5f:5a for '/etc/init.d/checkfs.sh' is ok |
5606 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 07:cb:e6:a9:af:d5:11:9c:fd:4e:a7:03:24:b4:99:1b:71:e3:bf:2f for '/sbin/dosfsck' is ok |
5607 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 6d:8e:a9:23:95:14:10:f3:fa:f6:b5:62:5b:de:fd:26:37:1c:30:47 for '/etc/init.d/mountall.sh' is ok |
5608 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] c7:68:cc:71:17:b9:ae:aa:66:2a:5e:2e:2b:16:26:f7:2b:3b:5f:26 for '/bin/rmdir' is ok |
5609 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 71:db:98:d0:69:cf:e9:59:76:32:4a:63:f0:95:76:31:27:e4:41:f7 for '/bin/df' is ok |
5610 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 0a:c2:51:53:81:6b:95:f0:51:b1:e7:9b:03:69:39:55:9d:a0:a1:56 for '/etc/init.d/mountall-bootclean.sh' is ok |
5611 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 61:52:40:6a:54:3f:25:fa:d2:32:19:0c:0d:ea:63:46:e7:3e:b4:c1 for '/etc/init.d/procps' is ok |
5612 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 87:80:d4:0b:37:0b:b7:bb:e1:cc:5f:42:d5:25:ae:c2:08:20:7a:3e for '/etc/init.d/udev-mtab' is ok |
5613 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 6e:78:89:e4:39:b7:d9:c8:be:c8:31:73:d1:cb:a0:47:1f:dd:a6:28 for '/etc/init.d/urandom' is ok |
5614 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] a3:f3:d1:db:8a:c1:1c:21:f0:11:b0:23:b2:34:20:e4:00:78:72:1d for '/sbin/sysctl' is ok |
5615 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 58:5b:0f:b6:36:d0:9f:33:da:60:72:79:27:51:20:e7:91:9a:f5:16 for '/bin/dd' is ok |
5616 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] d5:3d:07:fb:25:60:d5:54:6d:c8:71:29:37:55:60:6a:64:4c:6b:c1 for '/etc/init.d/networking' is ok |
5617 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 40:b7:fe:ce:9b:0c:57:a8:90:95:f2:f8:cd:44:3e:4f:0a:42:0d:a7 for '/sbin/ifup' is ok |
5618 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 7e:5b:66:b5:c3:ba:fa:0c:1f:90:34:d4:20:26:d9:d1:bf:d7:ca:cc for '/etc/network/if-pre-up.d/wireless-tools' is ok |
5619 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 54:21:5a:69:21:0d:30:53:51:50:1b:de:74:99:5c:6c:46:d5:29:b2 for '/etc/wpa_supplicant/ifupdown.sh' is ok |
5620 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 80:b4:e7:07:f4:49:cb:2f:c3:d8:d9:57:64:94:69:86:ef:a3:10:8b for '/bin/ip' is ok |
5621 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] d1:80:91:ae:d3:d3:dc:fe:6e:22:81:61:da:02:ba:d1:62:c3:3e:77 for '/lib/arm-linux-gnueabihf/libresolv-2.13.so' is ok |
5622 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 91:69:1e:59:b5:4e:52:66:db:19:e8:97:12:d0:ef:12:09:3c:61:ef for '/etc/network/if-up.d/000resolvconf' not found |
5623 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 95:dd:bf:fd:b2:88:10:69:4b:a7:0e:9f:2c:aa:d7:96:ca:8b:2f:27 for '/etc/network/if-up.d/avahi-daemon' not found |
5624 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 75:de:80:ad:d1:46:53:29:e3:e6:10:04:6d:5f:70:35:00:8f:63:ab for '/etc/network/if-up.d/mountnfs' is ok |
5625 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 1e:71:52:bf:ac:59:1f:62:95:ab:6e:39:b5:35:12:fa:51:be:51:2b for '/usr/sbin/ifplugd' is ok |
5626 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 32:13:b7:39:a7:8e:90:da:3b:b6:c3:8c:ae:14:79:9d:57:59:bb:ec for '/usr/lib/libdaemon.so.0.5.0' is ok |
5627 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] b4:53:33:82:9a:75:f6:bf:4b:f6:87:8f:5e:90:c3:85:e4:0e:40:86 for '/etc/network/if-up.d/openssh-server' is ok |
5628 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 4d:c1:e5:3f:58:73:3f:9b:d5:d3:a3:85:32:1c:1e:c7:09:e8:05:9e for '/etc/network/if-up.d/upstart' is ok |
5629 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] a6:69:19:43:db:c7:09:99:09:31:e8:59:a8:f9:a4:0e:f8:93:62:92 for '/sbin/start-stop-daemon' is ok |
5630 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 62:a2:96:7d:96:a1:e2:d8:4f:f2:cc:4e:5a:26:0b:b0:f2:1e:ad:41 for '/etc/ifplugd/ifplugd.action' is ok |
5631 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 14:92:d9:ba:1b:c8:e5:1f:b0:93:4c:ff:cf:fe:40:8e:82:1e:ae:b4 for '/usr/lib/avahi/avahi-daemon-check-dns.sh' not found |
5632 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 99:22:c8:ad:71:d4:72:d6:cb:ac:57:98:75:46:92:7d:03:ed:a9:6b for '/etc/wpa_supplicant/action_wpa.sh' is ok |
5633 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 95:89:3c:c2:b4:3a:6c:94:5c:88:eb:70:da:39:02:26:3a:cd:3a:4b for '/sbin/wpa_supplicant' is ok |
5634 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 65:76:21:c9:b6:cc:c4:66:c8:b8:6f:ea:91:ad:24:be:11:c1:45:1b for '/sbin/ifconfig' is ok |
5635 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 6c:79:f0:d7:63:31:96:c8:60:19:f1:03:3a:9b:82:39:1d:64:ea:18 for '/etc/ifplugd/action.d/ifupdown' is ok |
5636 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 03:88:dc:a3:33:09:70:98:3e:9d:5f:33:fc:95:53:a3:36:86:dd:5e for '/lib/arm-linux-gnueabihf/libnl-3.so.200.5.2' is ok |
5637 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] f8:78:ad:9e:37:dd:49:82:e8:ee:74:ee:7f:6f:fd:0c:c3:01:75:d6 for '/sbin/route' is ok |
5638 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 69:d3:87:bf:aa:81:58:bb:ae:06:4f:6d:c1:af:b2:51:2c:3f:be:7a for '/lib/arm-linux-gnueabihf/libnl-genl-3.so.200.5.2' is ok |
5639 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] eb:03:e7:23:be:ae:c2:7b:9e:de:41:4d:71:5b:de:66:44:78:53:d9 for '/usr/lib/arm-linux-gnueabihf/libpcsclite.so.1.0.0' is ok |
5640 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] ed:30:6a:ee:0e:c5:a3:3c:84:06:55:9b:b3:0c:fd:92:78:84:2d:55 for '/usr/lib/arm-linux-gnueabihf/libssl.so.1.0.0' is ok |
5641 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 34:7e:5f:db:80:e0:de:8e:f0:70:bf:2c:fe:6a:37:97:bd:53:06:61 for '/usr/lib/arm-linux-gnueabihf/libcrypto.so.1.0.0' is ok |
5642 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] a5:a5:76:2e:7b:3b:f9:ee:3f:4b:7e:43:1b:0e:71:59:36:72:ac:9e for '/lib/arm-linux-gnueabihf/libdbus-1.so.3.7.2' is ok |
5643 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] d3:72:89:1c:34:49:76:89:c6:2b:71:ad:0c:28:56:53:19:94:a0:7e for '/lib/arm-linux-gnueabihf/libz.so.1.2.7' is ok |
5644 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 23:59:93:ae:d1:d9:f4:f3:7f:ab:b5:02:fc:c1:1a:a1:f8:72:0b:3c for '/etc/init.d/mountnfs.sh' is ok |
5645 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 3b:63:c4:84:98:7a:de:75:16:5b:c3:bb:ef:d0:8d:60:2b:02:15:4a for '/etc/init.d/mountnfs-bootclean.sh' is ok |
5646 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 9e:37:da:a3:f0:c3:07:68:25:88:01:a4:fb:c9:18:86:2b:94:91:81 for '/etc/init.d/alsa-utils' is ok |
5647 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] d5:1d:0f:f9:0f:7b:fc:ed:87:f6:5c:42:57:35:1c:0c:99:33:3d:f0 for '/etc/init.d/bootmisc.sh' is ok |
5648 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] dc:bb:97:42:8b:20:a9:25:dc:7d:c6:5c:4b:f2:82:ae:2d:0d:c4:37 for '/bin/chgrp' is ok |
5649 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 81:70:7a:a9:ac:20:56:7f:72:d7:ef:2f:c8:8a:a9:a0:e7:c9:a8:3c for '/etc/init.d/kbd' is ok |
5650 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 69:00:e6:c1:71:ec:9a:79:c8:22:9c:3f:67:2a:14:8e:0e:7f:16:d8 for '/usr/bin/locale' is ok |
5651 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 20:96:eb:76:f0:fe:79:7c:e6:8e:43:74:91:0d:3f:67:b1:bb:ef:d9 for '/bin/fgconsole' is ok |
5652 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 24:98:c2:69:68:a9:9c:55:98:60:57:57:a5:91:f8:c8:b3:28:f8:94 for '/usr/bin/mawk' is ok |
5653 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 46:c1:e6:ab:a2:a8:35:fa:8b:ec:9e:65:c8:4a:5f:75:31:bf:6b:f4 for '/usr/bin/tr' is ok |
5654 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 48:8c:8c:d3:94:6e:1d:90:60:9d:84:0e:c4:36:62:a7:51:ef:91:07 for '/usr/bin/setterm' is ok |
5655 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] cf:1d:c8:60:e0:af:7e:99:f5:50:ff:3d:54:1b:9d:8d:aa:91:74:e3 for '/etc/init.d/console-setup' is ok |
5656 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] 6b:ac:4d:92:9b:06:22:6c:57:69:9e:5f:16:63:f5:42:8a:af:1e:1f for '/etc/init.d/plymouth-log' is ok |
5657 | 2 | Andreas Steffen | Aug 15 14:46:20 raspi3 charon: 07[PTS] b1:b7:58:99:ab:de:eb:c1:12:fa:49:ba:a4:0b:d4:2e:a1:ff:4a:71 for '/etc/init.d/raspi-config' is ok |
5658 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] b8:ae:02:05:d3:70:1d:21:50:a3:4d:36:07:98:be:79:a1:de:da:af for '/etc/init.d/selinux-basics' is ok |
5659 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 21:92:41:0b:53:e9:a3:e6:83:93:db:4f:68:37:d2:47:d5:7c:eb:c9 for '/etc/init.d/x11-common' is ok |
5660 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] a6:0d:6b:87:45:fb:45:8c:2b:fa:2f:95:ab:66:22:3f:41:2d:cd:7d for '/bin/plymouth' is ok |
5661 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 88:f7:6f:44:48:1e:5e:dc:de:5d:8e:d2:80:9f:c6:e8:14:84:77:09 for '/usr/bin/timeout' is ok |
5662 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 14:db:f6:a5:07:71:ac:0d:c4:4d:42:ae:66:7a:58:e2:e3:6c:8c:2c for '/lib/arm-linux-gnueabihf/libply.so.2.1.0' is ok |
5663 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 8b:a0:84:07:5e:04:42:07:11:94:6f:6a:ab:10:c2:30:b0:25:72:14 for '/usr/sbin/thd' is ok |
5664 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 0b:1c:16:74:22:c9:59:d2:0b:de:b2:3c:e1:ac:1b:74:fd:48:60:bb for '/usr/bin/sudo' is ok |
5665 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 1d:b5:a6:5f:06:47:58:81:7e:04:3c:ae:86:53:4a:c8:5d:25:ef:24 for '/lib/arm-linux-gnueabihf/libutil-2.13.so' is ok |
5666 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 04:68:50:ae:69:6d:46:96:cd:7d:ac:3c:c1:3a:1b:be:05:07:23:5f for '/usr/lib/sudo/sudoers.so' is ok |
5667 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 4b:0d:c3:29:d3:52:dc:f7:00:f7:a7:fd:24:ce:68:d1:a0:cb:d7:c6 for '/lib/arm-linux-gnueabihf/libpam.so.0.83.0' is ok |
5668 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] c5:e1:07:2a:35:91:e8:69:17:1f:97:ae:a6:41:40:a7:7c:34:c0:2e for '/lib/arm-linux-gnueabihf/security/pam_unix.so' is ok |
5669 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 6f:1c:0b:53:29:80:b3:53:b6:5b:22:1a:c8:16:69:e8:38:21:e0:58 for '/lib/arm-linux-gnueabihf/libcrypt-2.13.so' is ok |
5670 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 02:c7:0c:39:ad:2d:d9:bd:ec:95:52:25:ed:70:81:81:b5:b9:c1:40 for '/lib/arm-linux-gnueabihf/security/pam_deny.so' is ok |
5671 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] dd:d6:ac:ee:37:02:33:75:3c:c2:d7:6b:94:1d:c0:d1:4b:4c:21:f8 for '/lib/arm-linux-gnueabihf/security/pam_permit.so' is ok |
5672 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] e2:57:5a:c8:a6:12:06:be:1d:96:23:d4:e6:0a:35:77:bc:14:22:eb for '/usr/bin/tee' is ok |
5673 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] bf:2d:8e:f9:20:a5:d9:9c:3a:a6:ad:15:27:95:25:a9:48:bd:3f:9c for '/etc/init.d/bootlogs' is ok |
5674 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 1e:f8:df:e3:e8:9c:c1:43:15:39:77:e2:ed:23:af:75:f8:9a:88:92 for '/etc/init.d/cgroup-bin' is ok |
5675 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] df:6b:8d:fc:d3:6c:e0:60:e0:92:f9:10:56:11:cf:e6:da:d0:05:1d for '/etc/init.d/dhcpcd' not found |
5676 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] f3:91:64:0e:19:47:9e:47:51:d5:49:62:91:6d:5a:a5:f9:5e:3a:93 for '/etc/init.d/ifplugd' is ok |
5677 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 11:27:86:ed:c1:f3:52:4e:5b:29:10:45:e3:cb:6f:e3:08:eb:4c:9c for '/etc/init.d/motd' is ok |
5678 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 89:90:db:71:fe:65:99:e5:55:67:f4:19:fe:1e:e0:00:6f:53:eb:b5 for '/etc/init.d/opencryptoki' is ok |
5679 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 2a:26:50:75:74:c3:71:dc:78:e0:6e:ee:1a:a8:6c:98:65:97:56:8d for '/etc/init.d/rsyslog' is ok |
5680 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 29:6b:f3:38:12:b5:3c:80:21:56:e5:dc:58:0c:84:b5:51:9d:df:a5 for '/etc/init.d/sudo' is ok |
5681 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 73:1f:84:8f:0a:44:d3:82:61:39:dc:96:93:f0:62:ec:a4:04:e1:02 for '/etc/init.d/triggerhappy' is ok |
5682 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 02:7f:3a:a4:73:6e:89:81:4b:a6:f1:63:71:7e:a6:e2:6e:42:43:61 for '/etc/init.d/trousers' is ok |
5683 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 01:2a:17:8f:65:fb:31:e9:6a:6c:8c:49:a0:bf:14:38:26:1f:83:30 for '/usr/bin/savelog' is ok |
5684 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] e9:00:f9:8a:52:7c:fa:3a:9c:8c:e2:e3:65:5c:4d:11:46:1a:8a:0b for '/sbin/dhcpcd5' not found |
5685 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] af:fa:f3:fb:13:af:5e:c7:f3:22:8c:1d:f7:ef:0c:38:3c:ef:46:b7 for '/bin/umount' is ok |
5686 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] f5:80:e3:86:87:03:af:70:4b:96:a9:5a:a6:a1:c5:24:1d:9d:1f:25 for '/usr/bin/id' is ok |
5687 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 50:71:ed:b1:25:5c:a4:22:35:4c:a3:a9:df:f0:35:9e:30:46:be:1c for '/usr/sbin/pkcs11_startup' is ok |
5688 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] a7:87:53:86:54:02:9e:39:9f:01:a4:86:d4:7d:52:c2:de:c3:6c:6b for '/usr/sbin/rsyslogd' is ok |
5689 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] a7:2c:28:bf:e8:85:b2:e5:0a:03:7b:d2:84:f3:d7:5c:45:e3:f6:5b for '/usr/bin/basename' is ok |
5690 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 5b:c8:e2:10:9f:41:65:52:3c:01:92:31:f9:3d:c6:0a:ca:53:01:83 for '/usr/sbin/tcsd' is ok |
5691 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] f6:2c:01:c9:fe:50:c9:b0:45:64:b6:4e:eb:52:50:3c:c8:f6:41:2f for '/lib/modules/3.18.13-v7+/kernel/net/rfkill/rfkill.ko' is ok |
5692 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] c4:81:ed:6d:6a:b8:8a:b0:04:cb:f0:10:fc:d5:05:c7:33:c6:4b:63 for '/bin/bash' is ok |
5693 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] d9:1d:68:43:c6:0d:a0:93:20:84:ba:13:6c:0c:f7:27:94:b9:01:70 for '/usr/lib/rsyslog/lmnet.so' is ok |
5694 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 69:ff:79:fc:cc:07:4f:80:43:60:eb:a5:f2:f0:35:0d:69:55:63:00 for '/usr/bin/dirname' is ok |
5695 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 83:0b:d4:1e:60:10:3f:21:f3:19:49:b2:f5:80:f1:b6:cf:0e:2d:76 for '/lib/modules/3.18.13-v7+/kernel/net/wireless/cfg80211.ko' is ok |
5696 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 8f:c1:61:4d:3b:4a:ca:ff:d7:18:78:60:3b:6c:c6:a8:08:ab:8b:8d for '/usr/sbin/pkcs_slot' is ok |
5697 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 3b:5c:ce:f4:47:ac:01:d8:51:b9:3d:a2:16:60:50:f2:b0:da:7e:c2 for '/usr/lib/rsyslog/imuxsock.so' is ok |
5698 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] e6:f1:fb:cc:bd:1f:00:a1:cc:ea:60:1e:64:a1:6d:d1:61:44:6b:9a for '/bin/dmesg' is ok |
5699 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 08:70:79:9d:ea:86:1a:0d:ed:ab:41:9d:52:be:f8:13:d1:d0:0a:cf for '/usr/lib/rsyslog/imklog.so' is ok |
5700 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] ed:28:c9:93:5e:36:b0:43:7d:7b:c2:9f:83:01:d4:e3:14:a9:89:1f for '/lib/dhcpcd/dhcpcd-run-hooks' not found |
5701 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 40:65:3c:8b:d6:ce:b1:e1:26:0e:48:8f:b0:34:81:2b:bd:35:b4:88 for '/usr/sbin/pkcsslotd' is ok |
5702 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 54:b2:4a:05:b1:ae:b6:7f:a9:5c:3c:fe:db:3b:75:7a:63:db:24:ec for '/sbin/resolvconf' not found |
5703 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 2b:00:d3:9c:d8:94:a3:48:fe:6a:19:7a:1f:bc:da:04:fb:b7:f7:20 for '/etc/init.d/apache2' is ok |
5704 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] a9:f9:0b:12:40:64:14:84:5b:8c:28:50:4b:a3:9f:23:e7:a1:9e:ac for '/usr/bin/env' is ok |
5705 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] de:92:00:45:96:b8:9a:ba:70:e4:f5:0e:ff:9b:68:57:6d:95:cd:a7 for '/usr/sbin/apache2ctl' is ok |
5706 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] b5:10:c3:23:de:8c:84:12:8f:6f:bd:92:95:7f:fd:38:e8:fd:a8:7b for '/bin/mktemp' is ok |
5707 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 32:4b:dd:e8:66:9e:80:9f:b4:7f:fb:7f:05:05:19:1a:c6:4e:9c:7f for '/usr/lib/apache2/mpm-worker/apache2' not found |
5708 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] ad:44:32:ec:4c:d5:fa:40:e6:fa:22:f1:d2:5f:be:cb:ba:8e:79:7e for '/usr/lib/libaprutil-1.so.0.4.1' is ok |
5709 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 03:c3:d9:e7:12:24:c8:44:5c:3b:96:95:0a:77:81:e5:07:db:b8:d6 for '/usr/lib/libapr-1.so.0.4.6' is ok |
5710 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 2d:1f:23:e4:f6:36:04:19:a4:0d:05:b6:d2:dc:a7:51:82:cb:6c:ef for '/lib/arm-linux-gnueabihf/libexpat.so.1.6.0' is ok |
5711 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 45:5a:0a:32:1e:78:95:50:bc:a7:c8:bd:68:be:1a:23:1a:7c:59:df for '/usr/lib/apache2/modules/mod_alias.so' is ok |
5712 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 3f:6a:4c:3f:20:f6:48:52:0e:cd:1c:5d:a4:05:05:8b:5e:42:2e:b0 for '/usr/lib/apache2/modules/mod_auth_basic.so' is ok |
5713 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] dc:7a:57:f2:9d:e7:b4:34:1c:1f:39:fe:3a:a5:12:46:9b:20:c7:2c for '/usr/lib/apache2/modules/mod_authn_file.so' is ok |
5714 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 31:42:2d:69:b2:d7:2d:db:42:03:4b:32:aa:c7:69:25:31:ff:e5:8b for '/usr/lib/apache2/modules/mod_authz_default.so' is ok |
5715 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] f1:20:ad:a5:d7:3d:b5:b7:47:8d:36:94:6f:17:d6:bf:c3:c9:3e:3a for '/usr/lib/apache2/modules/mod_authz_groupfile.so' is ok |
5716 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 6b:cf:6f:76:b5:8e:1a:6e:97:e8:7d:28:42:d7:43:3b:c7:ae:a9:e6 for '/usr/lib/apache2/modules/mod_authz_host.so' is ok |
5717 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 6b:ba:e1:02:b7:5a:99:be:c7:95:6f:2d:c0:a0:d9:19:20:1d:a0:3d for '/usr/lib/apache2/modules/mod_authz_user.so' is ok |
5718 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] ec:42:f4:a1:fd:21:cb:b1:81:35:39:db:43:f0:c1:b0:d9:56:2e:1b for '/usr/lib/apache2/modules/mod_autoindex.so' is ok |
5719 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 9d:04:23:ff:1f:4a:bc:a7:a9:8a:e5:d7:80:b3:44:58:aa:e4:ee:6d for '/usr/lib/apache2/modules/mod_cgid.so' is ok |
5720 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 8d:db:57:cb:38:af:e5:d5:49:7d:bb:1e:57:77:98:d6:0b:1c:19:19 for '/usr/lib/apache2/modules/mod_deflate.so' is ok |
5721 | 2 | Andreas Steffen | Aug 15 14:46:21 raspi3 charon: 07[PTS] 3a:c7:1f:1f:25:7c:6b:5c:ac:c4:c1:04:72:23:2c:07:d1:4c:a0:68 for '/usr/lib/apache2/modules/mod_dir.so' is ok |
5722 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 0d:d6:d1:09:65:7f:e8:1e:6a:f4:9f:af:16:36:a6:03:1b:60:04:64 for '/usr/lib/apache2/modules/mod_env.so' is ok |
5723 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 1c:17:87:4d:36:43:5a:93:58:de:45:62:bf:1b:c6:fd:94:81:5b:d9 for '/usr/lib/apache2/modules/mod_mime.so' is ok |
5724 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 0a:ca:a2:b8:59:67:ff:c6:18:2f:48:5e:71:77:93:1d:bd:ff:0c:05 for '/usr/lib/apache2/modules/mod_negotiation.so' is ok |
5725 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] e9:d8:5d:17:c9:00:c7:a7:98:2b:9a:2b:35:1d:ab:c7:1b:31:69:2c for '/usr/lib/apache2/modules/mod_reqtimeout.so' is ok |
5726 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 3a:88:f3:c0:1a:c9:ee:be:46:97:dd:48:eb:30:87:53:f2:43:bd:9e for '/usr/lib/apache2/modules/mod_setenvif.so' is ok |
5727 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] f6:3e:00:d4:e4:96:e7:e3:5b:ef:85:23:7a:7c:f3:a8:9d:31:01:b4 for '/usr/lib/apache2/modules/mod_status.so' is ok |
5728 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] c9:4c:ac:d0:50:3a:da:af:29:87:48:60:69:fa:dc:97:08:4a:0b:57 for '/usr/lib/apache2/modules/mod_wsgi.so-2.7' is ok |
5729 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 6d:66:86:c4:25:62:ef:a4:18:39:90:e8:3f:66:38:e7:c8:19:69:1b for '/usr/lib/libpython2.7.so.1.0' is ok |
5730 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 27:f4:eb:66:eb:fd:ab:91:78:56:a5:90:48:5e:c5:24:1d:a7:3c:d7 for '/etc/init.d/dbus' is ok |
5731 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 7a:30:4b:e8:7f:e5:83:83:36:a8:8b:a3:4a:bb:86:f5:c9:ca:e7:81 for '/etc/init.d/cron' is ok |
5732 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 21:46:97:d7:ee:12:e4:fb:d4:d0:0f:c4:21:d1:76:cc:3e:31:2a:32 for '/etc/init.d/dphys-swapfile' is ok |
5733 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] eb:e3:8f:e8:1d:a7:ea:ae:fb:27:ef:0d:36:42:66:fe:91:14:23:e2 for '/etc/init.d/mcstrans' is ok |
5734 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 39:74:bf:81:68:56:43:c3:47:14:47:bd:86:91:c5:31:1a:c9:65:ad for '/etc/init.d/ntp' is ok |
5735 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 00:b5:44:c7:21:66:0f:bc:94:41:b0:b7:c2:25:fb:dc:6d:6c:c0:ab for '/etc/init.d/openbsd-inetd' is ok |
5736 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 85:51:d7:bc:c5:41:0d:bc:da:6b:6c:74:fa:ab:5f:f8:5e:70:25:29 for '/etc/init.d/restorecond' is ok |
5737 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] e6:1a:7f:9d:74:46:8a:7f:65:d1:2e:41:91:78:f0:c1:88:73:b7:1d for '/etc/init.d/rng-tools' is ok |
5738 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] f6:c9:32:cd:1e:16:82:3d:5c:88:66:a9:be:d9:f1:df:71:aa:06:43 for '/sbin/dphys-swapfile' is ok |
5739 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 25:28:84:38:34:69:f5:5a:db:47:ab:13:6c:67:5e:69:be:90:03:6b for '/etc/init.d/rsync' is ok |
5740 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 58:9d:f6:b2:11:04:01:b7:b6:d7:63:67:58:c5:2a:ea:86:14:0f:cb for '/etc/init.d/ssh' is ok |
5741 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 84:09:8f:7a:6d:c6:16:82:1e:2a:f4:df:e2:d1:f9:29:5a:63:6b:b0 for '/usr/bin/tail' is ok |
5742 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 31:98:2e:81:72:f9:a6:4e:68:c5:1f:77:5a:75:cb:e7:6b:45:d0:7d for '/usr/bin/cut' is ok |
5743 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 52:0b:d5:b8:b7:b8:e4:63:43:6e:73:75:83:95:a5:14:cf:d5:5e:cd for '/usr/sbin/selinuxenabled' is ok |
5744 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 26:08:92:9d:0c:62:d5:ea:4c:e5:94:a9:e1:3e:29:3c:6e:40:71:d8 for '/usr/bin/getent' is ok |
5745 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] d3:e2:c9:61:69:3d:82:7a:50:f3:bc:60:fc:0e:5c:3f:00:29:b0:ab for '/usr/bin/dbus-uuidgen' is ok |
5746 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] c9:4e:2c:74:dc:ea:eb:36:38:6b:b4:fd:ab:f0:d7:fb:9c:76:5f:c3 for '/usr/sbin/inetd' is ok |
5747 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 9f:1a:ae:04:12:96:eb:ba:39:60:a1:26:59:32:7d:f5:2b:1c:52:e1 for '/usr/sbin/rngd' is ok |
5748 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] ba:1e:9b:55:13:72:1e:06:94:af:be:12:6a:97:b5:ef:84:2b:5d:03 for '/usr/sbin/sshd' is ok |
5749 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] cd:76:0e:d8:6e:71:51:50:6b:00:62:e9:6e:55:21:8c:5a:ff:ce:ea for '/usr/bin/expr' is ok |
5750 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] ea:d5:49:85:81:dd:fb:f2:c9:c2:e0:83:45:c0:10:0d:bb:a8:b0:fb for '/usr/bin/install' is ok |
5751 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 2d:a1:3e:a8:16:cf:28:54:f5:be:23:ef:b0:87:c0:c4:6b:f8:6f:7c for '/usr/sbin/cron' is ok |
5752 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 7c:0d:d5:f9:ca:ff:ef:ea:4d:cf:eb:ae:04:b7:a1:af:ed:0f:f8:81 for '/usr/sbin/restorecond' is ok |
5753 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 65:ef:1e:4c:76:f0:e0:9e:35:bb:18:b4:d3:60:1e:49:fe:79:70:4a for '/usr/sbin/ntpd' is ok |
5754 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 65:33:3a:a0:12:ef:e5:c8:22:d1:c4:07:77:3b:3b:23:8f:1a:7e:dd for '/lib/arm-linux-gnueabihf/libwrap.so.0.7.6' is ok |
5755 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 6b:e0:52:20:1e:1d:b5:3d:5f:d3:3c:f1:3d:d8:d8:1d:bc:0b:93:f5 for '/usr/bin/dbus-daemon' is ok |
5756 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] eb:33:70:ee:a8:ed:0d:3d:77:bf:d1:63:8c:be:f8:97:e8:52:7d:1a for '/usr/lib/arm-linux-gnueabihf/libdbus-glib-1.so.2.2.2' is ok |
5757 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 9a:6c:00:41:7c:5e:5a:bf:e2:29:69:6e:d3:0a:d5:15:fd:fc:18:31 for '/sbin/mcstransd' is ok |
5758 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 0a:66:5a:2b:37:67:2a:da:87:a6:4a:c0:26:81:fb:74:80:11:8b:ee for '/usr/lib/libopts.so.25.10.0' is ok |
5759 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 5a:fe:a9:1b:9d:95:10:f7:6b:cd:d5:a1:a3:86:37:22:ff:6d:af:e9 for '/usr/lib/arm-linux-gnueabihf/libgssapi_krb5.so.2.2' is ok |
5760 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] ea:4b:8b:63:3e:ff:db:94:37:51:e7:09:ff:b8:d1:4e:3b:57:67:2d for '/lib/arm-linux-gnueabihf/libsystemd-login.so.0.2.1' is ok |
5761 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 2a:c9:8b:25:e8:18:ca:7b:3e:4f:0c:69:3e:d7:bd:65:5b:25:e9:a5 for '/lib/arm-linux-gnueabihf/libcap.so.2.22' is ok |
5762 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] a6:fa:6e:79:46:f5:30:14:97:9b:02:52:4f:c7:aa:f4:77:56:fe:50 for '/usr/lib/arm-linux-gnueabihf/libgio-2.0.so.0.4000.0' is ok |
5763 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] be:93:81:bd:53:37:d1:2e:59:dd:10:1e:44:68:95:0a:1e:a8:ab:49 for '/usr/lib/arm-linux-gnueabihf/libkrb5.so.3.3' is ok |
5764 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 6e:c8:06:6a:91:8e:58:1c:59:f3:ac:91:30:6e:32:d9:15:3f:5a:13 for '/usr/lib/arm-linux-gnueabihf/libgobject-2.0.so.0.4000.0' is ok |
5765 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] d9:c0:42:7e:7e:d7:dc:22:0a:3f:6c:a0:e7:1b:c7:54:43:24:c0:dc for '/usr/lib/arm-linux-gnueabihf/libk5crypto.so.3.1' is ok |
5766 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 02:1b:c7:f9:3b:a8:92:c6:fc:08:e6:55:e2:7b:43:fa:f4:f5:97:25 for '/usr/lib/arm-linux-gnueabihf/libgmodule-2.0.so.0.4000.0' is ok |
5767 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 8b:c9:ee:3e:4a:8e:1c:09:21:b3:c0:73:28:eb:0a:83:ae:8a:08:f5 for '/usr/lib/arm-linux-gnueabihf/libkrb5support.so.0.1' is ok |
5768 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 40:09:1c:12:09:8d:09:d7:e3:30:d2:9d:d9:e5:34:4d:02:72:11:5e for '/lib/libnss_mdns4_minimal.so.2' not found |
5769 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 6c:62:36:3f:84:63:e7:67:18:9b:de:4a:45:cb:97:77:a4:33:52:75 for '/usr/lib/arm-linux-gnueabihf/libffi.so.5.0.10' is ok |
5770 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 41:da:22:a2:a0:66:11:c1:98:12:23:ac:38:24:a5:c3:27:57:70:40 for '/etc/init.d/avahi-daemon' not found |
5771 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 7e:d7:48:e2:cb:82:81:c6:be:99:fe:f4:9e:ea:5a:6e:36:31:c8:f4 for '/lib/arm-linux-gnueabihf/libkeyutils.so.1.4' is ok |
5772 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] b8:1d:54:25:2a:a1:13:99:0c:41:34:d3:c1:cc:65:05:ad:75:45:de for '/lib/arm-linux-gnueabihf/libnss_dns-2.13.so' is ok |
5773 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] b1:81:6c:d3:78:fc:40:ea:d1:48:09:67:a8:c7:91:a9:81:86:3f:14 for '/usr/sbin/avahi-daemon' not found |
5774 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] 80:8a:3d:05:75:96:ef:06:74:64:e7:58:09:35:13:42:c6:ef:65:a5 for '/usr/lib/arm-linux-gnueabihf/libavahi-common.so.3.5.3' is ok |
5775 | 2 | Andreas Steffen | Aug 15 14:46:22 raspi3 charon: 07[PTS] e9:da:3d:08:4e:90:d3:4d:dc:a1:71:33:ae:a0:9f:76:5d:c8:10:fb for '/usr/lib/arm-linux-gnueabihf/libavahi-core.so.7.0.2' not found |
5776 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 6d:f3:23:0b:cc:12:72:17:7a:37:0e:ed:ec:6b:bb:bc:68:8d:cf:d4 for '/lib/libnss_mdns.so.2' not found |
5777 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 44:ba:ec:ea:cd:3c:ee:7c:88:58:54:6d:c9:99:57:14:83:61:34:68 for '/etc/init.d/plymouth' is ok |
5778 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] f1:d2:7e:61:2d:83:40:73:0b:c3:6e:74:10:3b:9e:88:c0:c5:d2:6e for '/etc/init.d/rc.local' is ok |
5779 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] d2:b3:4f:78:86:43:1b:66:dc:c3:d8:b4:da:7a:ec:4c:94:c1:29:28 for '/etc/init.d/rmnologin' is ok |
5780 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 94:40:69:7f:e0:ff:4d:28:fd:c9:a2:ec:0c:7b:07:57:90:00:17:d7 for '/etc/rc.local' is ok |
5781 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] f3:71:5a:1e:5f:76:0c:7b:35:80:8d:3f:8d:2a:df:bd:b6:d9:39:69 for '/sbin/getty' is ok |
5782 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] e9:4b:cc:87:d3:31:b1:03:33:c0:06:04:de:68:e6:37:6a:18:28:e2 for '/lib/libnss_mdns4.so.2' not found |
5783 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 9a:b5:27:a4:68:5e:98:98:a2:3b:88:41:c3:43:4b:30:5d:5d:84:5e for '/lib/arm-linux-gnueabihf/security/pam_env.so' is ok |
5784 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 7b:ce:66:d4:c6:4c:49:b0:53:a4:3f:32:d8:62:4a:4a:37:a3:8f:40 for '/lib/arm-linux-gnueabihf/security/pam_nologin.so' is ok |
5785 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 7b:c1:e5:ff:d7:9b:6d:1f:79:02:89:f1:71:0d:42:e0:db:8f:5e:a2 for '/lib/arm-linux-gnueabihf/security/pam_motd.so' is ok |
5786 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 46:ba:b8:d2:a9:a5:d5:09:ca:90:1e:60:5e:de:8d:d7:e4:8d:77:cc for '/lib/arm-linux-gnueabihf/security/pam_mail.so' is ok |
5787 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 31:9c:72:bd:d8:6d:c0:08:93:0b:ca:f1:8f:09:b7:f1:6d:73:87:93 for '/lib/arm-linux-gnueabihf/security/pam_limits.so' is ok |
5788 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 56:59:26:6c:15:e1:89:bf:16:96:cb:d9:20:1a:d8:aa:4f:28:f2:e6 for '/usr/bin/dircolors' is ok |
5789 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 69:20:35:90:e7:3a:a1:0d:47:91:c4:e9:dc:34:27:84:cb:64:41:d3 for '/usr/sbin/ipsec' is ok |
5790 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] b2:bb:df:85:e1:44:34:7a:67:7c:f1:82:78:11:dd:5d:a6:7f:22:ad for '/usr/libexec/ipsec/starter' is ok |
5791 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 83:d3:c2:62:1f:70:6f:86:3b:39:5b:6c:20:fc:8f:2f:ed:1a:04:18 for '/usr/lib/ipsec/libstrongswan.so.0.0.0' is ok |
5792 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] b0:e1:8a:57:92:a8:fb:b1:f4:03:7a:5f:1b:5e:5c:d9:80:23:3e:79 for '/usr/lib/ipsec/libhydra.so.0.0.0' is ok |
5793 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 55:c0:44:44:b2:a4:78:9f:06:76:3a:20:b5:4d:36:1e:40:7f:15:64 for '/lib/modules/3.18.13-v7+/kernel/net/key/af_key.ko' is ok |
5794 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] dd:0c:2d:f8:70:c1:de:a2:ec:ba:d1:1b:d1:2d:66:0d:62:c2:28:4e for '/lib/modules/3.18.13-v7+/kernel/net/ipv4/ah4.ko' is ok |
5795 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 89:09:12:fe:9c:f5:c0:04:70:3c:da:db:6a:d0:92:b9:d5:d5:71:a9 for '/lib/modules/3.18.13-v7+/kernel/net/ipv4/esp4.ko' is ok |
5796 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 23:ba:be:8a:36:41:36:d9:0d:d3:94:30:12:bb:fa:25:63:ca:67:60 for '/lib/modules/3.18.13-v7+/kernel/net/xfrm/xfrm_ipcomp.ko' is ok |
5797 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] ec:83:39:c1:7a:d1:c1:77:72:d8:2c:d5:e7:96:df:6e:92:4a:2d:4a for '/lib/modules/3.18.13-v7+/kernel/net/ipv4/ipcomp.ko' is ok |
5798 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 3f:54:fa:18:61:f5:e9:df:d1:2e:4b:25:ec:e0:57:cc:f2:0d:22:82 for '/lib/modules/3.18.13-v7+/kernel/net/ipv4/tunnel4.ko' is ok |
5799 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] fe:5e:9d:31:8f:69:27:e4:3c:ca:c9:83:14:b8:ad:0d:a3:dc:ce:e7 for '/lib/modules/3.18.13-v7+/kernel/net/ipv4/xfrm4_tunnel.ko' is ok |
5800 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] ee:9c:80:80:cc:e7:b2:56:34:79:42:a2:85:a7:15:ee:09:68:02:9a for '/usr/libexec/ipsec/charon' is ok |
5801 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 1d:80:b0:dc:83:20:da:11:09:01:05:1f:66:c5:fd:6e:7e:3f:24:b9 for '/usr/lib/ipsec/libcharon.so.0.0.0' is ok |
5802 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 0c:88:e4:8a:3c:6a:ab:09:ee:fc:84:72:ba:84:5e:9e:2d:c4:34:1c for '/usr/lib/ipsec/plugins/libstrongswan-random.so' is ok |
5803 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] c0:37:f6:e2:ae:3e:96:1e:99:70:cf:93:2c:a7:c9:dc:f8:29:00:48 for '/usr/lib/ipsec/plugins/libstrongswan-nonce.so' is ok |
5804 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 4c:ee:7f:e7:96:26:4c:8c:1d:a2:2f:30:81:1b:86:15:00:c9:ea:2d for '/usr/lib/ipsec/plugins/libstrongswan-x509.so' is ok |
5805 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] c1:ea:75:d0:af:25:4b:7e:a8:94:77:ab:93:fc:e4:fb:fe:a2:9c:af for '/usr/lib/ipsec/plugins/libstrongswan-revocation.so' is ok |
5806 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 88:37:2e:49:33:f6:5e:83:66:45:78:13:08:86:34:80:5a:f8:d9:f9 for '/usr/lib/ipsec/plugins/libstrongswan-constraints.so' is ok |
5807 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] ed:46:71:f0:0d:f4:80:46:0b:5f:6d:30:63:c1:98:b2:0e:e4:33:50 for '/usr/lib/ipsec/plugins/libstrongswan-pkcs1.so' is ok |
5808 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] f8:ae:21:6b:84:eb:df:ff:67:dd:72:29:ea:03:4e:b2:00:68:81:62 for '/usr/lib/ipsec/plugins/libstrongswan-pkcs8.so' is ok |
5809 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 80:3c:91:fd:94:4f:ac:87:bc:8c:b0:51:f8:a2:5e:b8:3d:3d:60:01 for '/usr/lib/ipsec/plugins/libstrongswan-pem.so' is ok |
5810 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 71:79:8b:3d:a1:1f:cb:00:87:cf:a2:17:b8:df:34:ea:a3:91:a5:a8 for '/usr/lib/ipsec/plugins/libstrongswan-openssl.so' is ok |
5811 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 5e:51:78:cb:3a:05:d6:b2:61:cf:0e:89:12:65:2c:78:cd:cf:28:e8 for '/usr/lib/ipsec/plugins/libstrongswan-pubkey.so' is ok |
5812 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 26:0e:f8:6e:66:6d:d2:aa:81:1a:12:af:6a:1c:68:c4:45:bb:18:df for '/usr/lib/ipsec/plugins/libstrongswan-tnc-imc.so' is ok |
5813 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] d8:32:e6:30:24:3e:a5:35:97:98:c5:9d:17:db:d4:01:2e:da:2a:fe for '/usr/lib/ipsec/libtnccs.so.0.0.0' is ok |
5814 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] f0:69:52:01:7a:24:fb:fb:f3:cf:46:89:bb:66:c5:3a:41:e9:3a:13 for '/usr/lib/ipsec/plugins/libstrongswan-tnc-imv.so' is ok |
5815 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] e5:3f:e4:6b:93:3d:8b:59:48:2f:22:83:59:00:dc:df:4c:46:87:30 for '/usr/lib/ipsec/plugins/libstrongswan-tnc-tnccs.so' is ok |
5816 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 38:80:0c:d9:7a:25:72:ca:30:e8:18:f2:19:0b:37:64:92:99:06:c7 for '/usr/lib/ipsec/plugins/libstrongswan-tnccs-20.so' is ok |
5817 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 4f:25:d3:cc:bc:75:a4:5d:1e:a5:69:cd:65:fa:1d:69:3c:91:1c:28 for '/usr/lib/ipsec/plugins/libstrongswan-eap-identity.so' is ok |
5818 | 2 | Andreas Steffen | Aug 15 14:46:23 raspi3 charon: 07[PTS] 11:6f:78:d8:03:1e:54:b9:15:d4:1d:a0:9a:3f:5b:b2:5d:13:af:91 for '/usr/lib/ipsec/plugins/libstrongswan-eap-ttls.so' is ok |
5819 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 7a:1b:d6:9b:6f:88:91:0d:6e:98:4d:ee:99:42:31:0e:7d:ac:54:72 for '/usr/lib/ipsec/libtls.so.0.0.0' is ok |
5820 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 2a:21:3f:2f:48:60:8b:22:30:27:d7:03:b5:31:f2:91:c9:34:6b:c8 for '/usr/lib/ipsec/plugins/libstrongswan-eap-tnc.so' is ok |
5821 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] fa:8b:a6:c5:ce:ce:af:95:fc:ff:ec:c0:7b:40:5f:d7:c5:0c:fe:4c for '/usr/lib/ipsec/plugins/libstrongswan-sqlite.so' is ok |
5822 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 33:9b:e6:60:dd:53:9c:08:c9:9e:f1:1c:ff:6c:ec:d5:4f:68:b3:4f for '/usr/lib/arm-linux-gnueabihf/libsqlite3.so.0.8.6' is ok |
5823 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] c8:6e:8c:58:e7:90:05:99:9a:87:84:c1:f6:c7:97:93:fc:bc:94:9e for '/usr/lib/ipsec/plugins/libstrongswan-curl.so' is ok |
5824 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 3a:05:a3:5d:2c:17:db:c1:86:9c:9b:a7:9e:ef:1e:b0:42:3d:45:48 for '/usr/lib/arm-linux-gnueabihf/libcurl.so.4.2.0' is ok |
5825 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 60:7c:a9:c8:1c:80:0a:75:3c:12:e3:f4:00:ef:ec:94:cc:e3:3a:8b for '/usr/lib/arm-linux-gnueabihf/libidn.so.11.6.8' is ok |
5826 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 8c:cf:c6:fd:c1:de:4d:58:82:74:21:d6:19:b0:04:68:c7:e5:94:d3 for '/usr/lib/arm-linux-gnueabihf/libssh2.so.1.0.1' is ok |
5827 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] fa:ae:61:be:a0:82:aa:a2:64:ff:90:39:40:a8:ea:c0:54:3a:9b:d4 for '/usr/lib/arm-linux-gnueabihf/liblber-2.4.so.2.8.3' is ok |
5828 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 94:a5:64:b4:70:49:01:b9:b3:be:56:ce:c1:80:1d:3e:53:82:4c:de for '/usr/lib/arm-linux-gnueabihf/libldap_r-2.4.so.2.8.3' is ok |
5829 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] bb:34:7c:bd:80:30:84:60:ef:ac:c0:88:b8:d1:1d:f9:80:f5:9d:61 for '/usr/lib/arm-linux-gnueabihf/librtmp.so.0' is ok |
5830 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 7e:32:cb:a9:01:58:ae:0d:80:e9:66:27:63:d0:0b:31:4d:90:c8:5d for '/lib/arm-linux-gnueabihf/libgcrypt.so.11.7.0' is ok |
5831 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 9e:9f:13:4d:e5:f9:2b:21:5e:9c:5d:e5:65:7c:f6:ec:dc:7f:a0:a6 for '/usr/lib/arm-linux-gnueabihf/libsasl2.so.2.0.25' is ok |
5832 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 60:58:d8:e0:f2:28:09:eb:e4:fc:d9:70:33:dc:39:0e:04:bb:41:2c for '/usr/lib/arm-linux-gnueabihf/libgnutls.so.26.22.4' is ok |
5833 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] ee:63:87:d6:38:69:31:48:5c:a1:b2:86:84:3c:3e:38:de:8d:f3:1e for '/lib/arm-linux-gnueabihf/libgpg-error.so.0.8.0' is ok |
5834 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] f0:71:36:04:5d:1d:6a:f0:5d:5c:9c:f8:e5:19:1f:d9:d7:ad:21:74 for '/usr/lib/arm-linux-gnueabihf/libtasn1.so.3.1.16' is ok |
5835 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 41:42:4a:23:a7:4f:5b:8b:cc:ce:46:70:0a:c5:5a:b8:70:24:44:42 for '/usr/lib/arm-linux-gnueabihf/libp11-kit.so.0.0.0' is ok |
5836 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 3a:99:93:1e:4c:1b:be:dd:2e:fd:c5:e5:20:67:f0:3c:d9:f2:be:2b for '/usr/lib/ipsec/plugins/libstrongswan-kernel-netlink.so' is ok |
5837 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] b6:9b:4b:60:b2:e5:21:af:55:1a:b6:32:5d:46:e2:b4:98:32:7a:6b for '/usr/lib/ipsec/plugins/libstrongswan-socket-default.so' is ok |
5838 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] c2:b6:70:a5:91:d4:54:19:77:b2:06:9d:89:63:a5:21:5e:21:2c:4d for '/usr/lib/ipsec/plugins/libstrongswan-updown.so' is ok |
5839 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] d8:53:23:97:5d:c7:02:46:92:14:f8:2c:ec:d1:40:8a:29:c3:dc:e1 for '/usr/lib/ipsec/plugins/libstrongswan-stroke.so' is ok |
5840 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 7f:ca:32:05:2c:88:30:f4:60:7c:61:8c:da:80:65:3e:90:f8:5b:24 for '/usr/lib/ipsec/imcvs/imv-attestation.so' is ok |
5841 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 38:0d:d9:b2:62:24:7e:48:67:25:eb:32:f6:cb:80:74:2c:9c:d4:c3 for '/usr/lib/ipsec/libimcv.so.0.0.0' is ok |
5842 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 7e:b4:4d:ca:ef:11:d5:62:97:ae:cc:93:f8:bf:17:37:54:57:a9:d3 for '/usr/lib/arm-linux-gnueabihf/libtspi.so.1.2.0' is ok |
5843 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] f0:dc:1c:eb:18:bc:bc:c7:f0:13:b9:d6:7a:80:36:71:0d:47:4d:c1 for '/usr/lib/ipsec/imcvs/imc-os.so' is ok |
5844 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] f3:32:1b:e7:59:87:f1:93:04:5f:ea:d4:9d:1a:99:26:ad:ee:8d:e4 for '/usr/lib/ipsec/imcvs/imc-attestation.so' is ok |
5845 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 5b:bb:31:46:ef:6b:2e:73:5a:49:9a:96:bb:cc:1c:21:3a:b9:c8:ec for '/usr/libexec/ipsec/imv_policy_manager' is ok |
5846 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] a5:f5:48:3a:db:2f:5b:4d:4d:99:ca:02:c1:2b:51:e0:94:de:9a:3d for '/lib/modules/3.18.13-v7+/kernel/crypto/sha256_generic.ko' is ok |
5847 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 44:5e:88:de:0a:ba:ad:2a:f5:a7:6a:7d:be:ec:f3:13:32:e0:17:1a for '/lib/modules/3.18.13-v7+/kernel/net/ipv4/xfrm4_mode_transport.ko' is ok |
5848 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] ac:98:d9:bc:08:10:22:0f:8d:85:2d:28:12:17:59:26:f5:bb:db:63 for '/lib/modules/3.18.13-v7+/kernel/crypto/authenc.ko' is ok |
5849 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] fd:54:d1:93:4f:7e:ba:b9:16:fb:45:3f:d3:c3:d5:ed:38:be:4f:27 for '/usr/libexec/ipsec/_updown' is ok |
5850 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 82:4c:54:c5:25:ad:75:98:93:e2:63:46:25:1e:d6:88:7f:c1:97:2a for '/sbin/xtables-multi' is ok |
5851 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 79:a1:f6:86:3e:90:02:59:d4:b1:6d:c6:e6:17:e6:57:b7:4e:a3:03 for '/lib/libip4tc.so.0.1.0' is ok |
5852 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 00:15:0f:35:34:79:b7:27:8b:eb:3b:c3:a9:7b:2c:db:0e:ea:bb:fb for '/lib/libip6tc.so.0.1.0' is ok |
5853 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 97:42:19:a6:3f:ea:ed:1f:88:c3:2b:e8:0b:8c:7e:8d:09:7a:c8:17 for '/lib/libxtables.so.7.0.0' is ok |
5854 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 6c:94:f3:ac:9f:83:d4:56:2e:10:c9:c3:44:ca:4d:30:eb:74:06:a9 for '/lib/xtables/libxt_policy.so' is ok |
5855 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 0f:3b:87:ef:36:df:bb:c0:14:1b:bd:cd:be:fc:c0:19:65:77:da:c8 for '/lib/xtables/libxt_standard.so' is ok |
5856 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] c8:e8:88:e5:1a:74:82:31:13:c1:a8:ca:8a:af:7a:e3:db:30:b4:fc for '/lib/modules/3.18.13-v7+/kernel/net/netfilter/x_tables.ko' is ok |
5857 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 99:df:b9:61:2f:13:cc:45:a7:57:b1:81:d9:2a:ae:9f:e0:4d:b9:51 for '/lib/modules/3.18.13-v7+/kernel/net/ipv4/netfilter/ip_tables.ko' is ok |
5858 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] f6:ae:e7:d5:86:17:27:8e:4d:bc:c0:7f:46:21:d0:d4:db:8f:e5:0e for '/lib/modules/3.18.13-v7+/kernel/net/ipv4/netfilter/iptable_filter.ko' is ok |
5859 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 84:05:c8:02:f0:74:c8:3b:1b:4f:c2:1a:e9:e1:44:ab:03:2c:2c:c7 for '/lib/modules/3.18.13-v7+/kernel/net/netfilter/xt_policy.ko' is ok |
5860 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 3b:a8:51:c4:5d:25:30:89:9b:39:47:24:2c:de:f8:d9:75:eb:e7:fe for '/usr/bin/logger' is ok |
5861 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] a5:74:29:0b:cb:20:3f:bc:b3:3a:0c:9e:0f:7c:b1:1a:da:43:7c:69 for '/usr/lib/python2.7/lib-dynload/_io.so' is ok |
5862 | 2 | Andreas Steffen | Aug 15 14:46:24 raspi3 charon: 07[PTS] 07:43:59:13:7b:81:55:e8:c7:74:c2:8b:0a:28:20:f8:19:29:1f:bc for '/usr/lib/python2.7/lib-dynload/datetime.so' is ok |
5863 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 8e:70:0f:f1:38:a3:6f:5d:8c:f9:39:c7:a1:6a:2a:b2:2a:8f:de:d7 for '/usr/lib/python2.7/lib-dynload/_ssl.so' is ok |
5864 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 04:65:4f:bc:43:25:8f:d6:ca:e1:d7:97:da:f2:c2:f3:59:0c:f6:f9 for '/usr/lib/python2.7/lib-dynload/_json.so' is ok |
5865 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 1b:c7:6f:79:91:0c:44:18:1b:39:2a:b6:c7:f1:6b:c9:8a:90:4f:63 for '/usr/lib/python2.7/lib-dynload/_hashlib.so' is ok |
5866 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 6c:57:02:3e:56:c7:93:4b:78:ba:7e:7b:78:f9:9d:5e:b8:c0:b9:89 for '/usr/lib/python2.7/lib-dynload/_sqlite3.so' is ok |
5867 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 05:82:f5:f7:b7:1b:44:02:aa:be:fe:ff:60:10:a9:3f:40:8e:52:7f for '/usr/local/lib/python2.7/dist-packages/lxml/etree.so' not found |
5868 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] f4:f5:89:83:9b:a7:e4:11:b5:9a:57:3b:58:f8:09:32:7f:70:6a:51 for '/usr/lib/arm-linux-gnueabihf/libxslt.so.1.1.26' is ok |
5869 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] e6:76:45:e9:31:8c:52:a9:ce:e0:18:6d:4e:7c:19:3a:07:cf:6f:8f for '/usr/lib/arm-linux-gnueabihf/libexslt.so.0.8.15' is ok |
5870 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 7c:56:d5:be:6f:ea:1f:5b:69:80:7e:e9:22:9d:a5:f6:28:85:e5:5d for '/usr/lib/arm-linux-gnueabihf/libxml2.so.2.8.0' is ok |
5871 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 53:f5:1f:0e:d6:d4:db:f4:af:3f:e0:4d:7f:9a:f4:fe:0b:41:1f:d9 for '/lib/arm-linux-gnueabihf/liblzma.so.5.0.0' is ok |
5872 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] dc:22:68:7d:46:dd:5d:f4:ac:65:c4:73:91:41:46:d6:f9:53:96:6b for '/usr/lib/python2.7/lib-dynload/_elementtree.so' is ok |
5873 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 37:e3:d4:53:cc:47:e4:9e:b1:a9:7d:89:cb:10:67:59:b1:35:3e:38 for '/usr/lib/python2.7/lib-dynload/pyexpat.so' is ok |
5874 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 34:c4:93:e8:ef:14:6d:16:44:dd:bb:e5:95:d5:86:f8:c8:f7:13:e3 for '/etc/cron.hourly/fake-hwclock' is ok |
5875 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] a1:eb:ae:77:6e:40:be:b5:fa:ae:29:e0:36:d3:b8:fa:42:c9:5d:ee for '/bin/less' is ok |
5876 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] a4:4e:1b:ca:62:3d:3f:cd:81:62:d2:8d:d5:04:5c:04:26:1e:53:19 for '/usr/bin/scp' is ok |
5877 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] e9:44:14:7c:96:64:f2:f4:fd:f8:d5:62:ff:0b:4a:82:b9:8a:2f:67 for '/usr/bin/ssh' is ok |
5878 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 75:db:9a:27:72:da:22:03:fd:c6:f1:fe:4a:8e:5d:7e:6f:42:70:4b for '/usr/bin/sqlite3' is ok |
5879 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] d2:a5:97:75:4b:9e:f6:db:c8:cb:52:a9:29:1e:6f:6e:89:18:a5:f2 for '/lib/arm-linux-gnueabihf/libreadline.so.6.2' is ok |
5880 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 67:1d:52:1e:15:8a:b4:e1:17:80:41:95:ba:3d:40:5b:1c:b4:57:34 for '/usr/bin/vim.basic' is ok |
5881 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] d4:ce:58:6c:ae:fb:1d:76:92:b0:a3:ea:33:73:1f:53:26:69:b6:e2 for '/usr/lib/arm-linux-gnueabihf/libgpm.so.2' is ok |
5882 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 15:fb:dd:00:0a:db:b6:73:2d:63:62:e0:ac:b6:32:b7:62:f4:1b:fd for '/usr/lib/arm-linux-gnueabihf/gconv/ISO8859-1.so' not found |
5883 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 1a:71:6c:9c:9f:6d:4f:2e:4a:88:42:49:b0:00:8d:5e:ec:05:7e:eb for '/usr/sbin/service' is ok |
5884 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] e8:f5:f2:02:d4:c1:18:d5:f7:55:5c:2d:4a:a0:d3:12:d4:13:06:ce for '/bin/cp' is ok |
5885 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 55:f4:cd:fd:82:d2:99:e1:33:b6:82:67:95:e6:5d:03:5c:bb:d2:c2 for '/usr/bin/clear_console' is ok |
5886 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 7a:fc:49:eb:8f:e6:74:3f:ac:91:41:a2:c0:ac:92:28:33:fd:7b:33 for '/usr/libexec/ipsec/stroke' is ok |
5887 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] constructed PCR Composite: => 29 bytes @ 0x125488 |
5888 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 0: 00 03 00 04 00 00 00 00 14 7D C1 1B 87 CF 2E B8 .........}...... |
5889 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 16: 5C 1B 52 99 B8 BD 11 D9 B9 8A 31 8E 61 \.R.......1.a |
5890 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] constructed PCR Composite hash: c4:6a:f4:fa:82:39:a6:7a:80:fe:4e:d2:7e:a5:05:b3:1e:60:4f:ff |
5891 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] constructed TPM Quote Info: => 52 bytes @ 0x1954c8 |
5892 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 0: 00 36 51 55 54 32 B2 E0 AB DF 89 C5 1D B2 A3 51 .6QUT2.........Q |
5893 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 16: FD A9 C8 3B F8 7F 68 50 6C DE 00 03 00 04 00 01 ...;..hPl....... |
5894 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 32: C4 6A F4 FA 82 39 A6 7A 80 FE 4E D2 7E A5 05 B3 .j...9.z..N.~... |
5895 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] 48: 1E 60 4F FF .`O. |
5896 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[IMV] received PCR Composite matches constructed one |
5897 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[IMV] TPM Quote Info signature verification successful |
5898 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[PTS] processed 450 IMA file evidence measurements: 385 ok, 65 unknown, 0 differ, 0 failed |
5899 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[IMV] IMV 1 handled TPMRA workitem 18: allow - processed 450 IMA file evidence measurements: 385 ok, 65 unknown, 0 differ, 0 failed |
5900 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] creating PA-TNC message with ID 0x4077e3ed |
5901 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] creating PA-TNC attribute type 'IETF/Assessment Result' 0x000000/0x00000009 |
5902 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] creating PB-PA message type 'TCG/PTS' 0x005597/0x00000001 |
5903 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] IMV 1 provides recommendation 'allow' and evaluation 'compliant' |
5904 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] TNC server is handling outbound connection |
5905 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[IMV] policy: recommendation for access requestor 10.10.1.40 is allow |
5906 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[IMV] policy: imv_policy_manager stop successful |
5907 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[IMV] IMV 1 "Attestation" changed state of Connection ID 2 to 'Allowed' |
5908 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] PB-TNC state transition from 'Server Working' to 'Decided' |
5909 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] creating PB-TNC RESULT batch |
5910 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] adding IETF/PB-PA message |
5911 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] adding IETF/PB-Assessment-Result message |
5912 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] adding IETF/PB-Access-Recommendation message |
5913 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[TNC] sending PB-TNC RESULT batch (88 bytes) for Connection ID 2 |
5914 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
5915 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[ENC] generating IKE_AUTH request 111 [ EAP/RES/TTLS ] |
5916 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 07[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (256 bytes) |
5917 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (176 bytes) |
5918 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[ENC] parsed IKE_AUTH response 111 [ EAP/REQ/TTLS ] |
5919 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[IKE] received tunneled EAP-TTLS AVP [EAP/REQ/PT] |
5920 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[TNC] received TNCCS batch (8 bytes) |
5921 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[TNC] TNC server is handling inbound connection |
5922 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[TNC] processing PB-TNC CLOSE batch for Connection ID 2 |
5923 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[TNC] PB-TNC state transition from 'Decided' to 'End' |
5924 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[TNC] TNC client is handling outbound connection |
5925 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[TNC] PB-TNC state transition from 'Decided' to 'End' |
5926 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[TNC] creating PB-TNC CLOSE batch |
5927 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[TNC] sending PB-TNC CLOSE batch (8 bytes) for Connection ID 1 |
5928 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[IKE] sending tunneled EAP-TTLS AVP [EAP/RES/PT] |
5929 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[ENC] generating IKE_AUTH request 112 [ EAP/RES/TTLS ] |
5930 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 11[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (176 bytes) |
5931 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 05[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
5932 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 05[ENC] parsed IKE_AUTH response 112 [ EAP/SUCC ] |
5933 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 05[IKE] EAP method EAP_TTLS succeeded, MSK established |
5934 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 05[IKE] authentication of 'raspi3.example.com' (myself) with EAP |
5935 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 05[ENC] generating IKE_AUTH request 113 [ AUTH ] |
5936 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 05[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (112 bytes) |
5937 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (240 bytes) |
5938 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[ENC] parsed IKE_AUTH response 113 [ AUTH N(USE_TRANSP) SA TSi TSr N(AUTH_LFT) N(MOBIKE_SUP) N(NO_ADD_ADDR) ] |
5939 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IKE] authentication of 'raspi4.example.com' with EAP successful |
5940 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IMV] IMV 1 "Attestation" deleted the state of Connection ID 2 |
5941 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[TNC] removed TNCCS Connection ID 2 |
5942 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IMC] IMC 1 "OS" deleted the state of Connection ID 1 |
5943 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IMC] IMC 2 "Attestation" deleted the state of Connection ID 1 |
5944 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[TNC] removed TNCCS Connection ID 1 |
5945 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IKE] IKE_SA peer[1] established between 10.10.1.39[raspi3.example.com]...10.10.1.40[raspi4.example.com] |
5946 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IKE] scheduling reauthentication in 10132s |
5947 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IKE] maximum IKE_SA lifetime 10672s |
5948 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IKE] CHILD_SA peer{1} established with SPIs c12c1aae_i ce21eedf_o and TS 10.10.1.39/32 === 10.10.1.40/32 |
5949 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IKE] received AUTH_LIFETIME of 10143s, scheduling reauthentication in 9603s |
5950 | 2 | Andreas Steffen | Aug 15 14:46:25 raspi3 charon: 12[IKE] peer supports MOBIKE |
5951 | 2 | Andreas Steffen | Aug 15 14:49:04 raspi3 charon: 13[CFG] received stroke: terminate 'peer' |
5952 | 2 | Andreas Steffen | Aug 15 14:49:04 raspi3 charon: 15[IKE] deleting IKE_SA peer[1] between 10.10.1.39[raspi3.example.com]...10.10.1.40[raspi4.example.com] |
5953 | 2 | Andreas Steffen | Aug 15 14:49:04 raspi3 charon: 15[IKE] sending DELETE for IKE_SA peer[1] |
5954 | 2 | Andreas Steffen | Aug 15 14:49:04 raspi3 charon: 15[ENC] generating INFORMATIONAL request 114 [ D ] |
5955 | 2 | Andreas Steffen | Aug 15 14:49:04 raspi3 charon: 15[NET] sending packet: from 10.10.1.39[4500] to 10.10.1.40[4500] (80 bytes) |
5956 | 2 | Andreas Steffen | Aug 15 14:49:05 raspi3 charon: 09[NET] received packet: from 10.10.1.40[4500] to 10.10.1.39[4500] (80 bytes) |
5957 | 2 | Andreas Steffen | Aug 15 14:49:05 raspi3 charon: 09[ENC] parsed INFORMATIONAL response 114 [ ] |
5958 | 2 | Andreas Steffen | Aug 15 14:49:05 raspi3 charon: 09[IKE] IKE_SA deleted |
5959 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[DMN] signal of type SIGINT received. Shutting down |
5960 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[IMC] IMC 2 "Attestation" terminated |
5961 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[IMC] IMC 1 "OS" terminated |
5962 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[IMV] IMV 1 "Attestation" terminated |
5963 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[PTS] removed TCG functional component namespace |
5964 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[PTS] removed ITA-HSR functional component namespace |
5965 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[TNC] removed IETF attributes |
5966 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[TNC] removed ITA-HSR attributes |
5967 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[TNC] removed TCG attributes |
5968 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[LIB] libimcv terminated |
5969 | 2 | Andreas Steffen | Aug 15 14:49:08 raspi3 charon: 00[KNL] received netlink error: Address family not supported by protocol (97) |
5970 | 1 | Andreas Steffen | </pre> |