FOFA IP and Domain Extractor

Extract IP addresses and domains from FOFA search results and display them at a specific location with a copy button

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==

// @name FOFA IP and Domain Extractor

// @namespace http://tampermonkey.net/

// @version 1.1

// @description Extract IP addresses and domains from FOFA search results and display them at a specific location with a copy button

// @author zephyrus

// @match https://fofa.info/result*
// @match https://*.fofa.info/result*

// @grant GM_setClipboard

// ==/UserScript==

(function() {

    'use strict';

    // Create a MutationObserver instance
    let observer = new MutationObserver(function(mutations) {

        // Check if the target element exists
        let targetElement = document.querySelector('div#__layout > div > div.contentContainer.resultIndex > div:nth-child(1) > div.relatedSearch.relatedSearch-padding');

        if (targetElement) {

            // If the target element exists, stop observing
            observer.disconnect();

            // Check if the IP display has already been inserted
            if (document.getElementById('ipDisplay') || document.getElementById('domainDisplay')) {
                return;
            }

            // Extract the IP addresses and domains
            let elements = [...document.querySelectorAll('.hsxa-meta-data-list .hsxa-meta-data-list-lv1-lf span.hsxa-copy-btn')]
            .map(e => e.dataset.clipboardText.replace(/^(http|https):\/\//, ''));

            let ipRegex = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/;
            let domainRegex = /^([a-zA-Z0-9][a-zA-Z0-9-]{1,61}[a-zA-Z0-9]\.)+[a-zA-Z]{2,}/;
            let ips = elements.filter(text => ipRegex.test(text)).filter((value, index, self) => self.indexOf(value) === index) // .join(',');
            // Remove port numbers from IP addresses
            ips = ips.map(ip => ip.split(':')[0]);

            let ipList = ips.join(',');

            let domains = elements.filter(text => domainRegex.test(text)).filter((value, index, self) => self.indexOf(value) === index).join(',');

            // Create a new element to display the IP addresses
            let ipDisplay = document.createElement('div');
            ipDisplay.id = 'ipDisplay';
            ipDisplay.textContent = 'IPs: ' + ips;
            ipDisplay.style = 'margin-top: 10px; word-wrap: break-word; background-color: #333; color: #fff; padding: 10px; border-radius: 5px; font-size: 14px; width: 85%; margin-left: 7.5%; margin-right: 7.5%;';

            // Create a new element to display the domains
            let domainDisplay = document.createElement('div');
            domainDisplay.id = 'domainDisplay';
            domainDisplay.textContent = 'Domains: ' + domains;
            domainDisplay.style = 'margin-top: 10px; word-wrap: break-word; background-color: #333; color: #fff; padding: 10px; border-radius: 5px; font-size: 14px; width: 85%; margin-left: 7.5%; margin-right: 7.5%;';

            // Create a copy button for IPs
            let copyButtonIPs = document.createElement('button');
            copyButtonIPs.textContent = 'Copy IPs';
            copyButtonIPs.style = 'margin-left: 10px; background-color: #007bff; color: #fff; border: none; padding: 5px 10px; border-radius: 5px; cursor: pointer;';
            copyButtonIPs.onclick = function() {
                GM_setClipboard(ips);
                alert('IPs copied to clipboard!');
            };

            // Create a copy button for Domains
            let copyButtonDomains = document.createElement('button');
            copyButtonDomains.textContent = 'Copy Domains';
            copyButtonDomains.style = 'margin-left: 10px; background-color: #007bff; color: #fff; border: none; padding: 5px 10px; border-radius: 5px; cursor: pointer;';
            copyButtonDomains.onclick = function() {
                GM_setClipboard(domains);
                alert('Domains copied to clipboard!');
            };

            // Add the copy buttons to the displays
            ipDisplay.appendChild(copyButtonIPs);
            domainDisplay.appendChild(copyButtonDomains);

            // Insert the new elements before the target element
            targetElement.parentNode.insertBefore(ipDisplay, targetElement);
            targetElement.parentNode.insertBefore(domainDisplay, targetElement);

        }

    });

    // Start observing the document with the configured parameters
    observer.observe(document, { childList: true, subtree: true });

})();