Sherlock: Adding to bin

Created on 20 Aug 2020  路  2Comments  路  Source: sherlock-project/sherlock

How would I add sherlock to the bin so I could type sherlock user1 user2 anywhere on my Kali VM.

question

Most helpful comment

This will be possible after the restructure is has been completed. But in the meantime, you can follow this hacky method to achieve the same result.

Open up your terminal and run the following commands:

$ mkdir -p ~/bin
$ git clone https://github.com/sherlock-project/sherlock ~/bin/sherlock

Now we need to create an alias. Open up ~/.bashrc using your favorite text editor and add the text below to the file:

alias sherlock="$(which python3) ~/bin/sherlock/sherlock"

Close your terminal and reopen it. Now you will be able to run Sherlock by just running sherlock

Let me know how this goes :)

All 2 comments

This will be possible after the restructure is has been completed. But in the meantime, you can follow this hacky method to achieve the same result.

Open up your terminal and run the following commands:

$ mkdir -p ~/bin
$ git clone https://github.com/sherlock-project/sherlock ~/bin/sherlock

Now we need to create an alias. Open up ~/.bashrc using your favorite text editor and add the text below to the file:

alias sherlock="$(which python3) ~/bin/sherlock/sherlock"

Close your terminal and reopen it. Now you will be able to run Sherlock by just running sherlock

Let me know how this goes :)

Since I got a thumbs from you, I assume it must've worked

Was this page helpful?
0 / 5 - 0 ratings

Related issues

manishyadav1400 picture manishyadav1400  路  7Comments

termashacker69 picture termashacker69  路  6Comments

plgrazon picture plgrazon  路  6Comments

bialybudyn picture bialybudyn  路  6Comments

senthilnayagam picture senthilnayagam  路  4Comments