Lanet

A secure network communication library that enables reliable and protected message exchange between devices on the same network.

Key Features

Encrypted Communication

Protect your messages with AES-256-CBC encryption to ensure confidentiality during transmission.

Digital Signatures New in v0.2.1

Verify message authenticity and integrity with RSA-based digital signatures.

Benefits of Digital Signatures:

  • Authentication: Verify that the message came from the claimed sender
  • Data Integrity: Ensure the message hasn't been tampered with during transit
  • Non-repudiation: Senders cannot deny sending a message they signed
  • Protection against MITM attacks: Detect man-in-the-middle tampering attempts

Network Discovery

Automatically find active devices on your local network with advanced scanning capabilities.

Broadcasting

Send messages to all devices on your network simultaneously.

File Transfer New in v0.3.0

Securely transfer files between devices with encryption, digital signatures, and integrity verification.

Mesh Networking New in v0.4.0

Create resilient, decentralized mesh networks that enable communication between devices even without direct connectivity.

Benefits of Mesh Networking:

  • Decentralization: No central server or infrastructure needed
  • Resilience: Messages can route around failed nodes or connections
  • Extended Range: Devices can communicate beyond direct connection range
  • Scalability: Network grows stronger with more participating nodes
  • Self-healing: Network automatically adapts to changing conditions

Advanced Traceroute New in v0.5.1

Analyze network paths with multi-protocol traceroute capabilities to understand connectivity and troubleshoot network issues.

Features of Advanced Traceroute:

  • Multi-protocol support: Use ICMP, UDP, or TCP protocols for different network environments
  • Load balancing detection: Identify multi-path routing and load balancers in the network
  • Response time analysis: Measure latency at each hop in the network path
  • Customizable parameters: Adjust max hops, timeouts, and query count for different scenarios
  • Hostname resolution: Automatically resolve IP addresses to hostnames for easier identification
  • Fallback mechanism: Automatically uses system traceroute when elevated permissions aren't available

Command Line Interface

Note: All Lanet commands have detailed help available. Try lanet [command] --help for more options.

Digital Signature Commands New in v0.2.1

Generate a Key Pair

Create RSA keys for signing and verifying messages:

lanet keygen

Generate keys with custom options:

lanet keygen --bits 4096 --output ~/.lanet_keys
Key pair generated! Private key saved to: /home/user/.lanet_keys/lanet_private.key Public key saved to: /home/user/.lanet_keys/lanet_public.key IMPORTANT: Keep your private key secure and never share it. Share your public key with others who need to verify your messages.

Send a Signed Message

lanet send --target 192.168.1.5 --message "Signed message" --private-key-file lanet_private.key

Send a Signed & Encrypted Message

lanet send --target 192.168.1.5 --message "Secure signed message" --key "my_secret_key" --private-key-file lanet_private.key

Broadcast a Signed Message

lanet broadcast --message "Important announcement" --private-key-file lanet_private.key

Listen for and Verify Signed Messages

lanet listen --public-key-file lanet_public.key

Listen for Encrypted & Signed Messages

lanet listen --encryption-key "my_secret_key" --public-key-file lanet_public.key

Example output when receiving a signed message:

Message from 192.168.1.5: Content: Hello, this is a signed message Signature: ✓ VERIFIED ----------------------------------------

Basic Message Commands

Send a Message

lanet send --target 192.168.1.5 --message "Hello there!"

Send an Encrypted Message

lanet send --target 192.168.1.5 --message "Secret message" --key "my_secret_key"

Broadcast a Message

lanet broadcast --message "Announcement for everyone!"

Listen for Messages

lanet listen

Listen for Encrypted Messages

lanet listen --encryption-key "my_secret_key"

Network Discovery Commands

Scan Network

lanet scan --range 192.168.1.0/24

Detailed Network Scan

lanet scan --range 192.168.1.0/24 --verbose --threads 16 --timeout 2

Ping a Host

lanet ping 192.168.1.5

Continuous Ping

lanet ping 192.168.1.5 --continuous

Ping Multiple Hosts

lanet ping --hosts 192.168.1.5,192.168.1.6,192.168.1.7 --count 5

File Transfer Commands New in v0.3.0

Send a File

Send a file with encryption:

lanet send-file --target 192.168.1.5 --file document.pdf --key "my_secret_key"

Send a file with encryption and digital signature:

lanet send-file --target 192.168.1.5 --file document.pdf --key "my_secret_key" --private-key-file lanet_private.key

