-
Notifications
You must be signed in to change notification settings - Fork 133
/
ftp.pl
446 lines (393 loc) · 13 KB
/
ftp.pl
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
#!/usr/bin/perl -w
# ftp-user-enum - Brute Force Usernames
# Copyright (C) 2006 [email protected]
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# This tool may be used for legal purposes only. Users take full responsibility
# for any actions performed using this tool. If these terms are not acceptable to
# you, then do not use this tool.
#
# You are encouraged to send comments, improvements or suggestions to
# me at [email protected]
#
# This program is derived from dns-grind v1.0 ( http://pentestmonkey.net/tools/ftp-user-enum )
use strict;
use Socket;
use IO::Handle;
use IO::Select;
use IO::Socket::INET;
use Getopt::Std;
$| = 1;
my $VERSION = "1.0";
my $debug = 0;
my @child_handles = ();
my $verbose = 0;
my $max_procs = 5;
my $ftp_port = 21;
my @usernames = ();
my @hosts = ();
my $recursive_flag = 1;
my $query_timeout = 15;
my $start_time = time();
my $end_time;
my $mode = "sol";
my $kill_child_string = "\x00";
$SIG{CHLD} = 'IGNORE'; # auto-reap
my %opts;
my $usage=<<USAGE;
ftp-user-enum v$VERSION ( http://pentestmonkey.net/tools/ftp-user-enum )
Usage: ftp-user-enum.pl [options] ( -u username | -U file-of-usernames ) ( -t host | -T file-of-targets )
Enumerates users via FTP daemon specific bugs:
- Solaris FTPd responds differently to "CWD ~user" and "CWD ~nosuchuser" commands
- GNU Inetutils responds differently "USER user" and "USER nosuchuser" commands
options are:
-m n Maximum number of resolver processes (default: $max_procs)
-u user Check if user exists on remote system
-U file File of usernames to check via ftp service
-M mode Mode for enumerating users: "sol" for Solaris FTPd or
"iu" GNU Inetutils ftpd. Default (default: $mode)
-t host Server host running ftp service
-T file File of hostnames running the ftp service
-p port TCP port on which ftp service runs (default: $ftp_port)
-d Debugging output
-t n Wait a maximum of n seconds for reply (default: $query_timeout)
-v Verbose
-h This help message
Also see ftp-user-enum-user-docs.pdf in the ftp-user-enum tar ball.
Examples:
1) Enumerate users on a vulnerable Solaris host:
\$ ftp-user-enum.pl -M sol -U users.txt -t 10.0.0.1
2) Enumerate users on a list of hosts running vulnerable Inetutils FTPd:
\$ ftp-user-enum.pl -M iu -U users.txt -T ips.txt
USAGE
getopts('m:u:U:s:S:dt:vhM:', \%opts);
# Print help message if required
if ($opts{'h'}) {
print $usage;
exit 0;
}
my $username = $opts{'u'} if $opts{'u'};
my $username_file = $opts{'U'} if $opts{'U'};
my $host = $opts{'t'} if $opts{'t'};
my $host_file = $opts{'T'} if $opts{'T'};
my $file = $opts{'f'} if $opts{'f'};
$max_procs = $opts{'m'} if $opts{'m'};
$mode = $opts{'M'} if $opts{'M'};
$verbose = $opts{'v'} if $opts{'v'};
$debug = $opts{'d'} if $opts{'d'};
# Check for illegal option combinations
unless ((defined($username) or defined($username_file)) and (defined($host) or defined($host_file))) {
print $usage;
exit 1;
}
# Check for strange option combinations
if (
(defined($host) and defined($host_file))
or
(defined($username) and defined($username_file))
) {
print "WARNING: You specified a lone username or host AND a file of them. Continuing anyway...\n";
}
# Check mode if valid
if ($mode ne "sol" and $mode ne "iu") {
print "ERROR: Incorrect option passed via -M. Should be 'sol' or 'iu'. -h for help.\n";
exit 1;
}
# Shovel usernames and host into arrays
if (defined($username_file)) {
open(FILE, "<$username_file") or die "ERROR: Can't open username file $username_file: $!\n";
@usernames = map { chomp($_); $_ } <FILE>;
}
if (defined($host_file)) {
open(FILE, "<$host_file") or die "ERROR: Can't open username file $host_file: $!\n";
@hosts = map { chomp($_); $_ } <FILE>;
}
if (defined($username)) {
push @usernames, $username;
}
if (defined($host)) {
push @hosts, $host;
}
if (defined($host_file) and not @hosts) {
print "ERROR: Targets file $host_file was empty\n";
exit 1;
}
if (defined($username_file) and not @usernames) {
print "ERROR: Username file $username_file was empty\n";
exit 1;
}
print "Starting ftp-user-enum v$VERSION ( http://pentestmonkey.net/tools/ftp-user-enum )\n";
print "\n";
print " ----------------------------------------------------------\n";
print "| Scan Information |\n";
print " ----------------------------------------------------------\n";
print "\n";
print "Mode ..................... $mode\n";
print "Worker Processes ......... $max_procs\n";
print "Targets file ............. $host_file\n" if defined($host_file);
print "Usernames file ........... $username_file\n" if defined($username_file);
print "Target count ............. " . scalar(@hosts) . "\n" if @hosts;
print "Username count ........... " . scalar(@usernames) . "\n" if @usernames;
print "Target TCP port .......... $ftp_port\n";
print "Query timeout ............ $query_timeout secs\n";
print "\n";
print "######## Scan started at " . scalar(localtime()) . " #########\n";
# Spawn off correct number of children
foreach my $proc_count (1..$max_procs) {
socketpair(my $child, my $parent, AF_UNIX, SOCK_STREAM, PF_UNSPEC) or die "socketpair: $!";
$child->autoflush(1);
$parent->autoflush(1);
# Parent executes this
if (my $pid = fork) {
close $parent;
print "[Parent] Spawned child with PID $pid to do resolving\n" if $debug;
push @child_handles, $child;
# Chile executes this
} else {
close $child;
while (1) {
my $timed_out = 0;
# Read host and username from parent
my $line = <$parent>;
chomp($line);
my ($host, $username) = $line =~ /^(\S+)\t(.*)$/;
# Exit if told to by parent
if ($line eq $kill_child_string) {
print "[Child $$] Exiting\n" if $debug;
exit 0;
}
# Sanity check host and username
if (defined($host) and defined($username)) {
print "[Child $$] Passed host $host and username $username\n" if $debug;
} else {
print "[Child $$] WARNING: Passed garbage. Ignoring: $line\n";
next;
}
# Do ftp query with timeout
my $response;
eval {
local $SIG{ALRM} = sub { die "alarm\n" };
alarm $query_timeout;
my $s = IO::Socket::INET->new( PeerAddr => $host,
PeerPort => $ftp_port,
Proto => 'tcp'
)
or die "Can't connect to $host:$ftp_port: $!\n";
if ($mode eq "sol") {
wait_for_banner($s);
$s->send("cwd ~$username\r\n");
my $buffer;
$s->recv($buffer, 10000);
$response .= $buffer;
my $wait = 0.1;
select(undef, undef, undef, $wait);
$s->recv($buffer, 10000);
$response .= $buffer;
} elsif ($mode eq "iu") {
wait_for_banner($s);
$s->send("USER $username\r\n");
$response = get_line($s);
} else {
die "ERROR: Incorrect mode. This shouldn't happen.\n";
}
alarm 0;
};
# if ($@) {
# $timed_out = 1;
# print "[Child $$] Timeout for username $username on host $host\n" if $debug;
# }
my $trace;
if ($debug) {
$trace = "[Child $$] $username\@$host: ";
} else {
$trace = "$username\@$host: ";
}
if ($mode eq "sol") {
if ($response and not $timed_out) {
# Negative result
if ($response =~ /550 Unknown user name after ~/s) {
print $parent $trace . "<no such user>\n";
next;
}
# Positive result
if ($response =~ /530 Please login with USER and PASS./) {
print $parent $trace . "$username\n";
next;
}
# Unknown response
$response =~ s/[\n\r]/./g;
print $parent $trace . "$response\n";
next;
}
} elsif ($mode eq "iu") {
if ($response and not $timed_out) {
# Positive result
if ($response =~ /530 User.*access denied./) {
print $parent $trace . "$username\n";
next;
}
# Negative result
if ($response =~ /530 /s) {
print $parent $trace . "<no such user>\n";
next;
}
# Positive result
if ($response =~ /331 Password required for/) {
print $parent $trace . "$username\n";
next;
}
# Unknown response
$response =~ s/[\n\r]/./g;
print $parent $trace . "$response\n";
next;
}
} else {
die "ERROR: Incorrect mode. This shouldn't happen.\n";
}
if ($timed_out) {
print $parent $trace . "<timeout>\n";
} else {
if (!$response) {
print $parent $trace . "<no result>\n";
}
}
}
exit;
}
}
# Fork once more to make a process that will us usernames and hosts
socketpair(my $get_next_query, my $parent, AF_UNIX, SOCK_STREAM, PF_UNSPEC) or die "socketpair: $!";
$get_next_query->autoflush(1);
$parent->autoflush(1);
# Parent executes this
if (my $pid = fork) {
close $parent;
# Chile executes this
} else {
# Generate queries from username-host pairs and send to parent
foreach my $username (@usernames) {
foreach my $host (@hosts) {
my $query = $host . "\t" . $username;
print "[Query Generator] Sending $query to parent\n" if $debug;
print $parent "$query\n";
}
}
exit 0;
}
printf "Created %d child processes\n", scalar(@child_handles) if $debug;
my $s = IO::Select->new();
my $s_in = IO::Select->new();
$s->add(@child_handles);
$s_in->add(\*STDIN);
my $timeout = 0; # non-blocking
my $more_queries = 1;
my $outstanding_queries = 0;
my $query_count = 0;
my $result_count = 0;
# Write to each child process once
writeloop: foreach my $write_handle (@child_handles) {
my $query = <$get_next_query>;
if ($query) {
chomp($query);
print "[Parent] Sending $query to child\n" if $debug;
print $write_handle "$query\n";
$outstanding_queries++;
} else {
print "[Parent] Quitting main loop. All queries have been read.\n" if $debug;
last writeloop;
}
}
# Keep reading from child processes until there are no more queries left
# Write to a child only after it has been read from
mainloop: while (1) {
# Wait until there's a child that we can either read from or written to.
my ($rh_aref) = IO::Select->select($s, undef, undef); # blocking
print "[Parent] There are " . scalar(@$rh_aref) . " children that can be read from\n" if $debug;
foreach my $read_handle (@$rh_aref) {
# Read from child
chomp(my $line = <$read_handle>);
if ($verbose == 1 or $debug == 1 or not ($line =~ /<no such user>/ or $line =~ /no result/ or $line =~ /<timeout>/)) {
print "$line\n";
$result_count++ unless ($line =~ /<no such user>/ or $line =~ /no result/ or $line =~ /<timeout>/);
}
$outstanding_queries--;
$query_count++;
# Write to child
my $query = <$get_next_query>;
if ($query) {
chomp($query);
print "[Parent] Sending $query to child\n" if $debug;
print $read_handle "$query\n";
$outstanding_queries++;
} else {
print "DEBUG: Quitting main loop. All queries have been read.\n" if $debug;
last mainloop;
}
}
}
# Wait to get replies back from remaining children
my $count = 0;
readloop: while ($outstanding_queries) {
my @ready_to_read = $s->can_read(1); # blocking
foreach my $child_handle (@ready_to_read) {
print "[Parent] Outstanding queries: $outstanding_queries\n" if $debug;
chomp(my $line = <$child_handle>);
if ($verbose == 1 or $debug == 1 or not ($line =~ /<no such user>/ or $line =~ /no result/ or $line =~ /<timeout>/)) {
print "$line\n";
$result_count++ unless ($line =~ /<no such user>/ or $line =~ /no result/ or $line =~ /<timeout>/);
}
print $child_handle "$kill_child_string\n";
$s->remove($child_handle);
$outstanding_queries--;
$query_count++;
}
}
# Tell any remaining children to exit
foreach my $handle ($s->handles) {
print "[Parent] Telling child to exit\n" if $debug;
print $handle "$kill_child_string\n";
}
# Wait for all children to terminate
while(wait != -1) {};
print "######## Scan completed at " . scalar(localtime()) . " #########\n";
print "$result_count results.\n";
print "\n";
$end_time = time(); # Second granularity only to avoid depending on hires time module
my $run_time = $end_time - $start_time;
$run_time = 1 if $run_time < 1; # Avoid divide by zero
printf "%d queries in %d seconds (%0.1f queries / sec)\n", $query_count, $run_time, $query_count / $run_time;
sub wait_for_banner {
my $sock = shift;
my $banner = "";
# print "$$: waiting for banner\n";
while ($banner !~ /220 .*\n/s) {
my $buffer;
$sock->read($buffer, 1);
$banner .= $buffer;
# print "$$: $banner\n";
}
# print "$$: final banner: $banner\n";
}
sub get_line {
my $sock = shift;
my $line = "";
while ($line !~ /\d\d\d .*\n/s) {
my $buffer;
$sock->read($buffer, 1);
$line .= $buffer;
# print "$$: $banner\n";
}
return $line;
}