mirror of https://github.com/hyperledger/besu
Improve log of p2p messages (#5542)
* Improve log of p2p messages Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net> * [skip ci] Update ethereum/p2p/src/main/java/org/hyperledger/besu/ethereum/p2p/rlpx/wire/AbstractMessageData.java Co-authored-by: Gabriel Fukushima <gabrielfukushima@gmail.com> Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net> * Use a more flexible way to trim logged data Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net> * Sanitize user input before printing it in logs Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net> --------- Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net> Co-authored-by: Gabriel Fukushima <gabrielfukushima@gmail.com> Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com>pull/5573/head
parent
35ce57fa77
commit
c3ab8e017d
@ -0,0 +1,40 @@ |
||||
/* |
||||
* Copyright Hyperledger Besu Contributors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
package org.hyperledger.besu.ethereum.p2p.rlpx.wire; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
import java.util.List; |
||||
|
||||
import org.apache.tuweni.bytes.Bytes; |
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
class PeerInfoTest { |
||||
|
||||
@Test |
||||
public void toStringIsSanitized() { |
||||
final PeerInfo maliciousPeer = |
||||
new PeerInfo( |
||||
1, |
||||
"ab\nc", |
||||
List.of(Capability.create("c\ba\rp", 4)), |
||||
30303, |
||||
Bytes.fromHexStringLenient("0x1234")); |
||||
|
||||
final String toString = maliciousPeer.toString(); |
||||
|
||||
assertThat(toString).doesNotContain(List.of("\n", "\b", "\r")); |
||||
} |
||||
} |
Loading…
Reference in new issue