Basic Website Portfolio

My Basic Website portfolio based around numerous things as learning projects

Nullsec-Public-Beta-Website-Tools [Demo]

The Nullsec Public Beta Website Tools is a collection of web-based tools designed for security researchers, developers, and anyone who needs to gather information about network-connected devices and infrastructure. The tools included in this collection are:

Tool Description API
IoT Search Using Shodan to search for internet-connected devices API HERE
Vulnerability Search Using Shodan to search for information about CVEs API HERE
IP Lookup Provides information about the ISP provider of an IP address NO API KEY NEEDED ✅
Whois Lookup Provides information about a domain name API HERE
Phone Number Lookup Provides information about a phone number API HERE

Installation

  1. Clone the repository to your local machine.
  2. Install Composer by following the instructions on getcomposer.org.
  3. In the root directory of the cloned repository, run composer install to install the required dependencies.
  4. Copy the .env.example file to .env.
  5. Set up API keys and other environment variables in the .env file. Make sure to replace the example values with your own values.
  6. Upload all files to your web host.
  7. Example .env file:
    SHODAN_API_KEY=Your_Shodan_API_Key
    WHOISXML_API_KEY=Your_WhoisXML_API_Key
    NUMBER_VERIFICATION_API_KEY=Your_Number_Verification_API_Key
    

    Usage

After completing the installation steps, the tools should be ready to use on your web host.

Footnote/s

This project uses environment variables stored in a .env file. It’s important to note that while this is a common way to store sensitive information like API keys and passwords, it’s not a foolproof method of securing them. For more information on how to secure sensitive data in your applications, see GitHub’s Guide to Securing Your Workflows & dotenv.org/docs/security.