What do these window.external calls mean?

14,840

Solution 1

Have a look here... http://msdn.microsoft.com/en-us/library/ie/ms535246(v=vs.85).aspx for info. I presume your site uses .NET?

Perhaps this will help too (possible duplicate): What is the use of window.external?

Solution 2

Have a look here: http://help.dottoro.com/ljisswge.php. It is (in IE) a reference to the 'external' object (you don't say) or (in Firefox) to the 'sidebar' object.

Share:
14,840
samoz
Author by

samoz

I am a cryptographer, working in the West Lafayete, IN area. My interests include reverse engineering, information security, ellipic curves, trusted computing environments, operating systems, and embedded systems. Most of my reversing is on Windows, but I like to practice my make-fu and Unix-fu on Arch Linux.

Updated on June 23, 2022

Comments

  • samoz
    samoz almost 2 years

    I recently came across a JavaScript file in our source tree with lots of calls like

    window.external.getParameter()
    window.external.createGUID()
    window.external.readStringFromRegistry()
    

    and so on and I'm really confused about it.

    Are these somehow native calls to the Windows API? And where can I find more information about all the available window.external namespace functions?