查看: 2569|回复: 5
收起左侧

[已鉴定] http://ww.feeip.com/file/swf/swfobject.gif

 关闭 [复制链接]
冷冷
发表于 2008-8-20 14:22:34 | 显示全部楼层 |阅读模式
  1. /**
  2. * SWFObject v1.5.1: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
  3. *
  4. * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
  5. * http://www.opensource.org/licenses/mit-license.php
  6. *
  7. */
  8. if(typeof deconcept == "undefined") var deconcept = {};
  9. if(typeof deconcept.util == "undefined") deconcept.util = {};
  10. if(typeof deconcept.SWFObjectUtil == "undefined") deconcept.SWFObjectUtil = {};
  11. deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey) {
  12.         if (!document.getElementById) { return; }
  13.         this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
  14.         this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
  15.         this.params = {};
  16.         this.variables = {};
  17.         this.attributes = [];
  18.         if(swf) { this.setAttribute('swf', swf); }
  19.         if(id) { this.setAttribute('id', id); }
  20.         if(w) { this.setAttribute('width', w); }
  21.         if(h) { this.setAttribute('height', h); }
  22.         if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
  23.         this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
  24.         if (!window.opera && document.all && this.installedVer.major > 7) {
  25.                 // only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE
  26.                 // fixes bug in some fp9 versions see http://blog.deconcept.com/2006/07/28/swfobject-143-released/
  27.                 if (!deconcept.unloadSet) {
  28.                         deconcept.SWFObjectUtil.prepUnload = function() {
  29.                                 __flash_unloadHandler = function(){};
  30.                                 __flash_savedUnloadHandler = function(){};
  31.                                 window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs);
  32.                         }
  33.                         window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
  34.                         deconcept.unloadSet = true;
  35.                 }
  36.         }
  37.         if(c) { this.addParam('bgcolor', c); }
  38.         var q = quality ? quality : 'high';
  39.         this.addParam('quality', q);
  40.         this.setAttribute('useExpressInstall', false);
  41.         this.setAttribute('doExpressInstall', false);
  42.         var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
  43.         this.setAttribute('xiRedirectUrl', xir);
  44.         this.setAttribute('redirectUrl', '');
  45.         if(redirectUrl) { this.setAttribute('redirectUrl', redirectUrl); }
  46. }
  47. deconcept.SWFObject.prototype = {
  48.         useExpressInstall: function(path) {
  49.                 this.xiSWFPath = !path ? "expressinstall.swf" : path;
  50.                 this.setAttribute('useExpressInstall', true);
  51.         },
  52.         setAttribute: function(name, value){
  53.                 this.attributes[name] = value;
  54.         },
  55.         getAttribute: function(name){
  56.                 return this.attributes[name] || "";
  57.         },
  58.         addParam: function(name, value){
  59.                 this.params[name] = value;
  60.         },
  61.         getParams: function(){
  62.                 return this.params;
  63.         },
  64.         addVariable: function(name, value){
  65.                 this.variables[name] = value;
  66.         },
  67.         getVariable: function(name){
  68.                 return this.variables[name] || "";
  69.         },
  70.         getVariables: function(){
  71.                 return this.variables;
  72.         },
  73.         getVariablePairs: function(){
  74.                 var variablePairs = [];
  75.                 var key;
  76.                 var variables = this.getVariables();
  77.                 for(key in variables){
  78.                         variablePairs[variablePairs.length] = key +"="+ variables[key];
  79.                 }
  80.                 return variablePairs;
  81.         },
  82.         getSWFHTML: function() {
  83.                 var swfNode = "";
  84.                 if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
  85.                         if (this.getAttribute("doExpressInstall")) {
  86.                                 this.addVariable("MMplayerType", "PlugIn");
  87.                                 this.setAttribute('swf', this.xiSWFPath);
  88.                         }
  89.                         swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ (this.getAttribute('style') || "") +'"';
  90.                         swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
  91.                         var params = this.getParams();
  92.                          for(var key in params){ swfNode += [key] +'="'+ params[key] +'" '; }
  93.                         var pairs = this.getVariablePairs().join("&");
  94.                          if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
  95.                         swfNode += '/>';
  96.                 } else { // PC IE
  97.                         if (this.getAttribute("doExpressInstall")) {
  98.                                 this.addVariable("MMplayerType", "ActiveX");
  99.                                 this.setAttribute('swf', this.xiSWFPath);
  100.                         }
  101.                         swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ (this.getAttribute('style') || "") +'">';
  102.                         swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
  103.                         var params = this.getParams();
  104.                         for(var key in params) {
  105.                          swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
  106.                         }
  107.                         var pairs = this.getVariablePairs().join("&");
  108.                         if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
  109.                         swfNode += "</object>";
  110.                 }
  111.                 return swfNode;
  112.         },
  113.         write: function(elementId){
  114.                 if(this.getAttribute('useExpressInstall')) {
  115.                         // check to see if we need to do an express install
  116.                         var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
  117.                         if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
  118.                                 this.setAttribute('doExpressInstall', true);
  119.                                 this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
  120.                                 document.title = document.title.slice(0, 47) + " - Flash Player Installation";
  121.                                 this.addVariable("MMdoctitle", document.title);
  122.                         }
  123.                 }
  124.                 if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version'))){
  125.                         var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
  126.                         n.innerHTML = this.getSWFHTML();
  127.                         return true;
  128.                 }else{
  129.                         if(this.getAttribute('redirectUrl') != "") {
  130.                                 document.location.replace(this.getAttribute('redirectUrl'));
  131.                         }
  132.                 }
  133.                 return false;
  134.         }
  135. }

  136. /* ---- detection functions ---- */
  137. deconcept.SWFObjectUtil.getPlayerVersion = function(){
  138.         var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
  139.         if(navigator.plugins && navigator.mimeTypes.length){
  140.                 var x = navigator.plugins["Shockwave Flash"];
  141.                 if(x && x.description) {
  142.                         PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
  143.                 }
  144.         }else if (navigator.userAgent && navigator.userAgent.indexOf("Windows CE") >= 0){ // if Windows CE
  145.                 var axo = 1;
  146.                 var counter = 3;
  147.                 while(axo) {
  148.                         try {
  149.                                 counter++;
  150.                                 axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+ counter);
  151. //                                document.write("player v: "+ counter);
  152.                                 PlayerVersion = new deconcept.PlayerVersion([counter,0,0]);
  153.                         } catch (e) {
  154.                                 axo = null;
  155.                         }
  156.                 }
  157.         } else { // Win IE (non mobile)
  158.                 // do minor version lookup in IE, but avoid fp6 crashing issues
  159.                 // see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
  160.                 try{
  161.                         var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
  162.                 }catch(e){
  163.                         try {
  164.                                 var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
  165.                                 PlayerVersion = new deconcept.PlayerVersion([6,0,21]);
  166.                                 axo.AllowScriptAccess = "always"; // error if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code)
  167.                         } catch(e) {
  168.                                 if (PlayerVersion.major == 6) {
  169.                                         return PlayerVersion;
  170.                                 }
  171.                         }
  172.                         try {
  173.                                 axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
  174.                         } catch(e) {}
  175.                 }
  176.                 if (axo != null) {
  177.                         PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
  178.                 }
  179.         }
  180.         return PlayerVersion;
  181. }
  182. deconcept.PlayerVersion = function(arrVersion){
  183.         this.major = arrVersion[0] != null ? parseInt(arrVersion[0]) : 0;
  184.         this.minor = arrVersion[1] != null ? parseInt(arrVersion[1]) : 0;
  185.         this.rev = arrVersion[2] != null ? parseInt(arrVersion[2]) : 0;
  186. }
  187. deconcept.PlayerVersion.prototype.versionIsValid = function(fv){
  188.         if(this.major < fv.major) return false;
  189.         if(this.major > fv.major) return true;
  190.         if(this.minor < fv.minor) return false;
  191.         if(this.minor > fv.minor) return true;
  192.         if(this.rev < fv.rev) return false;
  193.         return true;
  194. }
  195. /* ---- get value of query string param ---- */
  196. deconcept.util = {
  197.         getRequestParameter: function(param) {
  198.                 var q = document.location.search || document.location.hash;
  199.                 if (param == null) { return q; }
  200.                 if(q) {
  201.                         var pairs = q.substring(1).split("&");
  202.                         for (var i=0; i < pairs.length; i++) {
  203.                                 if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
  204.                                         return pairs[i].substring((pairs[i].indexOf("=")+1));
  205.                                 }
  206.                         }
  207.                 }
  208.                 return "";
  209.         }
  210. }
  211. /* fix for video streaming bug */
  212. deconcept.SWFObjectUtil.cleanupSWFs = function() {
  213.         var objects = document.getElementsByTagName("OBJECT");
  214.         for (var i = objects.length - 1; i >= 0; i--) {
  215.                 objects[i].style.display = 'none';
  216.                 for (var x in objects[i]) {
  217.                         if (typeof objects[i][x] == 'function') {
  218.                                 objects[i][x] = function(){};
  219.                         }
  220.                 }
  221.         }
  222. }
  223. /* add document.getElementById if needed (mobile IE < 5) */
  224. if (!document.getElementById && document.all) { document.getElementById = function(id) { return document.all[id]; }}

  225. /* add some aliases for ease of use/backwards compatibility */
  226. var getQueryParamValue = deconcept.util.getRequestParameter;
  227. var FlashObject = deconcept.SWFObject; // for legacy support
  228. var SWFObject = deconcept.SWFObject;

