This file is indexed.

/usr/bin/namecheck is in devscripts 2.11.6ubuntu1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
#!/usr/bin/perl -w

=head1 NAME

namecheck - Check project names are not already taken.

=head1 ABOUT

This is a simple tool to automate the testing of project names at the most
common Open Source / Free Software hosting environments.

Each new project requires a name, and those names are ideally unique.  To come
up with names is hard, and testing to ensure they're not already in use is
time-consuming - unless you have a tool such as this one.

=head1 CUSTOMIZATION

The script, as-is, contains a list of sites, and patterns, to test against.

If those patterns aren't sufficient then you may create your own additions and
add them to the script.  If you wish to have your own version of the patterns
you may save them into the file ~/.namecheckrc

=head1 HOMEPAGE

The most recent version of this script may be found here:

http://mybin.repository.steve.org.uk/?raw-file/tip/namecheck

=head1 AUTHOR

Steve
--
http://www.steve.org.uk/

=head1 LICENSE

Copyright (c) 2008 by Steve Kemp.  All rights reserved.

This module is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

=cut



#
#  Good practise.
#
use strict;
use warnings;


#
#  A module for fetching webpages.
#
use LWP::UserAgent;



#
#  Get the name from the command line.
#
my $name = shift;
if ( !defined($name) )
{
    print <<EOF;
Usage: $0 name
EOF
    exit;
}



#
#  Get the patterns we're going to use for testing.
#
my @lines = loadPatterns();


#
#  Assuming we have patterns use them.
#
testSites(@lines);


#
#  NOT REACHED.
#
exit;



#
#  Load the list of sites, and patterns, to test.
#
#  By default these will come from the end of the script
# itself.  A user may create the file ~/.namecheckrc with
# their own patterns if they prefer.
#

sub loadPatterns
{
    my $file  = $ENV{ 'HOME' } . "/.namecheckrc";
    my @lines = ();

    if ( -e $file )
    {
        open( FILE, "<", $file )
          or die "Failed to open $file - $!";
        while (<FILE>)
        {
            push( @lines, $_ );
        }
        close(FILE);
    }
    else
    {
        while (<DATA>)
        {
            push( @lines, $_ );
        }
    }

    return (@lines);
}

#
#  Test the given name against the patterns we've loaded from our
# own script, or the users configuration file.
#

sub testSites
{
    my (@patterns) = (@_);

    #
    # Create and setup an agent for the downloading.
    #
    my $ua = LWP::UserAgent->new();
    $ua->agent('Mozilla/5.0');
    $ua->timeout(10);
    $ua->env_proxy();


    foreach my $entry (@patterns)
    {

        #
        #  Skip blank lines, and comments.
        #
        chomp($entry);
        next if ( ( !$entry ) || ( !length($entry) ) );
        next if ( $entry =~ /^#/ );


        #
        #  Each line is an URL + a pattern, separated by a pipe.
        #
        my ( $url, $pattern ) = split( /\|/, $entry );

        #
        #  Strip leading/trailing spaces.
        #
        $pattern =~ s/^\s+//;
        $pattern =~ s/\s+$//;


        #
        #  Interpolate the proposed project name in the string.
        #
        $url =~ s/\%s/$name/g if ( $url =~ /\%s/ );

        #
        #  Find the hostname we're downloading; just to show the user
        # something is happening.
        #
        my $urlname = $url;
        if ( $urlname =~ /:\/\/([^\/]+)\// )
        {
            $urlname = $1;
        }
        print sprintf "Testing %20s", $urlname;


        #
        #  Get the URL
        #
        my $response = $ua->get($url);

        #
        #  If success we look at the returned text.
        #
        if ( $response->is_success() )
        {

            #
            #  Get the page content - collapsing linefeeds.
            #
            my $c = $response->content();
            $c =~ s/[\r\n]//g;

            #
            #  Does the page have the pattern?
            #
            if ( $c !~ /\Q$pattern\E/i )
            {
                print " - In use\n";
                print "Aborting - name '$name' is currently used.\n";
                exit 0;
            }
            else
            {
                print " - Available\n";
            }
        }
        else
        {

            #
            #  Otherwise we'll assume that 404 means that the
            # project isn't taken.
            #
            my $c = $response->status_line();
            if ( $c =~ /404/ )
            {
                print " - Available\n";
            }
            else
            {

                #
                #  Other errors we can't handle.
                #
                print "ERROR fetching $url - $c\n";
            }
        }

    }


    #
    #  If we got here the name is free.
    #
    print "\n\nThe name '$name' doesn't appear to be in use.\n";
    exit 1;
}


__DATA__

#
#  The default patterns.
#
#  If you want to customise them either do so here, or create the
# file ~/.namecheckrc with your own contents in the same format.
#
http://%s.tuxfamily.org/             | Not Found
http://alioth.debian.org/projects/%s | project does not exist
http://developer.berlios.de/projects/%s | Invalid Project
http://freshmeat.net/projects/%s     | We encounted an error
http://launchpad.net/%s              | no page with this address
http://savannah.gnu.org/projects/%s  | Invalid Group
http://sourceforge.net/projects/%s   | Invalid Project
http://www.ohloh.net/projects/%s     | Sorry, the page you are trying to view is not here
https://gna.org/projects/%s          | Invalid Group
http://code.google.com/p/%s          | Not Found