Add Debian packaging for Kali Linux submission

This commit is contained in:
Stalin
2026-04-14 23:49:01 +05:30
parent 817bf6c526
commit ce13e60740
16 changed files with 2874 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
NexTOR IP Changer - Tor Exit Node Rotator
Package initialization module
"""
__version__ = "1.1"
__author__ = "Stalin"
__license__ = "MIT"
__doc__ = """
NexTOR IP Changer: Automatically rotate Tor exit nodes and change IP address.
This package provides tools for rotating Tor exit nodes and dynamically
changing your public IP address, intended for privacy research, OSINT,
and security testing purposes.
"""
from .NexTOR import main, new_tor_identity, ma_ip
__all__ = ['main', 'new_tor_identity', 'ma_ip']