TCP/IP port scanner
Project description
Spartan
What is this project?
Spartan is a versatile and powerful port scanner written in Python. It allows users to quickly and efficiently scan network ports. Spartan was designed so that users can easily write custom scripts to enhance the scanner's capabilities, tailoring it to their specific needs.
Installation
Installing from PyPI
You can install Spartan from PyPI:
pip install spartan-scan
Installing from repository
You can also install Spartan directly from the repository:
- Clone the repository from GitHub
git clone https://github.com/WaletLab/Spartan.git
- Navigate to the project directory
cd Spartan
- Install the package using
pip
pip install .
Usage
To use Spartan, simply run the following command in your terminal:
# spartan [OPTIONS] COMMAND [ARGS]...
Spartan requires root privileges to perform certain operations. Please run it as root or use
sudo
to ensure it has the necessary permissions.
Port scan
Available scan modes:
- TCP SYN scan
# spartan syn [ARGS]...
- TCP FIN scan
# spartan fin [ARGS]...
- TCP NULL scan
# spartan null [ARGS]...
- TCP XMAS scan
# spartan xmas [ARGS]...
- UDP scan
# spartan udp [ARGS]...
Examples
Perform a TCP SYN scan on a target host, targeting the most commonly used TCP ports by default.
# spartan syn --host 1.2.3.4
Perform a UDP scan on a target host, targeting all possible ports.
# spartan udp --host 1.2.3.4 --port a
Please note that scanning all possible ports can be extremely time-consuming and may encounter disruptions due to firewalls and other unforeseen circumstances. Please consider these factors when initiating such extensive scans.
Perform a TCP SYN scan on a target host, targeting only first 1024 ports and setting a custom retry timeout of 2 miliseconds.
# spartan syn --host 1.2.3.4 --port 1:1024 --retry-timeout 2
Perform a TCP SYN scan on a target host and save results to .csv file.
# spartan syn --host 1.2.3.4 --output
Perform a UDP scan on a target host without displaying banner.
# spartan --basic udp --host 1.2.3.4
Note: --basic flag goes before scan mode!
Spartan is also capable of handling domain names.
# spartan syn --host waletlab.com
For more details please refer to --help
# spartan --help
# spartan <scan mode> --help
Scripts
Spartan provides the flexibility to extend its functionality through custom python scripts. Users can leverage global variables host
and result
within their scripts to interact with scan results and customize behavior as needed.
Global variables
host
- Represents the target host IP addressresult
: Holds the scan results, which is a dictionary where the keys are port numbers (integers) and the values arePortResult
objects.PortResult
attributes:port
: Integer representing the port number.status
: String indicating the status of the port (e.g., "OPEN", "CLOSED").detail
: Additional details about the port status.
Default scripts
Spartan comes with a set of default scripts out of the box. You can easily list them using the following command:
# spartan scripts
These default scripts provide useful functionalities and examples that you can leverage directly or use as references when writing your own custom scripts.
Using scripts
To use a default script, simply append the --script
flag followed by the name of the script when executing Spartan:
# spartan syn --host 1.2.3.4 --script ssl_info.py
To use your own scripts, please follow the --script
flag with the full path to a script file:
# spartan syn --host 1.2.3.4 --script /path/to/your_script.py
Contributing
We welcome contributions from the community! Here’s how you can help:
Reporting Bugs
If you find a bug, please report it by opening an issue in the Issues section. Before reporting, please check if the bug has already been reported.
Suggesting Enhancements
Have a feature request or enhancement idea? Please open an issue with the tag enhancement
. Be sure to include as much detail as possible.
Submitting Pull Requests
- Fork the Repository: Click the "Fork" button at the top right of the repository page.
- Clone Your Fork and create a new branch for your changes.
- Make Changes and commit them with clear messages.
- Push to Your Fork and open a pull request.
For detailed instructions, refer to GitHub's guide on contributing to projects.
License
Spartan is licensed under the GPL-3.0 license. See the LICENSE file for more details.
Disclaimer
This tool is intended for legal and ethical use only. We do not condone or take any responsibility for any illegal activities carried out with this tool.
Contact
For any questions or feedback, please open an issue or contact the maintainers at kontakt@waletlab.com.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for spartan_scan-2.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac4cf68542d3ba96472c5baa04d82871324acbe12bcd8d39caf2a8fdd469c583 |
|
MD5 | 407041533853db3c98b2a5d97245c099 |
|
BLAKE2b-256 | 24d386573ea0cb5c31b53fd6e12a6ffc5f6ee43cb23dddbecc14471208cf62a2 |