-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
248 lines (216 loc) · 9 KB
/
Copy pathindex.html
File metadata and controls
248 lines (216 loc) · 9 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PhoneIntel Documentation</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f8f9fa;
}
.navbar {
margin-bottom: 30px;
}
.container {
max-width: 800px;
}
.footer {
margin-top: 30px;
padding: 20px 0;
background-color: #343a40;
color: white;
text-align: center;
}
h1,
h2,
h3 {
color: #343a40;
}
pre code {
background-color: #e9ecef;
padding: 10px;
display: block;
border-radius: 5px;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.section-title {
border-bottom: 2px solid #dee2e6;
padding-bottom: 10px;
margin-bottom: 20px;
}
.usage-section p {
margin-bottom: 15px;
}
.usage-section ul {
margin-bottom: 15px;
}
.usage-section li {
margin-bottom: 10px;
}
.toc ul {
list-style: none;
padding: 0;
}
.toc li {
margin-bottom: 5px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">PhoneIntel</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#introduction">Introduction</a></li>
<li class="nav-item"><a class="nav-link" href="#installation">Installation</a></li>
<li class="nav-item"><a class="nav-link" href="#usage">Usage</a></li>
<li class="nav-item"><a class="nav-link" href="#options">Options</a></li>
<li class="nav-item"><a class="nav-link" href="#contributing">Contributing</a></li>
<li class="nav-item"><a class="nav-link" href="#license">License</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<section id="introduction">
<h1 class="section-title">Introduction</h1>
<p>Welcome to the documentation for PhoneIntel. This tool processes phone numbers to perform various
actions, including fetching information, searching, and generating dorks.</p>
<p>PhoneIntel is a powerful tool for cybersecurity researchers, OSINT investigators, and anyone needing detailed
information about phone numbers. It provides a simple and efficient interface for gathering and analyzing data.</p>
</section>
<section id="installation">
<h2 class="section-title">Installation</h2>
<p>To install the project, use the following command:</p>
<pre><code>pip install phoneintel</code></pre>
<p>After installation, you can use the <code>phoneintel</code> command to interact with the tool.</p>
</section>
<section id="usage" class="usage-section">
<h2 class="section-title">Usage</h2>
<h3>General Command</h3>
<pre><code>phoneintel <option> <phonenumber></code></pre>
<h3>Example Command Output</h3>
<pre><code>-------------------------------------------
╔═╗╦ ╦╔═╗╔╗╔╔═╗╦╔╗╔╔╦╗╔═╗╦
╠═╝╠═╣║ ║║║║║╣ ║║║║ ║ ║╣ ║
╩ ╩ ╩╚═╝╝╚╝╚═╝╩╝╚╝ ╩ ╚═╝╩═╝
-------------------------------------------
[!] VERSION 1.0
[!] GITHUB https://github.com/phoneintel/phoneintel
[!] LICENSED UNDER Apache-2.0 license
-------------------------------------------
[-] TARGET PHONE: +34911123456
[-] COUNTRY: Spain
[-] AREA/STATE: Madrid
[-] CARRIER: Unknown
[-] COUNTRY DETAILS:
- Top Level Domain: es
- Continent: Europe
- Capital: Madrid
- Time Zone in Capital: Europe/Madrid
- Currency: Euro
- Languages:
- Spanish
- Catalan
- Basque
- Galician
[-] TELLOWS DETAILS:
- Tellows URL: https://www.tellows.com/num/%2B34911123456
- Tellows Score: 5
- Type of Call: Unknown
-------------------------------------------</code></pre>
</section>
<section id="options">
<h2 class="section-title">Options</h2>
<h3>--info</h3>
<p>This option retrieves all data for a mobile phone number, including:</p>
<pre><code>phoneintel --info +34911123456
-------------------------------------------
[-] TARGET PHONE: +34911123456
[-] COUNTRY: Spain
[-] AREA/STATE: Madrid
[-] CARRIER: Unknown
[-] COUNTRY DETAILS:
- Top Level Domain: es
- Continent: Europe
- Capital: Madrid
- Time Zone in Capital: Europe/Madrid
- Currency: Euro
- Languages:
- Spanish
- Catalan
- Basque
- Galician
[-] TELLOWS DETAILS:
- Tellows URL: https://www.tellows.com/num/%2B34911123456
- Tellows Score: 5
- Type of Call: Unknown</code></pre>
<h3>--search</h3>
<p>This parameter should be combined with:</p>
<ul>
<li><code>--string</code>: Pass a string with phone numbers or text containing phone numbers to extract
and analyze.</li>
<li><code>--input</code>: Upload a txt file with a hidden number or a list of numbers to find and
analyze.</li>
</ul>
<h3>--dorks</h3>
<p>This parameter must be accompanied by <code>--type</code> followed by one of the following options:</p>
<pre><code>"social_networks", "forums", "classifieds", "ecommerce",
"news", "blogs", "job_sites", "pastes", "reputation",
"phone_directories", "people_search", "all"</code></pre>
<p>This will provide information about the phone number and create specialized dorks for advanced Google
searches.</p>
<h3>--map</h3>
<p>Any of the main commands (<code>--info</code>, <code>--search</code>, <code>--dorks</code>) can be
supplemented with the <code>--map</code> parameter, which will open a default browser window using
OpenStreetMap to show the country and area location of the phone line.</p>
<h3>--neutrino</h3>
<pre><code>phoneintel --neutrino [<phone> | --login --id <api-id> --key <api-key> | --show] [--map]</code></pre>
<p>This option allows interaction with the Neutrino API:</p>
<ul>
<li><code><phone></code>: Phone number to be processed</li>
<li><code>--login</code>: Login to the Neutrino API</li>
<li><code>--id</code>: API ID</li>
<li><code>--key</code>: API KEY</li>
<li><code>--show</code>: Show Neutrino API Credentials</li>
<li><code>--map</code>: Execute map function (optional)</li>
</ul>
</section>
<section id="contributing">
<h2 class="section-title">Contributing</h2>
<p>If you wish to contribute to the development of PhoneIntel, feel free to fork the project and submit pull
requests.</p>
</section>
<section id="license">
<h2 class="section-title">License</h2>
<p>PhoneIntel is licensed under the <a href="https://github.com/phoneintel/phoneintel/blob/master/LICENSE">Apache
2.0 license</a>.</p>
</section>
<section id="contact">
<h2 class="section-title">Contact</h2>
<p>For more information, feel free to contact us at:</p>
<ul>
<li>Email: <a href="mailto:phoneintel@support.com">phoneintel@proton.me</a></li>
<li>GitHub: <a href="https://github.com/phoneintel/phoneintel">PhoneIntel GitHub</a></li>
</ul>
</section>
</div>
<footer class="footer">
<div class="container">
<p>© 2024 PhoneIntel. All rights reserved.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>