Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Searching flash/actionscript loaded object

Featured Replies

Posted

hi guys

 

First of all, I hope I started this new thead on thew right spot...


I'm looking for windbg/OllyDbg/idapro script which can be use
to print or get memory location of flash/actionscript loaded
object such as Vector, Array, String object, etc...Also other then script, I am looking the tutorial
to print or get memory location of flash/actionscript.

 

Or any tutorial to get flash/actionscript object
memory layout
I need this info so I can dump or see flash/actionscript object
memory layoutI read and  tryed various tutorial including the one on CoreLan Website
Still I just cannot find it.

 

I watched Heap Inspector videoo too, But Im stuckedI m stucked, I REALLY need helps. Thanks in advance ....Here is my heap Spray Code which I compiled using flex Sdk 4.6:
package {
    import flash.display.Sprite;
    import flash.utils.ByteArray;
    import flash.errors.EOFError;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.text.TextFormatAlign;
    
    
    
    public class Heap_Spray extends Sprite {
            private var oByteArray:ByteArray = new ByteArray();
            private var logger:TextField = new TextField();        
            
            
        private function log(msg:String): void
        {
            logger.appendText(msg+"\n");
        }
            public function Heap_Spray() {
            logger.width = 980;
            logger.height = 425;
            logger.x = (stage.stageWidth - logger.width) / 2;
            logger.y = 150;
            
            var statusTextFormat:TextFormat = new TextFormat();
            statusTextFormat.color = 0xeeeeee;
            statusTextFormat.font = "Verdana";
            statusTextFormat.align = TextFormatAlign.CENTER;
            statusTextFormat.size = 12;
            logger.defaultTextFormat = statusTextFormat;
            logger.wordWrap = false;
            logger.opaqueBackground = 0x999999;            
            
            addChild(logger);            
            
            
            var i:int = 0;
            while(i<100000){
                oByteArray.writeMultiByte("#AssCode", "us-ascii");
                oByteArray.writeMultiByte("#BadCode", "us-ascii");
                
                i++;
                }
            log("Heap_Spray = FINISH i<100 000 !..................." );
        }
    }
}
 

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.