Top Related Projects
E-mails, subdomains and names Harvester - OSINT
Incredibly fast crawler designed for OSINT.
Information gathering framework for phone numbers
Hunt down social media accounts by username across social networks
SpiderFoot automates OSINT for threat intelligence and mapping your attack surface.
Accurately Locate Smartphones using Social Engineering
Quick Overview
Th3inspector is a multi-purpose information gathering tool designed for penetration testing and vulnerability assessment. It automates the process of collecting various types of information about a target, including domain details, IP addresses, web technologies, and potential security vulnerabilities.
Pros
- Comprehensive information gathering capabilities in a single tool
- User-friendly command-line interface
- Supports multiple types of targets (domains, IP addresses, etc.)
- Regularly updated with new features and improvements
Cons
- Potential for misuse if not used responsibly
- May trigger security alerts on target systems
- Some features may require additional dependencies or API keys
- Limited documentation for advanced usage scenarios
Getting Started
To get started with Th3inspector:
-
Clone the repository:
git clone https://github.com/Moham3dRiahi/Th3inspector.git
-
Navigate to the Th3inspector directory:
cd Th3inspector
-
Make the script executable:
chmod +x install.sh
-
Run the installation script:
./install.sh
-
Launch Th3inspector:
perl Th3inspector.pl
-
Follow the on-screen prompts to select your target and desired information gathering options.
Note: Ensure you have the necessary permissions and are complying with all applicable laws and regulations when using this tool.
Competitor Comparisons
E-mails, subdomains and names Harvester - OSINT
Pros of theHarvester
- More actively maintained with frequent updates
- Supports a wider range of search engines and data sources
- Better documentation and usage instructions
Cons of theHarvester
- More complex setup and dependencies
- Requires API keys for some features
- Slower execution compared to Th3inspector
Code Comparison
Th3inspector (Bash):
#!/bin/bash
echo "Starting Th3inspector..."
# Simple command execution
./th3inspector -d example.com
theHarvester (Python):
from theHarvester.discovery import *
from theHarvester.discovery.constants import *
search = googlesearch.search_google(word="example.com", limit=100, start=0, stop=100, pause=2.0)
print(search.process())
TheHarvester offers more granular control and integration possibilities due to its Python implementation, while Th3inspector provides a simpler bash-based approach. TheHarvester's code structure allows for easier customization and extension of functionality, but it comes at the cost of increased complexity. Th3inspector's simpler design makes it more accessible for quick scans and basic information gathering tasks.
Incredibly fast crawler designed for OSINT.
Pros of Photon
- More actively maintained with recent updates
- Broader functionality for web reconnaissance and information gathering
- Better documentation and usage instructions
Cons of Photon
- More complex setup and dependencies
- Steeper learning curve for beginners
- May be overkill for simple information gathering tasks
Code Comparison
Th3inspector (Bash):
#!/bin/bash
# Simple usage
./Th3inspector -t example.com
Photon (Python):
# More advanced usage with multiple options
python3 photon.py -u https://example.com --keys --dns --wayback --clone
Th3inspector is a simpler tool written in Bash, focusing on basic information gathering. Photon, written in Python, offers more advanced features and customization options for web reconnaissance.
Photon provides a more comprehensive set of tools for web crawling, data extraction, and vulnerability assessment. However, this increased functionality comes at the cost of a more complex setup and usage process.
Th3inspector may be more suitable for quick, basic checks, while Photon is better suited for in-depth analysis and advanced users who require more detailed information gathering capabilities.
Information gathering framework for phone numbers
Pros of PhoneInfoga
- More actively maintained with regular updates
- Offers a web-based interface for easier use
- Supports scanning multiple numbers simultaneously
Cons of PhoneInfoga
- Requires more setup and dependencies
- Limited to phone number information gathering
- May have a steeper learning curve for beginners
Code Comparison
PhoneInfoga (Go):
func (s *Scanner) ScanNumber(number string) (*Number, error) {
n := NewNumber(number)
s.performChecks(n)
return n, nil
}
Th3inspector (Perl):
sub get_Phone_Info {
my $PhoneNumber = shift;
my $url = "http://apilayer.net/api/validate?access_key=$API&number=$PhoneNumber&country_code=&format=1";
my $response = $ua->get($url);
my $json = decode_json($response->content);
return $json;
}
PhoneInfoga uses Go and offers a more structured approach with object-oriented programming, while Th3inspector uses Perl and relies on external API calls for information gathering. PhoneInfoga's code appears more modular and easier to maintain, but Th3inspector's implementation is simpler and more straightforward for basic phone number validation.
Hunt down social media accounts by username across social networks
Pros of sherlock
- More active development with frequent updates and contributions
- Larger database of supported sites (350+)
- Better documentation and user guides
Cons of sherlock
- Slower execution due to more comprehensive checks
- Higher system requirements for installation and operation
Code comparison
Th3inspector:
perl Th3inspector.pl -u username
sherlock:
python3 sherlock.py username
Both tools use command-line interfaces, but sherlock is written in Python, while Th3inspector is primarily in Perl. sherlock's codebase is more modular and easier to extend, with separate files for site-specific checks.
sherlock offers more detailed output and supports various output formats (e.g., CSV, JSON), while Th3inspector provides a simpler text-based output.
Overall, sherlock is more feature-rich and actively maintained, making it a better choice for most users. However, Th3inspector may be preferable for those familiar with Perl or looking for a lightweight alternative.
SpiderFoot automates OSINT for threat intelligence and mapping your attack surface.
Pros of Spiderfoot
- More comprehensive and feature-rich OSINT automation tool
- Actively maintained with regular updates and a larger community
- Offers a web-based GUI for easier interaction and visualization
Cons of Spiderfoot
- More complex setup and configuration process
- Requires more system resources due to its extensive functionality
- Steeper learning curve for beginners
Code Comparison
Th3inspector (Bash script):
#!/bin/bash
# Simple usage example
echo "Enter domain:"
read domain
whois $domain
Spiderfoot (Python):
# Example of a module in Spiderfoot
class sfp_example(SpiderFootPlugin):
def handleEvent(self, event):
eventName = event.eventType
srcModuleName = event.module
eventData = event.data
# Plugin logic here
Th3inspector is a simpler Bash-based tool focusing on basic information gathering, while Spiderfoot is a more advanced Python-based framework with modular architecture and extensive capabilities for OSINT automation.
Accurately Locate Smartphones using Social Engineering
Pros of seeker
- More focused on geolocation tracking and device information gathering
- Provides a more user-friendly interface with customizable templates
- Actively maintained with regular updates and bug fixes
Cons of seeker
- Limited in scope compared to Th3inspector's broader information gathering capabilities
- Requires more setup and dependencies to run effectively
- May trigger antivirus software due to its nature
Code comparison
seeker:
def create_app():
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///database.db'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
return app
Th3inspector:
if [ -f /etc/os-release ]; then
. /etc/os-release
OS=$NAME
VER=$VERSION_ID
elif type lsb_release >/dev/null 2>&1; then
OS=$(lsb_release -si)
VER=$(lsb_release -sr)
The code snippets highlight the different approaches and languages used in each project. seeker utilizes Python with Flask for web functionality, while Th3inspector employs Bash scripting for system information gathering.
Both tools serve different purposes within the realm of information gathering and reconnaissance. seeker excels in geolocation tracking and device information collection, offering a more specialized approach. Th3inspector, on the other hand, provides a broader range of information gathering capabilities, making it more versatile for general reconnaissance tasks.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
ððð¥ð¥ð¥CHECK MY NEW PRO PRIVATE TOOL ð¥ð¥ð¥ð¥ðð(https://github.com/Moham3dRiahi/XAttackProV30)
Th3inspector Tool ðµï¸
Th3inspector ðµï¸ best tool for Information Gathering ð
â All in one tool for Information Gathering â
Th3inspector ðµï¸ best tool for Information Gathering ð
Screenshots
Video
Usage
Short Form | Long Form | Description |
---|---|---|
-i | --info | Website Information |
-n | --number | Phone Number Information |
-mx | --mailserver | Find IP Address And E-mail Server |
-w | --whois | Domain Whois Lookup |
-l | --location | Find Website/IP Address Location |
-c | --cloudflare | Bypass CloudFlare |
-a | --age | Domain Age Checker |
-ua | --useragent | User Agent Info |
-p | --port | Check Active Services On Resource |
-b | --bin | Credit Card Bin Checker |
-s | --subdomain | Subdomain Scanner |
-e | E-mail Address Checker | |
-cms | --cms | Content Management System Checker |
-h | --help | show the help message and exit |
Examples
- To list all the basic options and switches use -h switch:
perl Th3inspector.pl -h
- To Get Website Information:
perl Th3inspector.pl -i example.com
- To Get Phone Number Information :
perl Th3inspector.pl -n xxxxxxx
- To Find IP Address And E-mail Server:
perl Th3inspector.pl -mx example.com
- To Find Website Or IP Address Location :
perl Th3inspector.pl -l example.com
- To Get Real IP Of Website Using CloudFlare Protection
perl Th3inspector.pl -c example.com
Donations
Found XATTACKER cool? just drop a THANK YOU this will motivate me to create more exciting stuffs for you
ð§ Contact
You Want ASK About All My TOOLS Or BUY Tools/Exploits Private THIS IS ALL MY LINKS :
SCAN OR CLICK ON THE IMAGE
Installation Linux
git clone https://github.com/Moham3dRiahi/Th3inspector.git
cd Th3inspector
chmod +x install.sh && ./install.sh
Installation Android
Download Termux
git clone https://github.com/Moham3dRiahi/Th3inspector.git
cd Th3inspector
chmod +x install.sh && ./install.sh
Installation Windows
Download Perl
Download Th3inspector
cpan install JSON
Extract Th3inspector into Desktop
Open CMD and type the following commands:
cd Desktop/Th3inspector-master/
perl Th3inspector.pl
Version
Current version is 1.9 What's New⢠speed up
⢠Bug fixes
Top Related Projects
E-mails, subdomains and names Harvester - OSINT
Incredibly fast crawler designed for OSINT.
Information gathering framework for phone numbers
Hunt down social media accounts by username across social networks
SpiderFoot automates OSINT for threat intelligence and mapping your attack surface.
Accurately Locate Smartphones using Social Engineering
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot