This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| CVE-2025-55182 Scanner | |
| Scans GitHub organization repositories for vulnerable React Server Components dependencies | |
| """ | |
| import os | |
| import json | |
| import subprocess | |
| import tempfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client"; | |
| import { useRouter } from "next/navigation"; | |
| import SectorCard from "@/components/ui/sectorCard"; | |
| import React, { useState, useEffect } from "react"; | |
| import { clearStorage } from "@/utils/handles/handleStorage"; | |
| const AuthSectorCard: React.FC<{ | |
| financial: string[]; | |
| otherEntities: []; | |
| solidarity: string[]; |