-
Notifications
You must be signed in to change notification settings - Fork 1
/
phone-number-lookup.html
102 lines (82 loc) · 3.91 KB
/
phone-number-lookup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>OSINT Tool - Phone Number Lookup</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/navigation.css">
</head>
<body>
<div class="navbar">
<img src="New-Logo.png" alt="logo" />
<div class="home"><ul> <li><a href="index.html"> Home </a></li></ul></div>
<ul>
<li><a href="about-us.html">About Us </a></li>
<li><a href="info.html">Info </a></li>
</ul>
</div>
<div class="flag-container">
<img src="india-flag.png" alt="Center Image" />
</div>
<div class="container">
<h1>PHONE NUMBER LOOKUP</h1>
<div class="input-group">
<label for="target">Target:</label>
<input type="text" id="target" placeholder="Enter target information">
</div>
<div class="input-group">
<label for="tool">Which lookup tool do you want to use?</label>
<select id="tool">
]
<option value="tool4">Select Tool</option>
<option value="tool1"></option>
<option value="tool2"></option>
<option value="tool3"></option>
</select>
</div>
<div class="hint-text">
<p id="hint"></p>
</div>
<div class="input-group">
<button onclick="search()">Search</button>
</div>
<div id="results">
<h2>Results:</h2>
<img id="loading-image" src="loading.gif" alt="Loading..." style="display: none;">
<pre id="output"></pre>
</div>
</div>
<div class="footer">
OSINT framework focused on gathering information from free tools or resources. The intention is to help people find free OSINT resources. Some of the sites included might require registration or offer more data for $$$, but you should be able to get at least a portion of the available information for no cost.
We created this framework with an information security point of view. Since then, the response from other fields and disciplines has been incredible. I would love to be able to include any other OSINT resources, especially from fields outside of infosec. Please let me know about anything that might be missing!
For Update Notifications, Suggestions, Comments, Feedback
Feedback or new tool suggestions are extremely welcome! Please feel free to reach out on [email protected]
</div>
<script>
function search() {
var target = document.getElementById("target").value;
// Perform OSINT search using target information
// Display the results
var output = document.getElementById("output");
output.textContent = "Results for: " + target;
}
// Function to update the hint text based on the selected tool
document.getElementById("tool").addEventListener("change", function () {
var hint = document.getElementById("hint");
var selectedTool = this.value;
if (selectedTool === "tool1") {
hint.innerHTML =
"<strong>Hint :</strong> Nmap utilizes various scanning techniques, like TCP, UCP, etc, to gather comprehensive information about the network infrastructure.";
} else if (selectedTool === "tool2") {
hint.innerHTML =
"<strong>Hint :</strong> It is a network diagnostic tool used to determine the round-time trip (RTT) between a device and a specified IP address or hostname, helping to assess network connectivity and troubleshoot potential issues. It is also used to check if the server is still active or not.";
} else if (selectedTool === "tool3") {
hint.innerHTML =
"<strong>Hint :</strong> You will get results on IP addresses for the network hops between your computer and the target. You can use the results to reveal the presence of proxy servers or other intermediate devices that are used to hide the actual location of a target.";
} else {
hint.innerHTML = ""; // Clear the hint if no tool is selected
}
});
</script>
<script src="js/script.js"></script>
</body>
</html>