Spaces:
Running
Running
Create indexSSN.HTML
Browse files- indexSSN.HTML +151 -0
indexSSN.HTML
ADDED
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>SSN Search Tool</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<style>
|
9 |
+
body {
|
10 |
+
background-color: #2f2f2f;
|
11 |
+
color: #ffffff;
|
12 |
+
}
|
13 |
+
@media (prefers-color-scheme: light) {
|
14 |
+
body {
|
15 |
+
background-color: #ffffff;
|
16 |
+
color: #2f2f2f;
|
17 |
+
}
|
18 |
+
}
|
19 |
+
</style>
|
20 |
+
</head>
|
21 |
+
<body>
|
22 |
+
<div class="container mx-auto p-4 pt-6 mt-10 bg-gray-800 rounded-lg shadow-lg">
|
23 |
+
<h1 class="text-3xl font-bold mb-4">SSN Search Tool</h1>
|
24 |
+
<p class="text-lg mb-6">This tool is designed to help you search for SSN (Social Security Number) patterns on the internet. Please use it responsibly and only for educational purposes.</p>
|
25 |
+
<input id="searchInput" type="text" class="w-full p-2 pl-10 text-lg text-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-gray-600" placeholder="Enter your search query">
|
26 |
+
<button onclick="executeSearch()" class="ml-4 bg-gray-600 hover:bg-gray-700 text-lg text-white font-bold py-2 px-4 rounded-lg">Search</button>
|
27 |
+
<select id="pagesSelect" class="ml-4 bg-gray-600 hover:bg-gray-700 text-lg text-white font-bold py-2 px-4 rounded-lg">
|
28 |
+
<option value="1">1</option>
|
29 |
+
<option value="2">2</option>
|
30 |
+
<option value="3">3</option>
|
31 |
+
<option value="4">4</option>
|
32 |
+
<option value="5">5</option>
|
33 |
+
</select>
|
34 |
+
<div id="output" class="mt-6 p-4 bg-gray-700 rounded-lg shadow-lg"></div>
|
35 |
+
<h2 class="text-2xl font-bold mt-10 mb-4">Examples</h2>
|
36 |
+
<ul>
|
37 |
+
<li onclick="fillSearch('site:*.gov intext:XXX-XX-XXXX')" class="cursor-pointer hover:text-gray-400">1. Поиск SSN в формате XXX-XX-XXXX</li>
|
38 |
+
<li onclick="fillSearch('site:*.pdf intext:(\\d{3}[-. ]?\\d{2}[-. ]?\\d{4})')" class="cursor-pointer hover:text-gray-400">2. Поиск SSN с любыми разделителями</li>
|
39 |
+
<li onclick="fillSearch('site:forum.example.com intext:my social security number is')" class="cursor-pointer hover:text-gray-400">3. Поиск SSN на форумах и обсуждениях</li>
|
40 |
+
<li onclick="fillSearch('filetype:txt intext:SSN: XXX-XX-XXXX')" class="cursor-pointer hover:text-gray-400">4. Поиск SSN в текстовых файлах</li>
|
41 |
+
<li onclick="fillSearch('site:*.edu (intext:SSN intext:XXX-XX-XXXX) | (intext:social security number intext:\\d{3}-\\d{2}-\\d{4})')" class="cursor-pointer hover:text-gray-400">5. Поиск SSN с использованием логических операторов</li>
|
42 |
+
<li onclick="fillSearch('intext:(\\d{3}[-/. ]?\\d{2}[-/. ]?\\d{4})')" class="cursor-pointer hover:text-gray-400">6. Поиск SSN с опциональными разделителями</li>
|
43 |
+
<li onclick="fillSearch('site:example.com intext:XXX-XX-XXXX')" class="cursor-pointer hover:text-gray-400">7. Поиск SSN на конкретном сайте</li>
|
44 |
+
<li onclick="fillSearch('intext:SSN intext:XXX-XX-XXXX intext:Name: intext:Address:')" class="cursor-pointer hover:text-gray-400">8. Поиск SSN с дополнительной информацией</li>
|
45 |
+
<li onclick="fillSearch('intext:\\d{9}')" class="cursor-pointer hover:text-gray-400">9. Поиск SSN в формате без разделителей</li>
|
46 |
+
<li onclick="fillSearch('intext:XXX-XX-XXXX -intitle:example')" class="cursor-pointer hover:text-gray-400">10. Поиск SSN с использованием исключений</li>
|
47 |
+
<li onclick="fillSearch('intext:\"905067043238\" OR intext:\'+905067043238\' OR intext:\"05067043238\" OR intext:\"0506 704 32 38\"')" class="cursor-pointer hover:text-gray-400">11. Поиск телефонного номера 905067043238</li>
|
48 |
+
<li onclick="fillSearch('(ext:doc OR ext:docx OR ext:odt OR ext:pdf OR ext:rtf OR ext:sxw OR ext:psw OR ext:ppt OR ext:pptx OR ext:pps OR ext:csv OR ext:txt OR ext:xls) intext:\"905067043238\" OR intext:\'+905067043238\' OR intext:\"05067043238\"')" class="cursor-pointer hover:text-gray-400">12. Поиск телефонного номера в документах</li>
|
49 |
+
<li onclick="fillSearch('site:facebook.com intext:\"905067043238\" OR intext:\'+905067043238\' OR intext:\"05067043238\"')" class="cursor-pointer hover:text-gray-400">13. Поиск телефонного номера на Facebook</li>
|
50 |
+
<li onclick="fillSearch('site:twitter.com intext:\"905067043238\" OR intext:\'+905067043238\' OR intext:\"05067043238\"')" class="cursor-pointer hover:text-gray-400">14. Поиск телефонного номера на Twitter</li>
|
51 |
+
<li onclick="fillSearch('site:linkedin.com intext:\"905067043238\" OR intext:\'+905067043238\' OR intext:\"05067043238\"')" class="cursor-pointer hover:text-gray-400">15. Поиск телефонного номера на LinkedIn</li>
|
52 |
+
<li onclick="fillSearch('site:instagram.com intext:\"905067043238\" OR intext:\'+905067043238\' OR intext:\"05067043238\"')" class="cursor-pointer hover:text-gray-400">16. Поиск телефонного номера на Instagram</li>
|
53 |
+
<li onclick="fillSearch('site:vk.com intext:\"905067043238\" OR intext:\'+905067043238\' OR intext:\"05067043238\"')" class="cursor-pointer hover:text-gray-400">17. Поиск телефонного номера на VK</li>
|
54 |
+
<li onclick="fillSearch('intitle:\"shop\" & intext:\"E-gift\" & inurl:\"order\" intext:\"e-gift\" & intext:\"buy now\" & intext:$ & -amazon.com')" class="cursor-pointer hover:text-gray-400">18. Поиск E-gift на сайтах магазинов</li>
|
55 |
+
<li onclick="fillSearch('intitle:\"shopping\" & intext:\"gift card\" & intext:\"price\" inurl:.php? intext:\"add to cart\" & intext:\"e-gift\" & intext:\"GoPro\" & site:com')" class="cursor-pointer hover:text-gray-400">19. Поиск GoPro gift cards</li>
|
56 |
+
<li onclick="fillSearch('intitle:\"store\" & intext:\"e-gift\" & intext:\"payment method\" site:com')" class="cursor-pointer hover:text-gray-400">20. Поиск e-gift на сайтах магазинов с указанием метода оплаты</li>
|
57 |
+
</ul>
|
58 |
+
</div>
|
59 |
+
<script>
|
60 |
+
function fillSearch(query) {
|
61 |
+
document.getElementById('searchInput').value = query;
|
62 |
+
}
|
63 |
+
|
64 |
+
let searchAbortController;
|
65 |
+
|
66 |
+
function executeSearch() {
|
67 |
+
const searchTerm = document.getElementById('searchInput').value.trim();
|
68 |
+
if (!searchTerm) {
|
69 |
+
alert('SEARCH TERM REQUIRED!');
|
70 |
+
return;
|
71 |
+
}
|
72 |
+
|
73 |
+
if (searchAbortController) {
|
74 |
+
searchAbortController.abort();
|
75 |
+
}
|
76 |
+
searchAbortController = new AbortController();
|
77 |
+
|
78 |
+
const output = document.getElementById('output');
|
79 |
+
output.innerHTML = ''; // Очистка предыдущих результатов
|
80 |
+
output.innerHTML += '> INITIALIZING SEARCH: ' + searchTerm + '\n';
|
81 |
+
|
82 |
+
// Добавление индикатора загрузки
|
83 |
+
const loadingIndicator = document.createElement('div');
|
84 |
+
loadingIndicator.textContent = '⌛ Loading...';
|
85 |
+
output.appendChild(loadingIndicator);
|
86 |
+
|
87 |
+
searchGoogle(searchTerm, () => {
|
88 |
+
loadingIndicator.textContent = '✅ Search completed!';
|
89 |
+
setTimeout(() => {
|
90 |
+
loadingIndicator.remove();
|
91 |
+
}, 2000); // Удаление индикатора через 2 секунды
|
92 |
+
});
|
93 |
+
}
|
94 |
+
|
95 |
+
function searchGoogle(search, onComplete) {
|
96 |
+
try {
|
97 |
+
const queries = [
|
98 |
+
`intext:"905067043238" OR intext:"+905067043238" OR intext:"05067043238" OR intext:"0506 704 32 38"`,
|
99 |
+
`(ext:doc OR ext:docx OR ext:odt OR ext:pdf OR ext:rtf OR ext:sxw OR ext:psw OR ext:ppt OR ext:pptx OR ext:pps OR ext:csv OR ext:txt OR ext:xls) intext:"905067043238" OR intext:"+905067043238" OR intext:"05067043238"`,
|
100 |
+
`site:facebook.com intext:"905067043238" OR intext:"+905067043238" OR intext:"05067043238"`,
|
101 |
+
`site:twitter.com intext:"905067043238" OR intext:"+905067043238" OR intext:"05067043238"`,
|
102 |
+
`site:linkedin.com intext:"905067043238" OR intext:"+905067043238" OR intext:"05067043238"`,
|
103 |
+
`site:instagram.com intext:"905067043238" OR intext:"+905067043238" OR intext:"05067043238"`,
|
104 |
+
`site:vk.com intext:"905067043238" OR intext:"+905067043238" OR intext:"05067043238"`,
|
105 |
+
`intitle:"shop" & intext:"E-gift" & inurl:"order" intext:"e-gift" & intext:"buy now" & intext:$ & -amazon.com`,
|
106 |
+
`intitle:"shopping" & intext:"gift card" & intext:"price" inurl:.php? intext:"add to cart" & intext:"e-gift" & intext:"GoPro" & site:com`,
|
107 |
+
`intitle:"store" & intext:"e-gift" & intext:"payment method" site:com`
|
108 |
+
];
|
109 |
+
|
110 |
+
const urlTemplate = "https://www.google.com/search?q=";
|
111 |
+
const pagesToOpen = parseInt(document.getElementById('pagesSelect').value, 10);
|
112 |
+
const output = document.getElementById('output');
|
113 |
+
|
114 |
+
output.innerHTML += '> GENERATED ' + queries.length * pagesToOpen + ' SEARCH PATTERNS\n';
|
115 |
+
output.innerHTML += '> INITIATING SEARCH EXECUTION...\n';
|
116 |
+
|
117 |
+
// Ограничение количества одновременных запросов
|
118 |
+
const maxConcurrentRequests = 5;
|
119 |
+
let activeRequests = 0;
|
120 |
+
let index = 0;
|
121 |
+
|
122 |
+
function openUrlWithQueue() {
|
123 |
+
if (activeRequests >= maxConcurrentRequests || index >= queries.length * pagesToOpen) {
|
124 |
+
if (index >= queries.length * pagesToOpen) {
|
125 |
+
onComplete();
|
126 |
+
}
|
127 |
+
return;
|
128 |
+
}
|
129 |
+
activeRequests++;
|
130 |
+
const queryIndex = Math.floor(index / pagesToOpen);
|
131 |
+
const url = urlTemplate + encodeURIComponent(queries[queryIndex] + ' ' + search);
|
132 |
+
window.open(url, '_blank', 'noopener,noreferrer');
|
133 |
+
index++;
|
134 |
+
setTimeout(() => {
|
135 |
+
activeRequests--;
|
136 |
+
openUrlWithQueue();
|
137 |
+
}, 500); // Задержка между запросами для предотвращения блокировки
|
138 |
+
}
|
139 |
+
|
140 |
+
for (let i = 0; i < maxConcurrentRequests; i++) {
|
141 |
+
openUrlWithQueue();
|
142 |
+
}
|
143 |
+
} catch (error) {
|
144 |
+
console.error('Ошибка поиска:', error);
|
145 |
+
const output = document.getElementById('output');
|
146 |
+
output.innerHTML += '> Ошибка поиска: ' + error.message + '\n';
|
147 |
+
}
|
148 |
+
}
|
149 |
+
</script>
|
150 |
+
</body>
|
151 |
+
</html>
|