Şimdi Ara

php tüm sürümlerde açık tespit edildi??

Bu Konudaki Kullanıcılar:
1 Misafir - 1 Masaüstü
5 sn
1
Cevap
0
Favori
104
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
Öne Çıkar
0 oy
Sayfa: 1
Giriş
Mesaj
  • PHP-Nuke'un 7.8 sayılı sürümündeki Search (Arama) modülünde açık bulundu. Arama kutusuna yazılan bazı kodlarla, yönetici bilgileri ele geçirilmektedir. Bu açığı kapatmak için aşağıdaki kodları, modules/Search/index.php'dekilerle değiştiriniz:
    DİKKAT: Bu açık yamalı sürümlerde de bulunmakta!!!

     
    <?php

    /************************************************************************/
    /* PHP-NUKE: Web Portal System */
    /* =========================== */
    /* */
    /* Copyright (c) 2005 by Francisco Burzi */
    /*http://phpnuke.org */
    /* */
    /* This program is free software. You can redistribute it and/or modify */
    /* it under the terms of the GNU General Public License as published by */
    /* the Free Software Foundation; either version 2 of the License. */
    /************************************************************************/

    if (!defined('MODULE_FILE')) {
    die ("You can't access this file directly...");
    }

    require_once("mainfile.php");
    $instory = '';
    $module_name = basename(dirname(__FILE__));
    get_lang($module_name);

    if (isset($query)) {
    if (strlen($query) < 3) {
    Header("Location: modules.php?name=$module_name&qlen=1");
    }
    }

    global $admin, $prefix, $db, $module_name, $articlecomm, $multilingual, $admin_file;
    if ($multilingual == 1) {
    $queryalang = "AND (s.alanguage='$currentlang' OR s.alanguage='')"; /* stories */
    $queryrlang = "AND rlanguage='$currentlang' "; /* reviews */
    } else {
    $queryalang = "";
    $queryrlang = "";
    $queryslang = "";
    }

    if (!isset($query)) { $query = ""; }
    if (!isset($type)) { $type = ""; }
    if (!isset($category)) { $category = 0; }
    if (!isset($days)) { $days = 0; }
    if (!isset($author)) { $author = ""; }

    switch($op) {

    case "comments":
    break;

    default:
    $ThemeSel = get_theme();
    $offset=10;
    if (!isset($min)) $min=0;
    if (!isset($max)) $max=$min+$offset;
    $min = intval($min);
    $max = intval($max);
    $query = addslashes($query);
    $pagetitle = "- "._SEARCH."";
    include("header.php");
    $topic = intval($topic);
    if ($topic>0) {
    $row = $db->sql_fetchrow($db->sql_query("SELECT topicimage, topictext from ".$prefix."_topics where topicid='$topic'"));
    $topicimage = check_html($row['topicimage'], "nohtml");
    $topictext = check_html($row['topictext'], "nohtml");
    if (file_exists("themes/$ThemeSel/images/topics/$topicimage")) {
    $topicimage = "themes/$ThemeSel/images/topics/$topicimage";
    } else {
    $topicimage = "$tipath/$topicimage";
    }
    } else {
    $topictext = ""._ALLTOPICS."";
    if (file_exists("themes/$ThemeSel/images/topics/AllTopics.gif")) {
    $topicimage = "themes/$ThemeSel/images/topics/AllTopics.gif";
    } else {
    $topicimage = "$tipath/AllTopics.gif";
    }
    }
    if (file_exists("themes/$ThemeSel/images/topics/AllTopics.gif")) {
    $alltop = "themes/$ThemeSel/images/topics/AllTopics.gif";
    } else {
    $alltop = "$tipath/AllTopics.gif";
    }
    OpenTable();
    if ($type == "users") {
    echo "<center><font class=\"title\"><b>"._SEARCHUSERS."</b></font></center><br>";
    } elseif ($type == "reviews") {
    echo "<center><font class=\"title\"><b>"._SEARCHREVIEWS."</b></font></center><br>";
    } elseif ($type == "comments" AND isset($sid)) {
    $res = $db->sql_query("select title from ".$prefix."_stories where sid='$sid'");
    list($st_title) = $db->sql_fetchrow($res);
    $st_title = check_html($st_title, "nohtml");
    $instory = "AND sid='$sid'";
    echo "<center><font class=\"title\"><b>"._SEARCHINSTORY." $st_title</b></font></center><br>";
    } else {
    echo "<center><font class=\"title\"><b>"._SEARCHIN." $topictext</b></font></center><br>";
    }

    echo "<table width=\"100%\" border=\"0\"><TR><TD>";
    if (($type == "users") OR ($type == "reviews")) {
    echo "<img src=\"$alltop\" align=\"right\" border=\"0\" alt=\"\">";
    } else {
    echo "<img src=\"$topicimage\" align=\"right\" border=\"0\" alt=\"$topictext\">";
    }
    echo "<form action=\"modules.php?name=$module_name\" method=\"POST\">"
    ."<input size=\"25\" type=\"text\" name=\"query\" value=\"$query\">  "
    ."<input type=\"submit\" value=\""._SEARCH."\"><br><br>";
    if (isset($sid)) {
    echo "<input type='hidden' name='sid' value='$sid'>";
    }
    echo "<!-- Topic Selection -->";
    $toplist = $db->sql_query("SELECT topicid, topictext from ".$prefix."_topics order by topictext");
    echo "<select name=\"topic\">";
    echo "<option value=\"\">"._ALLTOPICS."</option>\n";
    while($row2 = $db->sql_fetchrow($toplist)) {
    $topicid = intval($row2['topicid']);
    $topics = check_html($row2['topictext'], "nohtml");
    if ($topicid==$topic) { $sel = "selected "; }
    echo "<option $sel value=\"$topicid\">$topics</option>\n";
    $sel = "";
    }
    echo "</select>";
    /* Category Selection */
    $category = intval($category);
    echo " <select name=\"category\">";
    echo "<option value=\"0\">"._ARTICLES."</option>\n";
    $result3 = $db->sql_query("SELECT catid, title from ".$prefix."_stories_cat order by title");
    while ($row3 = $db->sql_fetchrow($result3)) {
    $catid = intval($row3['catid']);
    $title = check_html($row3['title'], "nohtml");
    if ($catid==$category) { $sel = "selected "; }
    echo "<option $sel value=\"$catid\">$title</option>\n";
    $sel = "";
    }
    echo "</select>";
    /* Authors Selection */
    $thing = $db->sql_query("SELECT aid from ".$prefix."_authors order by aid");
    echo " <select name=\"author\">";
    echo "<option value=\"\">"._ALLAUTHORS."</option>\n";
    while($row4 = $db->sql_fetchrow($thing)) {
    $authors = check_html($row4['aid'], "nohtml");
    if ($authors==$author) { $sel = "selected "; }
    echo "<option value=\"$authors\">$authors</option>\n";
    $sel = "";
    }
    echo "</select>";
    /* Date Selection */
    ?>
     <select name="days">
    <option <?php echo $days == 0 ? "selected " : ""; ?> value="0"><?php echo _ALL ?></option>
    <option <?php echo $days == 7 ? "selected " : ""; ?> value="7">1 <?php echo _WEEK ?></option>
    <option <?php echo $days == 14 ? "selected " : ""; ?> value="14">2 <?php echo _WEEKS ?></option>
    <option <?php echo $days == 30 ? "selected " : ""; ?> value="30">1 <?php echo _MONTH ?></option>
    <option <?php echo $days == 60 ? "selected " : ""; ?> value="60">2 <?php echo _MONTHS ?></option>
    <option <?php echo $days == 90 ? "selected " : ""; ?> value="90">3 <?php echo _MONTHS ?></option>
    </select><br>
    <?php
    $sel1 = $sel2 = $sel3 = $sel4 = "";
    if (($type == "stories") OR (empty($type))) {
    $sel1 = "checked";
    } elseif ($type == "comments") {
    $sel2 = "checked";
    } elseif ($type == "users") {
    $sel3 = "checked";
    } elseif ($type == "reviews") {
    $sel4 = "checked";
    }
    $num_rev = $db->sql_numrows($db->sql_query("SELECT * from ".$prefix."_reviews"));
    echo ""._SEARCHON."";
    echo "<input type=\"radio\" name=\"type\" value=\"stories\" $sel1> "._SSTORIES."";
    if ($articlecomm == 1) {
    echo "<input type=\"radio\" name=\"type\" value=\"comments\" $sel2> "._SCOMMENTS."";
    }
    echo "<input type=\"radio\" name=\"type\" value=\"users\" $sel3> "._SUSERS."";
    if ($num_rev > 0) {
    echo "<input type=\"radio\" name=\"type\" value=\"reviews\" $sel4> "._REVIEWS."";
    }
    echo "</form></td></tr></table>";
    $query = addslashes($query);
    if ($type=="stories" OR !$type) {

    if ($category > 0) {
    $categ = "AND catid='$category' ";
    } else {
    $categ = "";
    }
    $q = "select s.sid, s.aid, s.informant, s.title, s.time, s.hometext, s.bodytext, a.url, s.comments, s.topic from ".$prefix."_stories s, ".$prefix."_authors a where s.aid=a.aid $queryalang $categ";
    if (isset($query)) $q .= "AND (s.title LIKE '%$query%' OR s.hometext LIKE '%$query%' OR s.bodytext LIKE '%$query%' OR s.notes LIKE '%$query%') ";
    if (!empty($author)) $q .= "AND s.aid='$author' ";
    if (!empty($topic)) $q .= "AND s.topic='$topic' ";
    if (!empty($days) && $days!=0) $q .= "AND TO_DAYS(NOW()) - TO_DAYS(time) <= '$days' ";
    $q .= " ORDER BY s.time DESC LIMIT $min,$offset";
    $t = $topic;
    $result5 = $db->sql_query($q);
    $nrows = $db->sql_numrows($result5);
    $x=0;
    if (!empty($query)) {
    echo "<br><hr noshade size=\"1\"><center><b>"._SEARCHRESULTS."</b></center><br><br>";
    echo "<table width=\"99%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n";
    if ($nrows>0) {
    while($row5 = $db->sql_fetchrow($result5)) {
    $sid = intval($row5['sid']);
    $aid = stripslashes($row5['aid']);
    $informant = check_html($row5['informant'], "nohtml");
    $title = check_html($row5['title'], "nohtml");
    $time = $row5['time'];
    $hometext = check_html($row5['hometext'], "");
    $bodytext = check_html($row5['bodytext'], "");
    $url = check_html($row5['url'], "nohtml");
    $comments = intval($row5['comments']);
    $topic = intval($row5['topic']);
    $row6 = $db->sql_fetchrow($db->sql_query("SELECT topictext from ".$prefix."_topics where topicid='$topic'"));
    $topictext = check_html($row6['topictext'], "nohtml");
    $furl = "modules.php?name=News&file=article&sid=$sid";
    $datetime = formatTimestamp($time);
    $query = addslashes($query);
    if (empty($informant)) {
    $informant = $anonymous;
    } else {
    $informant = "<a href=\"modules.php?name=Your_Account&op=userinfo&username=$informant\">$informant</a>";
    }
    if (!empty($query) AND $query != "*") {
    if (eregi(quotemeta($query),$title)) {
    $a = 1;
    }
    $text = "$hometext$bodytext";
    if (eregi(quotemeta($query),$text)) {
    $a = 2;
    }
    if (eregi(quotemeta($query),$text) AND eregi(quotemeta($query),$title)) {
    $a = 3;
    }
    if ($a == 1) {
    $match = _MATCHTITLE;
    } elseif ($a == 2) {
    $match = _MATCHTEXT;
    } elseif ($a == 3) {
    $match = _MATCHBOTH;
    }
    if (!isset($a)) {
    $match = "";
    } else {
    $match = "$match<br>";
    }
    }
    printf("<tr><td><img src=\"images/folders.gif\" border=\"0\" alt=\"\"> <font class=\"option\"><a href=\"%s\"><b>%s</b></a></font><br><font class=\"content\">"._CONTRIBUTEDBY." $informant<br>"._POSTEDBY." <a href=\"%s\">%s</a>",$furl,$title,$url,$aid,$informant);
    echo " "._ON." $datetime<br>"
    ."$match"
    .""._TOPIC.": <a href=\"modules.php?name=$module_name&query=&topic=$topic\">$topictext</a> ";
    if ($comments == 0) {
    echo "("._NOCOMMENTS.")";
    } elseif ($comments == 1) {
    echo "($comments "._UCOMMENT.")";
    } elseif ($comments >1) {
    echo "($comments "._UCOMMENTS.")";
    }
    if (is_admin($admin)) {
    echo " [ <a href=\"".$admin_file.".php?op=EditStory&sid=$sid\">"._EDIT."</a> | <a href=\"".$admin_file.".php?op=RemoveStory&sid=$sid\">"._DELETE."</a> ]";
    }
    echo "</font><br><br><br></td></tr>\n";
    $x++;
    }

    echo "</table>";
    } else {
    echo "<tr><td><center><font class=\"option\"><b>"._NOMATCHES."</b></font></center><br><br>";
    echo "</td></tr></table>";
    }

    $prev=$min-$offset;
    if ($prev>=0) {
    print "<br><br><center><a href=\"modules.php?name=$module_name&author=$author&topic=$t&min=$prev&query=$query&type=$type&category=$category\">";
    print "<b>$min "._PREVMATCHES."</b></a></center>";
    }

    $next=$min+$offset;
    if ($x>=9) {
    print "<br><br><center><a href=\"modules.php?name=$module_name&author=$author&topic=$t&min=$max&query=$query&type=$type&category=$category\">";
    print "<b>"._NEXTMATCHES."</b></a></center>";
    }
    }

    } elseif ($type=="comments") {
    /*
    $sid = intval($sid);
    if (isset($sid)) {
    $row7 = $db->sql_fetchrow($db->sql_query("SELECT title from ".$prefix."_stories where sid='$sid'"));
    $st_title = stripslashes(check_html($row7['title'], "nohtml"));
    $instory = "AND sid='$sid'";
    } else {
    $instory = "";
    }
    */
    $result8 = $db->sql_query("SELECT tid, sid, subject, date, name from ".$prefix."_comments where (subject like '%$query%' OR comment like '%$query%') order by date DESC limit $min,$offset");
    $nrows = $db->sql_numrows($result8);
    $x=0;
    if (!empty($query)) {
    echo "<br><hr noshade size=\"1\"><center><b>"._SEARCHRESULTS."</b></center><br><br>";
    echo "<table width=\"99%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n";
    if ($nrows>0) {
    while($row8 = $db->sql_fetchrow($result8)) {
    $tid = intval($row8['tid']);
    $sid = intval($row8['sid']);
    $subject = check_html($row8['subject'], "nohtml");
    $date = $row8['date'];
    $name = check_html($row8['name'], "nohtml");
    $row_res = $db->sql_fetchrow($db->sql_query("SELECT title from ".$prefix."_stories where sid='$sid'"));
    $title = check_html($row_res['title'], "nohtml");
    $reply = $db->sql_numrows($db->sql_query("SELECT * from ".$prefix."_comments where pid='$tid'"));
    $furl = "modules.php?name=News&file=article&thold=-1&mode=flat&order=1&sid=$sid#$tid";
    if(!$name) {
    $name = "$anonymous";
    } else {
    $name = "<a href=\"modules.php?name=Your_Account&op=userinfo&username=$name\">$name</a>";
    }
    $datetime = formatTimestamp($date);
    echo "<tr><td><img src=\"images/folders.gif\" border=\"0\" alt=\"\"> <font class=\"option\"><a href=\"$furl\"><b>$subject</b></a></font><font class=\"content\"><br>"._POSTEDBY." $name"
    ." "._ON." $datetime<br>"
    .""._ATTACHART.": $title<br>";
    if ($reply == 1) {
    echo "($reply "._SREPLY.")";
    if (is_admin($admin)) {
    echo " [ <a href=\"".$admin_file.".php?op=RemoveComment&tid=$tid&sid=$sid\">"._DELETE."</a> ]";
    }
    echo "<br><br><br></td></tr>\n";
    } else {
    echo "($reply "._SREPLIES.")";
    if (is_admin($admin)) {
    echo " [ <a href=\"".$admin_file.".php?op=RemoveComment&tid=$tid&sid=$sid\">"._DELETE."</a> ]";
    }
    echo "<br><br><br></td></tr>\n";
    }
    $x++;
    }
    echo "</table>";
    } else {
    echo "<tr><td><center><font class=\"option\"><b>"._NOMATCHES."</b></font></center><br><br>";
    echo "</td></tr></table>";
    }

    $prev=$min-$offset;
    if ($prev>=0) {
    print "<br><br><center><a href=\"modules.php?name=$module_name&author=$author&topic=$topic&min=$prev&query=$query&type=$type\">";
    print "<b>$min "._PREVMATCHES."</b></a></center>";
    }

    $next=$min+$offset;
    if ($x>=9) {
    print "<br><br><center><a href=\"modules.php?name=$module_name&author=$author&topic=$topic&min=$max&query=$query&type=$type\">";
    print "<b>"._NEXTMATCHES."</b></a></center>";
    }
    }
    } elseif ($type=="reviews") {
    $res_n = $db->sql_query("SELECT id, title, text, reviewer, score from ".$prefix."_reviews where (title like '%$query%' OR text like '%$query%') $queryrlang order by date DESC limit $min,$offset");
    $nrows = $db->sql_numrows($res_n);
    $x=0;
    if (!empty($query)) {
    echo "<br><hr noshade size=\"1\"><center><b>"._SEARCHRESULTS."</b></center><br><br>";
    echo "<table width=\"99%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n";
    if ($nrows>0) {
    while($rown = $db->sql_fetchrow($res_n)) {
    $id = intval($rown['id']);
    $title = check_html($rown['title'], "nohtml");
    $text = check_html($rown['text'], "");
    $reviewer = check_html($rown['reviewer'], nohmtl);
    $score = intval($rown['score']);
    $furl = "modules.php?name=Reviews&op=showcontent&id=$id";
    $pages = count(explode( "<!--pagebreak-->", $text ));
    echo "<tr><td><img src=\"images/folders.gif\" border=\"0\" alt=\"\"> <font class=\"option\"><a href=\"$furl\"><b>$title</b></a></font><br>"
    ."<font class=\"content\">"._POSTEDBY." $reviewer<br>"
    .""._REVIEWSCORE.": $score/10<br>";
    if ($pages == 1) {
    echo "($pages "._PAGE.")";
    } else {
    echo "($pages "._PAGES.")";
    }
    if (is_admin($admin)) {
    echo " [ <a href=\"modules.php?name=Reviews&op=mod_review&id=$id\">"._EDIT."</a> | <a href=\"modules.php?name=Reviews.php&op=del_review&id_del=$id\">"._DELETE."</a> ]";
    }
    print "<br><br><br></font></td></tr>\n";
    $x++;
    }
    echo "</table>";
    } else {
    echo "<tr><td><center><font class=\"option\"><b>"._NOMATCHES."</b></font></center><br><br>";
    echo "</td></tr></table>";
    }

    $prev=$min-$offset;
    if ($prev>=0) {
    print "<br><br><center><a href=\"modules.php?name=$module_name&author=$author&topic=$t&min=$prev&query=$query&type=$type\">";
    print "<b>$min "._PREVMATCHES."</b></a></center>";
    }

    $next=$min+$offset;
    if ($x>=9) {
    print "<br><br><center><a href=\"modules.php?name=$module_name&author=$author&topic=$t&min=$max&query=$query&type=$type\">";
    print "<b>"._NEXTMATCHES."</b></a></center>";
    }
    }
    } elseif ($type=="users") {
    $res_n3 = $db->sql_query("SELECT user_id, username, name from ".$user_prefix."_users where (username like '%$query%' OR name like '%$query%' OR bio like '%$query%') order by username ASC limit $min,$offset");
    $nrows = $db->sql_numrows($res_n3);
    $x=0;
    if (!empty($query)) {
    echo "<br><hr noshade size=\"1\"><center><b>"._SEARCHRESULTS."</b></center><br><br>";
    echo "<table width=\"99%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n";
    if ($nrows>0) {
    while($rown3 = $db->sql_fetchrow($res_n3)) {
    $uid = intval($rown3['user_id']);
    $uname = check_html($rown3['username'], "nohtml");
    $name = check_html($rown3['name'], "nohtml");
    $furl = "modules.php?name=Your_Account&op=userinfo&username=$uname";
    if (empty($name)) {
    $name = ""._NONAME."";
    }
    echo "<tr><td><img src=\"images/folders.gif\" border=\"0\" alt=\"\"> <font class=\"option\"><a href=\"$furl\"><b>$uname</b></a></font><font class=\"content\"> ($name)";
    if (is_admin($admin)) {
    echo " [ <a href=\"".$admin_file.".php?chng_uid=$uid&op=modifyUser\">"._EDIT."</a> | <a href=\"".$admin_file.".php?op=delUser&chng_uid=$uid\">"._DELETE."</a> ]";
    }
    echo "</font></td></tr>\n";
    $x++;
    }

    echo "</table>";
    } else {
    echo "<tr><td><center><font class=\"option\"><b>"._NOMATCHES."</b></font></center><br><br>";
    echo "</td></tr></table>";
    }

    $prev=$min-$offset;
    if ($prev>=0) {
    print "<br><br><center><a href=\"modules.php?name=$module_name&author=$author&topic=$t&min=$prev&query=$query&type=$type\">";
    print "<b>$min "._PREVMATCHES."</b></a></center>";
    }

    $next=$min+$offset;
    if ($x>=9) {
    print "<br><br><center><a href=\"modules.php?name=$module_name&author=$author&topic=$t&min=$max&query=$query&type=$type\">";
    print "<b>"._NEXTMATCHES."</b></a></center>";
    }
    }
    }
    CloseTable();
    $mod1 = $mod2 = $mod3 = "";
    if (isset($query) AND !empty($query)) {
    echo "<br>";
    if (is_active("Downloads")) {
    $dcnt = $db->sql_numrows($db->sql_query("SELECT * from ".$prefix."_downloads_downloads WHERE title LIKE '%$query%' OR description LIKE '%$query%'"));
    $mod1 = "<li> <a href=\"modules.php?name=Downloads&d_op=search&query=$query\">"._DOWNLOADS."</a> ($dcnt "._SEARCHRESULTS.")";
    }
    if (is_active("Web_Links")) {
    $lcnt = $db->sql_numrows($db->sql_query("SELECT * from ".$prefix."_links_links WHERE title LIKE '%$query%' OR description LIKE '%$query%'"));
    $mod2 = "<li> <a href=\"modules.php?name=Web_Links&l_op=search&query=$query\">"._WEBLINKS."</a> ($lcnt "._SEARCHRESULTS.")";
    }
    if (is_active("Encyclopedia")) {
    $ecnt1 = $db->sql_query("SELECT eid from ".$prefix."_encyclopedia WHERE active='1'");
    $ecnt = 0;
    while($row_e = $db->sql_fetchrow($ecnt1)) {
    $eid = intval($row_e['eid']);
    $ecnt2 = $db->sql_numrows($db->sql_query("select * from ".$prefix."_encyclopedia WHERE title LIKE '%$query%' OR description LIKE '%$query%' AND eid='$eid'"));
    $ecnt3 = $db->sql_numrows($db->sql_query("select * from ".$prefix."_encyclopedia_text WHERE title LIKE '%$query%' OR text LIKE '%$query%' AND eid='$eid'"));
    $ecnt = $ecnt+$ecnt2+$ecnt3;
    }
    $mod3 = "<li> <a href=\"modules.php?name=Encyclopedia&file=search&query=$query\">"._ENCYCLOPEDIA."</a> ($ecnt "._SEARCHRESULTS.")";
    }
    OpenTable();
    echo "<font class=\"title\">"._FINDMORE."<br><br>"
    .""._DIDNOTFIND."</font><br><br>"
    .""._SEARCH." \"<b>$query</b>\" "._ON.":<br><br>"
    ."<ul>"
    ."$mod1"
    ."$mod2"
    ."$mod3"
    ."<li> <a href=\"http://www.google.com/search?q=$query\" target=\"new\">Google</a>"
    ."<li> <a href=\"http://groups.google.com/groups?q=$query\" target=\"new\">Google Groups</a>"
    ."</ul>";
    CloseTable();
    }
    include("footer.php");
    break;
    }

    ?>


    http://www.the.somee.com/hata/nuke.txt

    ---------------------------------------------------------------------------------------------------------------------
    anlayanlar bir incelesin doğruluk payı nedir ne değildir ben pek anlamam sadece tesadüfen böyle bir haberi buldum kolay gelsin


    nuketurk.com dan alıntıdır.



    _____________________________




  • Yapay Zeka’dan İlgili Konular
    Daha Fazla Göster
    
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.