How to Install and Run UserRecon Tool?
Last Updated :
05 Oct, 2021
UserRecon tool is used to find usernames across over 75 social networks. It is very useful when you are running an investigation to determine the usage of the same username across different social media platforms such as Twitter, Instagram, MySpace, Youtube, Reddit, WordPress, GitHub, and many more. With the push of a button, an OSINT investigator will be able to find whether the same username exists on different social media networks. It is a very convenient and easy-to-use tool.
Installation:
Step 1: Open your terminal and type the following command.
git clone https://github.com/issamelferkh/userrecon.git
Step 2: After cloning the tool, change the directory to UserRecon.
cd userrecon
Fig 1: UserRecon cloned and directory changed to UserRecon.
Step 3: Now list all hidden files using ls -la command in your terminal.
ls -la
Step 4: Change the permission of userrecon.sh.
chmod +x userrecon.sh
Step 5: After changing the permission of userrecon.sh, run the tool by the following command.
./userrecon.sh
Fig 2: UserRecon up and running.Usages:
After running the tool by the command, ./userrecon.sh, you will see a screen similar to the one shown above. Now just type in the username you want to search and see the magic happens.
Fig 3: Searching username 'Talha'.
As we can see, UserRecon is searching the username 'Talha' on all 75 sites and returning the link if it exists. All this data gets stored in Talha.txt file.
It can be accessed in any text editor. Suppose, we want to open it in vi editors, the command will be:
vi Talha.txt
Fig 4: Talha.txt file opened in vi editor.
We can open any of the links to see the profile on that social media network. To exit from vi editors, press shift + ZQ. As we can see from the above operations UserRecon can be a very useful and time-saving tool if someone wants to search for a username on social medial networks.
Similar Reads
How to Install Xcode Command Line Tools? Xcode has a bundle of tools, used for development by developers to build apps for Apple platforms. Xcode also, easily lets the user manage the entire development workflow, creating the app, testing the app, optimizing the app, and submitting it to the App Store. Xcode is an IDE(Integrated Developmen
5 min read
How To Install and Use Remmina on Ubuntu In today's digitally interconnected world, remote desktop software plays a pivotal role in various scenarios, from system administration to remote work. Among the plethora of options available, Remmina stands out as a robust, open-source remote desktop client specifically designed for Linux systems
5 min read
How to Install Anaconda on Windows Anaconda is a popular open-source distribution of Python and R and is widely used in the field of data science, machine learning and scientific computing. It contains Jupyter, Sypder, etc. that are well capable of handling a large number of data sets and processes as per user's need. It helps in sim
4 min read
How to Install, Configure and Use GIT on Ubuntu? Git is a powerful version control system widely used for tracking changes in source code during software development. This article will walk you through the steps to install, configure, and use Git on an Ubuntu system. Table of Content Installing Git with Default PackagesInstalling/Downloading Git f
5 min read
How to Install OSSEC Agent on Windows? OSSEC is an open-source Host dependent Intrusion detection software. OSSEC could be understood as Operating System Security. OSSEC is available for all major operating systems such as Linux, Windows, OS X, Solaris, and many other UNIX-based systems. OSSEC performs various operations to ensure securi
3 min read