Receive Files

lanet receive-file --output ./downloads --encryption-key "my_secret_key"

With signature verification:

lanet receive-file --output ./downloads --encryption-key "my_secret_key" --public-key-file lanet_public.key

Example output during file transfer:

Receiving file: document.pdf from 192.168.1.5 Size: 1048576 bytes Transfer ID: 8a7b6c5d-4e3f-2g1h-0i9j-8k7l6m5n4o3p Progress: 75% (786432/1048576 bytes)

Mesh Network Commands New in v0.4.0

Start a Mesh Network Node

lanet mesh start

Start with Custom Settings

lanet mesh start --port 5050 --max-hops 15

Send a Message Through the Mesh

lanet mesh send --target a1b2c3d4-5678-90ef-ghij --message "Hello Mesh"

Send an Encrypted Mesh Message

lanet mesh send --target a1b2c3d4-5678-90ef-ghij --message "Secret mesh message" --key "secret-key"

View Mesh Network Information

lanet mesh info

Example output when viewing mesh info:

Mesh Node ID: 4f9a8b7c-6d5e-4f3e-2d1c-0b9a8b7c6d5e Connected nodes: b1c2d3e4-f5g6-7h8i-9j0k-l1m2n3o4p5q6 (192.168.1.5, last seen 12s ago) c5d4e3f2-g1h0-i9j8-k7l6-m5n4o3p2q1r0 (192.168.1.10, last seen 5s ago) Message cache: 24 messages

Traceroute Commands New in v0.5.0

Basic Traceroute (UDP protocol)

lanet traceroute --host google.com

Traceroute with ICMP Protocol

lanet traceroute --host google.com --protocol icmp

Traceroute with TCP Protocol

lanet traceroute --host github.com --protocol tcp

Customize Traceroute Parameters

lanet traceroute --host cloudflare.com --protocol tcp --max-hops 20 --timeout 2 --queries 4

Example output of a traceroute:

Tracing route to github.com using UDP protocol Maximum hops: 30, Timeout: 1s, Queries: 3 ====================================================================== TTL IP Address Hostname Response Time ---------------------------------------------------------------------- 1 192.168.1.1 router.home 2.34ms 2 172.16.42.1 isp-gateway.net 8.72ms 3 216.58.223.14 15.35ms 4 172.217.170.78 edge-router.google.com 22.89ms 5 * * Request timed out 6 140.82.121.4 github.com 45.23ms Destination unreachable ====================================================================== Trace complete.

Ruby Code Examples

require 'lanet'

# Send a message to a specific IP
sender = Lanet::Sender.new(5000)
sender.send_to('192.168.1.5', 'Hello from Ruby!')

# Listen for incoming messages
receiver = Lanet::Receiver.new(5000)
receiver.listen do |data, ip|
  puts "Received from #{ip}: #{data}"
end

# Work with encrypted messages
encrypted = Lanet::Encryptor.prepare_message('Secret message', 'my_encryption_key')
# Send the encrypted message
sender.send_to('192.168.1.5', encrypted)
require 'lanet'

# Generate RSA key pair for signing
key_pair = Lanet::Signer.generate_key_pair
private_key = key_pair[:private_key]
public_key = key_pair[:public_key]

# Set up sender and receiver
sender = Lanet::Sender.new(9000)
encryption_key = "secret-key-123"

# Send a signed and encrypted message
message = "Hello, secure world!"
prepared_message = Lanet::Encryptor.prepare_message(
  message,
  encryption_key,
  private_key
)
sender.send_to("192.168.1.5", prepared_message)

# Receive and verify messages
receiver = Lanet::Receiver.new(9000)
receiver.listen do |data, sender_ip|
  result = Lanet::Encryptor.process_message(
    data,
    encryption_key,
    public_key
  )

  puts "Message: #{result[:content]}"
  puts "Verified: #{result[:verified]}"
  puts "Verification status: #{result[:verification_status]}"
end
require 'lanet'

# Create a scanner and find active devices
scanner = Lanet::Scanner.new
active_hosts = scanner.scan('192.168.1.0/24', 1, 32, true)

active_hosts.each do |host|
  puts "Host: #{host[:ip]}, Hostname: #{host[:hostname]}"
  puts "Response time: #{host[:response_time]}ms"

  if host[:ports]
    puts "Open ports:"
    host[:ports].each do |port, service|
      puts "  - #{port}: #{service}"
    end
  end
end

