This query is marked as a draft This query has been published by Superzerocool.

SQL

AخA
 
USE eswiki_p;
SELECT * from recentchanges rc
inner join actor_recentchanges ac on rc.rc_actor = ac.actor_id 
where actor_user is null
   and (
     -- altos
     INET_ATON(actor_name) between INET_ATON('181.30.1.32')    and INET_ATON('181.30.1.47')       OR -- 181.30.1.32/28
     INET_ATON(actor_name) between INET_ATON('200.69.138.112') and INET_ATON('200.69.138.127')    OR -- 200.69.138.112/28
     -- bajitos
     INET_ATON(actor_name) between INET_ATON('45.230.20.0')    and INET_ATON('45.230.20.255')     OR -- 45.230.20.0/24
     INET_ATON(actor_name) between INET_ATON('186.33.210.0')   and INET_ATON('186.33.210.128')    OR -- 186.33.210.0/25
     INET_ATON(actor_name) between INET_ATON('190.221.190.0')  and INET_ATON('190.221.190.255')   OR -- 190.221.190.0/24
     -- neu
     INET_ATON(actor_name) between INET_ATON('200.85.183.96')  and INET_ATON('200.85.183.111')    OR -- 200.85.183.96/28
     -- tucu
     INET_ATON(actor_name) between INET_ATON('186.153.147.215')  and INET_ATON('186.153.147.223') OR -- 186.153.147.216/29
     INET_ATON(actor_name) between INET_ATON('190.221.176.111')  and INET_ATON('190.221.176.119')    -- 190.221.176.112/29
   );
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.

Checking query status...