Guest User

Search Builder

a guest
Sep 30th, 2025
283
1
Never
7
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 14.96 KB | None | 1 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Google Search Parameter Builder</title>
  7.     <style>
  8.         * {
  9.             margin: 0;
  10.             padding: 0;
  11.             box-sizing: border-box;
  12.         }
  13.  
  14.         body {
  15.             font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  16.             background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  17.             min-height: 100vh;
  18.             padding: 20px;
  19.             display: flex;
  20.             justify-content: center;
  21.             align-items: center;
  22.         }
  23.  
  24.         .container {
  25.             background: white;
  26.             border-radius: 16px;
  27.             box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  28.             max-width: 700px;
  29.             width: 100%;
  30.             padding: 40px;
  31.         }
  32.  
  33.         h1 {
  34.             color: #333;
  35.             font-size: 28px;
  36.             margin-bottom: 10px;
  37.             text-align: center;
  38.         }
  39.  
  40.         .subtitle {
  41.             color: #666;
  42.             text-align: center;
  43.             margin-bottom: 30px;
  44.             font-size: 14px;
  45.         }
  46.  
  47.         .search-box {
  48.             width: 100%;
  49.             padding: 16px 20px;
  50.             font-size: 16px;
  51.             border: 2px solid #e0e0e0;
  52.             border-radius: 24px;
  53.             outline: none;
  54.             transition: all 0.3s;
  55.             margin-bottom: 20px;
  56.         }
  57.  
  58.         .search-box:focus {
  59.             border-color: #667eea;
  60.             box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  61.         }
  62.  
  63.         .section {
  64.             margin-bottom: 20px;
  65.         }
  66.  
  67.         .section-header {
  68.             display: flex;
  69.             justify-content: space-between;
  70.             align-items: center;
  71.             cursor: pointer;
  72.             padding: 12px 0;
  73.             border-bottom: 2px solid #f0f0f0;
  74.             margin-bottom: 15px;
  75.         }
  76.  
  77.         .section-header h3 {
  78.             color: #333;
  79.             font-size: 16px;
  80.             font-weight: 600;
  81.         }
  82.  
  83.         .toggle-icon {
  84.             transition: transform 0.3s;
  85.             color: #667eea;
  86.             font-weight: bold;
  87.         }
  88.  
  89.         .toggle-icon.collapsed {
  90.             transform: rotate(-90deg);
  91.         }
  92.  
  93.         .section-content {
  94.             display: grid;
  95.             grid-template-columns: 1fr 1fr;
  96.             gap: 15px;
  97.             max-height: 500px;
  98.             overflow: hidden;
  99.             transition: max-height 0.3s ease;
  100.         }
  101.  
  102.         .section-content.collapsed {
  103.             max-height: 0;
  104.         }
  105.  
  106.         .form-group {
  107.             display: flex;
  108.             flex-direction: column;
  109.         }
  110.  
  111.         .form-group.full-width {
  112.             grid-column: 1 / -1;
  113.         }
  114.  
  115.         label {
  116.             font-size: 13px;
  117.             color: #555;
  118.             margin-bottom: 6px;
  119.             font-weight: 500;
  120.         }
  121.  
  122.         select, input[type="text"], input[type="number"] {
  123.             padding: 10px 12px;
  124.             border: 1px solid #ddd;
  125.             border-radius: 8px;
  126.             font-size: 14px;
  127.             outline: none;
  128.             transition: border-color 0.2s;
  129.         }
  130.  
  131.         select:focus, input[type="text"]:focus, input[type="number"]:focus {
  132.             border-color: #667eea;
  133.         }
  134.  
  135.         .highlight {
  136.             background-color: #fff3cd;
  137.             font-weight: 600;
  138.         }
  139.  
  140.         .checkbox-group {
  141.             display: flex;
  142.             align-items: center;
  143.             padding: 10px 0;
  144.         }
  145.  
  146.         .checkbox-group input[type="checkbox"] {
  147.             margin-right: 8px;
  148.             width: 18px;
  149.             height: 18px;
  150.             cursor: pointer;
  151.         }
  152.  
  153.         .checkbox-group label {
  154.             margin: 0;
  155.             cursor: pointer;
  156.         }
  157.  
  158.         .search-button {
  159.             width: 100%;
  160.             padding: 16px;
  161.             background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  162.             color: white;
  163.             border: none;
  164.             border-radius: 12px;
  165.             font-size: 16px;
  166.             font-weight: 600;
  167.             cursor: pointer;
  168.             transition: transform 0.2s, box-shadow 0.2s;
  169.             margin: 20px 0;
  170.         }
  171.  
  172.         .search-button:hover {
  173.             transform: translateY(-2px);
  174.             box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
  175.         }
  176.  
  177.         .search-button:active {
  178.             transform: translateY(0);
  179.         }
  180.  
  181.         .preview-box {
  182.             background: #f8f9fa;
  183.             border: 1px solid #e0e0e0;
  184.             border-radius: 8px;
  185.             padding: 15px;
  186.             font-family: 'Courier New', monospace;
  187.             font-size: 12px;
  188.             color: #333;
  189.             word-break: break-all;
  190.             max-height: 120px;
  191.             overflow-y: auto;
  192.         }
  193.  
  194.         .preview-label {
  195.             font-size: 13px;
  196.             color: #555;
  197.             margin-bottom: 8px;
  198.             font-weight: 600;
  199.         }
  200.  
  201.         .badge {
  202.             display: inline-block;
  203.             background: #667eea;
  204.             color: white;
  205.             padding: 2px 8px;
  206.             border-radius: 4px;
  207.             font-size: 11px;
  208.             margin-left: 8px;
  209.         }
  210.  
  211.         @media (max-width: 600px) {
  212.             .section-content {
  213.                 grid-template-columns: 1fr;
  214.             }
  215.            
  216.             .container {
  217.                 padding: 20px;
  218.             }
  219.         }
  220.     </style>
  221. </head>
  222. <body>
  223.     <div class="container">
  224.         <h1>🔍 Google Search Builder</h1>
  225.         <p class="subtitle">Craft your perfect search with hidden parameters</p>
  226.  
  227.         <input type="text" class="search-box" id="searchQuery" placeholder="Enter your search query..." />
  228.  
  229.         <div class="section">
  230.             <div class="form-group full-width">
  231.                 <label for="searchMode">Search Mode</label>
  232.                 <select id="searchMode">
  233.                     <option value="">Standard (All Results)</option>
  234.                     <option value="14" class="highlight">⭐ Web (No AI)</option>
  235.                     <option value="2">Images</option>
  236.                     <option value="7">Videos</option>
  237.                     <option value="39">Short Videos</option>
  238.                     <option value="18">Forums & Discussions</option>
  239.                    <option value="1">Local Places</option>
  240.                    <option value="5">Hotels & Lodging</option>
  241.                    <option value="8">Jobs</option>
  242.                    <option value="15">Things to Do</option>
  243.                    <option value="28">Shopping</option>
  244.                    <option value="36">Books</option>
  245.                    <option value="50">AI Mode</option>
  246.                </select>
  247.            </div>
  248.        </div>
  249.  
  250.        <div class="section">
  251.            <div class="section-header" onclick="toggleSection('filters')">
  252.                <h3>Advanced Filters</h3>
  253.                <span class="toggle-icon" id="filters-icon">▼</span>
  254.            </div>
  255.            <div class="section-content" id="filters-content">
  256.                <div class="form-group">
  257.                    <label for="timeFilter">Time Range</label>
  258.                    <select id="timeFilter">
  259.                        <option value="">Any time</option>
  260.                        <option value="qdr:h">Past hour</option>
  261.                        <option value="qdr:d">Past 24 hours</option>
  262.                        <option value="qdr:w">Past week</option>
  263.                        <option value="qdr:m">Past month</option>
  264.                        <option value="qdr:y">Past year</option>
  265.                    </select>
  266.                </div>
  267.  
  268.                <div class="form-group">
  269.                    <label for="language">Language</label>
  270.                    <select id="language">
  271.                        <option value="">Any language</option>
  272.                        <option value="lang_en">English</option>
  273.                        <option value="lang_es">Spanish</option>
  274.                        <option value="lang_fr">French</option>
  275.                        <option value="lang_de">German</option>
  276.                        <option value="lang_it">Italian</option>
  277.                        <option value="lang_pt">Portuguese</option>
  278.                        <option value="lang_zh-CN">Chinese (Simplified)</option>
  279.                        <option value="lang_ja">Japanese</option>
  280.                        <option value="lang_ko">Korean</option>
  281.                    </select>
  282.                </div>
  283.  
  284.                <div class="form-group">
  285.                    <label for="fileType">File Type</label>
  286.                    <select id="fileType">
  287.                        <option value="">Any format</option>
  288.                        <option value="pdf">PDF</option>
  289.                        <option value="doc">DOC</option>
  290.                        <option value="docx">DOCX</option>
  291.                        <option value="xls">XLS</option>
  292.                        <option value="xlsx">XLSX</option>
  293.                        <option value="ppt">PPT</option>
  294.                        <option value="pptx">PPTX</option>
  295.                        <option value="txt">TXT</option>
  296.                    </select>
  297.                </div>
  298.  
  299.                <div class="form-group">
  300.                    <label for="resultsPerPage">Results per Page</label>
  301.                    <select id="resultsPerPage">
  302.                        <option value="">10 (default)</option>
  303.                        <option value="20">20</option>
  304.                        <option value="30">30</option>
  305.                        <option value="50">50</option>
  306.                        <option value="100">100</option>
  307.                    </select>
  308.                </div>
  309.  
  310.                <div class="form-group full-width">
  311.                    <label for="siteFilter">Search within Site</label>
  312.                    <input type="text" id="siteFilter" placeholder="e.g., reddit.com or example.com" />
  313.                </div>
  314.  
  315.                <div class="form-group full-width">
  316.                    <label for="safeSearch">SafeSearch</label>
  317.                    <select id="safeSearch">
  318.                        <option value="">Default</option>
  319.                        <option value="active">Active (Filter explicit)</option>
  320.                        <option value="off">Off</option>
  321.                    </select>
  322.                </div>
  323.  
  324.                <div class="checkbox-group full-width">
  325.                    <input type="checkbox" id="disablePersonalization" />
  326.                    <label for="disablePersonalization">Disable personalization</label>
  327.                </div>
  328.  
  329.                <div class="checkbox-group full-width">
  330.                    <input type="checkbox" id="disableSuggestions" />
  331.                    <label for="disableSuggestions">Disable "Did you mean" suggestions</label>
  332.                </div>
  333.            </div>
  334.        </div>
  335.  
  336.        <button class="search-button" onclick="performSearch()">🔍 Search Google</button>
  337.  
  338.        <div class="preview-label">Preview URL:</div>
  339.        <div class="preview-box" id="previewUrl">https://www.google.com/search?q=</div>
  340.    </div>
  341.  
  342.    <script>
  343.        function toggleSection(sectionId) {
  344.            const content = document.getElementById(sectionId + '-content');
  345.             const icon = document.getElementById(sectionId + '-icon');
  346.             content.classList.toggle('collapsed');
  347.             icon.classList.toggle('collapsed');
  348.         }
  349.  
  350.         function buildUrl() {
  351.             const query = document.getElementById('searchQuery').value.trim();
  352.             const mode = document.getElementById('searchMode').value;
  353.             const timeFilter = document.getElementById('timeFilter').value;
  354.             const language = document.getElementById('language').value;
  355.             const fileType = document.getElementById('fileType').value;
  356.             const resultsPerPage = document.getElementById('resultsPerPage').value;
  357.             const siteFilter = document.getElementById('siteFilter').value.trim();
  358.             const safeSearch = document.getElementById('safeSearch').value;
  359.             const disablePersonalization = document.getElementById('disablePersonalization').checked;
  360.             const disableSuggestions = document.getElementById('disableSuggestions').checked;
  361.  
  362.             let url = 'https://www.google.com/search?';
  363.             const params = [];
  364.  
  365.             if (query) {
  366.                 params.push('q=' + encodeURIComponent(query));
  367.             }
  368.  
  369.             if (mode) {
  370.                 params.push('udm=' + mode);
  371.             }
  372.  
  373.             if (timeFilter) {
  374.                 params.push('tbs=' + timeFilter);
  375.             }
  376.  
  377.             if (language) {
  378.                 params.push('lr=' + language);
  379.             }
  380.  
  381.             if (fileType) {
  382.                 params.push('as_filetype=' + fileType);
  383.             }
  384.  
  385.             if (resultsPerPage) {
  386.                 params.push('num=' + resultsPerPage);
  387.             }
  388.  
  389.             if (siteFilter) {
  390.                 params.push('as_sitesearch=' + encodeURIComponent(siteFilter));
  391.             }
  392.  
  393.             if (safeSearch) {
  394.                 params.push('safe=' + safeSearch);
  395.             }
  396.  
  397.             if (disablePersonalization) {
  398.                 params.push('pws=0');
  399.             }
  400.  
  401.             if (disableSuggestions) {
  402.                 params.push('nfpr=1');
  403.             }
  404.  
  405.             url += params.join('&');
  406.             return url;
  407.         }
  408.  
  409.         function updatePreview() {
  410.             const url = buildUrl();
  411.             document.getElementById('previewUrl').textContent = url;
  412.         }
  413.  
  414.         function performSearch() {
  415.             const url = buildUrl();
  416.             window.open(url, '_blank');
  417.         }
  418.  
  419.         document.getElementById('searchQuery').addEventListener('input', updatePreview);
  420.         document.getElementById('searchMode').addEventListener('change', updatePreview);
  421.         document.getElementById('timeFilter').addEventListener('change', updatePreview);
  422.         document.getElementById('language').addEventListener('change', updatePreview);
  423.         document.getElementById('fileType').addEventListener('change', updatePreview);
  424.         document.getElementById('resultsPerPage').addEventListener('change', updatePreview);
  425.         document.getElementById('siteFilter').addEventListener('input', updatePreview);
  426.         document.getElementById('safeSearch').addEventListener('change', updatePreview);
  427.         document.getElementById('disablePersonalization').addEventListener('change', updatePreview);
  428.         document.getElementById('disableSuggestions').addEventListener('change', updatePreview);
  429.  
  430.         document.getElementById('searchQuery').addEventListener('keypress', function(e) {
  431.             if (e.key === 'Enter') {
  432.                 performSearch();
  433.             }
  434.         });
  435.  
  436.         updatePreview();
  437.     </script>
  438. </body>
  439. </html>
Tags: search
Advertisement
Comments
  • User was banned
  • Ronmivas
    113 days
    # CSS 0.83 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1S1iTruSLkgEPO8QtTuo2twS4f2FoJ3_l0-p4GKqeAUY/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8.  
    9. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    10.  
    11. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification).
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment