Convert Figma logo to code with AI

Und3rf10w logokali-anonsurf

A port of ParrotSec's stealth and anonsurf modules to Kali Linux

1,520
458
1,520
56

Top Related Projects

Create multiple TOR instances with a load-balancing.

Quick Overview

Kali-anonsurf is a fork of the ParrotSec anonsurf package, modified to work with Kali Linux. It provides a suite of tools for anonymizing internet traffic, primarily using Tor, and includes features for DNS anonymization and MAC address spoofing.

Pros

  • Easy to use command-line interface for managing anonymous connections
  • Includes tools for DNS anonymization and MAC address spoofing
  • Compatible with Kali Linux, a popular penetration testing distribution
  • Actively maintained with regular updates

Cons

  • Limited to Tor network for anonymization, which may not be suitable for all use cases
  • Potential for misconfiguration if not used properly, which could lead to privacy leaks
  • May slow down internet connection due to routing through Tor network
  • Requires root privileges, which could be a security concern if compromised

Getting Started

To install and use kali-anonsurf:

# Clone the repository
git clone https://github.com/Und3rf10w/kali-anonsurf.git

# Navigate to the directory
cd kali-anonsurf

# Install the package
sudo ./installer.sh

# Start anonsurf
sudo anonsurf start

# Stop anonsurf
sudo anonsurf stop

# Check status
sudo anonsurf status

Note: Always ensure you understand the implications of using anonymizing tools and use them responsibly.

Competitor Comparisons

Create multiple TOR instances with a load-balancing.

Pros of multitor

  • More flexible and customizable, allowing for multiple Tor instances
  • Provides detailed logging and monitoring capabilities
  • Offers a wider range of features for advanced users

Cons of multitor

  • More complex setup and configuration process
  • Requires more system resources due to multiple Tor instances
  • May have a steeper learning curve for beginners

Code Comparison

multitor:

_init_function() {
  local _FUNCTION_ID="_init_function"
  local _STATE=0

  # shellcheck disable=SC2034
  _init_name="$(basename "$0")"
  _init_directory="/tmp"

kali-anonsurf:

function init {
    # Create directory structure for anonsurf
    if [ ! -d /etc/anonsurf/ ]; then
        mkdir /etc/anonsurf/
    fi

Both projects use shell scripting for initialization, but multitor's approach is more modular and structured, using local variables and function IDs. kali-anonsurf's init function is simpler and focuses on creating the necessary directory structure.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

kali-anonstealth

ParrotSec's anonsurf and stealth, ported to work with Kali Linux.

How to use this repo

This repo contains the sources of both the anonsurf and pandora packages from ParrotSec combined into one.

Modifications have been made to use the DNS servers of Private Internet Access (instead of FrozenDNS), and fixes for users who don't use the resolvconf application. I have removed some functionality such as the gui and iceweasel in ram.

This repo can be compiled into a deb package to correctly install it on a Kali system.

The easiest way to get this working is to just run the installer. See the installation section for further info.

NOTE: This may work with any debian/ubuntu system, but this has only been tested to work on a kali-rolling amd64 system

Usage

Pandora

Pandora automatically overwrites the RAM when the system is shutting down. Pandora can also be ran manually:

pandora bomb

NOTE: This will clear the entire system cache, including active SSH tunnels or sessions.

anonsurf

Anonsurf will anonymize the entire system under TOR using IPTables. It will also allow you to start and stop i2p as well.

NOTE: DO NOT run this as service anonsurf $COMMAND. Run this as anonsurf $COMMAND

Usage:
 anonsurf {start|stop|restart|change|status}

 start - Start system-wide anonymous
          tunneling under TOR proxy through iptables
 stop - Reset original iptables settings
          and return to clear navigation
 restart - Combines "stop" and "start" options
 change - Changes identity restarting TOR 
 status - Check if AnonSurf is working properly
----[ I2P related features ]----
 starti2p - Start i2p services
 stopi2p - Stop i2p services

Installation

This package comes with an installer that makes things extremely easy:

./installer.sh

Once the installer is complete, you will be able to use both the anonsurf and pandora modules.