How to Fix “ModuleNotFoundError: No module named ‘pdfkit’” in Mr. Holmes (Kali Linux)
LearnSkillsHub is a technology learning blog focused on providing simple and practical tutorials for beginners. This blog covers ethical hacking, Kali Linux guidance, cyber security basics, networking concepts, and modern technology tutorials. Our goal is to make complex technical topics easy to understand through clear, step-by-step explanations and ethical learning practices. OFFICIAL YOUTUBE :-https://youtube.com/@learnskills-rk7rv?si=zeXay9-j6APMVbAp
Fsociety is a free and open-source tool available on GitHub which is used as an information-gathering tool. Fsociety is used to scanning websites for information gathering and finding vulnerabilities in websites and web apps. Fsociety is one of the easiest and useful tools for performing reconnaissance on websites and web apps. The Fsociety tool is also available for Linux, Windows, and Android phones ( termux ), which is coded in both bash and Python. Fsociety provides a command-line interface that you can run on Kali Linux. This tool can be used to get information about our target(domain). We can target any domain using Fsociety. The interactive console provides a number of helpful features, such as command completion and contextual help. Fsociety is based upon Mr. Robotincludes series.
1. Information gathering
The first step to security assessment or ethical hacking is collecting all the possible information about the target, and that is why this Fsociety provides some famous information-gathering tools such as:
2. Password Attacks
For performing any kind of password attack, Fsociety has mainly 2 tools. Those are Cupp – for generating password lists, Nc rack – network Authentication protocol.
3. Wireless Testing
It also has tools such as Reaver Pixiewps and Bluetooth Honeypot for performing any kind of wireless attack.
4. Exploitation Tools
After you are done with information gathering and finding any kind of vulnerabilities, the next thing you have to do is to exploit those vulnerabilities, so for exploiting the vulnerabilities Fsociety provides the following tools:
5. Sniffing & Spoofing
Fsociety lets you perform Sniffing and Spoofing by providing several numbers of tools such as:
6. Web Hacking
Web hacking and Web pentestings tools are also available in Fsociety These are the following tools:
7. Private Web Hacking
It also includes some private Web hacking tools such as:
8. Post-Exploitation
After you are done with exploitation you have to perform some post-exploitation attacks to maintain persistent access to the system according to your need so for that also Fsociety provides some tools such as Shell Checker, POET, Weema.
9. Contributors – Contain a contributors list.
10. Install & Update is used to update the framework.
Step 1: Open your kali linux operating system and use the following command to install the tool from GitHub.
git clone https://github.com/Manisso/fsociety.git
Step 2: The tool has been downloaded and now move it to the directory using the following command.
cd fsociety ls
Step 3: Now install the tool using the following command.
./install.sh
Step 4: All the dependencies have been downloaded and now run the tool using the following command.
./fsociety.py
Example 1: Use the Fsociety framework to perform reconnaissance in a domain.
1
After that, select nmap.
1
enter the IP address of the target.
Type 2 for port scan.
2
The framework has started nmap and this is how you can also perform on your target ip address.
Example 2: Use the Fsociety framework tool to find the IP address of a domain.
Select the host for IP tool in the framework, then enter the hostname. The tool will give you the IP address of the host.
Comments
Post a Comment