INNER CODE UNIT · Python

duration

samugit83/redamon · recon/main.py:1771

    duration = datetime.now() - start_time
    print("\n" + "═" * 63)
    if failed:
        print(f"[!][Batch] DOMAIN BATCH COMPLETE with {len(failed)}/{total} failed group(s): "
              f"{', '.join(failed)}")
    else:
        print(f"[✓][Batch] DOMAIN BATCH COMPLETE: {total}/{total} group(s) succeeded")
    print(f"[*][Batch] Total time: {duration}")
    print("═" * 63)

    # Only a batch where nothing succeeded is a failed run.
    return 1 if len(failed) == total else 0


def main():
    """
    Main entry point - runs the complete recon pipeline.

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…