https://cryptoooor.com/index.html

Submitted URL:
https://cryptoooor.com/index.html
Report Finished:

The outgoing links identified from the page

LinkText
https://x.com/pindjoufContact
https://twitter.com/pindjouf@pindjouf
https://ko-fi.com/pindjoufSupport me on Ko-fi

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetogglestring
documentPictureInPicturestring
onscrollendstring

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
warningother
URL
https://cryptoooor.com/dist/bundle.js
Text
using deprecated parameters for the initialization function; pass a single object instead

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <!--Basic Meta Tags -->
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="cryptoooor is a Rust-based web encryption tool for securely encrypting and decrypting files using AES-GCM.">
    <meta name="keywords" content="cryptoooor, encryption, AES-GCM, Rust, web tool, secure file encryption, WebAssembly">
    <meta name="author" content="pindjouf">
    <title>Cryptoooor</title>
    <link rel="stylesheet" href="./style.css">

    <!-- Open Graph / Facebook -->
    <meta property="og:type" content="website">
    <meta property="og:image" content="https://i.ibb.co/3cdGbwk/image.png">
    <meta property="og:url" content="https://pindjouf.github.io/cryptoooor/">
    <meta property="og:title" content="cryptoooor - Secure File Encryption">
    <meta property="og:description" content="cryptoooor is a Rust-based web encryption tool for securely encrypting and decrypting files using AES-GCM.">
    <meta property="og:site_name" content="cryptoooor">

    <!-- Twitter Meta Tags -->
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:image" content="https://i.ibb.co/3cdGbwk/image.png">
    <meta name="twitter:site" content="@pindjouf">
    <meta name="twitter:creator" content="@pindjouf">
    <meta name="twitter:title" content="cryptoooor - Secure File Encryption">
    <meta name="twitter:description" content="Rust-based web tool for securely encrypting and decrypting files with AES-GCM.">
    <meta name="twitter:image" content="https://pindjouf.github.io/cryptoooor/twitter-image.png">

    <!-- Favicon -->
    <link rel="icon" href="assets/favicon.png" type="image/x-icon">

    <!-- Other Optional Meta Tags -->
    <meta property="og:locale" content="en_US">
    <meta property="og:updated_time" content="2024-09-19T12:00:00+00:00">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="robots" content="index, follow">
</head>
<body>
    <div class="nav">
        <!--<img src="./assets/favicon.png" alt="Logo" class="nav-logo">-->
        <a href="index.html">Home</a>
        <a href="https://x.com/pindjouf">Contact</a>
        <hr>
    </div>
    <div class="container">
        <img class="logo" src="./assets/favicon.png" alt="Cryptoooor Logo">
        <h1>Cryptoooor</h1>
        <p>Get your files encrypted -- decrypted.</p>
        <hr>
        <div class="button-group">
            <input type="file" id="fileInput" accept="*/*">
            <button id="encryptBtn" disabled="">Encrypt File</button>
            <button id="decryptBtn" disabled="">Decrypt File</button>
            <button id="genKeyBtn">Generate Key</button>
        </div>
        <hr>
        <div class="footer">
            <div class="flex flex-row items-center gap-2 text-xs">
                <p class="text-center font-mono font-medium">made by </p>
                <img class="rounded-full ring-2 ring-white" width="30" height="30" src="./assets/pindjouf_pfp.jpg" alt="pindjouf pfp">
                <a href="https://twitter.com/pindjouf" class="underline" target="_blank">@pindjouf</a>
            </div>
        </div>
        <a href="https://ko-fi.com/pindjouf" class="kofi-button" target="_blank">Support me on Ko-fi</a>
    </div>
    <p id="status">Welcome to cryptoooor</p>
    <script src="/dist/bundle.js"></script>


</body></html>