AS3 Script Injection: Introduction
In AS3 Script Injection, complete and unmodified JavaScript and/or VBScript functions, class objects and applications are stored inside AS3 files using XML, and are then parsed, sent to the browser, and executed, allowing Flash and Flex developers to create a robust browser experience without the need to rely on server-side support scripts.
This tutorial will show how to inject and execute complete JavaScripts and VBScripts into a webpage through ActionScript 3's ExternalInterface Class. In addition, we will show how to store and modify complete JavaScript and VBScript scripts directly within AS3 sourcecode, where they may be safely kept until needed. Most of the techniques here may also be applied to AS2 applications with some minor modifications (which will be discussed).
ActionScript-based Script Injection offers the following benefits to developers:
- Server independence: SWF files may be hosted anywhere, and will simply add their own JavaScript-support files wherever they need them.
- Script Security: JavaScript and VBScript files are stored within the SWF, and as such are not normally subject to being read and/or modified without the developers consent.
- Transparency: Properly-written, Injected Scripts exist only during their execution, and then automatically garbage-collect themselves when they are no longer needed. And since they are executed anonymously, there's no danger of accidentally overwriting existing scripts on the webpage – unless you want to.
- Runtime Script Modification: Scripts may be modified like strings at runtime to address specific needs, unlike server-based scripts which are essentially static.
- On-Demand Scripting: Scripts are only injected into webpages when needed, conserving system resources.
- Compression: lengthy JavaScripts may take advantage of SWF compression: e.g. a 32k JavaScript file is only 5k when stored inside a SWF.
This is an ideal solution for Flash/Flex developers who need JavaScript to interact with the user's browser, but might not have full access to the webpage or server that their SWF application is actually hosted on. Flash Ads, YouTube-style video players, and games that may be hosted across multiple (and possibly unforseen) webpages are the first things that come to mind, but other possibilities abound.
Additionally, because the JavaScript files are stored within Flash and not externally, they are given a certain amount of anonymity and protection from being read and/or manipulated by third parties, and may take advantage of SWF compression.
Finally, because the scripts are inherently attached to Flash and exist as editable data within the AS3 file, they can be modified at runtime by the Flash application to create custom-tailored solutions based on specific needs, something that is difficult with generic server- and web-encoded scripting solutions.
Note: ActionScript Script Injection should not be confused with the hacker exploit of the same name, also known as Cross-Site Scripting or XSS. While the underlying concepts are similar, the implementation, intent and (above all) security differ greatly. ActionScript-based Script Injection is internal and available only to the Flash developer, as opposed to Hacker Injection, in which otherwise legitimate URLs are "packed" with executable third-party JavaScript code and launched at public Flash sites.
In the hands of a legitimate developer, AS3 Script Injection is a powerful tool that blurs the boundaries between Flash, webpages, the server, and the browser.
AS3 Script Injection: The Basics
Let's begin with a succinct definition of what we are about to do:
"In AS Script Injection, complete and unmodified JavaScript and/or VBScripts are stored inside AS3 files using XML, and are then parsed and sent to the browser, typically using the ExternalInterface class."
That's all there is to it. Of course, getting it all to actually work is the trick, and that's what this tutorial is all about.
Before we dive in, however, we must first dispel some common misconceptions about the ExternalInterface class:
- Flash's ExternalInterface can only call named functions.
- Called functions must already be on the webpage in <SCRIPT> tags.
- ExternalInterface only works with global functions.
- In browsers, ExternalInterface only works with JavaScript .
None of these are true, as we shall soon see:
False: Flash's ExternalInterface can only use named functions, and they must already be on the webpage inside <SCRIPT> tags.
Nothing could be further from the truth! ExternalInterface works by taking your supplied string and performing a JavaScript eval() on it, forcing the browser to see the string as a JavaScript function of the same name (if one exists). It then executes a call() on that function, adding any arguments you supplied.
The first key to script injection is that initial eval() statement; JavaScript 's eval function is far more powerful than ActionScript's, and will attempt to turn literally any string passed to it into a proper value, object or function. The only problem is that eval() only interprets a single entity (i.e. a single var, object, or function name) … send it two or more of these entities and it crashes.
This leads us to the second key element: the fact that JavaScript, like ActionScript, can "wrap" almost any number of individual entities within a single anonymous function. The eval() will see only this "Wrapper Function" (a single entity), but will happily interpret everything inside of it. That's dolomite baby!
Because of this, ExternalInterface can not only interact with unnamed functions, it can send them, execute them, and even get a result from them. Consider the following examples. We'll start with the "traditional" use of ExternalInterface, and build our way up to an Injected Script complete with Wrapper Function.
Traditionally, ExternalInterface takes a single string to be evaluated as a function name, and any number of optional arguments (primitives or simple objects), as shown below:
ExternalInterface.call("alert", "foo")
This "normal" form of ExternalInterface executes the JavaScript "alert()" function from Flash, and will display "foo" as the alert-text. But you can also write it like this, and it will function the exact same way:
分享到:
相关推荐
js 实现 在JavaScript运行VBScript函数! 值得下载看看!资源免费,大家分享!!
在压缩包中的四个HTML文件(style4.html、style1.html、style3.html、style2.html)可能包含了使用JavaScript或VBScript实现的3D实例代码。这些文件可能展示了如何使用这两种语言创建3D元素、变换、动画,以及如何与...
1. **源代码查看与编辑**:用户可以查看和编辑JavaScript或VBScript代码,以便进行调试。 2. **断点设置**:在代码的关键位置设置断点,允许程序在特定点暂停执行,以便检查当前变量的状态。 3. **步进执行**:...
基于神经网络的恶意脚本分类-JavaScript&VBScript Neural Classification of Malicious Scripts: A study with JavaScript and VBScript
1. **平台支持**:JavaScript 主要应用于 Web 浏览器,而 VBScript 多用于 Windows 环境。 2. **类型系统**:JavaScript 是动态类型,VBScript 是静态类型。 3. **继承机制**:JavaScript 采用原型链,VBScript 使用...
1. JavaScript和VBScript的入门指南,包括语法基础、变量、数据类型和控制结构。 2. 对象和数组的使用,包括内置对象和自定义对象。 3. 函数的创建和调用,以及作用域和闭包的概念。 4. DOM(Document Object Model...
MFC调用脚本,如JavaScript和VBScript,是一项常见的任务,它允许C++应用程序与脚本语言进行交互,以实现更灵活和动态的功能。这篇博客文章(链接已提供)可能深入探讨了如何在MFC应用中集成和执行这两种脚本语言。 ...
而"dotnet-一个基于JavaScript和VBScript的Empire启动器"是一个特殊的实现,它允许Empire利用JavaScript和VBScript在目标系统上执行,而不是传统的PowerShell。 这个启动器的独特之处在于它运行在Empire的嵌入式...
JavaScript 和 VBScript 是两种不同的脚本语言,它们在 Web 开发中用于客户端的交互和动态内容处理。在早期的浏览器环境中,尤其是 Internet Explorer,JavaScript 和 VBScript 的混合使用较为常见,因为它们都支持...
As well as focusing on client-side JavaScript, you will also learn how to work with the Browser Object Model, the Document Object Model (DOM), how to use XML and JSON as well as communicate with ...
As well as focusing on client-side JavaScript, you will also learn how to work with the Browser Object Model, the Document Object Model (DOM), how to use XML and JSON as well as communicate with ...
1. **基础语法**:VBScript的基本数据类型(如字符串、数值、布尔值)、变量声明与赋值、常量定义、运算符的使用,以及流程控制语句(如If...Then...Else、For...Next、Do...Loop)。 2. **函数与过程**:VBScript...
VBScript常用于早期的ASP网页开发,但在现代Web开发中,JavaScript的使用更为普遍。 ADO(ActiveX Data Objects)是微软的数据库访问组件,用于在ASP中连接和操作数据库。它提供了一组统一的接口,允许开发者通过...
loops, and best practices on using types and data structures, as well as the coding style and recommended code organization patterns in JavaScript. The book will also teach you how to use arrays and ...
JavaScript脚本编辑软件是开发人员日常工作中不可或缺的工具,它为编写、调试和优化JavaScript代码提供了极大的便利。本文将深入探讨这款集成了多种语言语法加亮功能的编辑软件,包括JavaScript、HTML、CSS、...
3. ASP脚本语言:VBScript和JScript的基本语法、变量、数据类型、控制结构、函数和错误处理。 4. ASP服务器控件:如Label、TextBox、Button等,以及它们在网页中的应用。 5. ASP数据库访问:通过ADO(ActiveX Data ...