SQL
AخA
use eswiki_p;
SELECT * from recentchanges
inner join actor on rc_actor = actor_id
where actor_user is null
and (
INET_ATON(actor_name) between INET_ATON('181.30.1.33') and INET_ATON('181.30.1.46') OR -- 181.30.1.32/28
INET_ATON(actor_name) between INET_ATON('200.69.138.113') and INET_ATON('200.69.138.126') OR -- 200.69.138.112/28
INET_ATON(actor_name) = INET_ATON('45.230.20.0/24')
or INET_ATON(actor_name) = INET_ATON('186.33.210.0/25'))
limit 10;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.