First time here? Check out the FAQ!
THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.
0

How would I find/which URI has an embedded ActiveX control??

  • retag add tags

Sorry, I don't have the points to upload the .pcap

I'm looking through the Hypertext Transfer Protocol tree on multiple GET requests and OK responses for 3-4 .htm pages.

How would I identify which page has an embedded ActiveX control?

Thanks in advance!

C727

Cityzen727's avatar
1
Cityzen727
asked 2021-09-30 01:00:14 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

0

I would export the pages and use an analyser that is specically good in HTTP analysis. Or if you know the exact text/keyword you can do a free search on you packets.

hugo.vanderkooij's avatar
76
hugo.vanderkooij
answered 2021-09-30 07:55:33 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

Somewhat difficult as an ActiveX control can be embedded directly in a page with an <object ... >...</object> tag with a classid property (that contains the string "clsid:...") but due to a patent issue (long since resolved) MS couldn't allow folks to do that directly, instead they had to add JavaScript code on the page to "create" the object tag dynamically and thus obscuring the use of an ActiveX object. Often times the JavaScript code would check the browser it was running and only instantiate the object if the browser supported ActiveX.

You can try a filter such as frame contains "<object" and frame contains "clsid:" for a simple text search that works for me on a page known to have an ActiveX control added by JavaScript.

grahamb's avatar
23.8k
grahamb
answered 2021-09-30 09:07:32 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer