2019-01-25 16:40:43 +01:00
|
|
|
---
|
|
|
|
description: |
|
|
|
|
The read file content is corrupted by error prints.
|
|
|
|
functions:
|
|
|
|
file-read:
|
|
|
|
- code: |
|
|
|
|
LFILE=file_to_read
|
|
|
|
ip -force -batch "$LFILE"
|
|
|
|
suid:
|
|
|
|
- code: |
|
|
|
|
LFILE=file_to_read
|
|
|
|
./ip -force -batch "$LFILE"
|
2019-03-12 12:51:10 +01:00
|
|
|
- description: This only works for Linux with CONFIG_NET_NS=y.
|
|
|
|
code: |
|
|
|
|
./ip netns add foo
|
|
|
|
./ip netns exec foo /bin/sh -p
|
|
|
|
./ip netns delete foo
|
2019-01-25 16:40:43 +01:00
|
|
|
sudo:
|
|
|
|
- code: |
|
|
|
|
LFILE=file_to_read
|
|
|
|
sudo ip -force -batch "$LFILE"
|
2019-03-12 12:51:10 +01:00
|
|
|
- description: This only works for Linux with CONFIG_NET_NS=y.
|
|
|
|
code: |
|
|
|
|
sudo ip netns add foo
|
|
|
|
sudo ip netns exec foo /bin/sh
|
|
|
|
sudo ip netns delete foo
|
2019-01-25 16:40:43 +01:00
|
|
|
---
|