<p>Having had a look at user accounts created from November 05 to 09 (that is, during the last 108 hours) there are 11318 accounts. A simple </p>

<pre><code>grep _name *| cut -d '"' -f 4| grep -E -i "[a-z][0-9]{1,3}" -c 
</code></pre>

<p>gives 6576 occurrences of names like this: </p>

<pre><code>William925i6f
William925i6fs0
William936f5an8
William937j8ka4
William937l8mc4
William937l8md4
William937m8n9
William939v1zr0
William947m8n
William947r3yu4
William948v2wd6
William959x5if7
William962h2ro1
William975o4he9
William9b2h1dn8
William9f7j7ja4
William9i4d2kx5
William9l9f5px2
William9o3k6uf1
William9q0q0qf6
William9q9l8hu1
William9q9o9nc4
William9r0o8jx2
William9r1t1tk6
William9s1t9pg6
William9s1u0tj7
William9s2s0cs2
</code></pre>

<p>There are also some false positives, but a more strict</p>

<pre><code>grep _name *| cut -d '"' -f 4| grep -E -i "[a-z][0-9]{1,3}[a-z][0-9]{1,3}" -c
</code></pre>

<p>still has 4367 hits. Looking for names with spam in them:</p>

<pre><code>grep _name *| egrep -i "premium|cash|bank|credit|mobil|phone|handy|pharma|viagra|free|generic" -c
</code></pre>

<p>gives a quite meagre 30 results.</p>

<p>With the above I only want to show that at least during the last four days around 50% of the newly registered accounts seem to be created by bots/scripts and assumedly won't be used for the benefit of OSM. Instead of having to remove these users by hand by admins it would spare work if they had a harder time to register accounts using scripts.</p>

<p>I know that it is easy to say "I'd like to have" but hard to solve the issue. Though I hope you can find a solution.</p>

<p>See also: <a href="https://github.com/openstreetmap/openstreetmap-website/issues/841" class="issue-link" title="Allow reporting of abusive users to moderators or admins">#841</a><br>
<a href="http://www.openstreetmap.org/user/malenki/diary/36268">My dairy entry</a> resulting in this issue.<br>
The data sample I used you can find <a href="http://malenki.ch/OSM/data/user_accounts.7z">here</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br>Reply to this email directly or <a href="https://github.com/openstreetmap/openstreetmap-website/issues/1083">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/ABWnLUPfjxBiCj44Nh6P45B_a5ftS7AJks5pENVsgaJpZM4GeyhD.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/openstreetmap/openstreetmap-website/issues/1083"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>