Unplanned
Last Updated: 09 Feb 2024 12:33 by ADMIN

Consider the support of variables and variable environments in Fiddler Everywhere. The base functionality should have:

- Option to create a static variable

- Option to create a dynamic variable (e.g., one populated dynamically from response).

- Options to use variables in Composer, Rules, and Inspectors (e.g. for dynamic population)

- Option to easily access and modify stored variables.

- Option to store variables in different environments (e.g. stage, production, etc.)

- Option to share variables/environments.

+2 Requested from 1640564 and 1640556


Completed
Last Updated: 09 Feb 2024 11:45 by ADMIN

Colleagues, please add an essential feature of Fiddler Classic called Automatic breakpoints

 

I'm sure that a bunch of people will migrate to Fiddler Everywhere if you implement this

 

Thnx

Unplanned
Last Updated: 29 Jan 2024 06:48 by ADMIN
Created by: jonas
Comments: 1
Type: Feature Request
0
Is it possible to add a rule or configure exporting or saving the data as raw files to my computer automatically and periodically? I read a few questions on here but it seems to be a different version of Fiddler.
Unplanned
Last Updated: 11 Dec 2023 13:36 by René

Fiddler Classic implements and documents this feature. Is this true for Fiddler Everywhere? Can you provide instructions?

I can tell you what does not work on Windows 11:

  • Copying my client certificate to $env:USERPROFILE\Documents\FiddlerCore\ClientCertificate.cer
  • Copying my client certificate to $env:USERPROFILE\Documents\Fiddler2\ClientCertificate.cer
  • Copying my client certificate to $env:USERPROFILE\.fiddler\ClientCertificate.cer
  • Copying my client certificate to $env:USERPROFILE\.fiddler\Certificates\ClientCertificate.cer

Please provide detailed instructions for setting this up. Thank you.

Unplanned
Last Updated: 11 Dec 2023 12:17 by ADMIN
Created by: René
Comments: 1
Type: Feature Request
1

Is there any way how to store rules, filters. settings etc. online in Fiddler account (like in Postman etc.) and share between different machines?

If not, is this feature planned?

Under Review
Last Updated: 06 Nov 2023 11:27 by ADMIN

Consider providing support for basic authentication through the "Set manual proxy configuration" option in the Gateway settings.

For example:

Currently, the above is possible only though composing a request with a Basic authentication header, but is not possible as direct setup through the Gateway settings.
Under Review
Last Updated: 17 Oct 2023 12:22 by ADMIN
I love the FiddlerScript feature. Will Fiddler Everywhere have this feature? Or maybe command-line feature?
Unplanned
Last Updated: 02 Aug 2023 06:54 by ADMIN

Hi,

I would like to make a rule that changes the Comments column to display a value from the Response body. Specifically, I would like the value of "pk" (if available) to show up in the Comments field.

My overall question: Is there a way to reference Response body data in the Rules Builder?

I looked through all the documentation I could find and I didn't see any examples of Actions using dynamic data. Any help would be greatly appreciated.

Thank you,

Matt Donner
Dave & Adam's Card World
m.donner@dacardworld.com

Unplanned
Last Updated: 20 Jul 2023 06:05 by ADMIN
Created by: I3eyonder
Comments: 0
Type: Feature Request
0
Hello,

