forked from cehkunal/pentest-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subthreat.php
executable file
·77 lines (60 loc) · 1.32 KB
/
subthreat.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
#!/usr/bin/php
<?php
function isSubdomain( $str )
{
$str = strtolower( $str );
if( preg_match('/[^0-9a-z_\-\.]/',$str) || preg_match('/[^0-9a-z]/',$str[0]) || preg_match('/[^a-z]/',$str[strlen($str)-1]) || substr_count($str,'.')<2 ) {
return false;
} else {
return true;
}
}
function extractDomain( $host )
{
$tmp = explode( '.', $host );
$cnt = count( $tmp );
$domain = $tmp[$cnt-1];
for( $i=$cnt-2 ; $i>=0 ; $i-- ) {
$domain = $tmp[$i].'.'.$domain;
if( strlen($tmp[$i]) > 3 ) {
break;
}
}
return $domain;
}
function usage( $err=null ) {
echo 'Usage: '.$_SERVER['argv'][0]." <domain>\n";
if( $err ) {
echo 'Error: '.$err."\n";
}
exit();
}
if( $_SERVER['argc'] != 2 ) {
usage();
}
$t_host = [];
$domain = $_SERVER['argv'][1];
$src = 'https://www.threatcrowd.org/searchApi/v2/domain/report/?domain='.$domain;
$json = file_get_contents( $src );
//var_dump( $json );
$t_json = json_decode( $json, true );
//var_dump( $t_json);
if( $t_json['response_code'] != 1 ) {
echo 'Error: reponse_code='.$t_json['response_code']."\n";
exit(-1);
}
foreach( $t_json['subdomains'] as $h ) {
if( isSubdomain($h) && extractDomain($h) == $domain ) {
$t_host[] = $h;
}
}
if( count($t_host) )
{
$t_host = array_unique( $t_host );
sort( $t_host );
foreach( $t_host as $h ) {
echo $h."\n";
}
}
exit( 0 );
?>