Files
FURK4NGG.github.io/search.html
T
2024-09-21 13:34:56 +03:00

60 lines
2.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes">
<title>Google Dork Arama</title>
<link rel="stylesheet" href="/CSS/styles.css">
</head>
<body>
<div class="container">
<h1>Ne Aramak İstiyorsunuz?</h1>
<div class="search-box">
<input type="text" id="searchQuery" placeholder="🔍" />
</div>
<h3>Aranan Dosya</h3>
<div class="file-options">
<label for="exe">
<input type="radio" id="exe" name="fileType" value="exe"> Exe
</label>
<label for="pdf">
<input type="radio" id="pdf" name="fileType" value="pdf"> Pdf
</label>
<label for="rar">
<input type="radio" id="rar" name="fileType" value="rar"> Rar
</label>
<label for="all">
<input type="radio" id="all" name="fileType" value=""> Hepsi
</label>
</div>
<h3>Arama Noktası</h3>
<div class="search-locations">
<label for="drive">
<input type="radio" id="drive" name="searchPoint" value="drive.google.com"> Drive Üzerinden Ara
</label>
<label for="yandex">
<input type="radio" id="yandex" name="searchPoint" value="disk.yandex.com"> Yandex Disk Üzerinden Ara
</label>
<label for="article">
<input type="radio" id="article" name="searchPoint" value="article"> Makale Olarak Ara
</label>
<label for="book">
<input type="radio" id="book" name="searchPoint" value="book"> Kitap Olarak Ara
</label>
</div>
<button class="search-button" onclick="performSearch()">Ara</button>
<br><br>
<button class="virus-total-button" onclick="redirectVirusTotal()">VirusTotal</button>
</div>
<div class="security-tips">
<h3>Güvenli Arama Nasıl Yapılır?</h3>
<p class="warning">- Tanımadığınız web sitelerinden dosya indirmeyin.</p>
<p class="warning">- HTTPS ile başlayan sitelere güvenin, bu siteler daha güvenlidir.</p>
<p class="warning">- Bilmediğiniz linklere tıklamadan önce mutlaka doğruluğunu kontrol edin.</p>
<p class="warning">- Şifrelerinizi düzenli olarak güncelleyin ve güçlü şifreler oluşturun.</p>
</div>
<footer><h2>© 2024 Furkan Karlıoğlu</h2></footer>
<script src="/JAVASCRIPT/script.js"></script>
</body>
</html>