Sherlock: Find Usernames Across Social Networks (Version 0.7.5)
Sherlock: Find Usernames Across Social Networks (Version 0.7.9)
positional arguments:
positional arguments:
USERNAMES One or more usernames to check with social networks.
USERNAMES One or more usernames to check with social networks.
@ -97,7 +97,7 @@ optional arguments:
```
```
For example to search for an user:
For example to search for only one user:
```
```
python3 sherlock.py user123
python3 sherlock.py user123
@ -117,15 +117,15 @@ If you have docker installed you can build an image and run this as a container.
docker build -t mysherlock-image .
docker build -t mysherlock-image .
```
```
Once the image is built sherlock can be invoked by running the following:
Once the image is built, sherlock can be invoked by running the following:
```
```
docker run --rm -t mysherlock-image user123
docker run --rm -t mysherlock-image user123
```
```
The optional ```--rm``` flag removes the container filesystem on completion to prevent cruft build-up. See https://docs.docker.com/engine/reference/run/#clean-up---rm
The optional ```--rm``` flag removes the container filesystem on completion to prevent cruft build-up. See: https://docs.docker.com/engine/reference/run/#clean-up---rm
The optional ```-t``` flag allocates a pseudo-TTY which allows colored output. See https://docs.docker.com/engine/reference/run/#foreground
The optional ```-t``` flag allocates a pseudo-TTY which allows colored output. See: https://docs.docker.com/engine/reference/run/#foreground
It is possible to use the following command to access the saved results:
It is possible to use the following command to access the saved results:
@ -133,9 +133,9 @@ It is possible to use the following command to access the saved results:
docker run --rm -t -v "$PWD/results:/opt/sherlock/results" mysherlock-image -o /opt/sherlock/results/text.txt user123
docker run --rm -t -v "$PWD/results:/opt/sherlock/results" mysherlock-image -o /opt/sherlock/results/text.txt user123
```
```
The ```-v "$PWD/results:/opt/sherlock/results"``` option tells docker create (or use) the folder `results` in the
The ```-v "$PWD/results:/opt/sherlock/results"``` option tells docker to create (or use) the folder `results` in the
present working directory and to mount it at `/opt/sherlock/results` on the docker container.
present working directory and to mount it at `/opt/sherlock/results` on the docker container.
The `-o /opt/sherlock/results/text.txt` option tells `sherlock` to output the result
The `-o /opt/sherlock/results/text.txt` option tells `sherlock` to output the result.
Or you can simply use "Docker Hub" to run `sherlock`:
Or you can simply use "Docker Hub" to run `sherlock`:
```
```
@ -154,7 +154,7 @@ to understand the issues.
If you are contributing to Sherlock, then Thank You!
If you are contributing to Sherlock, then Thank You!
Before creating a pull request with new development, please run the tests
Before creating a pull request with new development, please run the tests
to ensure that all is well. It would also be a good idea to run the tests
to ensure that everything is working great. It would also be a good idea to run the tests
before starting development to distinguish problems between your
before starting development to distinguish problems between your