How know what does a account

Hi everyone.

I have some recent accounts, I’ve some doubt about theirs legitimacy (strange email domain, strange name) but because it’s not a latin name (Asia in utf-8) It’s hard to know if it’s a fake name or not.

So is they are any way to know if a account are participate any event ?

Regards

NB: I still don’t understand why people/robot create such kind of account…

Probably they hope to post spam. If event creation is not restricted they might create spam events with spammy (or worse) URLs in various places (e.g. event description).

You could view their dashboard. Another option via indico shell would be something like this:

u = User.query.filter_by(email='adrian.moennich@cern.ch').first()
u.created_events.count()
u.event_persons.count()

You can replace count() with all() to get the actual list.