This is a migrated thread and some comments may be shown as answers.

Inspect Element fucntion works in Fiddler ?

1 Answer 224 Views
Windows
This is a migrated thread and some comments may be shown as answers.
Murat
Top achievements
Rank 1
Murat asked on 28 Nov 2015, 01:13 PM

Hello ,

 

Some sites has hidden codes/values when you can't see the source of the site but when you inspect element in the browser , you can see the hidden values.

 

with view source and fiddlers responce

 

 ....   <form class="login-form _____" action="https://members.test.com/login" id="login" onsubmit="return false" method="post" novalidate><input type="hidden" class="____" name="____"> <input type="hidden" name="action" value="https://members.test.com/login"><div class="block-box"><div class="block-box-title">  .......

 

with inspect element

 

....   <form class="login-form _____" action="https://members.test.com/login" id="login" onsubmit="return false" method="post" novalidate><input type="hidden" class="____" name="____" value="0793a815cf2b218d2a9217aa3b22f3bc 03d5f2a1f35cac4fc0d000b68d58df36 04e1da572fc15fedbf66059f9d0cc2ab 086ce652e11ca02b877f1d29eda9eb2d 04cf455b651e7c0339e905c60eb41450 005be02ab052d6d03dd3eb363be925ac 0852cfee122194294aaa2e75edc7105b 070ee6fb00c94d6e0ce04c928f3e3c5f 01ab8df0fa4145efc2a8ac2ade92e36c 0972785c4d1a1edd70967260be90f2ff"> <input type="hidden" name="action" value="https://members.test.com/login"><div class="block-box"><div class="block-box-title">  .......

 

so , when you do inspect element in any browser you got value="0793a815cf2b218d2a9217aa3b22f3bc 03d5f2a1f35cac4fc0d000b68d58df36 04e1da572fc15fedbf66059f9d0cc2ab 086ce652e11ca02b877f1d29eda9eb2d 04cf455b651e7c0339e905c60eb41450 005be02ab052d6d03dd3eb363be925ac 0852cfee122194294aaa2e75edc7105b 070ee6fb00c94d6e0ce04c928f3e3c5f 01ab8df0fa4145efc2a8ac2ade92e36c 0972785c4d1a1edd70967260be90f2ff 

 

Is it possible to see this in fiddler ?

 

1 Answer, 1 is accepted

Sort by
0
Eric Lawrence
Telerik team
answered on 29 Nov 2015, 12:10 AM
Hello, Murat--

I'm not really sure what you mean when you say you can't "see the source of the site"-- everything that the browser receives from the server and sends to it can be examined by Fiddler (and the browser's own developer tools).

While most of Fiddler's Response Inspectors will show the markup in question, your best bet is the SyntaxView Inspector, which performs syntax-highlighting on the markup for ease-of-reading.

You can also use the WebForms Request Inspector to look at ALL of the form values submitted on subsequent requests, including any "hidden" fields.

If you wanted to, you could even write an inspector which specifically shows ONLY hidden form fields, but I can't imagine that this is worth the effort (even though it's pretty simple).

Regards,
Eric Lawrence
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Windows
Asked by
Murat
Top achievements
Rank 1
Answers by
Eric Lawrence
Telerik team
Share this question
or