-
Notifications
You must be signed in to change notification settings - Fork 850
/
functions.php
358 lines (342 loc) · 11.2 KB
/
functions.php
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<?php
//functions for RED HAWK
function getTitle($url) {
$data = readcontents($url);
$title = preg_match('/<title[^>]*>(.*?)<\/title>/ims', $data, $matches) ? $matches[1] : null;
return $title;
}
function userinput($message){
global $white, $bold, $greenbg, $redbg, $bluebg, $cln, $lblue, $fgreen;
$yellowbg = "\e[100m";
$inputstyle = $cln . $bold . $lblue . "[#] " . $message . ": " . $fgreen ;
echo $inputstyle;
}
function WEBserver($urlws){
stream_context_set_default( [
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false,
],
]);
$wsheaders = get_headers($urlws, 1);
if (is_array($wsheaders['Server'])) { $ws = $wsheaders['Server'][0];}else{
$ws = $wsheaders['Server'];
}
if ($ws == "")
{
echo "\e[91mCould Not Detect\e[0m";
}
else
{
echo "\e[92m$ws \e[0m";
}
}
function cloudflaredetect($reallink){
$urlhh = "http://api.hackertarget.com/httpheaders/?q=" . $reallink;
$resulthh = file_get_contents($urlhh);
if (strpos($resulthh, 'cloudflare') !== false)
{
echo "\e[91mDetected\n\e[0m";
}
else
{
echo "\e[92mNot Detected\n\e[0m";
}
}
function CMSdetect($reallink){
$cmssc = readcontents($reallink);
if (strpos($cmssc, '/wp-content/') !== false)
{
$tcms = "WordPress";
}
else
{
if (strpos($cmssc, 'Joomla') !== false)
{
$tcms = "Joomla";
}
else
{
$drpurl = $reallink . "/misc/drupal.js";
$drpsc = readcontents("$drpurl");
if (strpos($drpsc, 'Drupal') !== false)
{
$tcms = "Drupal";
}
else
{
if (strpos($cmssc, '/skin/frontend/') !== false)
{
$tcms = "Magento";
}
else
{
if (strpos($cmssc, 'content="WordPress')!== false) {
$tcms = "WordPress";
}
else {
$tcms = "\e[91mCould Not Detect";
}
}
}
}
}
return $tcms;
}
function robotsdottxt($reallink){
$rbturl = $reallink . "/robots.txt";
$rbthandle = curl_init($rbturl);
curl_setopt($rbthandle, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($rbthandle, CURLOPT_RETURNTRANSFER, TRUE);
$rbtresponse = curl_exec($rbthandle);
$rbthttpCode = curl_getinfo($rbthandle, CURLINFO_HTTP_CODE);
if ($rbthttpCode == 200)
{
$rbtcontent = readcontents($rbturl);
if ($rbtcontent == "")
{
echo "Found But Empty!";
}
else
{
echo "\e[92mFound \e[0m\n";
echo "\e[36m\n-------------[ contents ]---------------- \e[0m\n";
echo $rbtcontent;
echo "\e[36m\n-----------[end of contents]-------------\e[0m";
}
}
else
{
echo "\e[91mCould NOT Find robots.txt! \e[0m\n";
}
}
function gethttpheader($reallink){
$hdr = get_headers($reallink);
foreach ($hdr as $shdr) {
echo "\n\e[92m\e[1m[i]\e[0m $shdr";
}
echo "\n";
}
function extract_social_links($sourcecode){
/* This is really a simple code for now i will work around it on the upcoming version.
For now only these social media are supported:
- Facebook
- Twitter
- Instagram
- YouTube
- Google +
- Pinterest
- GitHUB
*/
global $bold, $lblue, $fgreen, $red, $blue, $magenta, $orange, $white, $green, $grey, $cyan;
$fb_link_count = 0;
$twitter_link_count = 0;
$insta_link_count = 0;
$yt_link_count = 0;
$gp_link_count = 0;
$pint_link_count = 0;
$github_link_count = 0;
$total_social_link_count = 0;
$social_links_array = array (
'facebook' => array(),
'twitter' => array(),
'instagram' => array(),
'youtube' => array(),
'google_p' => array(),
'pinterest' => array(),
'github' => array()
);
$fb_links = $social_links_array['facebook'];
$twitter_links = $social_links_array['twitter'];
$insta_links = $social_links_array['instagram'];
$youtube_links = $social_links_array['youtube'];
$googlep_links = $social_links_array['google_p'];
$pinterest_links = $social_links_array['pinterest'];
$github_links = $social_links_array['github'];
$sm_dom = new DOMDocument;
@$sm_dom->loadHTML($sourcecode);
$links = $sm_dom->getElementsByTagName('a');
foreach ($links as $link) {
$link = $link->getAttribute('href');
if (strpos ($link, "facebook.com/") !== false){
$total_social_link_count++;
$fb_link_count++;
array_push($social_links_array['facebook'], $link);
}
elseif (strpos ($link, "twitter.com/") !== false) {
$total_social_link_count++;
$twitter_link_count++;
array_push($social_links_array['twitter'], $link);
}
elseif (strpos ($link, "instagram.com/") !== false) {
$total_social_link_count++;
$insta_link_count++;
array_push($social_links_array['instagram'], $link);
}
elseif (strpos ($link, "youtube.com/") !== false) {
$total_social_link_count++;
$yt_link_count++;
array_push($social_links_array['youtube'], $link);
}
elseif (strpos ($link, "plus.google.com/") !== false) {
$total_social_link_count++;
$gp_link_count++;
array_push($social_links_array['google_p'], $link);
}
elseif (strpos ($link, "github.com/") !== false) {
$total_social_link_count++;
$github_link_count++;
array_push($social_links_array['github'], $link);
}
elseif (strpos ($link, "pinterest.com/") !== false) {
$total_social_link_count++;
$pint_link_count++;
array_push($social_links_array['pinterest'], $link);
}
else {
// I know this has nothing to do with the code but again i love comments ;__; it's feels good to waste time :p
}
}
if ($total_social_link_count == 0){
echo $bold . $red . "[!] No Social Link Found In Source Code. \n\e[0m";
}
elseif ($total_social_link_count == "1") {
// As much as i hate to admit grammer is important :p
echo $bold . $lblue . "[i] " . $fgreen . $total_social_link_count . $lblue . " Social Link Was Gathered From Source Code \n\n";
foreach ($social_links_array['facebook'] as $link) {
echo $bold . $blue . "[ facebook ] " . $white . $link . "\n";
}
foreach ($social_links_array['twitter'] as $link) {
echo $bold . $cyan . "[ twitter ] " . $white . $link . "\n";
}
foreach ($social_links_array['instagram'] as $link) {
echo $bold . $magenta . "[ instagram ] " . $white . $link . "\n";
}
foreach ($social_links_array['youtube'] as $link) {
echo $bold . $red . "[ youtube ] " . $white . $link . "\n";
}
foreach ($social_links_array['google_p'] as $link) {
echo $bold . $orange . "[ google+ ] " . $white . $link . "\n";
}
foreach ($social_links_array['pinterest'] as $link) {
echo $bold . $red . "[ pinterest ] " . $white . $link . "\n";
}
foreach ($social_links_array['github'] as $link) {
echo $bold . $grey . "[ github ] " . $white . $link . "\n";
}
echo "\n";
} else {
echo $bold . $lblue . "[i] " . $fgreen . $total_social_link_count . $lblue . " Social Links Were Gathered From Source Code \n\n";
foreach ($social_links_array['facebook'] as $link) {
echo $bold . $blue . "[ facebook ] " . $white . $link . "\n";
}
foreach ($social_links_array['twitter'] as $link) {
echo $bold . $cyan . "[ twitter ] " . $white . $link . "\n";
}
foreach ($social_links_array['instagram'] as $link) {
echo $bold . $magenta . "[ instagram ] " . $white . $link . "\n";
}
foreach ($social_links_array['youtube'] as $link) {
echo $bold . $red . "[ youtube ] " . $white . $link . "\n";
}
foreach ($social_links_array['google_p'] as $link) {
echo $bold . $orange . "[ google+ ] " . $white . $link . "\n";
}
foreach ($social_links_array['pinterest'] as $link) {
echo $bold . $red . "[ pinterest ] " . $white . $link . "\n";
}
foreach ($social_links_array['github'] as $link) {
echo $bold . $grey . "[ github ] " . $white . $link . "\n";
}
echo "\n";
}
}
function extractLINKS($reallink){
global $bold, $lblue, $fgreen;
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$ip = str_replace("https://","",$reallink);
$lwwww = str_replace("www.","",$ip);
$elsc = file_get_contents($reallink, false, stream_context_create($arrContextOptions));
$eldom = new DOMDocument;
@$eldom->loadHTML($elsc);
$elinks = $eldom->getElementsByTagName('a');
$elinks_count = 0;
foreach ($elinks as $ec) {
$elinks_count++;
}
echo $bold . $lblue . "[i] Number Of Links Found In Source Code : " . $fgreen . $elinks_count . "\n";
userinput("Display Links ? (Y/N) ");
$bv_show_links = trim(fgets(STDIN, 1024));
if ($bv_show_links == "y" or $bv_show_links =="Y"){
foreach ($elinks as $elink) {
$elhref = $elink->getAttribute('href');
if (strpos($elhref, $lwwww) !== false ) {
echo "\n\e[92m\e[1m*\e[0m\e[1m $elhref";
}
else {
echo "\n\e[38;5;208m\e[1m*\e[0m\e[1m $elhref";
}
}
echo "\n";
}
else {
// not showing links.
}
}
function readcontents($urltoread){
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$filecntns = file_get_contents($urltoread, false, stream_context_create($arrContextOptions));
return $filecntns;
}
function MXlookup ($site){
$Mxlkp = dns_get_record($site, DNS_MX);
$mxrcrd = $Mxlkp[0]['target'];
$mxip = gethostbyname($mxrcrd);
$mx = gethostbyaddr($mxip);
$mxresult = "\e[1m\e[36mIP :\e[32m " . $mxip ."\n\e[36mHOSTNAME:\e[32m " . $mx ;
return $mxresult;
}
function bv_get_alexa_rank($url){
$xml = simplexml_load_file("http://data.alexa.com/data?cli=10&url=".$url);
if(isset($xml->SD)):
return $xml->SD->POPULARITY->attributes()->TEXT;
endif;
}
function bv_moz_info($url){
global $bold, $red, $fgreen, $lblue, $blue;
require ("config.php");
if (strpos($accessID, " ") !== false OR strpos($secretKey, " ") !== false){
echo $bold . $red . "\n[!] Some Results Will Be Omited (Please Put Valid MOZ API Keys in config.php file)\n\n";
}
else {
$expires = time() + 300;
$SignInStr = $accessID. "\n" .$expires;
$binarySignature = hash_hmac('sha1', $SignInStr, $secretKey, true);
$SafeSignature = urlencode(base64_encode($binarySignature));
$objURL = $url;
$flags = "103079231492";
$reqUrl = "http://lsapi.seomoz.com/linkscape/url-metrics/".urlencode($objURL)."?Cols=".$flags."&AccessID=".$accessID."&Expires=".$expires."&Signature=".$SafeSignature;
$opts = array(
CURLOPT_RETURNTRANSFER => true
);
$curlhandle = curl_init($reqUrl);
curl_setopt_array($curlhandle, $opts);
$content = curl_exec($curlhandle);
curl_close($curlhandle);
$resObj = json_decode($content);
echo $bold . $lblue . "[i] Moz Rank : " . $fgreen . $resObj->{'umrp'} . "\n";
echo $bold . $lblue . "[i] Domain Authority : " . $fgreen . $resObj->{'pda'} . "\n";
echo $bold . $lblue . "[i] Page Authority : " . $fgreen . $resObj->{'upa'} . "\n";
}
}
?>