it's 'container image', not 'Docker image'

This commit is contained in:
Ricard Bejarano 2019-04-23 14:07:08 +02:00
parent 2b35e34ea1
commit 86f5cba76c
No known key found for this signature in database
GPG key ID: 5A5105DD6B91CA19
2 changed files with 4 additions and 4 deletions

View file

@ -55,7 +55,7 @@ To check whether a binary in a container image has those mitigations enabled, us
```
usage: checksec.sh docker_image executable_path
Docker-based wrapper for checksec.sh.
Container-based wrapper for checksec.sh.
Requires a running Docker daemon.
Example:
@ -65,7 +65,7 @@ Example:
Extracts the '/nginx' binary from the 'ricardbejarano/nginx:glibc' image,
downloads checksec (github.com/slimm609/checksec.sh) and runs it on the
binary.
Everything runs inside Docker containers.
Everything runs inside containers.
```
#### Example:

View file

@ -3,7 +3,7 @@
usage() {
echo "usage: checksec.sh docker_image executable_path"
echo ""
echo "Docker-based wrapper for checksec.sh."
echo "Container-based wrapper for checksec.sh."
echo "Requires a running Docker daemon."
echo ""
echo "Example:"
@ -13,7 +13,7 @@ usage() {
echo " Extracts the '/nginx' binary from the 'ricardbejarano/nginx:glibc' image,"
echo " downloads checksec (github.com/slimm609/checksec.sh) and runs it on the"
echo " binary."
echo " Everything runs inside Docker containers."
echo " Everything runs inside containers."
exit 1
}