Компьютерный форум OSzone.net  

Компьютерный форум OSzone.net (http://forum.oszone.net/index.php)
-   Защита компьютерных систем (http://forum.oszone.net/forumdisplay.php?f=20)
-   -   Посмотрите скрипт на наличие чего либо вредоносного... (http://forum.oszone.net/showthread.php?t=175260)

b538566 09-05-2010 18:35 1409978

Посмотрите скрипт на наличие чего либо вредоносного...
 
собственно,кто разбирается,хочу использовать скрипт(поместить его в папку пользовательских скриптов оперы как советуют для его установки) но хотелось бы удостоверится что ничего вредоносного(например ворующего данные) в нем нету.

сам скрипт:
Код:

// ==UserScript==
// @name          Show hidden user photos in Vkontakte
// @namespace
// @description  Показывает фото пользователей, запретивших это в настройках
// @include      http://vkontakte.ru/search.php?id=*
// ==/UserScript==

(function(){
//        http://kosiakk.livejournal.com/profile
//  http://vkontakte.ru/id88750

        var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search", "photos"));
        a.appendChild(document.createTextNode("| show photos |"));
        document.getElementById("searchResults").appendChild(a);
       
        var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search", "friend"));
        a.appendChild(document.createTextNode("| show friend |"));
        document.getElementById("searchResults").appendChild(a);
       
                var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search", "video"));
        a.appendChild(document.createTextNode("| show video |"));
        document.getElementById("searchResults").appendChild(a);
       
       
                var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search", "audio"));
        a.appendChild(document.createTextNode("| show audio |"));
        document.getElementById("searchResults").appendChild(a);
       
                var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search", "notes"));
        a.appendChild(document.createTextNode("| show notes |"));
        document.getElementById("searchResults").appendChild(a);       
       
                var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search", "groups"));
        a.appendChild(document.createTextNode("| show groups |"));
        document.getElementById("searchResults").appendChild(a);       
       
                var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search", "opinions"));
        a.appendChild(document.createTextNode("| show opinions |"));
        document.getElementById("searchResults").appendChild(a);       
       
                var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search.php?", "apps.php?m"));
        a.appendChild(document.createTextNode("| show apps |"));
        document.getElementById("searchResults").appendChild(a);       
       
       
                var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search.php?", "photos.php?act=user&"));
        a.appendChild(document.createTextNode("| show photo with |"));
        document.getElementById("searchResults").appendChild(a);
       
                var a = document.createElement("a");
        a.setAttribute("href", document.URL.replace("search.php?", "video.php?act=tagview&"));
        a.appendChild(document.createTextNode("| show video with |"));
        document.getElementById("searchResults").appendChild(a);
       
       
})()

взято отсуда http://userscripts.org/scripts/review/28941

кстати неплохо если бы кто то из понимающих разьяснил в кратце его действия


Время: 00:47.

Время: 00:47.
© OSzone.net 2001-