复制代码
llydmissile
发表于 2008-8-20 14:27:29 | 显示全部楼层
这是什么
sbbdms
发表于 2008-8-20 14:38:23 | 显示全部楼层
楼主说的是这个吧
打包
Kaspersky miss
TO KL
sbbdms
发表于 2008-8-20 15:33:54 | 显示全部楼层
Hello.
No malicious software was found in the attached file.

Please quote all when answering. Do not forget to include you registration data.
-----------------
Regards, Vyacheslav Zakorzhevsky
Virus Analyst, Kaspersky Lab.

Ph.: +7(095) 797-8700
E-mail: newvirus@kaspersky.com
http://www.kaspersky.com   http://www.viruslist.com


> Attachment: swfobject.rar
ahzsmzkf
发表于 2008-8-20 16:07:57 | 显示全部楼层
是加密的htm?
qigang
发表于 2008-8-20 20:27:19 | 显示全部楼层
没有什么东西。
您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

手机版|杀毒软件|软件论坛| 卡饭论坛

Copyright © KaFan  KaFan.cn All Rights Reserved.

Powered by Discuz! X3.4( 沪ICP备2020031077号-2 ) GMT+8, 2024-11-15 10:59 , Processed in 0.124446 second(s), 18 queries .

卡饭网所发布的一切软件、样本、工具、文章等仅限用于学习和研究,不得将上述内容用于商业或者其他非法用途,否则产生的一切后果自负,本站信息来自网络,版权争议问题与本站无关,您必须在下载后的24小时之内从您的电脑中彻底删除上述信息,如有问题请通过邮件与我们联系。

快速回复 客服 返回顶部 返回列表