-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathroot_devil_wp-joomla_scanner.php
6573 lines (6507 loc) · 151 KB
/
root_devil_wp-joomla_scanner.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
$head = '
<html>
<head>
</script>
<title>--==[[ROOT_DEVIL Wordpress/Joomla scanner By Team IndiShell]]==--</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<STYLE>
body {
background-image: url("http://pakistandirectory.org/cgi/Untitled-1.jpg");
background-position: center center;
background-repeat: no-repeat;
background-size: 1000px 300px;
background-color: #000000;
background-attachment: fixed;
font-family: Tahoma
}
tr {
BORDER: dashed 1px #333;
color: #FFF;
}
td {
BORDER: dashed 1px #333;
color: #FFF;
}
.table1 {
BORDER: 0px Black;
BACKGROUND-COLOR: Black;
color: #FFF;
}
.td1 {
BORDER: 0px;
BORDER-COLOR: #333333;
font: 7pt Verdana;
color: Green;
}
.tr1 {
BORDER: 0px;
BORDER-COLOR: #333333;
color: #FFF;
}
table {
BORDER: dashed 1px #333;
BORDER-COLOR: #333333;
BACKGROUND-COLOR: Black;
color: #FFF;
}
input {
border : solid 2px;
border-color : #333;
BACKGROUND-COLOR: white;
font: 10pt comic sans ms;
color: black;
}
select {
BORDER-RIGHT: Black 2px solid;
BORDER-TOP: #DF0000 1px solid;
BORDER-LEFT: #DF0000 1px solid;
BORDER-BOTTOM: Black 1px solid;
BORDER-color: #FFF;
BACKGROUND-COLOR: Black;
font: 8pt Verdana;
color: Red;
}
submit {
BORDER: buttonhighlight 2px outset;
BACKGROUND-COLOR: Black;
width: 40%;
color: white;
}
textarea {
border : dashed 2px #333;
BACKGROUND-COLOR: Black;
font: Fixedsys bold;
color: #999;
}
BODY {
SCROLLBAR-FACE-COLOR: Black; SCROLLBAR-HIGHLIGHT-color: #FFF; SCROLLBAR-SHADOW-color: #FFF; SCROLLBAR-3DLIGHT-color: #FFF; SCROLLBAR-ARROW-COLOR: Black; SCROLLBAR-TRACK-color: #FFF; SCROLLBAR-DARKSHADOW-color: #FFF
margin: 1px;
color: Red;
background-color: Black;
}
.main {
margin : -287px 0px 0px -490px;
BORDER: dashed 1px #333;
BORDER-COLOR: #333333;
}
.tt {
background-color: Black;
}
A:link {
COLOR: White; TEXT-DECORATION: none
}
A:visited {
COLOR: White; TEXT-DECORATION: none
}
A:hover {
color: Red; TEXT-DECORATION: none
}
A:active {
color: Red; TEXT-DECORATION: none
}
</STYLE>
<script language=\'javascript\'>
function hide_div(id)
{
document.getElementById(id).style.display = \'none\';
document.cookie=id+\'=0;\';
}
function show_div(id)
{
document.getElementById(id).style.display = \'block\';
document.cookie=id+\'=1;\';
}
function change_divst(id)
{
if (document.getElementById(id).style.display == \'none\')
show_div(id);
else
hide_div(id);
}
</script>'; ?>
<html>
<head>
<?php
echo $head ;
echo '
<table width="100%" cellspacing="0" cellpadding="0" class="tb1" >
<td width="100%" align=center valign="top" rowspan="1">
<font color=#ff9933 size=5 face="comic sans ms"><b>--==[[ r0ot</font><font color=white size=5 face="comic sans ms"><b>_D3</font><font color=green size=5 face="comic sans ms"><b>vil ]]==--</font> <br><font color=#ff9933 size=5 face="comic sans ms"><b>--==[[ Wordpress/Joomla</font><font color=white size=5 face="comic sans ms"><b> Vulnerable extension scanner</font><font color=green size=5 face="comic sans ms"><b> By Team Indishell ]]==--</font>
<td height="10" align="left" class="td1"></td></tr><tr><td
width="100%" align="center" valign="top" rowspan="1"><font
color="red" face="comic sans ms"size="1"><b>
<font color=#ff9933>
####################################################<font color=white>#####################################################</font><font color=green>####################################################</font><br><font color=white>-==[[Greetz to]]==--</font><br> Guru ji zero ,code breaker ica, Aasim shaikh, Raman kumar rana,INX_r0ot,Darkwolf indishell, Chinmay Pandya ,Silent poison India,Magnum sniper,Atul Dwivedi,ethicalnoob Indishell,Local root indishell,Irfninja indishell<br>cool toad,cool shavik, Ebin V Thomas,Dinelson Amine ,Mr. Trojan,rad paul,Godzila,mike waals,Neo hacker ICA, Golden boy INDIA,Ketan Singh,Yash,Reborn India,Alicks,Aneesh Dogra,silent hacker,lovetherisk<br>Suriya Prakash,cyber gladiator,Cyber Ace,hero,Minhal Mehdi ,Raj bhai ji,cold fire hacker,Prashant Tanwar, VikAs ViKi ,Rakesh, Bhuppi,Mohit, Ffe ^_^,Ashish,Shardhanand and rest of TEAM INDISHELL<br>
<font color=white>--==[[Dedicated to]]==--</font>
<br># SH.Kishan Singh Tanwar and my Ex Teacher Mrs. Ritu Tomer Rathi #<br><font color=white>--==[[Interface Desgined By]]==--</font><br><font color=red>Deepika Kaushik</font><br><font color=#ff9933>
####################################################<font color=white>#####################################################</font><font color=green>####################################################</font>
</table>
';
////css end =))
?>
<!-- form script-->
<body bgcolor=black><font color=white face="comic sans ms" size=3><h5 style="text-align:center"><font size=4 color=#ff9933 face="comic sans ms"><div align=center><table width=50%><tr><td><font color=white><marquee behavior="scroll" direction="left" scrollamount="2" scrolldelay="20" width="100%"><span class="footerlink">Love happen only once .... Rest is life :[</span></marquee><br></font></td></tr></table>
<form method=post><font color=white>Bhai ji....select module for which you want to scan website</font><br>||<br>\/<br>
<input type=submit name=wv value="Wordpress version"> 
<input type=submit name=fd value="full path discloser"> 
<input type=submit name=wt value="Wordpress Themes"> 
<input type=submit name=wtim value="Themes Timthumb"> 
<input type=submit name=wp value="Wordpress Plugins"> 
<input type=submit name=jc value="Joomla Components" />
</form>
<?php
error_reporting(0);
//////////////////////
//wordpress version
//////////////////////
if(isset($_POST['wv']))
{
echo "bhaiyu....selected scan type is wordpress version checker ^_^<br>";
?><div align=center><table width=30%><tr><td align=center>website list</td></tr></table>
<form method=post>
<textarea rows=10 cols=50 name=link><?php echo "website.com/\nwebsite.com/blog/\nwebsite.com/wordpress/";?></textarea>
<p><input type=submit name=ver value="scannnnnnn this shit xD" /></form>
<?php
}
?>
<?php
error_reporting(0);
function entre2v2($text,$marqueurDebutLien,$marqueurFinLien)
{
$ar0=explode($marqueurDebutLien, $text);
$ar1=explode($marqueurFinLien, $ar0[1]);
$ar=trim($ar1[0]);
return $ar;
}
?>
<?php
error_reporting(0);
if(isset($_POST['ver']))
{
$webl=$_POST['link'];
$webs=explode("\n",$webl);
foreach ($webs as $webv)
{
$sweb = trim($webv);
$te1 = ereg_replace("(https?)://", "", $sweb);
$te = ereg_replace("www.", "", $te1);
$base_url = 'http://'.$te;
echo "scaning website $base_url <br>";
$uurl=@file_get_contents($base_url."readme.html");
if($uurl && preg_match('/Version/i',$uurl))
{
$rh=$base_url."readme.html";
echo "<div align=center><table width=60% ><tr><td align=center><font color=red size=4 face='comic sans ms'>readme.html exist for website $base_url </font></td></tr></table>";
$text=file_get_contents($rh);
$dbu=entre2v2($text,"<br />","</h1>");
echo $dbu."<br><br>";
}
}
}
?>
<?php
error_reporting(0);
//////////////////////
//full path discloser
//////////////////////
if(isset($_POST['fd']))
{
echo "bhaiyu....selected scan type is full path discloser ^_^<br>";
?><div align=center><table width=30%><tr><td align=center>website list</td></tr></table>
<form method=post>
<textarea rows=10 cols=50 name=l><?php echo "website.com/\nwebsite.com/blog/\nwebsite.com/wordpress/";?></textarea>
<p><input type=submit name=full value="lets start bhai ji xD" /></form>
<?php
}
?>
<?php
error_reporting(0);
if(isset($_POST['full']))
{
$webl=$_POST['l'];
$webs=explode("\n",$webl);
foreach ($webs as $webv)
{
$sweb = trim($webv);
$te1 = ereg_replace("(https?)://", "", $sweb);
$te = ereg_replace("www.", "", $te1);
$base_url = 'http://'.$te;
echo "scaning website $base_url <br>";
$uurl=@file_get_contents($base_url."wp-includes/admin-bar.php");
if($uurl && preg_match('/Fatal error/i',$uurl))
{
$rh=$base_url."wp-includes/admin-bar.php";
$text=file_get_contents($rh);
$dbu=entre2v2($text,"in <b>","wp-includes/admin-bar.php");
echo "<div align=center><table width=60% ><tr><td align=center><font color=red size=4 face='comic sans ms'> $dbu </font></td></tr></table>";
}
}
}
?>
<?php
error_reporting(0);
//////////////////////////////////////
//To identify, url exist or not
//////////////////////////////////////
set_time_limit(0);
error_reporting(0);
function file_exists_remote($url) {
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_NOBODY, true);
$result = curl_exec($curl);
$ret = false;
if ($result !== false) {
$statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($statusCode == 200) {
$ret = true;
}
}
curl_close($curl);
return $ret;
}
?>
<?php
error_reporting(0);
//////////////////////
//Themes
//////////////////////
if(isset($_POST['wt']))
{
echo "bhaiyu....selected scan type is wordpress themes scanner ^_^<br>";
?><div align=center><table width=50%><tr><td align=center>website list</td><td align=center>vulnerable themes</td></tr></table>
<form method=post>
<textarea rows=12 cols=40 name=web><?php echo "website.com/\nwebsite.com/blog/\nwebsite.com/wordpress/";?></textarea> 
<textarea rows=12 cols=40 name=wthe><?php echo "sandbox
archin
diary
classipress
1024px
10pad2-rising-sun
31three
3col-rdmban-rr
3colours
42k
4colourslover
5-years
76-digital-orange
8some
a
a-kelleyroo-halloween
a-little-touch-of-purple
aapna
aav1
abcok
abel-one
abov
absolum
accountant
acid-rain
adams-razor
adept
admired
adroa
adsimple
adsticle
adstyle
adventure
adventure-journal
aestival
aggiornare
ahimsa
airmail-par-avion
akyuz
albizia
ali-han-natural
ali-han-neon
alibi
alkane
allure-real-estate-theme-for-placester
altis-fx
amdhas
amerifecta
amphion-lite
an-ordinary-theme
anand
andrea
andrina-lite
andyblue
anfaust
angler
ani-world
animass
anjing
annarita
annexation
annotum-base
anonymous-elegance
aplau
applex
appliance
application
apricot
aquablock
aquasunny
arclite
ari
arjuna-x
art-blogazine
artblog
artistic
artsavius-blog
ascetica
asokay
asteroid
asusena
atahualpa
atheros
atmosphere-2010
atmospheric-augmentation
audacity-of-tanish
aurelia
aurora
auroral-theme
auto-dezmembrari
autofocus
autumn-almanac
autumn-blue-jeans
avenue-k9-buddypress-buddypack
azpismis
azul
azure-basic
b-side
babylog
bad-mojo
baltimore-phototheme
bare
baris
barthelme
basal
basic-law
basic-simplicity
basic2col
basically
batik
baughxie
baza-noclegowa
bbpress-twenty-ten
bbv1
be-berlin
beach
beardsley
beauty
bella
belle
benny
bering
best-corporate
big-city
big-red-framework
billions
biotodoma
birdsite
birdtips
bitlumen
bito
bizway
black-board
black-glass
black-green
black-hat
black-lucas
black-n-white
black-skyline
black-urban
black-with-orange
blackbird
blackbrown
blackmesa
blackneon
blackout
blankslate
blaskan
blass2
blend
blog-curvo
blog-design-studio-newblue
blog-happens
blogaholic-blue
blogbox
bloggable
blogolife
blogsimplified
blogtxt
blossom
bloxy-two
blue
blue-and-grey
blue-basic
blue-design
blue-drop
blue-fade
blue-grey-white
blue-lucas
blue-mist
blue-modern
blue-server
blue-steel
blue-taste
blue-with-grey
blue21
blueberry
bluebird
blueblack-theme
blueclouds
blueez
bluefantasy
bluefreedom
blueline
bluemod
blueprint-theme
bluesensation
blueskool
bluesky
board-blue
bodhi
boilerplate
bold-life
bombax
bombay
book-lite
boozurk
borderpx
bouquet
box-of-boom
bp-columns
bp-fakename
brain-power
brand-new-day
brblack
breathe
breezing
brightpage
brown-ish-grid
brownline
brunelleschi
brushedmetal
bubble-gum
bubblepress
bubbles-squared
buddymatic
buddypress-colours
buddypress-widget-theme
buddytheme
build
building-blocks
burning-bush
business-casual
business-lite
businessxpand_loupe
businessxpand_multicol
buttercream
bwater
bwd-1
bwd-2
c
cakifo
calotropis
candid
canyon
capricorn
carbon-coder
carbonize
carrington-blog
carrington-mobile
carrington-text
catch-box
cb-blog
cbone
celestial-aura
celestial-lite
celine
cell
chaostheory
charcoal
cheer
childishly-simple
chinese-love
chip-life
chip-zero
chocolate-lite
chocotheme
christian-sun
christmas-1
christmas-is-near
christmas-waltz
citizen-journal
citizen-kane
citrus-mix
classic
classic-chalkboard
classroom-blog
clean-and-clear
clean-and-plain
clean-blue
clean-news
clean-press
clean-retina
cleanfrog
cleanr
cleanroar
clear
clear-line
clear-seo-blue-eng
clear-style
clockwork
cloriato-lite
cloudclutter
cloudy
cloudy-blue-sky
cloudy-night
clover
coaster
codescheme_blue
codium
codium-extend
cogworks
color-palette
color-shading
color-splash
color3
colorful-motive
colors
colorway
combivan
comet
comicpress
comment-central
commodore
commune
company-website-001
connections-reloaded
constructor
contender
contrast-style
convention
coogee
cool-green
coraline
coralis
cordobo-green-park-2
core
corner
coronado
corporate
corporate-globe
corporate-theme-v2
cp-minimal
crafty
crafty-cart
crimsonsky
crucial
cubismo
cupcake-love
custom-community
cute-bubbles
cuttlefish
cw-red
cyberchimps
d5-business-line
d5-colorful
d5-corporate-lite
d5-design
d5-smartia
d5-socialia
daffodil
dailypost
daisy-gray
daleri-sweet
damasking
dark-autumn
dark-marble
dark-ornamental
dark-side
dark-temptation
dark-water-fall
dark-wood
darkbasic
darkmystery
darkzen
darwin
darwin-buddypress-buddypack
daslog-screen
daydreams
dear-diary
debut
decoder
deep-silent
deepblue
deerawan-cloudy
default
default-enhanced
delicacy
delicate
desaindigital
design-treatment
designfolio
desire
desk
desk-mess-mirrored
destro
deux-milles-douze
devart
dewdrop
dfblog
diabolique-spring
diary-cute
diary-k
diary-lite
diginews
digitalis
digu
director-theme
dirty-blue
disciple
disconnected
discussion
distinction
djupvik
dkret3
doc
dodo
dogs-life
dojo
dojuniko
dot-b
dragonskin
dream-in-infrared
dreamline
driftwood
drochilli
droidpress
dum-dum
duotone
dusk-till-dawn
dusk-to-dawn
duster
dylan
dynablue
dynamiccolor
dyne
dzonia-lite
e
easel
easy-view
easyone
easytheme
eclipse
eco
edegree
elbee-elgee
elegant
elegant-box
elegant-brit-b
elegant-glass
elegant-grunge
elegantwhite
elements-of-seo
embed
embrace
emerald-stretch
emptiness
encyclopedia
engineering-and-machinering
enough
eos
epione
epublishing
esplanade
esquire
essence
essentially-blue
esther
esther-artistic
eureka
europe
evanescence
evening-shade
evening-sun
ever-watchful
evolve
exciter
eximius
expressionblue
extreme-typewriter
f2
f8-lite
fabricpress
facebookwb
fadonet-alien
fam
fanwood
fastfood
fazio
fazyvo
feed-me-seymour
femme-flora
fetherweight
fidi-2
fifty-fifth-street
figero
fighter
filmix
finojaho
first-lego-league-official
firstyme
fishbook-buddypress-buddypack
fishy
fistic
fiver
fixed-blix
flashcast
flashy
flew
flexi-blue
floatinglight
floral-belle
floristica
flow
flower-lust
flowery
fluid-blogging
fluid-blue
fluvio
fog
foghorn
follow-me-darling
food-recipe
for-women-female
fortissimo
foto
fotogram
fragrance
frantic
freedream2010
freizeitler-nonpurista
fresh
fresh-editorial
fresh-ink-magazine
frisco-for-buddypress
frog-log
front-page
fsk141-framework
fudo
funky-green
furry-family
fusion
futuristica
gadget-story
galaxy
gamepress
gchrome
gears-and-wood
gemer
german-newspaper
get-some
ggsimplewhite
ghostbird
ghostwriter
girl
gitem
glass
gleance
glossy-stylo
glossyred
glowing-amber
golden-eagle-lite
gommero
gone-fishing
gonzo-daily
goodtheme-lead
gormspace
gradient
grain
graphene
grassland
gravel
graveyard-shift
gray-and-gold
gray-and-square
gray-lines
gray-white-black
greatideas
green-apples
green-hope
green-island
green-one
green-theme
greenblog
greener-side
greenie
greenleaf
greenpoint-milanda
greentweet_extend
greenxi
grey-matter
grey-opaque
greymonger-theme
greyville
greyzed
gridiculous
grisaille
groucho
ground-floor
grow-your-business
grunge-music
grunge-wall
grunger
guangzhou
guruq
gypsy
hair-tyson
halftone
hamid-bakeri
hanami
hanging
happy-cyclope
harvest
hatch
haunted-house
hazen
hazom-chair
hdboilerplate
headless
heartland
heatmap-adsense-theme
heavy
hellosexy
hero
hey-cookie
hjemmeside
homywhite
hope
horisontal
horizontal-theme
huan
hum
hyaline
hybrid
i-heart-pc
iblog
icandy
ice-breaker
ice-cap
idream
idris
ifeature
iflukantur
illustrative
ilookgood
ilost
impatience
imstillrunningdave
in-the-clouds
inanis-glass
indo-blogazine
indore
inferno-mf
infimum
infinity
infoist
ink-and-wash
inline
inove
inspiration
integrati
intrepidity
iphone-wordpress-theme
iribbon
irrigation
istudio-theme
italicsmile
itech
j2-simple
jakobian
japan-style
jarrah
jas-personal-publisher
jasov
jc-one-lite
jeans
jessica-fletcher-redux
jet
jnb-multicolor-theme
john-loan-pro
johnloan
jonk
jooc
journalist
jq
js-o1
js-o4w
juicyroo
jukt-micronics-buddypress-buddypack
jules-joffrin
just-kite-it
k2
kaleidoscope
kasrod
keiran
keke
khaki-traveler
killerlight
kinyonga
kippis
kirby
kis-keep-it-simple
kitten-in-pink
knr-decorous
kolorful
kpmod
krakatau
kreativ
kuulblack