I have an idea of workspaces concept (just like Postman's workspaces feature).

Include a workspace concept to enable us to:

1. Create multiple workspaces that have individual filters, rules, sessions, requests...

2. Synchronize all of that configuration (filters, rules, sessions, requests...) to continue working on another PC

Completed
Last Updated: 25 May 2023 13:03 by ADMIN

Fiddler for Windows allowed you to add custom columns to Web Sessions list. 

Fiddler Everywhere needs this option so I can add in a column to show the IP address of the server being connected to.

Can these methods be added into Fiddler Everywhere:

  1. https://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/addcolumns
  2. https://docs.telerik.com/fiddler/Observe-Traffic/Tasks/ConfigureColumns 
Unplanned
Last Updated: 25 May 2023 12:48 by ADMIN

It appears that I need to add new columns for "VIA" and "SERVER" with each new recorded HAR session that I open. 

Is there a way to set these extra two columns to always appear in my defaults?

Completed
Last Updated: 28 Apr 2023 04:03 by I3eyonder

Currently, Fiddler Everywhere capture every https traffic. Sometime, decrypt all https traffic are inconvenience and totally make the network broken (eg: Android 7+ devices). Please add this feature of Fiddler Classic.

 

Thanks!

Completed
Last Updated: 26 Apr 2023 05:52 by ADMIN
Created by: Marin Bratanov
Comments: 1
Type: Feature Request
2
I want to capture, monitor and inspect (human readable) gRPC traffic from a desktop application.
Unplanned
Last Updated: 19 Apr 2023 10:59 by ADMIN
Created by: I3eyonder
Comments: 3
Type: Bug Report
0

I have 3 rules. Please check the images for detail how the rules define and their order of execution.

If I understand correctly, "Non-Final-After" rule must not be executed in this case due to "Final" rule contain a final action (Manual response).

But you can see, "non-final-after" header is added to response.

I am not sure if it's a bug or intended behavior.

Please take a look. Thanks.

Unplanned
Last Updated: 18 Apr 2023 06:02 by ADMIN
Created by: I3eyonder
Comments: 0
Type: Feature Request
1

Hello,

I have an idea for the rule's action.
It would be great if we could define an action template so we can re-use it for difference rules.

For example: We might create a template with a set of non-final actions like:
1. Mark session

2. Update request header: [My-Custom-Key:My-Custom-Value]
3. Comment: This session is modified by Rules

...
Then when create a new rule, we can add an action to execute from actions template list like an illustration image.

Unplanned
Last Updated: 12 Apr 2023 06:49 by ADMIN
Created by: malwareinfosec
Comments: 4
Type: Bug Report
0

Hello,

I would like to know how the internal logic for rules with multiple conditions works.

For example, let's say we have 2 conditions and a rule will be matched if all conditions are met:

  1. URL contains 'example.com'
  2. Response Body contains 'string'
  • Are the conditions checked in any particular order (i.e. URL is checked first)?
  • What happens if the first condition fails, does it stop and not check for the second condition?

Thanks

Unplanned
Last Updated: 11 Apr 2023 06:36 by ADMIN
Created by: I3eyonder
Comments: 1
Type: Feature Request
1
Hello,

Within Rules, we can choose between these below options:

  • all these conditions (AND)
    E.g. "c1" AND "c2" AND "c3"
  • any of these conditions (OR)
    E.g. "c1" OR "c2" OR "c3"
  • none of these conditions (NOT)
    E.g. NOT ("c1" OR "co2" OR "c3")
           (
    NOT "c1") AND (NOT "c2") AND (NOT "c3")
    In some case, we may faced more complex condition like:     

  • "c1" AND ("c2" OR "c3")
  • "c1" OR ("c2" AND "c3")
    I know we can achieve this behavior by define multiple rules but it's 
    convenient to have a way to define those conditions in the same the rule builder cause our actions for those rules will be the same (avoid duplicate). So we don't have to update multiple rules when we want to update the actions by the way.

Thanks.

Unplanned
Last Updated: 11 Apr 2023 05:37 by ADMIN
Created by: malwareinfosec
Comments: 1
Type: Feature Request
1

Hello,

Firstly, thank you so much for adding Groups into the Rules, this is a great feature!

I was trying to drag and drop more than 2 rules (New Rule 1 and New Rule 2) into a Group (Group1) and I see that only one item can be moved. Expected behavior would be that all highlighted rule items would be moved into the Group at the same time.

Won't Fix
Last Updated: 14 Mar 2023 04:59 by ADMIN
Created by: Bjørn
Comments: 3
Type: Feature Request
5
In fiddler for windows I can select if I capture just browser traffic, other traffic, or both.  It would be great to have this in fiddler everwhere as well. (does it even capture non-browser traffic yet? If not obviously that would be needed first).
Unplanned
Last Updated: 13 Mar 2023 07:06 by ADMIN
Created by: Igor
Comments: 1
Type: Feature Request
3

Hello, i start using Fiddler Everywhere in trial mode.

I looking for solutions to auto save http 2 responses.

Did Fiddler Everywherehas this option? I looking in rules setting but i don't see it...

1 2 3 4 5 6