This file is indexed.

/usr/share/checkbox/data/websites/SWF_Test.as is in checkbox 0.13.7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// Run: mtasc -swf SWF_Test.swf -main -header 640:480:20 SWF_Test.as
class Test {

    static var app : Test;

    function Test() {
        _root.createTextField("tf",0,0,0,640,480);
        _root.tf.text = "Test";
    }

    static function main(mc) {
        app = new Test();
    }
}