Add Kali Linux packaging files and CI/CD pipeline

This commit is contained in:
Stalin
2026-04-15 00:03:15 +05:30
parent ce13e60740
commit a2207f32a8
6 changed files with 547 additions and 9 deletions
+82
View File
@@ -0,0 +1,82 @@
NexTOR IP Changer for Debian/Kali Linux
=========================================
INSTALLATION
============
apt-get install nextor
USAGE
=====
Basic usage:
nextor
Start/stop Tor service:
sudo systemctl start tor
sudo systemctl stop tor
sudo systemctl status tor
Check current exit IP:
nextor
CONFIGURATION
=============
Tor is configured via /etc/tor/torrc
To modify Tor settings:
sudo nano /etc/tor/torrc
sudo systemctl restart tor
DOCUMENTATION
==============
Man page:
man nextor
Online docs:
https://github.com/Stalin-143/NexTOR_IP_CHANGER
DEPENDENCIES
============
- Python 3.6+
- python3-requests (SOCKS support)
- python3-stem (Tor control)
- tor service
UPSTREAM
========
Homepage: https://github.com/Stalin-143/NexTOR_IP_CHANGER
GitLab: https://gitlab.com/5t4l1n/NexTOR_IP_CHANGER.git
TROUBLESHOOTING
===============
If tor service won't start:
sudo systemctl restart tor
sudo journalctl -xe
If IP isn't changing:
- Verify tor is running: systemctl status tor
- Check tor service logs: sudo tail -f /var/log/syslog
- Ensure SOCKS5 proxy is reachable on port 9050
SECURITY NOTES
==============
- This tool is for security testing and privacy purposes
- Always verify local laws regarding proxy usage
- Use responsibly and ethically
- Never use for illegal activities
-- Kali Linux <devel@kali.org> Mon, 14 Apr 2026 00:00:00 +0000
+9 -6
View File
@@ -1,3 +1,12 @@
nextor (1.1-1kali1) kali-dev; urgency=high
* Kali Linux package release
* Automated Tor exit node IP rotation
* Published to GitLab: https://gitlab.com/5t4l1n/NexTOR_IP_CHANGER.git
* Ready for Kali repository integration
-- Kali Linux <devel@kali.org> Mon, 14 Apr 2026 00:00:00 +0000
nextor (1.1-1) unstable; urgency=medium
* Initial Debian package release
@@ -8,9 +17,3 @@ nextor (1.1-1) unstable; urgency=medium
* Lightweight and efficient design
-- Stalin <stalin@example.com> Mon, 14 Apr 2026 00:00:00 +0000
nextor (1.0-1) UNRELEASED; urgency=low
* Initial release
-- Stalin <stalin@example.com> Mon, 14 Apr 2026 00:00:00 +0000
+4 -3
View File
@@ -1,11 +1,12 @@
Source: nextor
Maintainer: Stalin <stalin@example.com>
Maintainer: Kali Linux <devel@kali.org>
Uploaders: Stalin <stalin@example.com>
Section: utils
Priority: optional
Standards-Version: 4.6.1
Homepage: https://github.com/Stalin-143/NexTOR_IP_CHANGER
Vcs-Git: https://github.com/Stalin-143/NexTOR_IP_CHANGER.git
Vcs-Browser: https://github.com/Stalin-143/NexTOR_IP_CHANGER
Vcs-Git: https://gitlab.com/kali-team/packages/nextor.git
Vcs-Browser: https://gitlab.com/kali-team/packages/nextor
Build-Depends: debhelper-compat (= 13),
dh-python,
python3-setuptools,