# Ping a specific host
pinger = Lanet::Ping.new
result = pinger.ping_host('192.168.1.5', true)
puts "Host reachable: #{result[:status]}"
puts "Response time: #{result[:response_time]}ms"

# Broadcast a signed and encrypted message
encryption_key = "network-shared-key"
message = "Important system notification"
signed_message = Lanet::Encryptor.prepare_message(
  message,
  encryption_key,
  private_key
)
sender.broadcast(signed_message)
require 'lanet'

# Create a file transfer instance
file_transfer = Lanet.file_transfer

# Send a file with encryption
file_transfer.send_file(
  '192.168.1.5',
  'document.pdf',
  'encryption_key'
) do |progress, bytes, total|
  puts "Progress: #{progress}% (#{bytes}/#{total} bytes)"
end

# Send a file with encryption and digital signature
key_pair = Lanet::Signer.generate_key_pair
file_transfer.send_file(
  '192.168.1.5',
  'document.pdf',
  'encryption_key',
  key_pair[:private_key]
)

# Receive files
file_transfer.receive_file('./downloads', 'encryption_key') do |event, data|
  case event
  when :start
    puts "Receiving file: #{data[:file_name]}"
    puts "From: #{data[:sender_ip]}"
    puts "Size: #{data[:file_size]} bytes"
  when :progress
    puts "Progress: #{data[:progress]}%"
  when :complete
    puts "File saved to: #{data[:file_path]}"
  when :error
    puts "Error: #{data[:error]}"
  end
end
require 'lanet'

# Create and start a mesh network node
mesh = Lanet.mesh_network
mesh.start

puts "Mesh node started with ID: #{mesh.node_id}"

# Send a plain message through the mesh
begin
  message_id = mesh.send_message(
    "target-node-id-here",
    "Hello through the mesh network!"
  )
  puts "Message sent with ID: #{message_id}"
rescue Lanet::Mesh::Error => e
  puts "Message sending failed: #{e.message}"
end

# Send an encrypted and signed message
encryption_key = "mesh-encryption-key"
key_pair = Lanet::Signer.generate_key_pair
private_key = key_pair[:private_key]

begin
  message_id = mesh.send_message(
    "target-node-id-here",
    "Secure mesh message",
    encryption_key,
    private_key
  )
  puts "Secure message sent with ID: #{message_id}"
rescue Lanet::Mesh::Error => e
  puts "Secure message sending failed: #{e.message}"
end

# Examine mesh connections
puts "Connected to #{mesh.connections.size} nodes:"
mesh.connections.each do |node_id, info|
  puts "  • #{node_id} (#{info[:ip]}, last seen #{Time.now.to_i - info[:last_seen]}s ago)"
end

# Always stop the mesh node when done
mesh.stop
require 'lanet'

# Create a traceroute instance with UDP protocol (default)
tracer = Lanet.traceroute
results = tracer.trace('github.com')

# Display the results
puts "Path to github.com:"
results.each do |hop|
  if hop[:ip].nil?
    puts "Hop #{hop[:ttl]}: * * * Request timed out"
  else
    hostname = hop[:hostname] ? hop[:hostname] : ""
    time = hop[:avg_time] ? "#{hop[:avg_time]}ms" : "*"
    puts "Hop #{hop[:ttl]}: #{hop[:ip]} (#{hostname}) #{time}"
    
    # Check for load balancing (multiple IPs at the same hop)
    if hop[:all_ips] && hop[:all_ips].size > 1
      puts "  Multiple IPs detected (load balancing):"
      hop[:all_ips].each { |ip| puts "  - #{ip}" }
    end
  end
end

# Use ICMP protocol (may require root/admin privileges)
begin
  icmp_tracer = Lanet.traceroute(protocol: :icmp, max_hops: 10)
  icmp_tracer.trace('google.com')
rescue StandardError => e
  puts "Error with ICMP traceroute: #{e.message}"
end

# Use TCP protocol with custom parameters
tcp_tracer = Lanet.traceroute(protocol: :tcp, max_hops: 15, 
                             timeout: 2, queries: 4)
tcp_results = tcp_tracer.trace('cloudflare.com')

# Analyze a specific hop
interesting_hop = tcp_results[5] # Sixth hop
if interesting_hop && interesting_hop[:unreachable]
  puts "Destination unreachable at hop #{interesting_hop[:ttl]}"
end

Installation

Add this to your Gemfile:

gem 'lanet'

Or install directly:

gem install lanet

Documentation

For complete documentation, please visit the GitHub repository.