diff --git a/APIdoc_Py.xml b/APIdoc_Py.xml
new file mode 100644
index 0000000..9003333
--- /dev/null
+++ b/APIdoc_Py.xml
@@ -0,0 +1,2843 @@
+
+
+ Request
+ Non-Static
+ Object that represents a HTTP request. [i[br]]Has methods to create and send HTTP requests.
+
+
+ Request(string FullUrl)
+ Creates Request object from Url, Request Method defaults to GET.
+
+
+ string
+ FullUrl
+ Url should include the hostname and scheme. [i[br]]Eg: http://ironwasp.org
+
+
+
+
+ Request(string Method, string FullUrl)
+ Creates Request object from Url and sets the mentioned method.
+
+
+ string
+ Method
+ Request method, Eg: GET or POST
+
+
+ string
+ FullUrl
+ Url should include the hostname and scheme. [i[br]]Eg: http://ironwasp.org
+
+
+
+
+ Request(string Method, string FullUrl, string BodyString)
+ Creates Request object from Url, sets the mentioned method and sets the body.
+
+
+ string
+ Method
+ Request method, Eg: GET or POST
+
+
+ string
+ FullUrl
+ Url should include the hostname and scheme. [i[br]]Eg: http://ironwasp.org/index.html
+
+
+ string
+ BodyString
+ Body of the request as string.
+
+
+
+
+
+
+ FullUrl
+ string
+ Non-Static
+ Entire Url along with scheme and hostname.[i[br]]Eg: http://ironwasp.org/index.html
+
+
+ Url
+ string
+ Non-Static
+ Url without the scheme and hostname.[i[br]]Eg: /main/index.aspx?q=123
+
+
+ UrlPath
+ string
+ Non-Static
+ The Path section of the Url without the QueryString.[i[br]]Eg: /main/index.aspx
+
+
+ UrlPathParts
+ string[]
+ Non-Static
+ Array of strings where each element is a part of the UrlPath property.[i[br]]Eg: ['main','index.aspx']
+
+
+ SSL
+ bool
+ Non-Static
+ Bool value stating if the request is a SSL request or not. [i[br]]Set this to True to create a SSL request.[i[br]]Alias - Ssl
+
+
+ Method
+ string
+ Non-Static
+ HTTP Method of the Request. [i[br]]Eg: GET, POST etc.
+
+
+ HttpVersion
+ string
+ Non-Static
+ Version number of the HTTP Request - HTTP/1.1 or HTTP/1.0
+
+
+ Query
+ Parameters
+ Non-Static
+ Contains the QueryString parameters in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ Body
+ Parameters
+ Non-Static
+ Contains the Request Body parameters in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ Cookie
+ Parameters
+ Non-Static
+ Contains the Cookie parameters in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ Headers
+ Parameters
+ Non-Static
+ Contains the Request Headers in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ Host
+ string
+ Non-Static
+ Hostname of the target server. [i[br]]Eg: www.ironwasp.org
+
+
+ HasBody
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value representing the presence of a Body in the Request.
+
+
+ BodyString
+ string
+ Non-Static
+ Entire Body of the Request as a single string. [i[br]]Encoding charset used is taken from the Content-Type header or ISO-8859-1 is used if none is present.
+
+
+ BinaryBodyString
+ string
+ Non-Static
+ Entire Body of the Request as a Base64 encoded string. [i[br]]If a Binary Request body must be assigned then it can be assigned to this property or to the BodyArray property.[i[br]](IronWASP stores binary body as base64 string in its logs).
+
+
+ BodyArray
+ byte[]
+ Non-Static
+ Entire Body of the Request as a Byte Array.
+
+
+ BodyLength
+ int
+ Non-Static
+ Length of the Request Body.
+
+
+ CookieString
+ string
+ Non-Static
+ Gives the value of the 'Cookie' header of the Request. [i[br]]This property can be assigned a new string to update the Cookie value as well.
+
+
+ ContentType
+ string
+ Non-Static
+ Value of the Content-Type Header, including the Charset information(if present).
+
+
+ IsBinary
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Request is in text or binary format. [i[br]] This property can be controlled by setting a suitable value in the HTTP API section of the config panel
+
+
+ Response
+ Response
+ Non-Static
+ [READ-ONLY] Response object associated with this Request. [i[br]]Generated on calling the Send() method.
+
+
+
+
+ Send()
+ Non-Static
+
+ Response
+ Sends the request to the server and returns the Response object. [i[br]]Call blocks the thread.
+
+
+ Follow(Response ResponseToFollow)
+ Non-Static
+
+
+ Response
+ ResponseToFollow
+ A 3xx response that must be followed
+
+
+ Response
+ If the response status code is a 301, 302, 303 or 307 then it is followed else the response passed in is returned.
+
+
+ GetRedirect(Response RedirectResponse)
+ Non-Static
+
+
+ Response
+ RedirectResponse
+ Response to the Request which contains a Redirect header
+
+
+ Request
+ If the response status code is a 301, 302, 303 or 307 then the a Request object specific to follow the redirection is returned.[i[br]]If the Response is not a redirect then a null value is returned.
+
+
+ SetCookie(Response Res)
+ Non-Static
+
+
+ Response
+ Res
+ IronWASP Response object
+
+
+ None
+ Reads the contents of the Set-Cookie headers from the Response object and adds them as cookies in the Request.
+
+
+ SetCookie(SetCookie[] SetCookies)
+ Non-Static
+
+
+ SetCookie[]
+ SetCookies
+ A list of SetCookie objects. This is usually the SetCookies property of the IronWASP Response object.
+
+
+ None
+ Sets the Cookie of the request with the provided value.
+
+
+ SetCookie(SetCookie SetCookieObject)
+ Non-Static
+
+
+ SetCookie
+ SetCookieObject
+ A SetCookie object
+
+
+ None
+ Sets the Cookie of the request with the provided value.
+
+
+ SetCookie(CookieStore Store)
+ Non-Static
+
+
+ CookieStore
+ Store
+ CookieStore object where cookies are stored
+
+
+ None
+ Reads the CookieStore objects and the Cookies relevant to this Request are added. [i[br]]Revelant cookies are picked based on the Host, Path and Secure attributes of the cookies stored in the CookieStore.
+
+
+ GetBodyEncoding()
+ Non-Static
+
+ string
+ Returns the Encoding Charset of the request from the Content-Type header. [i[br]]If no Charset is specified then ISO-8859-1 is returned.
+
+
+ GetHeadersAsString()
+ Non-Static
+
+ string
+ Returns the entire Request header section containing the method, url, HTTP version and headers as a single string.
+
+
+ ToString()
+ Non-Static
+
+ string
+ Returns the entire Request as a single string.
+
+
+ ToBinaryString()
+ Non-Static
+
+ string
+ Returns the entire Request as a specially formatted string that preserves any binary content in the request body.
+
+
+ GetFullRequestAsByteArray()
+ Non-Static
+
+ byte[]
+ Returns the entire Request header section containing the method, url, HTTP version and headers as a Byte Array.
+
+
+ FromProxyLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the Proxy Log.
+
+
+ Request
+ Creates a Request object from the specified record in the Proxy Log and returns it.
+
+
+ FromProxyLog()
+ Static
+
+ Request[]
+ Creates an array of all Request objects from the Proxy Log and returns it.
+
+
+ FromTestLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the Manual Testing Log.
+
+
+ Request
+ Creates a Request object from the specified record in the Manual Testing Log and returns it.
+
+
+ FromTestLog()
+ Static
+
+ Request[]
+ Creates an array of all Request objects from the Manual Testing Log and returns it.
+
+
+ FromProbeLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the Probe Log.
+
+
+ Request
+ Creates a Request object from the specified record in the Probe Log (Crawler) and returns it.
+
+
+ FromProbeLog()
+ Static
+
+ Request[]
+ Creates an array of all Request objects from the Probe Log(Crawler) and returns it.
+
+
+ FromShellLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the Scripting Shell Log.
+
+
+ Request
+ Creates a Request object from the specified record in the Scripting Shell Log and returns it.
+
+
+ FromShellLog()
+ Static
+
+ Request[]
+ Creates an array of all Request objects from the Scripting Shell Log and returns it.
+
+
+ FromScanLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the 'Automated Scanning' Log.
+
+
+ Request
+ Creates a Request object from the specified record in the 'Automated Scanning' Log and returns it.
+
+
+ FromScanLog()
+ Static
+
+ Request[]
+ Creates an array of all Request objects from the 'Automated Scanning' Log and returns it.
+
+
+ FromString(string RequestString)
+ Static
+
+
+ string
+ RequestString
+ String representing the entire request, usually the output of the ToString() method.
+
+
+ Request
+ Creates a Request object from the string and returns it.
+
+
+ FromBinaryString(string RequestBinaryString)
+ Static
+
+
+ string
+ RequestString
+ Specially formatted binary string representing the entire request, the output of the ToBinaryString() method.
+
+
+ Request
+ Creates a Request object from the string and returns it.
+
+
+ GetId()
+ Non-Static
+
+ int
+ Returns the ID of the Request object in its respective log.
+
+
+
+
+ Response
+ Non-Static
+ Object that represents a HTTP response. Has methods to read and analyze the response.
+
+
+
+
+ Code
+ int
+ Non-Static
+ [READ-ONLY] Status code of the response. [i[br]]Eg: 200
+
+
+ Status
+ string
+ Non-Static
+ [READ-ONLY] Status description of the response. [i[br]]Eg: OK
+
+
+ HttpVersion
+ string
+ Non-Static
+ [READ-ONLY] HTTP Version of the response.[i[br]]Eg: HTTP/1.1
+
+
+ SetCookies
+ SetCookie[]
+ Non-Static
+ A collection of SetCookie objects. This is built by parsing the 'Set-Cookie' headers in the Response
+
+
+ Headers
+ Parameters
+ Non-Static
+ Contains the Request Headers in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ IsBinary
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is in text or binary format. [i[br]] This property can be controlled by setting a suitable value in the HTTP API section of the config panel
+
+
+ HasBody
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value representing the presence of a Body in the Response.
+
+
+ BodyString
+ string
+ Non-Static
+ Body of the response represented as a string.
+
+
+ BinaryBodyString
+ string
+ Non-Static
+ Body of the response represented as a Base64 encoded string.
+
+
+ BodyArray
+ byte[]
+ Non-Static
+ Body of the response represented as a Byte Array.
+
+
+ BodyEncoding
+ string
+ Non-Static
+ Content Encoding used for the Response Body.
+
+
+ Html
+ HTML
+ Non-Static
+ Body of the Response represented as a HTML object.
+
+
+ IsHtml
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is HTML text or not.
+
+
+ IsJavaScript
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is valid JavaScript text or not.
+
+
+ IsCss
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is valid CSS text or not.
+
+
+ IsXml
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is valid XML text or not.
+
+
+ IsJson
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is valid JSON text or not.
+
+
+
+
+ ToString()
+ Non-Static
+
+ string
+ Returns the entire Response as a single string.
+
+
+
+
+ Session
+ Non-Static
+ Represents an HTTP transaction, contains a Request and a Response object.
+
+
+
+
+ Request
+ Request
+ Non-Static
+ The Request object stored inside the Session.
+
+
+ Response
+ Response
+ Non-Static
+ The Response corresponding to the Request object, if available.
+
+
+
+
+ FromProxyLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the Proxy Log.
+
+
+ Session
+ Creates an Session object from the specified record in the Proxy Log and returns it.
+
+
+ FromProxyLog()
+ Static
+
+ Session[]
+ Creates an array of all Session objects from the Proxy Log and returns it.
+
+
+ FromTestLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the Manual Testing Log.
+
+
+ Session
+ Creates an Session object from the specified record in the Manual Testing Log and returns it.
+
+
+ FromTestLog()
+ Static
+
+ Session[]
+ Creates an array of all Session objects from the Manual Testing Log and returns it.
+
+
+ FromProbeLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the Probe Log.
+
+
+ Session
+ Creates an Session object from the specified record in the Probe Log(Crawler) and returns it.
+
+
+ FromProbeLog()
+ Static
+
+ Session[]
+ Creates an array of all Session objects from the Probe Log(Crawler) and returns it.
+
+
+ FromShellLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the Scripting Shell Log.
+
+
+ Session
+ Creates an Session object from the specified record in the Scripting Shell Log and returns it.
+
+
+ FromShellLog()
+ Static
+
+ Session[]
+ Creates an array of all Session objects from the Scripting Shell Log and returns it.
+
+
+ FromScanLog(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the 'Automated Scanning' Log.
+
+
+ Session
+ Creates an Session object from the specified record in the 'Automated Scanning' Log and returns it.
+
+
+ FromScanLog()
+ Static
+
+ Session[]
+ Creates an array of all Session objects from the 'Automated Scanning' Log and returns it.
+
+
+ GetId()
+ Non-Static
+
+ int
+ Returns the ID of the Session object in its respective log.
+
+
+
+
+ Parameters
+ Non-Static
+ Base class for the QueryParameters, BodyParameters, HeaderParameters and CookieParameter classes. Used to store Key-Value pairs. Key is a string and Value is a list of strings.[i[br]] The Keys for HeaderParameters are case-insensitive, for others it is case-sensitive.
+
+
+
+
+ Count
+ int
+ Non-Static
+ Number of Parameters present in this object.
+
+
+
+
+ Get(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Returns the value of the parameter with the given name in the same decoded form as the application would see it. [i[br]]For example in the Url 'http://example.org/a?q=a%23b' the value of Query parameter 'q' will be returned as 'a#b' by the Get method as it will properly decode it before returning.
+
+
+ RawGet(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Returns the raw value of the parameter with the given name, as it appears in the HTTP Request string that is sent over the network. [i[br]]Depending on if this is Query/Body/Header/Cookie parameter the value will be the appropriate encoded form.[i[br]]For example in the Url 'http://example.org/a?q=a%23b' the value of Query parameter 'q' will be returned as 'a%23b' by RawGet method, whereas the Get method would decode it and return as 'a#b'.
+
+
+ GetNames()
+ Non-Static
+
+ string[]
+ Returns the Names of all the parameters as a list. The form of parameter names is the same decoded form as the application would see it.[i[br]]For example in the Url 'http://example.org/a?q%23r=ab' the value of Query parameter name will be returned as 'q#r' by GetNames method.
+
+
+ RawGetNames()
+ Non-Static
+
+ string[]
+ Returns the Names of all the parameters as a list. The form of the parameter names is as it appears in the HTTP Request string that is sent over the network. [i[br]]Depending on if this is Query/Body/Header/Cookie parameter name the value will be the appropriate encoded form.[i[br]]For example in the Url 'http://example.org/a?q%23r=ab' the value of Query parameter name will be returned as 'q%23r' by RawGetNames method, whereas the GetNames method would decode it and return as 'q#r'.
+
+
+ GetAll(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string[]
+ Returns all values of the parameters with the given name. The form of the parameter values is the same decoded form as the application would see it(Refer Get for example). [i[br]]Used when there are two or more parameters with the same name.
+
+
+ RawGetAll(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string[]
+ Returns all values of the parameters with the given name. The form of the parameter values is as they appear in the HTTP Request string that is sent over the network (Refer RawGet for example).[i[br]]Used when there are two or more parameters with the same name.
+
+
+ Set(string Name, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Value
+ Value of the parameter in the decoded form you want the application to see it. [i[br]]Eg: If Set('q', 'a+b') is called on Query parameter of a Request then the in the Url it would become '?q=a%2bb' and so the value of q will be read by the application as 'a+b', as originally set.
+
+
+ Void
+ Adds the Name/Value pair to the parameters list. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ RawSet(string Name, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Value
+ Value of the parameter in the encoded form as it appears in the HTTP Request string that is sent over the network. [i[br]]Eg: If RawSet('q', 'a+b') is called on Query parameter of a Request then in the Url it would become '?q=a+b' and so the value of q will be read by the application as 'a b'.
+
+
+ Void
+ Adds the Name/Value pair to the parameters list. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ Set(string Name, int SubParameterPosition, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ int
+ SubParameterPosition
+ When there are two or more parameters with the same name then this indicates the zero-based index of the parameter position that must be set
+
+
+ string
+ Value
+ Value of the parameter in the decoded form you want the application to see it.
+
+
+ Void
+ Adds the Name/Value pair to the parameters list at a specified position if two or more parameters exist with the same name. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ RawSet(string Name, int SubParameterPosition, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ int
+ SubParameterPosition
+ When there are two or more parameters with the same name then this indicates the zero-based index of the parameter position that must be set
+
+
+ string
+ Value
+ Value of the parameter in the encoded form as it appears in the HTTP Request string that is sent over the network.
+
+
+ Void
+ Adds the Name/Value pair to the parameters list at a specified position if two or more parameters exist with the same name. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ Set(string Name, string[] Values)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string[]
+ Values
+ Array of multiple values for the same parameter. The values are in the decoded form you want the application to see it.
+
+
+ Void
+ Adds the Name/Value pair to the parameters list. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ RawSet(string Name, string[] Values)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string[]
+ Values
+ Array of multiple values for the same parameter. The values of the parameter in the encoded form as it appears in the HTTP Request string that is sent over the network.
+
+
+ Void
+ Adds the Name/Value pair to the parameters list. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ Add(string Name, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Value
+ Value of the parameter in the decoded form you want the application to see it. [i[br]]Eg: If Add('q', 'a+b') is called on Query parameter of a Request then the in the Url it would become '?q=a%2bb' and so the value of q will be read by the application as 'a+b', as originally set.
+
+
+ Void
+ Adds the Name/Value pair to the parameters list. [i[br]]If a parameter with that name exisits then this value is appened to the exisiting list.
+
+
+ RawAdd(string Name, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Value
+ Value of the parameter in the encoded form as it appears in the HTTP Request string that is sent over the network. [i[br]]Eg: If RawAdd('q', 'a+b') is called on Query parameter of a Request then in the Url it would become '?q=a+b' and so the value of q will be read by the application as 'a b'.
+
+
+ Void
+ Adds the Name/Value pair to the parameters list. [i[br]]If a parameter with that name exisits then this value is appened to the exisiting list.
+
+
+ Remove(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ Void
+ Removes the specified parameter from the list.
+
+
+ RemoveAll()
+ Non-Static
+
+ Void
+ Removes all parameters from the list.
+
+
+ Has(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ Bool
+ Checks if the given parameter name exists in the list and returns a bool value.
+
+
+ GetMultis()
+ Non-Static
+
+ string[]
+ Returns the name of the parameters that have multiple values. [i[br]]Use GetAll to get those values.
+
+
+
+
+ Tools
+ Static
+ Collection of commonly required utilities
+
+
+
+
+
+
+ UrlEncode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Returns a Url-Encoded version of the input.
+
+
+ HtmlEncode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Returns a HTML-encoded version of the input.
+
+
+ Base64Encode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Returns a Base64-encoded version of the input.
+
+
+ ToHex(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Converts all characters to HEX string and returns it.
+
+
+ ToHex(byte[] Input)
+ Static
+
+
+ byte[]
+ Input
+ ByteArray to encode
+
+
+ string
+ Converts all bytes to HEX string and returns it.
+
+
+ HexEncode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Converts all characters to HEX string with a preceding '%' and returns it.
+
+
+ XmlEncode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Encodes the Input to make it suitable to be added as a XML node's value
+
+
+ UrlDecode(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Returns a Url-Decoded version of the input.
+
+
+ HtmlDecode(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Returns a HTML-Decoded version of the input.
+
+
+ Base64Decode(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Returns a Base64-Decoded version of the input.
+
+
+ Base64DecodeToHex(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Base64 decodes the Input and returns the results as a Hex string.
+
+
+ HexDecode(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Converts all the HEX characters to ascii equivalents.
+
+
+ md5(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a MD5 hash of the input.
+
+
+ sha1(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a SHA1 hash of the input.
+
+
+ sha256(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a SHA256 hash of the input.
+
+
+ sha384(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a SHA384 hash of the input.
+
+
+ sha512(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a SHA512 hash of the input.
+
+
+ Diff(string Source, string Destination)
+ Static
+
+
+ string
+ Source
+ String to be used as source text
+
+
+ string
+ Destination
+ String to be used as destination text
+
+
+ DiffResult
+ Does a line-by-line Diff of two multi-line strings and returns a DiffResult object containg the result.
+
+
+ DiffLine(string Source, string Destination)
+ Static
+
+
+ string
+ Source
+ String to be used as source text
+
+
+ string
+ Destination
+ String to be used as destination text
+
+
+ DiffResult
+ Does a word-by-word Diff of single line strings and returns a DiffResult object containg the result.
+
+
+ DiffLevel(string Source, string Destination)
+ Static
+
+
+ string
+ Source
+ String to be used as source text
+
+
+ string
+ Destination
+ String to be used as destination text
+
+
+ int
+ Gives a value between 0 - 100 indicating the percent of difference between the two strings. 0 indicates the two strings are same. 100 indicates the two strings are fully different.
+
+
+
+
+ DiffResult
+ Non-Static
+ Represents a result of a Diff of two strings. Returned by the method - Tools.Diff()
+
+
+
+
+ Deleted
+ int[]
+ Non-Static
+ Line numbers in the first string that are not present in the second string
+
+
+ MissingAt
+ int[]
+ Non-Static
+ Line numbers in the second string where the deleted sections of first string should have appeared
+
+
+ Inserted
+ int[]
+ Non-Static
+ Line numbers in the second string that contain sections not present in the first string
+
+
+ UnChanged
+ int[]
+ Non-Static
+ Line numbers in the second string that remain the same as first string
+
+
+ DeletedSections
+ string[]
+ Non-Static
+ Sections of the first string that are not present in the second string
+
+
+ InsertedSections
+ string[]
+ Non-Static
+ Sections of the second string that are not present in the first string
+
+
+ UnChangedSections
+ string[]
+ Non-Static
+ Sections of the second string that are also present in the first string
+
+
+
+
+
+
+ AskUser
+ Static
+ Class that enables scripts to create UI pop-ups and get data from user at run-time.
+
+
+
+
+
+
+ ForBool(string Title, string Message)
+ Static
+
+
+ string
+ Title
+ Title of the message, shown at the top of the pop-up window
+
+
+ string
+ Message
+ Message to be shown to to the user
+
+
+ bool
+ Shows a pop-up window with the provided title and message along with a 'Yes' and a 'No' button and waits. Returns the user's input as a boolean.
+
+
+ ForString(string Title, string Message)
+ Static
+
+
+ string
+ Title
+ Title of the message, shown at the top of the pop-up window
+
+
+ string
+ Message
+ Message to be shown to to the user
+
+
+ bool
+ Shows a pop-up window with the provided title and message along with an input field and a 'Submit' button. Returns the user's input as a string.
+
+
+ ForString(string Title, string Message, string ImageFilePath)
+ Static
+
+
+ string
+ Title
+ Title of the message, shown at the top of the pop-up window
+
+
+ string
+ Message
+ Message to be shown to to the user
+
+
+ string
+ ImageFilePath
+ Full path to any image file on the local hard drive. Eg: Capcha images
+
+
+ bool
+ Shows a pop-up window with the provided title and message and also displays the image inside this window along with an input field and a 'Submit' button. Returns the user's input as a string.
+
+
+
+
+ SetCookie
+ Non-Static
+ Represents all the information available in a Set-Cookie header
+
+
+ SetCookie(string SetCookieHeaderString)
+ Parses the a Set-Cookie header and creates a object that gives easy access to the contained information
+
+
+ string
+ SetCookieHeaderString
+ The Set-Cookie header string
+
+
+
+
+
+
+ Name
+ string
+ Non-Static
+ [READ-ONLY] Name of the key in the key-value pair included in the Set-Cookie header
+
+
+ Value
+ string
+ Non-Static
+ [READ-ONLY] Value of the key included in the Set-Cookie header
+
+
+ FullString
+ string
+ Non-Static
+ [READ-ONLY] Returns the full Set-Cookie header as a single string
+
+
+ Path
+ string
+ Non-Static
+ [READ-ONLY] Value of the Path attribute
+
+
+ Domain
+ string
+ Non-Static
+ [READ-ONLY] Value of the Domain attribute
+
+
+ Expires
+ string
+ Non-Static
+ [READ-ONLY] Value of the Expires attribute
+
+
+ MaxAge
+ string
+ Non-Static
+ [READ-ONLY] Value of the Max-Age attribute
+
+
+ HttpOnly
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value inditicating if the HttpOnly flag is set.
+
+
+ Secure
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value inditicating if the Secure flag is set.
+
+
+ Comment
+ string
+ Non-Static
+ [READ-ONLY] Comments contained in the Set-Cookie header
+
+
+ Version
+ string
+ Non-Static
+ [READ-ONLY] Version information from the Set-Cookie header
+
+
+
+
+ CookieStore
+ Non-Static
+ A store to save Cookies and add them to any Requests
+
+
+ CookieStore()
+ Creates a new empty Cookie Store object
+
+
+
+
+
+
+
+
+ Add(Request Req, Response Res)
+ Non-Static
+
+
+ Request
+ Req
+ Request object that was sent to the server
+
+
+ Response
+ Res
+ Response object recieved for the Request
+
+
+ void
+ Updates the CookieStore with the Response object's SetCookie headers
+
+
+ Add(string Host, string Cookie)
+ Non-Static
+
+
+ string
+ Host
+ Hostname of the site
+
+
+ string
+ Cookie
+ Cookie header as a string Eg: "SessionID=sad797asjd2323"
+
+
+ void
+ Updates the CookieStore with the Cookie against the specified Hostname
+
+
+ GetCookies()
+ Non-Static
+
+
+ SetCookie[]
+ Returns a list of SetCookie objects that represent all the cookies stored inside the CookieStore object
+
+
+ GetCookies(Request Req)
+ Non-Static
+
+
+ Request
+ Req
+ Request that must be sent to the server
+
+
+ SetCookie[]
+ Returns a list of SetCookie objects that represent the matching cookies stored inside the CookieStore object. Matches are done on the Hostname and Path of the Request object and the stored cookies.
+
+
+
+
+ HTML
+ Non-Static
+ A class that represents a HTML document and contains methods to traverse it.
+
+
+ HTML(string HtmlString)
+ Creates a HTML object from raw string containg HTML tags
+
+
+ string
+ HtmlString
+ String containg HTML tags, usually the Response Body.
+
+
+
+
+
+
+ Links
+ string[]
+ Non-Static
+ Lists all the links contained in the HTML document
+
+
+ Comments
+ string[]
+ Non-Static
+ Lists all the comments contained in the HTML document
+
+
+ Html
+ HtmlDocument
+ Non-Static
+ The base HtmlDocument object of HtmlAgilityPack
+
+
+
+
+ Load(string HtmlString)
+ Non-Static
+
+ Void
+ Updates the HTML object with new HtmlString
+
+
+ Get(string ElementName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string[]
+ Returns all the elements of the given name as strings. [i[br]]Eg: my_html.Get("script")
+
+
+ Get(string ElementName, string AttributeName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload' etc
+
+
+ string[]
+ Returns matching elements as strings. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.Get("script","src")
+
+
+ Get(string ElementName, string AttributeName, string AttributeValues)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload' etc
+
+
+ string
+ AttributeValue
+ Value of the Attribute mentioned in the last parameter.
+
+
+ string[]
+ Returns matching elements as strings. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.Get("*","class","code")
+
+
+ GetValues(string ElementName, string AttributeName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element whose value must be returned. Eg: 'src', 'onload' etc
+
+
+ string[]
+ Returns the matching atrribute values as list of strings. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.GetValues("script","src")
+
+
+ GetValues(string ElementName, string AttributeName, string AttributeValues, string InterestedAttributeName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload', 'id' etc
+
+
+ string
+ AttributeValue
+ Value of the Attribute mentioned in the last parameter.
+
+
+ string
+ InterestedAttributeName
+ Name of an attribute of the element whose value must be returned. Eg: 'src', 'onload', 'id' etc
+
+
+ string[]
+ Returns the interested attribute values as list of strings from the elements matched by the element name and containing the provided attribute name/value pair. the presence of the provided attribute. [i[br]]Eg: my_html.GetValues("a", "class", "left_nav", "href") will get the 'href' values of only those 'a' tags that have a 'class' attribute with value 'left_nav'
+
+
+ GetMetaContent(string MetaAttributeName, string MetaAttributeValue)
+ Non-Static
+
+
+ string
+ MetaAttributeName
+ Name of an HTML Meta tag attribute. Eg: 'http-equiv'
+
+
+ string
+ MetaAttributeValue
+ Value of the attributes mentioned by the MetaAttributeName parameter. Eg: 'set-cookie' (in case of attribute name 'http-equiv')
+
+
+ string[]
+ Returns the value of the 'content' attribute of 'meta' HTML tag that have an attribute matching MetaAttributeName with its value matching as MetaAttributeValue, as list of strings. [i[br]]Eg: my_html.GetMetaContent("http-equiv", "set-cookie")
+
+
+ GetNodes(string ElementName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ HtmlNodeCollection
+ Returns all the elements of the given name as HtmlNodeCollection object of HtmlAgilityPack. [i[br]]Eg: my_html.Get("script")
+
+
+ GetNodes(string ElementName, string AttributeName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload' etc
+
+
+ HtmlNodeCollection
+ Returns matching elements as HtmlNodeCollection object of HtmlAgilityPack. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.Get("script","src")
+
+
+ GetNodes(string ElementName, string AttributeName, string AttributeValues)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload' etc
+
+
+ string
+ AttributeValue
+ Value of the Attribute mentioned in the last parameter.
+
+
+ HtmlNodeCollection
+ Returns matching elements as HtmlNodeCollection object of HtmlAgilityPack. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.Get("*","class","code")
+
+
+ Query(string XpathQuery)
+ Non-Static
+
+
+ string
+ XpathQuery
+ Xpath Query that must be executed on the Html object. Eg: "//a"
+
+
+ string[]
+ Returns all the elements of the given Html object that matched the Xpath Query as strings. [i[br]]Eg: my_html.QueryNodes("//a")
+
+
+ QueryNodes(string XpathQuery)
+ Non-Static
+
+
+ string
+ XpathQuery
+ Xpath Query that must be executed on the Html object. Eg: "//a[@onclick]"
+
+
+ HtmlNodeCollection
+ Returns all the elements of the given name as HtmlNodeCollection object of HtmlAgilityPack that matched the Xpath Query. [i[br]]Eg: my_html.QueryNodes("//a[@onclick]")
+
+
+ QueryValues(string XpathQuery, string AttributeName)
+ Non-Static
+
+
+ string
+ XpathQuery
+ Xpath Query that must be executed on the Html object. Eg: "//a[@onclick]"
+
+
+ string
+ AttributeName
+ Name of the Attribute whose value must be returned
+
+
+ string[]
+ Returns an array of strings containing the value of the Attribute from the Nodes that matched the Xpath Query. [i[br]]Eg: my_html.QueryNodes("//a[@onclick]")
+
+
+ GetForms()
+ Non-Static
+
+
+ HtmlNode[]
+ Returns an array of HtmlNode(HtmlAgilityPack) objects that represent the Forms in the Html object. The HtmlNodes only contain the Form and Input Html elements, unnecessary elements are stripped off.
+
+
+ GetJavaScript()
+ Non-Static
+
+
+ string[]
+ Returns an array of string containing all the JavaScript from the Script tags and event attributes of the Html
+
+
+ GetJavaScript(string Keyword)
+ Non-Static
+
+
+ string
+ Keyword
+ A string value set by user, only JavaScript snippets that have this keyword are returned.
+
+
+ string[]
+ Returns an array of string containing all the JavaScript that contain the Keyword, from the Script tags and event attributes of the Html
+
+
+ GetVisualBasic()
+ Non-Static
+
+
+ string[]
+ Returns an array of string containing all the VisualBasic from the Script tags of the Html
+
+
+ GetVisualBasic(string Keyword)
+ Non-Static
+
+
+ string
+ Keyword
+ A string value set by user, only VisualBasic snippets that have this keyword are returned.
+
+
+ string[]
+ Returns an array of string containing all the VisualBasic that contain the Keyword, from the Script tags of the Html
+
+
+ GetCss()
+ Non-Static
+
+
+ string[]
+ Returns an array of string containing all the CSS from the Style tags and style attributes of the Html
+
+
+ GetCss(string Keyword)
+ Non-Static
+
+
+ string
+ Keyword
+ A string value set by user, only CSS snippets that have this keyword are returned.
+
+
+ string[]
+ Returns an array of string containing all the CSS that contain the Keyword, from the Style tags and style attributes of the Html
+
+
+ XpathSafe(string Input)
+ Non-Static
+
+
+ string
+ Input
+ The value that must be made Xpath safe
+
+
+ string
+ Takes the input string and returns an ouput that is fit to be used as an attribute value in a Xpath query.
+
+
+ GetContext(string Keyword)
+ Non-Static
+
+
+ string
+ Keyword
+ The Keyword whose context must be found
+
+
+ string[]
+ Checks the occurances of the Keyword in the Html and returns the contexts.
+
+
+
+
+ ActivePlugin
+ Non-Static
+ An IronPython or IronRuby script that performs some vulnerability checks on the a webpage through active interaction.
+
+
+
+
+ Name
+ string
+ Non-Static
+ Name of the Active Plugin
+
+
+ Description
+ string
+ Non-Static
+ Information about the plugin.
+
+
+ Version
+ string
+ Non-Static
+ Version number of the Plugin
+
+
+
+
+ Add(ActivePlugin NewActivePluginObject)
+ Static
+
+
+ ActivePlugin
+ NewActivePluginObject
+ New ActivePlugin Object
+
+
+ Void
+ Adds a new Active Plugin to IronWASP's internal list
+
+
+ Get(string PluginName)
+ Static
+
+
+ string
+ PluginName
+ Name of the ActivePlugin
+
+
+ ActivePlugin
+ Returns a ActivePlugin of the given name from IronWASP's internal list. [i[br]]Eg: ActivePlugin.Get("Cross-site Scripting")
+
+
+ List()
+ Static
+
+ string[]
+ Returns the names of all ActivePlugins currently present in IronWASP's internal list.
+
+
+ Check(Request Req, Scanner Scan)
+ Non-Static
+
+
+ Request
+ Req
+ The Request that is being scanned
+
+
+ Scanner
+ Scan
+ The Scanner object that is calling this Active Plugin
+
+
+ Void
+ This method contains the vulnerability checking logic of this particular ActivePlugin and performs the required check.
+
+
+
+
+ PassivePlugin
+ Non-Static
+ An IronPython or IronRuby script that performs some vulnerability checks on requests/responses passively.
+
+
+
+
+ Name
+ string
+ Non-Static
+ Name of the Passive Plugin
+
+
+ Description
+ string
+ Non-Static
+ Information about the plugin.
+
+
+ Version
+ string
+ Non-Static
+ Version number of the Plugin
+
+
+
+
+ Add(PassivePlugin NewPassivePluginObject)
+ Static
+
+
+ PassivePlugin
+ NewPassivePluginObject
+ New PassivePlugin Object
+
+
+ Void
+ Adds a new Passive Plugin to IronWASP's internal list
+
+
+ Get(string PluginName)
+ Static
+
+
+ string
+ PluginName
+ Name of the PassivePlugin
+
+
+ PassivePlugin
+ Returns a PassivePlugin of the given name from IronWASP's internal list.
+
+
+ List()
+ Static
+
+ string[]
+ Returns the names of all PassivePlugins currently present in IronWASP's internal list.
+
+
+ Check(Session Sess, PluginResults Results)
+ Non-Static
+
+
+ Session
+ Sess
+ The Session object that is being passively scanned
+
+
+ PluginResults
+ Results
+ The object that will hold the findings of the check if any.
+
+
+ Void
+ This method contains the vulnerability checking logic of this particular PassivePlugin and performs the required check.
+
+
+
+
+ FormatPlugin
+ Non-Static
+ An IronPython or IronRuby script that can convert an object of any special format to xml and back.
+
+
+
+
+ Name
+ string
+ Non-Static
+ Name of the Format Plugin
+
+
+ Description
+ string
+ Non-Static
+ Information about the plugin.
+
+
+ Version
+ string
+ Non-Static
+ Version number of the Plugin
+
+
+
+
+ Add(FormatPlugin NewFormatPluginObject)
+ Static
+
+
+ FormatPlugin
+ NewFormatPluginObject
+ New FormatPlugin Object
+
+
+ Void
+ Adds a new Format Plugin to IronWASP's internal list
+
+
+ Get(string PluginName)
+ Static
+
+
+ string
+ PluginName
+ Name of the FormatPlugin
+
+
+ FormatPlugin
+ Returns a FormatPlugin of the given name from IronWASP's internal list.
+
+
+ List()
+ Static
+
+ string[]
+ Returns the names of all FormatPlugins currently present in IronWASP's internal list.
+
+
+ XmlToArray(string Xml)
+ Static
+
+
+ string
+ Xml
+ The Xml must be converted in to array
+
+
+ string[,]
+ Converts the Xml input in to a two-dimensional array and returns it. The two-dimensional array holds the values in the Xml and the node path of the values. This information is used for fuzzing the Xml.
+
+
+ InjectInXml(string Xml, int InjectionPosition, string ValueToString)
+ Static
+
+
+ string
+ Xml
+ The Xml in to which a value must be injected
+
+
+ int
+ InjectionPosition
+ The position in the Xml where the value must be injected. This is the index of the value in the two-dimensional array returned by FormatPlugin.XmlToArray(Xml)
+
+
+ string
+ ValueToString
+ The value that must be injected in to the Xml
+
+
+ string
+ Inserts a value in to the specified position in the Xml and returns the updated Xml. This method is used in fuzzing Xml based data or data of any format that gets converted to Xml by the approriate FormatPlugin
+
+
+
+
+ SessionPlugin
+ Non-Static
+ An IronPython or IronRuby script that would contain methods to define a specific web application's custom behaviour.
+
+
+
+
+ Name
+ string
+ Non-Static
+ Name of the Session Plugin
+
+
+ Description
+ string
+ Non-Static
+ Information about the plugin.
+
+
+ Version
+ string
+ Non-Static
+ Version number of the Plugin
+
+
+
+
+ Add(SessionPlugin NewSessionPluginObject)
+ Static
+
+
+ SessionPlugin
+ NewSessionPluginObject
+ New SessionPlugin Object
+
+
+ Void
+ Adds a new Session Plugin to IronWASP's internal list
+
+
+ Get(string PluginName)
+ Static
+
+
+ string
+ PluginName
+ Name of the SessionPlugin
+
+
+ FormatPlugin
+ Returns a SessionPlugin of the given name from IronWASP's internal list.
+
+
+ List()
+ Static
+
+ string[]
+ Returns the names of all SessionPlugins currently present in IronWASP's internal list.
+
+
+
+
+ Scanner
+ Non-Static
+ A class to create a custom security scanner by determining injection points and active plugins.
+
+
+ Scanner(Request RequestToScan)
+ Creates a new Scanner object based on the Request
+
+
+ Request
+ RequestToScan
+ A request that would be scanned by the scanner object.
+
+
+
+
+
+
+ SessionHandler
+ SessionPlugin
+ Non-Static
+ Session plugin assosiated with this scanner to control its behaviour
+
+
+ BodyFormat
+ FormatPlugin
+ Non-Static
+ Format Plugin associated with this scanner to represent the body of the scanner's request.
+
+
+ InjectedSection
+ string
+ Non-Static
+ Name of the section of the request that is being currently injected. Possible values are URL, Query, Body, Cookie and Headers. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ InjectedParameter
+ string
+ Non-Static
+ Name of the parameter that is being currently injected. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ InjectedUrlPathPosition
+ int
+ Non-Static
+ The index of the UrlPathParts that is being currently injected. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ PreInjectionParameterValue
+ string
+ Non-Static
+ Original value of the parameter that is being currently injected. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ InjectedRequest
+ Request
+ Non-Static
+ Request sent to the serer with some parameter injected. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ InjectionResponse
+ Response
+ Non-Static
+ Response returned from the server for InjectedRequest. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+
+
+ AddCheck(string ActivePluginName)
+ Non-Static
+
+
+ string
+ ActivePluginName
+ Name of the active plugin that must be included in the scan.
+
+
+ Void
+ Includes an Active Plugin to the scanner and calls it at scan time.
+
+
+ RemoveCheck(string ActivePluginName)
+ Non-Static
+
+
+ string
+ ActivePluginName
+ Name of the ActivePlugin to be removed from the scanner
+
+
+ Void
+ Removes the Active Plugins from the list of checks the scanner calls at scan time.
+
+
+ ShowChecks()
+ Non-Static
+
+ string[]
+ Returns the names of all ActivePlugins that will be called by the Scanner at scan time.
+
+
+ ClearChecks()
+ Non-Static
+
+ Void
+ Removes all the Active Plugins that would have been called by the Scanner at scan time.
+
+
+ InjectAll()
+ Non-Static
+
+ Void
+ Sets injection points in all Url positions, Query, Body, Cookie and Header parameters.
+
+
+ InjectUrl()
+ Non-Static
+
+ Void
+ Sets injection points in all Url positions.
+
+
+ InjectUrl(int UrlPosition)
+ Non-Static
+
+
+ int
+ UrlPosition
+ Zero based value of the Url position that must be injected
+
+
+ Void
+ Sets an injection point at the specified Url position.
+
+
+ InjectQuery()
+ Non-Static
+
+ Void
+ Sets injection points in all Query parameter positions.
+
+
+ InjectQuery(string ParameterName)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ Void
+ Sets an injection point at all occurances of the given parameter name in the query.
+
+
+ InjectQuery(string ParameterName, int SubParameterPosition)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ int
+ SubParameterPosition
+ SubParameter Position of the parameter that must be injected
+
+
+ Void
+ Sets an injection point at the specified occurance of the given parameter name in the query if multiple parameter exist with the same name.
+
+
+ InjectBody()
+ Non-Static
+
+ Void
+ Sets injection points in all Body parameter positions.
+
+
+ InjectBody(string ParameterName)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ Void
+ Sets an injection point at all occurances of the given parameter name in the Body.
+
+
+ InjectBody(string ParameterName, int SubParameterPosition)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ int
+ SubParameterPosition
+ SubParameter Position of the parameter that must be injected
+
+
+ Void
+ Sets an injection point at the specified occurance of the given parameter name in the body if multiple parameter exist with the same name.
+
+
+ InjectBody(int XmlArrayInjectionPoint)
+ Non-Static
+
+
+ int
+ XmlArrayInjectionPoint
+ A position inside the XmlInjectionPoints array
+
+
+ Void
+ If a FormatPlugin is set then sets an injection point the specified point in the XmlInjectionPoints array.
+
+
+ InjectCookie()
+ Non-Static
+
+ Void
+ Sets injection points in all Cookie parameter positions.
+
+
+ InjectCookie(string ParameterName)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ Void
+ Sets an injection point at all occurances of the given parameter name in the Cookie.
+
+
+ InjectCookie(string ParameterName, int SubParameterPosition)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ int
+ SubParameterPosition
+ SubParameter Position of the parameter that must be injected
+
+
+ Void
+ Sets an injection point at the specified occurance of the given parameter name in the Cookie if multiple parameter exist with the same name.
+
+
+ InjectHeaders()
+ Non-Static
+
+ Void
+ Sets injection points in all Headers parameter positions.
+
+
+ InjectHeaders(string ParameterName)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ Void
+ Sets an injection point at all occurances of the given parameter name in the Headers.
+
+
+ InjectHeaders(string ParameterName, int SubParameterPosition)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ int
+ SubParameterPosition
+ SubParameter Position of the parameter that must be injected
+
+
+ Void
+ Sets an injection point at the specified occurance of the given parameter name in the Headers if multiple parameter exist with the same name.
+
+
+ LaunchScan()
+ Non-Static
+
+ Void
+ Similar to Scan() but instead of performing the scan in the current thread it queues the scan job in the 'AutomatedScanning' section. The scan logs will be updated in the 'ScanLog' grid instead of the 'ScriptingLog' grid.
+
+
+ Inject(string Payload)
+ Non-Static
+
+
+ string
+ Payload
+ Payload to be injected
+
+
+ Response
+ Injects the payload in the section of the request where the current injection pointer lies and returns the corresponding response. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+
+
+ IronJint
+ Static
+ A JavaScript static analyzer to check for DOM-based XSS issues
+
+
+
+
+
+
+ Trace(string JavaScriptCode)
+ Static
+
+
+ string
+ JavaScriptCode
+ The JavaScript code that must be analyzed
+
+
+ TraceResult
+ Analyzes the JavaScript code for instances where DOM XSS Sources and Sinks are present including instances where Sources are assigned to Sinks. The result of the analysis is stored in a TraceResult object and returned.
+
+
+ Trace(string JavaScriptCode, string Keyword)
+ Static
+
+
+ string
+ JavaScriptCode
+ The JavaScript code that must be analyzed
+
+
+ string
+ Keyword
+ The Keyword that must be traced through the JavaScript
+
+
+ TraceResult
+ Analyzes the JavaScript code for instances where the given keyword is assigned to DOM XSS Sinks. The result of the analysis is stored in a TraceResult object and returned.
+
+
+ IsExpressionStatement(string JavaScriptCode, string Keyword)
+ Static
+
+
+ string
+ JavaScriptCode
+ The JavaScript code that must be analyzed
+
+
+ string
+ Keyword
+ The string value that must be checked for being an expression statement.
+
+
+ bool
+ Parses the input JavaScript code and checks if the keyword appears inside the JavaScript as an expression statement.
+
+
+ Beautify(string JavaScriptCode)
+ Static
+
+
+ string
+ JavaScriptCode
+ The JavaScript code that must be beautified
+
+
+ string
+ Properly formats the input code and returns a more readable version
+
+
+
+
+ TraceResult
+ Non-Static
+ Represents the result of JavaScript static analysis performed using the Trace method of IronJint.
+
+
+
+
+ SourceLineNos
+ int[]
+ Non-Static
+ Line numbers that are tained by a DOM XSS source
+
+
+ SinkLineNos
+ int[]
+ Non-Static
+ Line numbers that are tained by a DOM XSS sink
+
+
+ SourceToSinkLineNos
+ int[]
+ Non-Static
+ Line numbers where a DOM XSS source is assigned to a DOM XSS sink. If this is the result of IronJint.Trace(code, keyword) then these are the lines where the keyword is assigned to a DOM XSS sink.
+
+
+ SourceLines
+ string[]
+ Non-Static
+ Lines that are tained by a DOM XSS source
+
+
+ SinkLines
+ string[]
+ Non-Static
+ Lines that are tained by a DOM XSS sink
+
+
+ SourceToSinkLines
+ string[]
+ Non-Static
+ Lines where a DOM XSS source is assigned to a DOM XSS sink. If this is the result of IronJint.Trace(code, keyword) then these are the lines where the keyword is assigned to a DOM XSS sink.
+
+
+ KeywordContexts
+ string[]
+ Non-Static
+ If this is the result of IronJint.Trace(code, keyword) then list of contexts in which the given keyword is present in the JavaScript code is returned.
+
+
+ Lines
+ string[]
+ Non-Static
+ All the lines of the cleaned up version of the input JavaScript code.
+
+
+
+
+
+
+ GlobalStore
+ Static
+ A store for all types of objects that can be accessed from any part of the tool.
+
+
+
+
+
+
+ Put(string Name, object ObjectToStore)
+ Static
+
+
+ string
+ Name
+ Name by which the object will be referred to inside the store
+
+
+ object
+ ObjectToStore
+ The object that must be stored
+
+
+ Void
+ Any object like Request, Response etc can be stored in this store and can be referred to by the name assigned to it.
+
+
+ Get(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ object
+ Fetch the object from the store by providing its name.
+
+
+ Has(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ bool
+ Returns a boolean indicating if an object by that name exists in the store.
+
+
+ Remove(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ Void
+ Removes the object matching the name from the store.
+
+
+
+
+ ThreadStore
+ Static
+ A store for all types of objects that is specific to a thread on which it is called. Objects stored in a ThreadStore are only accessible to calls made from the same thread.
+
+
+
+
+
+
+ Put(string Name, object ObjectToStore)
+ Static
+
+
+ string
+ Name
+ Name by which the object will be referred to inside the store
+
+
+ object
+ ObjectToStore
+ The object that must be stored
+
+
+ Void
+ Any object like Request, Response etc can be stored in this store and can be referred to by the name assigned to it.
+
+
+ Get(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ object
+ Fetch the object from the store by providing its name.
+
+
+ Has(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ bool
+ Returns a boolean indicating if an object by that name exists in the store.
+
+
+ Remove(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ Void
+ Removes the object matching the name from the store.
+
+
+ Clear()
+ Static
+
+
+ Void
+ Removes all the objects stored from calling thread. Objects stored from other threads are not affected.
+
+
+ ThisThread()
+ Static
+
+
+ int
+ Returns the Thread ID of the thread from this this call is made.
+
+
+
+
+ Config
+ Static
+ A class that holds some information about the tool.
+
+
+
+
+ Path
+ string
+ Static
+ [READ-ONLY]Returns the full path of the location of the IronWASP binary in the file system.
+
+
+
+
+
+ Calls used to instantiate the Class.
+ Static and Non-Static variables available in the Class
+ Static and Non-Static Function calls available in the Class.
+ Members of the Enum class.
+
\ No newline at end of file
diff --git a/APIdoc_Rb.xml b/APIdoc_Rb.xml
new file mode 100644
index 0000000..3d2455e
--- /dev/null
+++ b/APIdoc_Rb.xml
@@ -0,0 +1,2843 @@
+
+
+ Request
+ Non-Static
+ Object that represents a HTTP request. [i[br]]Has methods to create and send HTTP requests.
+
+
+ Request.new(string FullUrl)
+ Creates Request object from Url, Request Method defaults to GET.
+
+
+ string
+ FullUrl
+ Url should include the hostname and scheme. [i[br]]Eg: http://ironwasp.org
+
+
+
+
+ Request.new(string Method, string FullUrl)
+ Creates Request object from Url and sets the mentioned method.
+
+
+ string
+ Method
+ Request method, Eg: GET or POST
+
+
+ string
+ FullUrl
+ Url should include the hostname and scheme. [i[br]]Eg: http://ironwasp.org
+
+
+
+
+ Request.new(string Method, string FullUrl, string BodyString)
+ Creates Request object from Url, sets the mentioned method and sets the body.
+
+
+ string
+ Method
+ Request method, Eg: GET or POST
+
+
+ string
+ FullUrl
+ Url should include the hostname and scheme. [i[br]]Eg: http://ironwasp.org/index.html
+
+
+ string
+ BodyString
+ Body of the request as string.
+
+
+
+
+
+
+ full_url
+ string
+ Non-Static
+ Entire Url along with scheme and hostname.[i[br]]Eg: http://ironwasp.org/index.html
+
+
+ url
+ string
+ Non-Static
+ Url without the scheme and hostname.[i[br]]Eg: /main/index.aspx?q=123
+
+
+ url_path
+ string
+ Non-Static
+ The Path section of the Url without the QueryString.[i[br]]Eg: /main/index.aspx
+
+
+ url_path_parts
+ string[]
+ Non-Static
+ Array of strings where each element is a part of the UrlPath property.[i[br]]Eg: ['main','index.aspx']
+
+
+ ssl
+ bool
+ Non-Static
+ Bool value stating if the request is a SSL request or not. [i[br]]Set this to True to create a SSL request.
+
+
+ http_method
+ string
+ Non-Static
+ HTTP Method of the Request. [i[br]]Eg: GET, POST etc.
+
+
+ http_version
+ string
+ Non-Static
+ Version number of the HTTP Request - HTTP/1.1 or HTTP/1.0
+
+
+ query
+ Parameters
+ Non-Static
+ Contains the QueryString parameters in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ body
+ Parameters
+ Non-Static
+ Contains the Request Body parameters in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ cookie
+ Parameters
+ Non-Static
+ Contains the Cookie parameters in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ headers
+ Parameters
+ Non-Static
+ Contains the Request Headers in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ host
+ string
+ Non-Static
+ Hostname of the target server. [i[br]]Eg: www.ironwasp.org
+
+
+ has_body
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value representing the presence of a Body in the Request.
+
+
+ body_string
+ string
+ Non-Static
+ Entire Body of the Request as a single string. [i[br]]Encoding charset used is taken from the Content-Type header or ISO-8859-1 is used if none is present.
+
+
+ binary_body_string
+ string
+ Non-Static
+ Entire Body of the Request as a Base64 encoded string. [i[br]]If a Binary Request body must be assigned then it can be assigned to this property or to the body_array property.[i[br]](IronWASP stores binary body as base64 string in its logs).
+
+
+ body_array
+ byte[]
+ Non-Static
+ Entire Body of the Request as a Byte Array.
+
+
+ body_length
+ int
+ Non-Static
+ Length of the Request Body.
+
+
+ cookie_string
+ string
+ Non-Static
+ Gives the value of the 'Cookie' header of the Request. [i[br]]This property can be assigned a new string to update the Cookie value as well.
+
+
+ content_type
+ string
+ Non-Static
+ Value of the Content-Type Header, including the Charset information(if present).
+
+
+ is_binary
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Request is in text or binary format. [i[br]] This property can be controlled by setting a suitable value in the HTTP API section of the config panel
+
+
+ response
+ Response
+ Non-Static
+ [READ-ONLY] Response object associated with this Request. [i[br]]Generated on calling the send_req() method.
+
+
+
+
+ send_req()
+ Non-Static
+
+ response
+ Sends the request to the server and returns the Response object. [i[br]]Call blocks the thread.
+
+
+ follow(Response ResponseToFollow)
+ Non-Static
+
+
+ Response
+ ResponseToFollow
+ A 3xx response that must be followed
+
+
+ response
+ If the response status code is a 301, 302, 303 or 307 then it is followed else the response passed in is returned.
+
+
+ get_redirect(Response RedirectResponse)
+ Non-Static
+
+
+ Response
+ RedirectResponse
+ Response to the Request which contains a Redirect header
+
+
+ request
+ If the response status code is a 301, 302, 303 or 307 then the a Request object specific to follow the redirection is returned.[i[br]]If the Response is not a redirect then a null value is returned.
+
+
+ set_cookie(Response Res)
+ Non-Static
+
+
+ Response
+ Res
+ IronWASP Response object
+
+
+ none
+ Reads the contents of the Set-Cookie headers from the Response object and adds them as cookies in the Request.
+
+
+ set_cookie(SetCookie[] SetCookies)
+ Non-Static
+
+
+ SetCookie[]
+ SetCookies
+ A list of SetCookie objects. This is usually the SetCookies property of the IronWASP Response object.
+
+
+ none
+ Sets the Cookie of the request with the provided value.
+
+
+ set_cookie(SetCookie SetCookieObject)
+ Non-Static
+
+
+ SetCookie
+ SetCookieObject
+ A SetCookie object
+
+
+ none
+ Sets the Cookie of the request with the provided value.
+
+
+ set_cookie(CookieStore Store)
+ Non-Static
+
+
+ CookieStore
+ Store
+ CookieStore object where cookies are stored
+
+
+ none
+ Reads the CookieStore objects and the Cookies relevant to this Request are added. [i[br]]Revelant cookies are picked based on the Host, Path and Secure attributes of the cookies stored in the CookieStore.
+
+
+ get_body_encoding()
+ Non-Static
+
+ string
+ Returns the Encoding Charset of the request from the Content-Type header. [i[br]]If no Charset is specified then ISO-8859-1 is returned.
+
+
+ get_headers_as_string()
+ Non-Static
+
+ string
+ Returns the entire Request header section containing the method, url, HTTP version and headers as a single string.
+
+
+ to_string()
+ Non-Static
+
+ string
+ Returns the entire Request as a single string.
+
+
+ to_binary_string()
+ Non-Static
+
+ string
+ Returns the entire Request as a specially formatted string that preserves any binary content in the request body.
+
+
+ get_full_request_as_byte_array()
+ Non-Static
+
+ byte_[]
+ Returns the entire Request header section containing the method, url, HTTP version and headers as a Byte Array.
+
+
+ from_proxy_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the Proxy Log.
+
+
+ request
+ Creates a Request object from the specified record in the Proxy Log and returns it.
+
+
+ from_proxy_log()
+ Static
+
+ request_[]
+ Creates an array of all Request objects from the Proxy Log and returns it.
+
+
+ from_test_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the Manual Testing Log.
+
+
+ request
+ Creates a Request object from the specified record in the Manual Testing Log and returns it.
+
+
+ from_test_log()
+ Static
+
+ request_[]
+ Creates an array of all Request objects from the Manual Testing Log and returns it.
+
+
+ from_probe_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the Probe Log.
+
+
+ request
+ Creates a Request object from the specified record in the Probe Log (Crawler) and returns it.
+
+
+ from_probe_log()
+ Static
+
+ request_[]
+ Creates an array of all Request objects from the Probe Log(Crawler) and returns it.
+
+
+ from_shell_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the Scripting Shell Log.
+
+
+ request
+ Creates a Request object from the specified record in the Scripting Shell Log and returns it.
+
+
+ from_shell_log()
+ Static
+
+ request_[]
+ Creates an array of all Request objects from the Scripting Shell Log and returns it.
+
+
+ from_scan_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Request in the 'Automated Scanning' Log.
+
+
+ request
+ Creates a Request object from the specified record in the 'Automated Scanning' Log and returns it.
+
+
+ from_scan_log()
+ Static
+
+ request_[]
+ Creates an array of all Request objects from the 'Automated Scanning' Log and returns it.
+
+
+ from_string(string RequestString)
+ Static
+
+
+ string
+ RequestString
+ String representing the entire request, usually the output of the to_string() method.
+
+
+ request
+ Creates a Request object from the string and returns it.
+
+
+ from_binary_string(string RequestBinaryString)
+ Static
+
+
+ string
+ RequestString
+ Specially formatted binary string representing the entire request, the output of the to_binary_string() method.
+
+
+ request
+ Creates a Request object from the string and returns it.
+
+
+ get_id()
+ Non-Static
+
+ int
+ Returns the ID of the Request object in its respective log.
+
+
+
+
+ Response
+ Non-Static
+ Object that represents a HTTP response. Has methods to read and analyze the response.
+
+
+
+
+ code
+ int
+ Non-Static
+ [READ-ONLY] Status code of the response. [i[br]]Eg: 200
+
+
+ status
+ string
+ Non-Static
+ [READ-ONLY] Status description of the response. [i[br]]Eg: OK
+
+
+ http_version
+ string
+ Non-Static
+ [READ-ONLY] HTTP Version of the response.[i[br]]Eg: HTTP/1.1
+
+
+ set_cookies
+ SetCookie[]
+ Non-Static
+ A collection of SetCookie objects. This is built by parsing the 'Set-Cookie' headers in the Response
+
+
+ headers
+ Parameters
+ Non-Static
+ Contains the Request Headers in a list of Key/Value pairs. [i[br]]Access these parameters using the methods of the Parameter Class
+
+
+ is_binary
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is in text or binary format. [i[br]] This property can be controlled by setting a suitable value in the HTTP API section of the config panel
+
+
+ has_body
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value representing the presence of a Body in the Response.
+
+
+ body_string
+ string
+ Non-Static
+ Body of the response represented as a string.
+
+
+ binary_body_string
+ string
+ Non-Static
+ Body of the response represented as a Base64 encoded string.
+
+
+ body_array
+ byte[]
+ Non-Static
+ Body of the response represented as a Byte Array.
+
+
+ body_encoding
+ string
+ Non-Static
+ Content Encoding used for the Response Body.
+
+
+ html
+ HTML
+ Non-Static
+ Body of the Response represented as a HTML object.
+
+
+ is_html
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is HTML text or not.
+
+
+ is_java_script
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is valid JavaScript text or not.
+
+
+ is_css
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is valid CSS text or not.
+
+
+ is_xml
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is valid XML text or not.
+
+
+ is_json
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value indicating if the Body of the Response is valid JSON text or not.
+
+
+
+
+ to_string()
+ Non-Static
+
+ string
+ Returns the entire Response as a single string.
+
+
+
+
+ Session
+ Non-Static
+ Represents an HTTP transaction, contains a Request and a Response object.
+
+
+
+
+ request
+ Request
+ Non-Static
+ The Request object stored inside the Session.
+
+
+ response
+ Response
+ Non-Static
+ The Response corresponding to the Request object, if available.
+
+
+
+
+ from_proxy_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the Proxy Log.
+
+
+ session
+ Creates an Session object from the specified record in the Proxy Log and returns it.
+
+
+ from_proxy_log()
+ Static
+
+ session_[]
+ Creates an array of all Session objects from the Proxy Log and returns it.
+
+
+ from_test_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the Manual Testing Log.
+
+
+ session
+ Creates an Session object from the specified record in the Manual Testing Log and returns it.
+
+
+ from_test_log()
+ Static
+
+ session_[]
+ Creates an array of all Session objects from the Manual Testing Log and returns it.
+
+
+ from_probe_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the Probe Log.
+
+
+ session
+ Creates an Session object from the specified record in the Probe Log(Crawler) and returns it.
+
+
+ from_probe_log()
+ Static
+
+ session_[]
+ Creates an array of all Session objects from the Probe Log(Crawler) and returns it.
+
+
+ from_shell_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the Scripting Shell Log.
+
+
+ session
+ Creates an Session object from the specified record in the Scripting Shell Log and returns it.
+
+
+ from_shell_log()
+ Static
+
+ session_[]
+ Creates an array of all Session objects from the Scripting Shell Log and returns it.
+
+
+ from_scan_log(int ID)
+ Static
+
+
+ int
+ ID
+ ID of the Session in the 'Automated Scanning' Log.
+
+
+ session
+ Creates an Session object from the specified record in the 'Automated Scanning' Log and returns it.
+
+
+ from_scan_log()
+ Static
+
+ session_[]
+ Creates an array of all Session objects from the 'Automated Scanning' Log and returns it.
+
+
+ get_id()
+ Non-Static
+
+ int
+ Returns the ID of the Session object in its respective log.
+
+
+
+
+ Parameters
+ Non-Static
+ Base class for the QueryParameters, BodyParameters, HeaderParameters and CookieParameter classes. Used to store Key-Value pairs. Key is a string and Value is a list of strings.[i[br]] The Keys for HeaderParameters are case-insensitive, for others it is case-sensitive.
+
+
+
+
+ count
+ int
+ Non-Static
+ Number of Parameters present in this object.
+
+
+
+
+ get(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Returns the value of the parameter with the given name in the same decoded form as the application would see it. [i[br]]For example in the Url 'http://example.org/a?q=a%23b' the value of Query parameter 'q' will be returned as 'a#b' by the Get method as it will properly decode it before returning.
+
+
+ raw_get(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Returns the raw value of the parameter with the given name, as it appears in the HTTP Request string that is sent over the network. [i[br]]Depending on if this is Query/Body/Header/Cookie parameter the value will be the appropriate encoded form.[i[br]]For example in the Url 'http://example.org/a?q=a%23b' the value of Query parameter 'q' will be returned as 'a%23b' by RawGet method, whereas the Get method would decode it and return as 'a#b'.
+
+
+ get_names()
+ Non-Static
+
+ string_[]
+ Returns the Names of all the parameters as a list. The form of parameter names is the same decoded form as the application would see it.[i[br]]For example in the Url 'http://example.org/a?q%23r=ab' the value of Query parameter name will be returned as 'q#r' by GetNames method.
+
+
+ raw_get_names()
+ Non-Static
+
+ string_[]
+ Returns the Names of all the parameters as a list. The form of the parameter names is as it appears in the HTTP Request string that is sent over the network. [i[br]]Depending on if this is Query/Body/Header/Cookie parameter name the value will be the appropriate encoded form.[i[br]]For example in the Url 'http://example.org/a?q%23r=ab' the value of Query parameter name will be returned as 'q%23r' by RawGetNames method, whereas the GetNames method would decode it and return as 'q#r'.
+
+
+ get_all(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string_[]
+ Returns all values of the parameters with the given name. The form of the parameter values is the same decoded form as the application would see it(Refer Get for example). [i[br]]Used when there are two or more parameters with the same name.
+
+
+ raw_get_all(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string_[]
+ Returns all values of the parameters with the given name. The form of the parameter values is as they appear in the HTTP Request string that is sent over the network (Refer RawGet for example).[i[br]]Used when there are two or more parameters with the same name.
+
+
+ set(string Name, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Value
+ Value of the parameter in the decoded form you want the application to see it. [i[br]]Eg: If set('q', 'a+b') is called on Query parameter of a Request then the in the Url it would become '?q=a%2bb' and so the value of q will be read by the application as 'a+b', as originally set.
+
+
+ void
+ Adds the Name/Value pair to the parameters list. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ raw_set(string Name, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Value
+ Value of the parameter in the encoded form as it appears in the HTTP Request string that is sent over the network. [i[br]]Eg: If raw_set('q', 'a+b') is called on Query parameter of a Request then in the Url it would become '?q=a+b' and so the value of q will be read by the application as 'a b'.
+
+
+ void
+ Adds the Name/Value pair to the parameters list. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ set_at(string Name, int SubParameterPosition, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ int
+ SubParameterPosition
+ When there are two or more parameters with the same name then this indicates the zero-based index of the parameter position that must be set
+
+
+ string
+ Value
+ Value of the parameter in the decoded form you want the application to see it.
+
+
+ void
+ Adds the Name/Value pair to the parameters list at a specified position if two or more parameters exist with the same name. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ raw_set_at(string Name, int SubParameterPosition, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ int
+ SubParameterPosition
+ When there are two or more parameters with the same name then this indicates the zero-based index of the parameter position that must be set
+
+
+ string
+ Value
+ Value of the parameter in the encoded form as it appears in the HTTP Request string that is sent over the network.
+
+
+ void
+ Adds the Name/Value pair to the parameters list at a specified position if two or more parameters exist with the same name. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ set(string Name, string[] Values)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string[]
+ Values
+ Array of multiple values for the same parameter. The values are in the decoded form you want the application to see it.
+
+
+ void
+ Adds the Name/Value pair to the parameters list. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ raw_set(string Name, string[] Values)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string[]
+ Values
+ Array of multiple values for the same parameter. The values of the parameter in the encoded form as it appears in the HTTP Request string that is sent over the network.
+
+
+ void
+ Adds the Name/Value pair to the parameters list. [i[br]] If a parameter with that name exisits then it is overwritten.
+
+
+ add(string Name, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Value
+ Value of the parameter in the decoded form you want the application to see it. [i[br]]Eg: If add('q', 'a+b') is called on Query parameter of a Request then the in the Url it would become '?q=a%2bb' and so the value of q will be read by the application as 'a+b', as originally set.
+
+
+ void
+ Adds the Name/Value pair to the parameters list. [i[br]]If a parameter with that name exisits then this value is appened to the exisiting list.
+
+
+ raw_add(string Name, string Value)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ string
+ Value
+ Value of the parameter in the encoded form as it appears in the HTTP Request string that is sent over the network. [i[br]]Eg: If raw_add('q', 'a+b') is called on Query parameter of a Request then in the Url it would become '?q=a+b' and so the value of q will be read by the application as 'a b'.
+
+
+ void
+ Adds the Name/Value pair to the parameters list. [i[br]]If a parameter with that name exisits then this value is appened to the exisiting list.
+
+
+ remove(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ void
+ Removes the specified parameter from the list.
+
+
+ remove_all()
+ Non-Static
+
+ void
+ Removes all parameters from the list.
+
+
+ has(string Name)
+ Non-Static
+
+
+ string
+ Name
+ Name of the parameter
+
+
+ bool
+ Checks if the given parameter name exists in the list and returns a bool value.
+
+
+ get_multis()
+ Non-Static
+
+ string_[]
+ Returns the name of the parameters that have multiple values. [i[br]]Use GetAll to get those values.
+
+
+
+
+ Tools
+ Static
+ Collection of commonly required utilities
+
+
+
+
+
+
+ url_encode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Returns a Url-Encoded version of the input.
+
+
+ html_encode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Returns a HTML-encoded version of the input.
+
+
+ base64_encode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Returns a Base64-encoded version of the input.
+
+
+ to_hex(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Converts all characters to HEX string and returns it.
+
+
+ to_hex(byte[] Input)
+ Static
+
+
+ byte[]
+ Input
+ ByteArray to encode
+
+
+ string
+ Converts all bytes to HEX string and returns it.
+
+
+ hex_encode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Converts all characters to HEX string with a preceding '%' and returns it.
+
+
+ xml_encode(string Input)
+ Static
+
+
+ string
+ Input
+ String to encode
+
+
+ string
+ Encodes the Input to make it suitable to be added as a XML node's value
+
+
+ url_decode(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Returns a Url-Decoded version of the input.
+
+
+ html_decode(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Returns a HTML-Decoded version of the input.
+
+
+ base64_decode(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Returns a Base64-Decoded version of the input.
+
+
+ base64_decode_to_hex(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Base64 decodes the Input and returns the results as a Hex string.
+
+
+ hex_decode(string Input)
+ Static
+
+
+ string
+ Input
+ String to decode
+
+
+ string
+ Converts all the HEX characters to ascii equivalents.
+
+
+ md5(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a MD5 hash of the input.
+
+
+ sha1(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a SHA1 hash of the input.
+
+
+ sha256(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a SHA256 hash of the input.
+
+
+ sha384(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a SHA384 hash of the input.
+
+
+ sha512(string Input)
+ Static
+
+
+ string
+ Input
+ String to Hash
+
+
+ string
+ Creates a SHA512 hash of the input.
+
+
+ diff(string Source, string Destination)
+ Static
+
+
+ string
+ Source
+ String to be used as source text
+
+
+ string
+ Destination
+ String to be used as destination text
+
+
+ diff_result
+ Does a line-by-line Diff of two multi-line strings and returns a DiffResult object containg the result.
+
+
+ diff_line(string Source, string Destination)
+ Static
+
+
+ string
+ Source
+ String to be used as source text
+
+
+ string
+ Destination
+ String to be used as destination text
+
+
+ diff_result
+ Does a word-by-word Diff of single line strings and returns a DiffResult object containg the result.
+
+
+ diff_level(string Source, string Destination)
+ Static
+
+
+ string
+ Source
+ String to be used as source text
+
+
+ string
+ Destination
+ String to be used as destination text
+
+
+ int
+ Gives a value between 0 - 100 indicating the percent of difference between the two strings. 0 indicates the two strings are same. 100 indicates the two strings are fully different.
+
+
+
+
+ DiffResult
+ Non-Static
+ Represents a result of a Diff of two strings. Returned by the method - Tools.Diff()
+
+
+
+
+ deleted
+ int[]
+ Non-Static
+ Line numbers in the first string that are not present in the second string
+
+
+ missing_at
+ int[]
+ Non-Static
+ Line numbers in the second string where the deleted sections of first string should have appeared
+
+
+ inserted
+ int[]
+ Non-Static
+ Line numbers in the second string that contain sections not present in the first string
+
+
+ un_changed
+ int[]
+ Non-Static
+ Line numbers in the second string that remain the same as first string
+
+
+ deleted_sections
+ string[]
+ Non-Static
+ Sections of the first string that are not present in the second string
+
+
+ inserted_sections
+ string[]
+ Non-Static
+ Sections of the second string that are not present in the first string
+
+
+ un_changed_sections
+ string[]
+ Non-Static
+ Sections of the second string that are also present in the first string
+
+
+
+
+
+
+ AskUser
+ Static
+ Class that enables scripts to create UI pop-ups and get data from user at run-time.
+
+
+
+
+
+
+ for_bool(string Title, string Message)
+ Static
+
+
+ string
+ Title
+ Title of the message, shown at the top of the pop-up window
+
+
+ string
+ Message
+ Message to be shown to to the user
+
+
+ bool
+ Shows a pop-up window with the provided title and message along with a 'Yes' and a 'No' button and waits. Returns the user's input as a boolean.
+
+
+ for_string(string Title, string Message)
+ Static
+
+
+ string
+ Title
+ Title of the message, shown at the top of the pop-up window
+
+
+ string
+ Message
+ Message to be shown to to the user
+
+
+ bool
+ Shows a pop-up window with the provided title and message along with an input field and a 'Submit' button. Returns the user's input as a string.
+
+
+ for_string(string Title, string Message, string ImageFilePath)
+ Static
+
+
+ string
+ Title
+ Title of the message, shown at the top of the pop-up window
+
+
+ string
+ Message
+ Message to be shown to to the user
+
+
+ string
+ ImageFilePath
+ Full path to any image file on the local hard drive. Eg: Capcha images
+
+
+ bool
+ Shows a pop-up window with the provided title and message and also displays the image inside this window along with an input field and a 'Submit' button. Returns the user's input as a string.
+
+
+
+
+ SetCookie
+ Non-Static
+ Represents all the information available in a Set-Cookie header
+
+
+ SetCookie.new(string SetCookieHeaderString)
+ Parses the a Set-Cookie header and creates a object that gives easy access to the contained information
+
+
+ string
+ SetCookieHeaderString
+ The Set-Cookie header string
+
+
+
+
+
+
+ name
+ string
+ Non-Static
+ [READ-ONLY] Name of the key in the key-value pair included in the Set-Cookie header
+
+
+ value
+ string
+ Non-Static
+ [READ-ONLY] Value of the key included in the Set-Cookie header
+
+
+ full_string
+ string
+ Non-Static
+ [READ-ONLY] Returns the full Set-Cookie header as a single string
+
+
+ path
+ string
+ Non-Static
+ [READ-ONLY] Value of the Path attribute
+
+
+ domain
+ string
+ Non-Static
+ [READ-ONLY] Value of the Domain attribute
+
+
+ expires
+ string
+ Non-Static
+ [READ-ONLY] Value of the Expires attribute
+
+
+ max_age
+ string
+ Non-Static
+ [READ-ONLY] Value of the Max-Age attribute
+
+
+ http_only
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value inditicating if the HttpOnly flag is set.
+
+
+ secure
+ bool
+ Non-Static
+ [READ-ONLY] Boolean value inditicating if the Secure flag is set.
+
+
+ comment
+ string
+ Non-Static
+ [READ-ONLY] Comments contained in the Set-Cookie header
+
+
+ version
+ string
+ Non-Static
+ [READ-ONLY] Version information from the Set-Cookie header
+
+
+
+
+ CookieStore
+ Non-Static
+ A store to save Cookies and add them to any Requests
+
+
+ CookieStore.new()
+ Creates a new empty Cookie Store object
+
+
+
+
+
+
+
+
+ add(Request Req, Response Res)
+ Non-Static
+
+
+ Request
+ Req
+ Request object that was sent to the server
+
+
+ Response
+ Res
+ Response object recieved for the Request
+
+
+ void
+ Updates the CookieStore with the Response object's SetCookie headers
+
+
+ add(string Host, string Cookie)
+ Non-Static
+
+
+ string
+ Host
+ Hostname of the site
+
+
+ string
+ Cookie
+ Cookie header as a string Eg: "SessionID=sad797asjd2323"
+
+
+ void
+ Updates the CookieStore with the Cookie against the specified Hostname
+
+
+ get_cookies()
+ Non-Static
+
+
+ set_cookie_[]
+ Returns a list of SetCookie objects that represent all the cookies stored inside the CookieStore object
+
+
+ get_cookies(Request Req)
+ Non-Static
+
+
+ Request
+ Req
+ Request that must be sent to the server
+
+
+ set_cookie_[]
+ Returns a list of SetCookie objects that represent the matching cookies stored inside the CookieStore object. Matches are done on the Hostname and Path of the Request object and the stored cookies.
+
+
+
+
+ HTML
+ Non-Static
+ A class that represents a HTML document and contains methods to traverse it.
+
+
+ HTML.new(string HtmlString)
+ Creates a HTML object from raw string containg HTML tags
+
+
+ string
+ HtmlString
+ String containg HTML tags, usually the Response Body.
+
+
+
+
+
+
+ links
+ string[]
+ Non-Static
+ Lists all the links contained in the HTML document
+
+
+ comments
+ string[]
+ Non-Static
+ Lists all the comments contained in the HTML document
+
+
+ html
+ HtmlDocument
+ Non-Static
+ The base HtmlDocument object of HtmlAgilityPack
+
+
+
+
+ load(string HtmlString)
+ Non-Static
+
+ void
+ Updates the HTML object with new HtmlString
+
+
+ get(string ElementName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string_[]
+ Returns all the elements of the given name as strings. [i[br]]Eg: my_html.get("script")
+
+
+ get(string ElementName, string AttributeName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload' etc
+
+
+ string_[]
+ Returns matching elements as strings. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.get("script","src")
+
+
+ get(string ElementName, string AttributeName, string AttributeValues)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload' etc
+
+
+ string
+ AttributeValue
+ Value of the Attribute mentioned in the last parameter.
+
+
+ string_[]
+ Returns matching elements as strings. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.get("*","class","code")
+
+
+ get_values(string ElementName, string AttributeName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element whose value must be returned. Eg: 'src', 'onload' etc
+
+
+ string_[]
+ Returns the matching atrribute values as list of strings. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.GetValues("script","src")
+
+
+ get_values(string ElementName, string AttributeName, string AttributeValues, string InterestedAttributeName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload', 'id' etc
+
+
+ string
+ AttributeValue
+ Value of the Attribute mentioned in the last parameter.
+
+
+ string
+ InterestedAttributeName
+ Name of an attribute of the element whose value must be returned. Eg: 'src', 'onload', 'id' etc
+
+
+ string_[]
+ Returns the interested attribute values as list of strings from the elements matched by the element name and containing the provided attribute name/value pair. the presence of the provided attribute. [i[br]]Eg: my_html.GetValues("a", "class", "left_nav", "href") will get the 'href' values of only those 'a' tags that have a 'class' attribute with value 'left_nav'
+
+
+ get_meta_content(string MetaAttributeName, string MetaAttributeValue)
+ Non-Static
+
+
+ string
+ MetaAttributeName
+ Name of an HTML Meta tag attribute. Eg: 'http-equiv'
+
+
+ string
+ MetaAttributeValue
+ Value of the attributes mentioned by the MetaAttributeName parameter. Eg: 'set-cookie' (in case of attribute name 'http-equiv')
+
+
+ string_[]
+ Returns the value of the 'content' attribute of 'meta' HTML tag that have an attribute matching MetaAttributeName with its value matching as MetaAttributeValue, as list of strings. [i[br]]Eg: my_html.GetMetaContent("http-equiv", "set-cookie")
+
+
+ get_nodes(string ElementName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ html_node_collection
+ Returns all the elements of the given name as HtmlNodeCollection object of HtmlAgilityPack. [i[br]]Eg: my_html.get("script")
+
+
+ get_nodes(string ElementName, string AttributeName)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload' etc
+
+
+ html_node_collection
+ Returns matching elements as HtmlNodeCollection object of HtmlAgilityPack. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.get("script","src")
+
+
+ get_nodes(string ElementName, string AttributeName, string AttributeValues)
+ Non-Static
+
+
+ string
+ ElementName
+ Name of an HTML element. Eg: 'img', 'body' etc
+
+
+ string
+ AttributeName
+ Name of an attribute of the element. Eg: 'src', 'onload' etc
+
+
+ string
+ AttributeValue
+ Value of the Attribute mentioned in the last parameter.
+
+
+ html_node_collection
+ Returns matching elements as HtmlNodeCollection object of HtmlAgilityPack. Elements matched by the element name and the presence of the provided attribute. [i[br]]Eg: my_html.get("*","class","code")
+
+
+ query(string XpathQuery)
+ Non-Static
+
+
+ string
+ XpathQuery
+ Xpath Query that must be executed on the Html object. Eg: "//a"
+
+
+ string_[]
+ Returns all the elements of the given Html object that matched the Xpath Query as strings. [i[br]]Eg: my_html.QueryNodes("//a")
+
+
+ query_nodes(string XpathQuery)
+ Non-Static
+
+
+ string
+ XpathQuery
+ Xpath Query that must be executed on the Html object. Eg: "//a[@onclick]"
+
+
+ html_node_collection
+ Returns all the elements of the given name as HtmlNodeCollection object of HtmlAgilityPack that matched the Xpath Query. [i[br]]Eg: my_html.QueryNodes("//a[@onclick]")
+
+
+ query_values(string XpathQuery, string AttributeName)
+ Non-Static
+
+
+ string
+ XpathQuery
+ Xpath Query that must be executed on the Html object. Eg: "//a[@onclick]"
+
+
+ string
+ AttributeName
+ Name of the Attribute whose value must be returned
+
+
+ string_[]
+ Returns an array of strings containing the value of the Attribute from the Nodes that matched the Xpath Query. [i[br]]Eg: my_html.QueryNodes("//a[@onclick]")
+
+
+ get_forms()
+ Non-Static
+
+
+ html_node_[]
+ Returns an array of HtmlNode(HtmlAgilityPack) objects that represent the Forms in the Html object. The HtmlNodes only contain the Form and Input Html elements, unnecessary elements are stripped off.
+
+
+ get_java_script()
+ Non-Static
+
+
+ string_[]
+ Returns an array of string containing all the JavaScript from the Script tags and event attributes of the Html
+
+
+ get_java_script(string Keyword)
+ Non-Static
+
+
+ string
+ Keyword
+ A string value set by user, only JavaScript snippets that have this keyword are returned.
+
+
+ string_[]
+ Returns an array of string containing all the JavaScript that contain the Keyword, from the Script tags and event attributes of the Html
+
+
+ get_visual_basic()
+ Non-Static
+
+
+ string_[]
+ Returns an array of string containing all the VisualBasic from the Script tags of the Html
+
+
+ get_visual_basic(string Keyword)
+ Non-Static
+
+
+ string
+ Keyword
+ A string value set by user, only VisualBasic snippets that have this keyword are returned.
+
+
+ string_[]
+ Returns an array of string containing all the VisualBasic that contain the Keyword, from the Script tags of the Html
+
+
+ get_css()
+ Non-Static
+
+
+ string_[]
+ Returns an array of string containing all the CSS from the Style tags and style attributes of the Html
+
+
+ get_css(string Keyword)
+ Non-Static
+
+
+ string
+ Keyword
+ A string value set by user, only CSS snippets that have this keyword are returned.
+
+
+ string_[]
+ Returns an array of string containing all the CSS that contain the Keyword, from the Style tags and style attributes of the Html
+
+
+ xpath_safe(string Input)
+ Non-Static
+
+
+ string
+ Input
+ The value that must be made Xpath safe
+
+
+ string
+ Takes the input string and returns an ouput that is fit to be used as an attribute value in a Xpath query.
+
+
+ get_context(string Keyword)
+ Non-Static
+
+
+ string
+ Keyword
+ The Keyword whose context must be found
+
+
+ string_[]
+ Checks the occurances of the Keyword in the Html and returns the contexts.
+
+
+
+
+ ActivePlugin
+ Non-Static
+ An IronPython or IronRuby script that performs some vulnerability checks on the a webpage through active interaction.
+
+
+
+
+ name
+ string
+ Non-Static
+ Name of the Active Plugin
+
+
+ description
+ string
+ Non-Static
+ Information about the plugin.
+
+
+ version
+ string
+ Non-Static
+ Version number of the Plugin
+
+
+
+
+ add(ActivePlugin NewActivePluginObject)
+ Static
+
+
+ ActivePlugin
+ NewActivePluginObject
+ New ActivePlugin Object
+
+
+ void
+ Adds a new Active Plugin to IronWASP's internal list
+
+
+ get(string PluginName)
+ Static
+
+
+ string
+ PluginName
+ Name of the ActivePlugin
+
+
+ active_plugin
+ Returns a ActivePlugin of the given name from IronWASP's internal list. [i[br]]Eg: ActivePlugin.get("Cross-site Scripting")
+
+
+ list()
+ Static
+
+ string_[]
+ Returns the names of all ActivePlugins currently present in IronWASP's internal list.
+
+
+ check(Request Req, Scanner Scan)
+ Non-Static
+
+
+ Request
+ Req
+ The Request that is being scanned
+
+
+ Scanner
+ Scan
+ The Scanner object that is calling this Active Plugin
+
+
+ void
+ This method contains the vulnerability checking logic of this particular ActivePlugin and performs the required check.
+
+
+
+
+ PassivePlugin
+ Non-Static
+ An IronPython or IronRuby script that performs some vulnerability checks on requests/responses passively.
+
+
+
+
+ name
+ string
+ Non-Static
+ Name of the Passive Plugin
+
+
+ description
+ string
+ Non-Static
+ Information about the plugin.
+
+
+ version
+ string
+ Non-Static
+ Version number of the Plugin
+
+
+
+
+ add(PassivePlugin NewPassivePluginObject)
+ Static
+
+
+ PassivePlugin
+ NewPassivePluginObject
+ New PassivePlugin Object
+
+
+ void
+ Adds a new Passive Plugin to IronWASP's internal list
+
+
+ get(string PluginName)
+ Static
+
+
+ string
+ PluginName
+ Name of the PassivePlugin
+
+
+ passive_plugin
+ Returns a PassivePlugin of the given name from IronWASP's internal list.
+
+
+ list()
+ Static
+
+ string_[]
+ Returns the names of all PassivePlugins currently present in IronWASP's internal list.
+
+
+ check(Session Sess, PluginResults Results)
+ Non-Static
+
+
+ Session
+ Sess
+ The Session object that is being passively scanned
+
+
+ PluginResults
+ Results
+ The object that will hold the findings of the check if any.
+
+
+ void
+ This method contains the vulnerability checking logic of this particular PassivePlugin and performs the required check.
+
+
+
+
+ FormatPlugin
+ Non-Static
+ An IronPython or IronRuby script that can convert an object of any special format to xml and back.
+
+
+
+
+ name
+ string
+ Non-Static
+ Name of the Format Plugin
+
+
+ description
+ string
+ Non-Static
+ Information about the plugin.
+
+
+ version
+ string
+ Non-Static
+ Version number of the Plugin
+
+
+
+
+ add(FormatPlugin NewFormatPluginObject)
+ Static
+
+
+ FormatPlugin
+ NewFormatPluginObject
+ New FormatPlugin Object
+
+
+ void
+ Adds a new Format Plugin to IronWASP's internal list
+
+
+ get(string PluginName)
+ Static
+
+
+ string
+ PluginName
+ Name of the FormatPlugin
+
+
+ format_plugin
+ Returns a FormatPlugin of the given name from IronWASP's internal list.
+
+
+ list()
+ Static
+
+ string_[]
+ Returns the names of all FormatPlugins currently present in IronWASP's internal list.
+
+
+ xml_to_array(string Xml)
+ Static
+
+
+ string
+ Xml
+ The Xml must be converted in to array
+
+
+ string_[,]
+ Converts the Xml input in to a two-dimensional array and returns it. The two-dimensional array holds the values in the Xml and the node path of the values. This information is used for fuzzing the Xml.
+
+
+ inject_in_xml(string Xml, int InjectionPosition, string ValueToString)
+ Static
+
+
+ string
+ Xml
+ The Xml in to which a value must be injected
+
+
+ int
+ InjectionPosition
+ The position in the Xml where the value must be injected. This is the index of the value in the two-dimensional array returned by FormatPlugin.XmlToArray(Xml)
+
+
+ string
+ ValueToString
+ The value that must be injected in to the Xml
+
+
+ string
+ Inserts a value in to the specified position in the Xml and returns the updated Xml. This method is used in fuzzing Xml based data or data of any format that gets converted to Xml by the approriate FormatPlugin
+
+
+
+
+ SessionPlugin
+ Non-Static
+ An IronPython or IronRuby script that would contain methods to define a specific web application's custom behaviour.
+
+
+
+
+ name
+ string
+ Non-Static
+ Name of the Session Plugin
+
+
+ description
+ string
+ Non-Static
+ Information about the plugin.
+
+
+ version
+ string
+ Non-Static
+ Version number of the Plugin
+
+
+
+
+ add(SessionPlugin NewSessionPluginObject)
+ Static
+
+
+ SessionPlugin
+ NewSessionPluginObject
+ New SessionPlugin Object
+
+
+ void
+ Adds a new Session Plugin to IronWASP's internal list
+
+
+ get(string PluginName)
+ Static
+
+
+ string
+ PluginName
+ Name of the SessionPlugin
+
+
+ format_plugin
+ Returns a SessionPlugin of the given name from IronWASP's internal list.
+
+
+ list()
+ Static
+
+ string_[]
+ Returns the names of all SessionPlugins currently present in IronWASP's internal list.
+
+
+
+
+ Scanner
+ Non-Static
+ A class to create a custom security scanner by determining injection points and active plugins.
+
+
+ Scanner.new(Request RequestToScan)
+ Creates a new Scanner object based on the Request
+
+
+ Request
+ RequestToScan
+ A request that would be scanned by the scanner object.
+
+
+
+
+
+
+ session_handler
+ SessionPlugin
+ Non-Static
+ Session plugin assosiated with this scanner to control its behaviour
+
+
+ body_format
+ FormatPlugin
+ Non-Static
+ Format Plugin associated with this scanner to represent the body of the scanner's request.
+
+
+ injected_section
+ string
+ Non-Static
+ Name of the section of the request that is being currently injected. Possible values are URL, Query, Body, Cookie and Headers. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ injected_parameter
+ string
+ Non-Static
+ Name of the parameter that is being currently injected. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ injected_url_path_position
+ int
+ Non-Static
+ The index of the UrlPathParts that is being currently injected. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ pre_injection_parameter_value
+ string
+ Non-Static
+ Original value of the parameter that is being currently injected. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ injected_request
+ Request
+ Non-Static
+ Request sent to the serer with some parameter injected. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+ injection_response
+ Response
+ Non-Static
+ Response returned from the server for InjectedRequest. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+
+
+ add_check(string ActivePluginName)
+ Non-Static
+
+
+ string
+ ActivePluginName
+ Name of the active plugin that must be included in the scan.
+
+
+ void
+ Includes an Active Plugin to the scanner and calls it at scan time.
+
+
+ remove_check(string ActivePluginName)
+ Non-Static
+
+
+ string
+ ActivePluginName
+ Name of the ActivePlugin to be removed from the scanner
+
+
+ void
+ Removes the Active Plugins from the list of checks the scanner calls at scan time.
+
+
+ show_checks()
+ Non-Static
+
+ string_[]
+ Returns the names of all ActivePlugins that will be called by the Scanner at scan time.
+
+
+ clear_checks()
+ Non-Static
+
+ void
+ Removes all the Active Plugins that would have been called by the Scanner at scan time.
+
+
+ inject_all()
+ Non-Static
+
+ void
+ Sets injection points in all Url positions, Query, Body, Cookie and Header parameters.
+
+
+ inject_url()
+ Non-Static
+
+ void
+ Sets injection points in all Url positions.
+
+
+ inject_url(int UrlPosition)
+ Non-Static
+
+
+ int
+ UrlPosition
+ Zero based value of the Url position that must be injected
+
+
+ void
+ Sets an injection point at the specified Url position.
+
+
+ inject_query()
+ Non-Static
+
+ void
+ Sets injection points in all Query parameter positions.
+
+
+ inject_query(string ParameterName)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ void
+ Sets an injection point at all occurances of the given parameter name in the query.
+
+
+ inject_query(string ParameterName, int SubParameterPosition)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ int
+ SubParameterPosition
+ SubParameter Position of the parameter that must be injected
+
+
+ void
+ Sets an injection point at the specified occurance of the given parameter name in the query if multiple parameter exist with the same name.
+
+
+ inject_body()
+ Non-Static
+
+ void
+ Sets injection points in all Body parameter positions.
+
+
+ inject_body(string ParameterName)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ void
+ Sets an injection point at all occurances of the given parameter name in the Body.
+
+
+ inject_body(string ParameterName, int SubParameterPosition)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ int
+ SubParameterPosition
+ SubParameter Position of the parameter that must be injected
+
+
+ void
+ Sets an injection point at the specified occurance of the given parameter name in the body if multiple parameter exist with the same name.
+
+
+ inject_body(int XmlArrayInjectionPoint)
+ Non-Static
+
+
+ int
+ XmlArrayInjectionPoint
+ A position inside the XmlInjectionPoints array
+
+
+ void
+ If a FormatPlugin is set then sets an injection point the specified point in the XmlInjectionPoints array.
+
+
+ inject_cookie()
+ Non-Static
+
+ void
+ Sets injection points in all Cookie parameter positions.
+
+
+ inject_cookie(string ParameterName)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ void
+ Sets an injection point at all occurances of the given parameter name in the Cookie.
+
+
+ inject_cookie(string ParameterName, int SubParameterPosition)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ int
+ SubParameterPosition
+ SubParameter Position of the parameter that must be injected
+
+
+ void
+ Sets an injection point at the specified occurance of the given parameter name in the Cookie if multiple parameter exist with the same name.
+
+
+ inject_headers()
+ Non-Static
+
+ void
+ Sets injection points in all Headers parameter positions.
+
+
+ inject_headers(string ParameterName)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ void
+ Sets an injection point at all occurances of the given parameter name in the Headers.
+
+
+ inject_headers(string ParameterName, int SubParameterPosition)
+ Non-Static
+
+
+ string
+ ParameterName
+ Name of the parameter where an injection point must be set.
+
+
+ int
+ SubParameterPosition
+ SubParameter Position of the parameter that must be injected
+
+
+ void
+ Sets an injection point at the specified occurance of the given parameter name in the Headers if multiple parameter exist with the same name.
+
+
+ launch_scan()
+ Non-Static
+
+ void
+ Similar to scan() but instead of performing the scan in the current thread it queues the scan job in the 'AutomatedScanning' section. The scan logs will be updated in the 'ScanLog' grid instead of the 'ScriptingLog' grid.
+
+
+ inject(string Payload)
+ Non-Static
+
+
+ string
+ Payload
+ Payload to be injected
+
+
+ response
+ Injects the payload in the section of the request where the current injection pointer lies and returns the corresponding response. [i[br]] (Only to be called within the ActivePlugin script)
+
+
+
+
+ IronJint
+ Static
+ A JavaScript static analyzer to check for DOM-based XSS issues
+
+
+
+
+
+
+ trace(string JavaScriptCode)
+ Static
+
+
+ string
+ JavaScriptCode
+ The JavaScript code that must be analyzed
+
+
+ trace_result
+ Analyzes the JavaScript code for instances where DOM XSS Sources and Sinks are present including instances where Sources are assigned to Sinks. The result of the analysis is stored in a TraceResult object and returned.
+
+
+ trace(string JavaScriptCode, string Keyword)
+ Static
+
+
+ string
+ JavaScriptCode
+ The JavaScript code that must be analyzed
+
+
+ string
+ Keyword
+ The Keyword that must be traced through the JavaScript
+
+
+ trace_result
+ Analyzes the JavaScript code for instances where the given keyword is assigned to DOM XSS Sinks. The result of the analysis is stored in a TraceResult object and returned.
+
+
+ is_expression_statement(string JavaScriptCode, string Keyword)
+ Static
+
+
+ string
+ JavaScriptCode
+ The JavaScript code that must be analyzed
+
+
+ string
+ Keyword
+ The string value that must be checked for being an expression statement.
+
+
+ bool
+ Parses the input JavaScript code and checks if the keyword appears inside the JavaScript as an expression statement.
+
+
+ beautify(string JavaScriptCode)
+ Static
+
+
+ string
+ JavaScriptCode
+ The JavaScript code that must be beautified
+
+
+ string
+ Properly formats the input code and returns a more readable version
+
+
+
+
+ TraceResult
+ Non-Static
+ Represents the result of JavaScript static analysis performed using the Trace method of IronJint.
+
+
+
+
+ source_line_nos
+ int[]
+ Non-Static
+ Line numbers that are tained by a DOM XSS source
+
+
+ sink_line_nos
+ int[]
+ Non-Static
+ Line numbers that are tained by a DOM XSS sink
+
+
+ source_to_sink_line_nos
+ int[]
+ Non-Static
+ Line numbers where a DOM XSS source is assigned to a DOM XSS sink. If this is the result of IronJint.Trace(code, keyword) then these are the lines where the keyword is assigned to a DOM XSS sink.
+
+
+ source_lines
+ string[]
+ Non-Static
+ Lines that are tained by a DOM XSS source
+
+
+ sink_lines
+ string[]
+ Non-Static
+ Lines that are tained by a DOM XSS sink
+
+
+ source_to_sink_lines
+ string[]
+ Non-Static
+ Lines where a DOM XSS source is assigned to a DOM XSS sink. If this is the result of IronJint.Trace(code, keyword) then these are the lines where the keyword is assigned to a DOM XSS sink.
+
+
+ keyword_contexts
+ string[]
+ Non-Static
+ If this is the result of IronJint.Trace(code, keyword) then list of contexts in which the given keyword is present in the JavaScript code is returned.
+
+
+ lines
+ string[]
+ Non-Static
+ All the lines of the cleaned up version of the input JavaScript code.
+
+
+
+
+
+
+ GlobalStore
+ Static
+ A store for all types of objects that can be accessed from any part of the tool.
+
+
+
+
+
+
+ put(string Name, object ObjectToStore)
+ Static
+
+
+ string
+ Name
+ Name by which the object will be referred to inside the store
+
+
+ object
+ ObjectToStore
+ The object that must be stored
+
+
+ void
+ Any object like Request, Response etc can be stored in this store and can be referred to by the name assigned to it.
+
+
+ get(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ object
+ Fetch the object from the store by providing its name.
+
+
+ has(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ bool
+ Returns a boolean indicating if an object by that name exists in the store.
+
+
+ remove(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ void
+ Removes the object matching the name from the store.
+
+
+
+
+ ThreadStore
+ Static
+ A store for all types of objects that is specific to a thread on which it is called. Objects stored in a ThreadStore are only accessible to calls made from the same thread.
+
+
+
+
+
+
+ put(string Name, object ObjectToStore)
+ Static
+
+
+ string
+ Name
+ Name by which the object will be referred to inside the store
+
+
+ object
+ ObjectToStore
+ The object that must be stored
+
+
+ void
+ Any object like Request, Response etc can be stored in this store and can be referred to by the name assigned to it.
+
+
+ get(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ object
+ Fetch the object from the store by providing its name.
+
+
+ has(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ bool
+ Returns a boolean indicating if an object by that name exists in the store.
+
+
+ remove(string Name)
+ Static
+
+
+ string
+ Name
+ Name of the object stored
+
+
+ void
+ Removes the object matching the name from the store.
+
+
+ clear()
+ Static
+
+
+ void
+ Removes all the objects stored from calling thread. Objects stored from other threads are not affected.
+
+
+ this_thread()
+ Static
+
+
+ int
+ Returns the Thread ID of the thread from this this call is made.
+
+
+
+
+ Config
+ Static
+ A class that holds some information about the tool.
+
+
+
+
+ path
+ string
+ Static
+ [READ-ONLY]Returns the full path of the location of the IronWASP binary in the file system.
+
+
+
+
+
+ Calls used to instantiate the Class.
+ Static and Non-Static variables available in the Class
+ Static and Non-Static Function calls available in the Class.
+ Members of the Enum class.
+
\ No newline at end of file
diff --git a/Antlr3.Runtime.dll b/Antlr3.Runtime.dll
new file mode 100644
index 0000000..fb3ac4e
Binary files /dev/null and b/Antlr3.Runtime.dll differ
diff --git a/ApiScript.py b/ApiScript.py
new file mode 100644
index 0000000..ce71408
--- /dev/null
+++ b/ApiScript.py
@@ -0,0 +1,39 @@
+from IronWASP import *
+
+def start_log_range(req, res):
+ GlobalStore.Put("log_start_py_api", Config.LastProxyLogId + 1)
+ res.BodyString = "OK"
+
+ApiCallHandler.AddHandler("/py/log_range_start", start_log_range)
+
+def end_log_range(req, res):
+ GlobalStore.Put("log_end_py_api", Config.LastProxyLogId)
+ res.BodyString = "OK"
+
+ApiCallHandler.AddHandler("/py/log_range_end", end_log_range)
+
+def scan_log_range(req, res):
+ start_id = GlobalStore.Get("log_start_py_api")
+ end_id = GlobalStore.Get("log_end_py_api")
+ for i in range(start_id, end_id + 1):
+ r = Request.FromProxyLog(i)
+ s = Scanner(r)
+ if r.Query.Count > 0 or r.Body.Count > 0:
+ s.InjectQuery()
+ s.InjectBody()
+ s.CheckAll()
+ s.LaunchScan()
+ res.BodyString = "OK"
+
+ApiCallHandler.AddHandler("/py/scan_log_range", scan_log_range)
+
+
+def connection_check(req, res):
+ res.BodyString = "OK"
+
+ApiCallHandler.AddHandler("connection_check", connection_check)
+
+def passpharse_check(req, res):
+ res.BodyString = "OK"
+
+ApiCallHandler.AddHandler("passpharse_check", connection_check)
diff --git a/ApiScript.rb b/ApiScript.rb
new file mode 100644
index 0000000..bbdea0d
--- /dev/null
+++ b/ApiScript.rb
@@ -0,0 +1,36 @@
+include IronWASP
+
+def start_log_range(req, res)
+ GlobalStore.put("log_start_rb_api", Config.last_proxy_log_id + 1)
+ res.body_string = "OK"
+end
+
+start_log_range_l = lambda{|req, res| start_log_range(req, res)}
+ApiCallHandler.add_handler("/rb/log_range_start", start_log_range_l)
+
+def end_log_range(req, res)
+ GlobalStore.put("log_end_rb_api", Config.last_proxy_log_id)
+ res.body_string = "OK"
+end
+
+end_log_range_l = lambda{|req, res| end_log_range(req, res)}
+ApiCallHandler.add_handler("/rb/log_range_end", end_log_range_l)
+
+def scan_log_range(req, res)
+ start_id = GlobalStore.get("log_start_rb_api")
+ end_id = GlobalStore.get("log_end_rb_api")
+ (start_id..end_id).each do |i|
+ r = Request.from_proxy_log(i)
+ s = Scanner.new(r)
+ if r.query.count > 0 or r.body.count > 0
+ s.inject_query
+ s.inject_body
+ s.check_all
+ s.launch_scan
+ end
+ end
+ res.body_string = "OK"
+end
+
+scan_log_range_l = lambda{|req, res| scan_log_range(req, res)}
+ApiCallHandler.add_handler("/rb/scan_log_range", scan_log_range_l)
diff --git a/Be.Windows.Forms.HexBox.dll b/Be.Windows.Forms.HexBox.dll
new file mode 100644
index 0000000..318d8b8
Binary files /dev/null and b/Be.Windows.Forms.HexBox.dll differ
diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt
new file mode 100644
index 0000000..86b4e49
--- /dev/null
+++ b/COPYRIGHT.txt
@@ -0,0 +1,13 @@
+Copyright 2011-2012 Lavakumar Kuppan
+
+IronWASP is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 3 of the License.
+
+IronWASP is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IronWASP. If not, see .
diff --git a/CssFx.dll b/CssFx.dll
new file mode 100644
index 0000000..5547e65
Binary files /dev/null and b/CssFx.dll differ
diff --git a/DemoApp.exe b/DemoApp.exe
new file mode 100644
index 0000000..c516b0a
Binary files /dev/null and b/DemoApp.exe differ
diff --git a/Diff.dll b/Diff.dll
new file mode 100644
index 0000000..e053e15
Binary files /dev/null and b/Diff.dll differ
diff --git a/DiffPlex.dll b/DiffPlex.dll
new file mode 100644
index 0000000..8770b63
Binary files /dev/null and b/DiffPlex.dll differ
diff --git a/DirNamesDictionary.txt b/DirNamesDictionary.txt
new file mode 100644
index 0000000..50ed994
--- /dev/null
+++ b/DirNamesDictionary.txt
@@ -0,0 +1,2 @@
+admin
+uploads
diff --git a/ExternalLicenses/BeHexEditor License.txt b/ExternalLicenses/BeHexEditor License.txt
new file mode 100644
index 0000000..fd87e6c
--- /dev/null
+++ b/ExternalLicenses/BeHexEditor License.txt
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2011 Bernhard Elbl
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
\ No newline at end of file
diff --git a/ExternalLicenses/CssCompactor License.txt b/ExternalLicenses/CssCompactor License.txt
new file mode 100644
index 0000000..8bbc154
--- /dev/null
+++ b/ExternalLicenses/CssCompactor License.txt
@@ -0,0 +1,23 @@
+Distributed under the terms of an MIT-style license:
+
+The MIT License
+
+Copyright (c) 2006-2009 Stephen M. McKamey
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/ExternalLicenses/Diff License.txt b/ExternalLicenses/Diff License.txt
new file mode 100644
index 0000000..1caef28
--- /dev/null
+++ b/ExternalLicenses/Diff License.txt
@@ -0,0 +1,12 @@
+Software License Agreement (BSD License)
+Copyright (c) 2005-2009 by Matthias Hertel, http://www.mathertel.de/
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+Neither the name of the copyright owners nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
diff --git a/ExternalLicenses/DiffPlex License.txt b/ExternalLicenses/DiffPlex License.txt
new file mode 100644
index 0000000..4b1d2c4
--- /dev/null
+++ b/ExternalLicenses/DiffPlex License.txt
@@ -0,0 +1,50 @@
+Microsoft Public License (Ms-PL)
+
+This license governs use of the accompanying software. If you use the software,
+you accept this license. If you do not accept the license, do not use the software.
+
+1. Definitions
+
+The terms "reproduce," "reproduction," "derivative works," and "distribution"
+have the same meaning here as under U.S. copyright law.
+
+A "contribution" is the original software, or any additions or changes to the software.
+
+A "contributor" is any person that distributes its contribution under this license.
+
+"Licensed patents" are a contributor's patent claims that read directly on its contribution.
+
+2. Grant of Rights
+
+(A) Copyright Grant- Subject to the terms of this license, including the license conditions
+and limitations in section 3, each contributor grants you a non-exclusive, worldwide,
+royalty-free copyright license to reproduce its contribution, prepare derivative works
+of its contribution, and distribute its contribution or any derivative works that you create.
+
+(B) Patent Grant- Subject to the terms of this license, including the license conditions
+and limitations in section 3, each contributor grants you a non-exclusive, worldwide,
+royalty-free license under its licensed patents to make, have made, use, sell, offer for sale,
+import, and/or otherwise dispose of its contribution in the software or derivative works of
+the contribution in the software.
+
+3. Conditions and Limitations
+
+(A) No Trademark License- This license does not grant you rights to use any contributors'
+name, logo, or trademarks.
+
+(B) If you bring a patent claim against any contributor over patents that you claim are
+infringed by the software, your patent license from such contributor to the software ends automatically.
+
+(C) If you distribute any portion of the software, you must retain all copyright, patent,
+trademark, and attribution notices that are present in the software.
+
+(D) If you distribute any portion of the software in source code form, you may do so only under
+this license by including a complete copy of this license with your distribution. If you distribute
+any portion of the software in compiled or object code form, you may only do so under a license
+that complies with this license.
+
+(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no
+express warranties, guarantees or conditions. You may have additional consumer rights under
+your local laws which this license cannot change. To the extent permitted under your local laws,
+the contributors exclude the implied warranties of merchantability, fitness for a particular
+purpose and non-infringement.
\ No newline at end of file
diff --git a/ExternalLicenses/DotNetZip License.txt b/ExternalLicenses/DotNetZip License.txt
new file mode 100644
index 0000000..21e415b
--- /dev/null
+++ b/ExternalLicenses/DotNetZip License.txt
@@ -0,0 +1,33 @@
+Copyright (c) 2009-2010 Dino Chiesa
+
+Microsoft Public License (Ms-PL)
+
+This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.
+
+1. Definitions
+
+The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law.
+
+A "contribution" is the original software, or any additions or changes to the software.
+
+A "contributor" is any person that distributes its contribution under this license.
+
+"Licensed patents" are a contributor's patent claims that read directly on its contribution.
+
+2. Grant of Rights
+
+(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.
+
+(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.
+
+3. Conditions and Limitations
+
+(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks.
+
+(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.
+
+(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.
+
+(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.
+
+(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
\ No newline at end of file
diff --git a/ExternalLicenses/FiddleCore License.txt b/ExternalLicenses/FiddleCore License.txt
new file mode 100644
index 0000000..c196c3b
--- /dev/null
+++ b/ExternalLicenses/FiddleCore License.txt
@@ -0,0 +1,14 @@
+By using this software, you accept these terms. If you do not accept these terms, do not install, build upon, distribute, or use the software.
+
+The software (FiddlerCore) is provided "as is" and you bear the risk of using it. In no event shall I, Eric Lawrence, be liable for any consequential, special, incidental or indirect damages of any kind arising out of the delivery, performance or use of this software. This software was written with care, but no one warrants that the software is error free.
+
+Your sole remedy for any failure or any form of damage caused by this software is a full refund of the fee I have received from you, which in all cases is $0.
+
+You may use any number of copies of the software to design, develop and test your programs that run on a Microsoft Windows operating system. You may copy and distribute the software, in compiled form, to run on a Microsoft Windows operating system. Permission to redistribute FiddlerCore without charge is granted, subject to the following restrictions: You may not: 1> alter any copyright, trademark or patent notice in the software, 2> include the software in malicious, deceptive or unlawful programs.
+
+If you distribute the software, you must 1> require distributors and external end users to agree to terms that protect it at least as much as this agreement, 2> display your valid copyright notice on your programs, 3> indemnify, defend, and hold harmless Eric Lawrence from any claims, including attorneys’ fees, related to the distribution or use of your programs or to your modifications to the software.
+
+EXPORT RESTRICTIONS: The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to software. These laws include restrictions on destinations, end users and end use.
+USE RESTRICTIONS: You warrant that your use of this software is legal and does not violate any law or regulation to which you are subject.
+
+FiddlerCore is ©2010 Eric Lawrence. All rights reserved.
\ No newline at end of file
diff --git a/ExternalLicenses/Html Agility Pack License.txt b/ExternalLicenses/Html Agility Pack License.txt
new file mode 100644
index 0000000..da3dc93
--- /dev/null
+++ b/ExternalLicenses/Html Agility Pack License.txt
@@ -0,0 +1,31 @@
+Microsoft Public License (Ms-PL)
+
+This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.
+
+1. Definitions
+
+The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law.
+
+A "contribution" is the original software, or any additions or changes to the software.
+
+A "contributor" is any person that distributes its contribution under this license.
+
+"Licensed patents" are a contributor's patent claims that read directly on its contribution.
+
+2. Grant of Rights
+
+(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.
+
+(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.
+
+3. Conditions and Limitations
+
+(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks.
+
+(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.
+
+(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.
+
+(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.
+
+(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
\ No newline at end of file
diff --git a/ExternalLicenses/ICSharpCode.TextEditor License.txt b/ExternalLicenses/ICSharpCode.TextEditor License.txt
new file mode 100644
index 0000000..e8fd74c
--- /dev/null
+++ b/ExternalLicenses/ICSharpCode.TextEditor License.txt
@@ -0,0 +1,458 @@
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+ This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+ When we speak of free software, we are referring to freedom of use,
+not price. Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights. These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at
+ least three years, to give the same user the materials
+ specified in Subsection 6a, above, for a charge no more
+ than the cost of performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
diff --git a/ExternalLicenses/Jint License.txt b/ExternalLicenses/Jint License.txt
new file mode 100644
index 0000000..963bcfe
--- /dev/null
+++ b/ExternalLicenses/Jint License.txt
@@ -0,0 +1,52 @@
+The MIT License (MIT)
+Copyright (c) 2009 Evaluant
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
+associated documentation files (the "Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
+following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial
+portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
+LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-------------------------------------------------------------
+
+The ES3 grammar is based on work under the following licence:
+
+Software License Agreement (BSD License)
+
+Copyright (c) 2008-2009, Xebic Research B.V.
+All rights reserved.
+
+Redistribution and use of this software in source and binary forms, with or without modification, are
+permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above
+ copyright notice, this list ofe conditions and the
+ following disclaimer.
+
+* Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the
+ following disclaimer in the documentation and/or other
+ materials provided with the distribution.
+
+* Neither the name of Xebic Research B.V. nor the names of its
+ contributors may be used to endorse or promote products
+ derived from this software without specific prior
+ written permission of Xebic Research B.V.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/ExternalLicenses/Json.NET License.txt b/ExternalLicenses/Json.NET License.txt
new file mode 100644
index 0000000..c96b578
--- /dev/null
+++ b/ExternalLicenses/Json.NET License.txt
@@ -0,0 +1,7 @@
+Copyright (c) 2007 James Newton-King
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/ExternalLicenses/jsbeautifylib License.txt b/ExternalLicenses/jsbeautifylib License.txt
new file mode 100644
index 0000000..c177092
--- /dev/null
+++ b/ExternalLicenses/jsbeautifylib License.txt
@@ -0,0 +1,7 @@
+Copyright (c) 2009 Rekna
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/FiddlerCore.dll b/FiddlerCore.dll
new file mode 100644
index 0000000..278e59f
Binary files /dev/null and b/FiddlerCore.dll differ
diff --git a/FiddlerCore.pdb b/FiddlerCore.pdb
new file mode 100644
index 0000000..42bf946
Binary files /dev/null and b/FiddlerCore.pdb differ
diff --git a/FiddlerCore.xml b/FiddlerCore.xml
new file mode 100644
index 0000000..7de7d77
--- /dev/null
+++ b/FiddlerCore.xml
@@ -0,0 +1,6362 @@
+
+
+
+ FiddlerCore
+
+
+
+
+ Wrapper for WinINET cache APIs.
+
+
+
+
+ Clear all HTTP Cookies from the WinINET Cache
+
+
+
+
+ Clear all files from the WinINET Cache
+
+
+
+
+ Delete all permanent WinINET cookies for sHost; won't clear memory-only session cookies. Supports hostnames with an optional leading wildcard, e.g. *example.com. NOTE: Will not work on VistaIE Protected Mode cookies.
+
+ The hostname whose cookies should be cleared
+
+
+
+ Clear the Cache items. Note: May be synchronous, may be asynchronous.
+
+ TRUE if cache files should be cleared
+ TRUE if cookies should be cleared
+
+
+
+ For PInvoke: Contains information about an entry in the Internet cache
+
+
+
+
+ Wrapper for WinINET proxy configuration APIs
+
+
+
+
+ Hostnames of sites to bypass proxy. <local> is common.
+
+
+
+
+ Allow direct connection to host
+
+
+
+
+ Attempt WPAD autoproxy detection
+
+
+
+
+ Ignore WinINET "no autoproxy unticks box" optimization
+
+
+
+
+ Use user-supplied URL to get FindProxyForURL script
+
+
+
+
+ Use user-supplied manual/fixed proxy address list
+
+
+
+
+ WPAD script url that may be used if _bUseScript true
+
+
+
+
+ Gathers proxy information from a named connection.
+
+ Pass DefaultLAN to look for the "null" connection
+ Proxy info, or null
+
+
+
+ Get a string describing the proxy settings
+
+ Returns a multi-line string representing the proxy settings
+
+
+
+ Calculate a string suitable for passing into WinINET APIs.
+
+ Returns a string containing proxy information, or NULL. NB: I've seen WinINET blow up when passed String.Empty rather than null.
+
+
+
+
+ Given a proxy string, we crack out the proxy gateways for each protocol
+
+ e.g. HTTP=itgproxy:80;FTP=ftpprox:21;
+ false on error
+
+
+
+ Fills this WinINETProxyInfo instance with settings from specified WinINET connection.
+
+ Name of the connection. Pass NULL for LAN connection.
+ TRUE if the settings were successfully retrieved.
+
+
+
+ Sets WinINET proxy settings for specified connection to those specified in this WinINETProxy instance.
+
+ Name of the connection. Pass NULL for LAN connection.
+
+
+
+ Semi-colon delimited list of hostnames that should bypass the fixed proxy
+
+
+
+
+ TRUE if manually-specified proxy should be used.
+
+
+
+
+ TRUE if a direct HTTP connection may be made if AutoProxy/PAC is unreachable or corrupt
+
+
+
+
+ True if the proxy should be bypassed for dotless hostnames.
+ NOTE: Simply looks at the bypassList string to see if it contains a LOCAL rule.
+
+
+
+
+ String representing the endpoint of the proxy for HTTP-traffic, if configured
+
+
+
+
+ String representing the endpoint of the proxy for HTTPS-traffic, if configured
+
+
+
+
+ String representing the endpoint of the proxy for FTP-traffic, if configured
+
+
+
+
+ String representing the endpoint of the proxy for SOCKS-traffic, if configured
+
+
+
+
+ Bool indicating whether this connection is set to autodetect the proxy
+
+
+
+
+ Returns a string pointing to the ProxyAutoConfig script, or null if there is no such URL or it is not enabled
+
+
+
+
+ Provides simple utility functions common to both ClientHello and ServerHello parsing
+
+
+
+
+ Gets a textual string from a TLS extension
+
+
+
+
+ Converts a HTTPS version to a "Major.Minor (Friendly)" string
+
+
+
+
+ The HTTPSClientHello class is used to parse the bytes of a HTTPS ClientHello message.
+
+
+
+
+ Map cipher id numbers to names. See http://www.iana.org/assignments/tls-parameters/
+
+
+
+
+ Parse a single extension using the list from http://tools.ietf.org/html/rfc6066
+ http://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xml
+
+
+
+
+
+
+ Did client use ALPN to go to SPDY?
+
+
+
+
+ Parse a single extension using the list from http://tools.ietf.org/html/rfc6066
+
+
+
+
+
+
+ Did this ServerHello Handshake specify an upgrade to SPDY?
+
+
+
+
+ The Session object manages the complete HTTP session including the UI listitem, the ServerChatter, and the ClientChatter.
+
+
+
+
+ Should we try to use the SPNToken type?
+ Cached for performance reasons
+
+
+
+
+ Sorta hacky, we may use a .NET WebRequest object to generate a valid NTLM/Kerberos response if the server
+ demands authentication and the Session is configured to automatically respond.
+
+
+
+
+ Used if the Session is bound to a WebSocket or CONNECTTunnel
+
+
+
+
+ Sets or unsets the specified SessionFlag(s)
+
+ SessionFlags
+ Desired set value
+
+
+
+ Test the session's BitFlags
+
+ One or more (OR'd) SessionFlags
+ TRUE if specified flag(s) are set
+
+
+
+ Test the session's BitFlags
+
+ One or more (OR'd) SessionFlags
+ TRUE if any of specified flag(s) are set
+
+
+
+ Should response be buffered for tampering
+
+
+
+
+ Timers stored as this Session progresses
+
+
+
+
+ ListViewItem object associated with this session in the Session list.
+
+
+
+
+ Field is set to False if socket is poisoned due to HTTP errors.
+
+
+
+
+ Object representing the HTTP Response.
+
+
+
+
+ Object representing the HTTP Request.
+
+
+
+
+ Fiddler-internal flags set on the session.
+
+
+
+
+ Contains the bytes of the request body.
+
+
+
+
+ Contains the bytes of the response body.
+
+
+
+
+ IP Address of the client for this session.
+
+
+
+
+ Client port attached to Fiddler.
+
+
+
+
+ IP Address of the server for this session.
+
+
+
+
+ Event object used for pausing and resuming the thread servicing this session
+
+
+
+
+ Returns TRUE if the Session's HTTP Method is available and matches the target method.
+
+ The target HTTP Method being compared.
+ true, if the method is specified and matches sTestFor (case-insensitive); otherwise false.
+
+
+
+ Returns TRUE if the Session's target hostname (no port) matches sTestHost (case-insensitively).
+
+ The host to which this session's host should be compared.
+ True if this session is targeted to the specified host.
+
+
+
+ Replaces any characters in a filename that are unsafe with safe equivalents, and trim to 160 characters.
+
+
+
+
+
+
+ Notify extensions if this session naturally led to another (e.g. due to redirect chasing or Automatic Authentication)
+
+ The original session
+ The new session created
+
+
+
+ Returns HTML representing the session. Call Utilities.StringToCF_HTML on the result of this function before placing it on the clipboard.
+
+ TRUE if only the headers should be copied.
+ A HTML-formatted fragment representing the current session.
+
+
+
+ Store this session's request and response to a string.
+
+ If true, return only the request and response headers
+ String representing this session
+
+
+
+ Store this session's request and response to a string.
+
+ A string containing the content of the request and response.
+
+
+
+ This private method pauses the Session's thread to allow breakpoint debugging
+
+
+
+
+ This method resumes the Session's thread in response to "Continue" commands from the UI
+
+
+
+
+ Called by an AcceptConnection-spawned background thread, create a new session object from a client socket and execute the session
+
+ Parameter object defining client socket and endpoint's HTTPS certificate, if present
+
+
+
+ Call this method to AuthenticateAsServer on the client pipe. If configured, the pipe will first sniff the request
+ for the SubjectCN expected, which might be advertised in the TLS ServerNameIndicator extension.
+
+ The default certificate to use
+ TRUE if a HTTPS handshake was achieved; FALSE for any exceptions or other errors.
+
+
+
+ Call this function while in the "reading response" state to update the responseBodyBytes array with
+ the partially read response.
+
+ TRUE if the peek succeeded; FALSE if not in the ReadingResponse state
+
+
+
+ Prevents the server pipe from this session from being pooled for reuse
+
+
+
+
+ Ensures that, after the response is complete, the client socket is closed and not reused.
+ Does NOT (and must not) close the pipe.
+
+
+
+
+ Immediately close client and server sockets. Call in the event of errors-- doesn't queue server pipes for future reuse.
+
+
+
+
+
+ Closes both client and server pipes and moves state to Aborted; unpauses thread if paused.
+
+
+
+
+ Save HTTP response body to Fiddler Captures folder. You likely want to call utilDecodeResponse first.
+
+ True if the response body was successfully saved
+
+
+
+ Save HTTP response body to specified location. You likely want to call utilDecodeResponse first.
+
+ The name of the file to which the response body should be saved.
+ True if the file was successfully written.
+
+
+
+ Save the request body to a file. You likely want to call utilDecodeRequest first.
+
+ The name of the file to which the request body should be saved.
+ True if the file was successfully written.
+
+
+
+ Save the request and response to a single file.
+
+ The filename to which the session should be saved.
+ TRUE if only the headers should be written.
+
+
+
+ Save the request to a file; the headers' Request Line will not contain the scheme or host
+
+ The name of the file to which the request should be saved.
+ TRUE to save only the headers
+
+
+
+ Save the request to a file
+
+ The name of the file to which the request should be saved.
+ TRUE to save only the headers.
+ TRUE to include the Scheme and Host in the Request Line.
+
+
+
+ Read metadata about this session from a stream. NB: Closes the Stream when done.
+
+ The stream of XML text from which session metadata will be loaded.
+ True if the Metadata was successfully loaded; False if any exceptions were trapped.
+
+
+
+ Writes this session's metadata to a file.
+
+ The name of the file to which the metadata should be saved in XML format.
+ True if the file was successfully written.
+
+
+
+ Saves the response (headers and body) to a file
+
+ The File to write
+ TRUE if only heaers should be written
+
+
+
+ Write the metadata about this session to a stream. The Stream is left open!
+
+ The Stream to write to
+
+
+
+ Write the session's Request to the specified stream
+
+ TRUE if only the headers should be be written
+ TRUE if the Scheme and Host should be written in the Request Line
+ The Stream to which the request should be written
+ True if the request was written to the stream. False if the request headers do not exist. Throws on other stream errors.
+
+
+
+ Write the session's Request to the specified stream
+
+ TRUE if only the headers should be be written
+ TRUE if the Scheme and Host should be written in the Request Line
+ TRUE if binary bodies should be encoded in base64 for text-safe transport
+ The Stream to which the request should be written
+ True if the request was written to the stream. False if the request headers do not exist. Throws on other stream errors.
+
+
+
+ Write the session's Response to the specified stream
+
+ The stream to which the response should be written
+ TRUE if only the headers should be written
+ TRUE if the response was written to the stream. False if the response headers do not exist. Throws on other stream errors.
+
+
+
+ Write the session to the specified stream
+
+ The stream to which the session should be written
+ TRUE if only the request and response headers should be written
+ False on any exceptions; True otherwise
+
+
+
+ Replace HTTP request headers and body using the specified file.
+
+ The file containing the request
+ True if the file was successfully loaded as the request body
+
+
+
+ Replace HTTP response headers and body using the specified stream.
+
+ The stream containing the response.
+ True if the Stream was successfully loaded.
+
+
+
+ Replace HTTP response headers and body using the specified file.
+
+ The file containing the response.
+ True if the file was successfully loaded.
+
+
+
+ Return a string generated from the request body, decoding it and converting from a codepage if needed. Throws on errors.
+
+ A string containing the request body.
+
+
+
+ Return a string generated from the response body, decoding it and converting from a codepage if needed. Throws on errors.
+
+ A string containing the response body.
+
+
+
+ Find the text encoding of the request
+
+ Returns the Encoding of the requestBodyBytes
+
+
+
+ Find the text encoding of the response
+
+ The Encoding of the responseBodyBytes
+
+
+
+ Returns true if the absolute request URI contains the specified string. Case-insensitive.
+
+ Case-insensitive string to find
+ TRUE if the URI contains the string
+
+
+
+ Removes chunking and HTTP Compression from the Response. Adds or updates Content-Length header.
+
+ Returns TRUE if the response was decoded; returns FALSE on failure, or if response didn't have headers that showed encoding.
+
+
+
+ Removes chunking and HTTP Compression from the Request. Adds or updates Content-Length header.
+
+ Returns TRUE if the request was decoded; returns FALSE on failure, or if request didn't have headers that showed encoding.
+
+
+
+ Use GZIP to compress the request body. Throws exceptions to caller.
+
+ TRUE if compression succeeded
+
+
+
+ Use GZIP to compress the response body. Throws exceptions to caller.
+
+ TRUE if compression succeeded
+
+
+
+ Use DEFLATE to compress the response body. Throws exceptions to caller.
+
+ TRUE if compression succeeded
+
+
+
+ Use BZIP2 to compress the response body. Throws exceptions to caller.
+
+ TRUE if compression succeeded
+
+
+
+ Introduces HTTP Chunked encoding on the response body
+
+ The number of chunks to try to create
+ TRUE if the chunking could be performed.
+
+
+
+ Perform a string replacement on the request body. Adjusts the Content-Length header if needed.
+
+ The case-sensitive string to search for.
+ The text to replace.
+ TRUE if one or more replacements occurred.
+
+
+
+ Call inside OnBeforeRequest to create a response object and bypass the server.
+
+
+
+
+ Perform a regex-based string replacement on the response body. Adjusts the Content-Length header if needed.
+
+ The regular expression used to search the body. Specify RegEx Options via leading Inline Flags, e.g. (?im) for case-Insensitive Multi-line.
+ The text or expression used to replace
+ TRUE if replacements occured
+
+
+
+ Perform a string replacement on the response body (potentially multiple times). Adjust the Content-Length header if needed.
+
+ String to find (case-sensitive)
+ String to use to replace
+ TRUE if replacements occurred
+
+
+
+ Perform a one-time string replacement on the response body. Adjust the Content-Length header if needed.
+
+ String to find (case-sensitive)
+ String to use to replace
+ TRUE for Case-Sensitive
+ TRUE if a replacement occurred
+
+
+
+ Replaces the request body with sString as UTF8. Sets Content-Length header and removes Transfer-Encoding/Content-Encoding.
+
+ The desired request Body as a string
+
+
+
+ Replaces the response body with sString. Sets Content-Length header and removes Transfer-Encoding/Content-Encoding
+
+ The desired response Body as a string
+
+
+
+ Add a string to the top of the response body, updating Content-Length. (Call utilDecodeResponse first!)
+
+ The string to prepend
+
+
+
+ Find a string in the request body. Return its index, or -1.
+
+ Term to search for
+ Require case-sensitive match?
+ Location of sSearchFor,or -1
+
+
+
+ Find a string in the response body. Return its index, or -1.
+
+ Term to search for
+ Require case-sensitive match?
+ Location of sSearchFor,or -1
+
+
+
+ Reset the SessionID counter to 0. This method can lead to confusing UI, so use sparingly.
+
+
+
+
+ Create a session object from two byte[] representing request and response.
+
+ The client data bytes
+ The server data bytes
+
+
+
+ Create a Session object from a (serializable) SessionData object
+
+
+
+
+
+ Create a session object from two byte[] representing request and response. This is used when loading a Session Archive Zip.
+
+ The client data bytes
+ The server data bytes
+ SessionFlags for this session
+
+
+
+ Creates a new session and attaches it to the pipes passed as arguments
+
+ The client pipe from which the request is read and to which the response is written.
+ The server pipe to which the request is sent and from which the response is read. May be null.
+
+
+
+ Initialize a new session from a given request headers and body request builder data. Note: No Session ID is assigned here.
+
+ NB: If you're copying an existing request, use oRequestHeaders.Clone()
+ The bytes of the request's body
+
+
+
+ Called when the session is ready to begin processing. Eats exceptions to prevent unhandled exceptions on background threads from killing the application.
+
+ Unused parameter (required by ThreadPool)
+
+
+
+ InnerExecute() implements Fiddler's HTTP Pipeline
+
+
+
+
+ If the response demands credentials and the Session is configured to have Fiddler provide those
+ credentials, try to do so now.
+
+ TRUE if Fiddler has generated a response to an Auth challenge; FALSE otherwise.
+
+
+
+ This method will perform obtain authentication credentials from System.NET using a reflection trick to grab the internal value.
+ It's needed to cope with CBT.
+
+ This MUST live within its own non-inlined method such that when it's run on an outdated version of the .NET Framework, the outdated
+ version of the target object triggers a TypeLoadException in such a way that the caller can catch it and warn the user without
+ killing Fiddler.exe.
+
+
+
+
+
+ Returns a Kerberos-usable SPN for the target
+ http://dev.chromium.org/developers/design-documents/http-authentication
+ "HttpAuthHandlerNegotiate::CreateSPN"
+ http://blog.michelbarneveld.nl/michel/archive/2009/11/14/the-reason-why-kb911149-and-kb908209-are-not-the-soluton.aspx
+
+
+
+
+
+
+ Returns the fully-qualified URL to which this Session's response points, or null.
+
+ null, or Target URL. Note, you may want to call Utilities.TrimAfter(sTarget, '#');
+
+
+
+ Gets a redirect-target from a base URI and a Location header
+
+
+
+ null, or Target URL. Note, you may want to call Utilities.TrimAfter(sTarget, '#');
+
+
+
+ Fiddler can only auto-follow redirects to HTTP/HTTPS/FTP.
+
+ The BASE URL to which a relative redirection should be applied
+ Response "Location" header
+ TRUE if the auto-redirect target is allowed
+
+
+
+ Handles a Response's Redirect if the Session is configured to do so.
+
+ TRUE if a redirect was handled, FALSE otherwise
+
+
+
+ Check for common mistakes in HTTP Responses and notify the user if they are found. Called only if Linting is enabled.
+
+
+
+
+ Assign a Session ID. Called by ClientChatter when headers are available
+
+
+
+
+ Called only by InnerExecute, this method reads a request from the client and performs tampering/manipulation on it.
+
+ TRUE if there's a Request object and we should continue processing. FALSE if reading the request failed
+ *OR* if script or an extension changed the session's State to DONE or ABORTED.
+
+
+
+
+ Returns TRUE if response is a NTLM or NEGO challenge
+
+ True for HTTP/401,407 with NEGO or NTLM demand
+
+
+
+ Returns TRUE if response is a Digest, NTLM, or Nego challenge
+
+ True for HTTP/401,407 with Digest, NEGO, NTLM demand
+
+
+
+ Replace the "ipv*.fiddler "fake" hostnames with the IP-literal equvalents.
+
+
+
+
+ Determines if request host is pointing directly at Fiddler.
+
+
+
+
+
+ Echo the client's request back as a HTTP Response, encoding to prevent XSS.
+
+
+
+
+ Send a Proxy Configuration script back to the client.
+
+
+
+
+ Send a Proxy Configuration script back to WinHTTP, so that Fiddler can use an upstream proxy specified
+ by a script on a fileshare. (WinHTTP only allows HTTP/HTTPS-hosted script files)
+
+
+
+
+ Send the Fiddler Root certificate back to the client
+
+
+
+
+ This method indicates to the client that a secure tunnel was created,
+ without actually talking to an upstream server.
+
+ If Fiddler's AutoResponder is enabled, and that autoresponder denies passthrough,
+ then Fiddler itself will always indicate "200 Connection Established" and wait for
+ another request from the client. That subsequent request can then potentially be
+ handled by the AutoResponder engine.
+
+ BUG BUG: This occurs even if Fiddler isn't configured for HTTPS Decryption
+
+
+ The hostname to use in the Certificate returned to the client
+
+
+
+ This method adds a Proxy-Support: Session-Based-Authentication header and indicates whether the response is Nego:Type2.
+
+ Returns TRUE if server returned a credible Type2 NTLM Message
+
+
+
+ This helper evaluates the conditions for client socket reuse.
+
+
+
+
+
+ Sends the Response that Fiddler received from the server back to the client socket.
+
+ Should the client and server pipes be tightly-bound together?
+ True, if the response was successfully sent to the client
+
+
+
+ Sets up the next Session on these pipes, binding this Session's pipes to that new Session, as appropriate. When this method is called,
+ the nextSession variable is populated with the new Session, and that object is executed at the appropriate time.
+
+ TRUE if both the client and server pipes should be bound regardless of the serverPipe's ReusePolicy
+
+
+
+ Refresh the UI elements for the session.
+
+ Use TRUE to call Invoke, use FALSE to call BeginInvoke.
+
+
+
+ Bitflags of commonly-queried session attributes
+
+
+
+
+ If this session is a Tunnel, and the tunnel's IsOpen property is TRUE, returns TRUE. Otherwise returns FALSE.
+
+
+
+
+ If this session is a Tunnel, returns number of bytes sent from the Server to the Client
+
+
+
+
+ If this session is a Tunnel, returns number of bytes sent from the Client to the Server
+
+
+
+
+ Returns True if this is a HTTP CONNECT tunnel.
+
+
+
+
+ A common use for the Tag property is to store data that is closely associated with the Session.
+ It is NOT marshalled during drag/drop and is NOT serialized to a SAZ file.
+
+
+
+
+ This event fires at any time the session's State changes. Use with caution due to the potential for performance impact.
+
+
+
+
+ This event fires if this Session automatically yields a new one, for instance, if Fiddler is configured to automatically
+ follow redirects or perform multi-leg authentication (X-AutoAuth).
+
+
+
+
+ Gets or Sets the HTTP Request body bytes.
+ Setter adjusts Content-Length header, and removes Transfer-Encoding and Content-Encoding headers.
+ Setter DOES NOT CLONE the passsed array.
+ Setter will throw if the Request object does not exist for some reason.
+ Use utilSetRequestBody(sStr) to ensure proper character encoding if you need to use a string.
+
+
+
+
+ Gets or Sets the HTTP Response body bytes.
+ Setter adjusts Content-Length header, and removes Transfer-Encoding and Content-Encoding headers.
+ Setter DOES NOT CLONE the passsed array.
+ Setter will throw if the Response object has not yet been created. (See utilCreateResponseAndBypassServer)
+ Use utilSetResponseBody(sStr) to ensure proper character encoding if you need to use a string.
+
+
+
+
+ When true, this session was conducted using the HTTPS protocol.
+
+
+
+
+ When true, this session was conducted using the FTP protocol.
+
+
+
+
+ Get the process ID of the application which made this request, or 0 if it cannot be determined.
+
+
+
+
+ Gets a path-less filename suitable for saving the Response entity. Uses Content-Disposition if available.
+
+
+
+
+ Set to true in OnBeforeRequest if this request should bypass the gateway
+
+
+
+
+ Returns the port used by the client to communicate to Fiddler.
+
+
+
+
+ State of session. Note Side-Effects: If setting to .Aborted, calls FinishUISession. If setting to/from a Tamper state, calls RefreshMyInspectors
+
+
+
+
+ Returns the path and query part of the URL. (For a CONNECT request, returns the host:port to be connected.)
+
+
+
+
+ Retrieves the complete URI, including protocol/scheme, in the form http://www.host.com/filepath?query.
+ Or sets the complete URI, adjusting the UriScheme and/or Host.
+
+
+
+
+ Gets or sets the URL (without protocol) being requested from the server, in the form www.host.com/filepath?query.
+
+
+
+
+ DNS Name of the host server targeted by this request. May include IPv6 literal brackets. NB: a port# may be included.
+
+
+
+
+ DNS Name of the host server (no port) targeted by this request. Will include IPv6-literal brackets for IPv6-literal addresses
+
+
+
+
+ Returns the server port to which this request is targeted.
+
+
+
+
+ Returns the sequential number of this session. Note, by default numbering is restarted at zero when the session list is cleared.
+
+
+
+
+ Returns the Address used by the client to communicate to Fiddler.
+
+
+
+
+ Gets or Sets the HTTP Status code of the server's response
+
+
+
+
+ Checks whether this is a WebSocket, and if so, whether it has logged any parsed messages.
+
+
+
+
+ Returns TRUE if this session's State > ReadingResponse, and oResponse, oResponse.headers, and responseBodyBytes are all non-null. Note that
+ bHasResponse returns FALSE if the session is currently reading, even if a body was copied using the COMETPeek feature
+
+
+
+
+ Indexer property into SESSION flags, REQUEST headers, and RESPONSE headers. e.g. oSession["Request", "Host"] returns string value for the Request host header. If null, returns String.Empty
+
+ SESSION, REQUEST or RESPONSE
+ The name of the flag or header
+ String value or String.Empty
+
+
+
+ Simple indexer into the Session's oFlags object; returns null if flag is not present.
+
+
+ Returns the string value if the specified flag is present, or null if it is not.
+
+
+
+
+ This object holds Session information as a set of four easily-marshalled byte arrays.
+ It is serializable, which enables cross-process transfer of this data (as in a drag/drop operation).
+ (Internally, data is serialized as if it were being stored in a SAZ file)
+
+
+
+
+ Create a SessionData object.
+ Note: Method must run as cheaply as possible, since it runs on all Drag/Dropped sessions within Fiddler itself.
+
+
+
+
+
+ Parameters passed into the AcceptConnection method.
+
+
+
+
+ The Socket which represents the newly-accepted Connection
+
+
+
+
+ The Certificate to pass to SecureClientPipeDirect immediately after accepting the connection.
+ Normally null, this will be set if the proxy endpoint is configured as a "Secure" endpoint
+ by AssignEndpointCertificate / ActAsHTTPSEndpointForHostname.
+
+
+
+
+ The DateTime of Creation of this connection
+
+
+
+
+ Unknown
+
+
+
+
+ The new Session is needed to respond to an Authentication Challenge
+
+
+
+
+ The new Session is needed to follow a Redirection
+
+
+
+
+ The new Session is needed to generate a CONNECT tunnel
+
+
+
+
+ Event arguments constructed for the OnStateChanged event raised when a Session's state property changed
+
+
+
+
+ The prior state of this session
+
+
+
+
+ The new state of this session
+
+
+
+
+ Constructor for the change in state
+
+ The old state
+ The new state
+
+
+
+ This class holds a specialized memory stream with growth characteristics more suitable for reading from a HTTP Stream.
+ The default MemoryStream's Capacity will always grow to 256 bytes, then at least ~2x current capacity up to 1gb, then to the exact length after that.
+ This has two problems:
+
+ The capacity may unnecessarily grow to >85kb, putting the object on the LargeObjectHeap even if we didn't really need 85kb.
+ After the capacity reaches 1gb in length, the capacity growth never exceeds the length, leading to huge reallocations and copies on every write.
+
+ In some cases, the client can "hint" what the proper capacity ultimately needs to be by adding the Header size in bytes to the Content-Length specified size.
+
+
+
+
+ Used by the caller to supply a hint on the expected total size of reads from the pipe.
+ We cannot blindly trust this value because sometimes the client or server will lie and provide a
+ huge value that it will never use. This is common for RPC-over-HTTPS tunnels like that used by Outlook, for instance.
+
+ Suggested total buffer size in bytes
+
+
+
+ Interface for the WebSocket and CONNECT Tunnel classes
+
+
+
+
+ The CONNECTTunnel class represents a "blind tunnel" through which a CONNECT request is serviced to shuffle bytes between a client and the server.
+
+
+ See pg 206 in HTTP: The Complete Reference for details on how Tunnels work.
+ When HTTPS Decryption is disabled, Fiddler accepts a CONNECT request from the client. Then, we open a connection to the remote server.
+ We shuttle bytes back and forth between the client and the server in this tunnel, keeping Fiddler itself out of the loop
+ (no tampering, etc).
+
+
+
+
+ Number of bytes received from the client
+
+
+
+
+ Number of bytes received from the server
+
+
+
+
+ TRUE if this is a Blind tunnel, FALSE if decrypting
+
+
+
+
+ This "Factory" method creates a new HTTPS Tunnel and executes it on a background (non-pooled) thread.
+
+ The Session containing the HTTP CONNECT request
+
+
+
+ Creates a HTTPS tunnel. External callers instead use the CreateTunnel static method.
+
+ The session for which this tunnel was initially created.
+ Client Pipe
+ Server Pipe
+
+
+
+ This function keeps the thread alive until it is signaled that the traffic is complete
+
+
+
+
+ Executes the HTTPS tunnel inside an All-it-can-eat exception handler.
+ Call from a background thread.
+
+
+
+
+ Close the HTTPS tunnel and signal the event to let the service thread die.
+ WARNING: This MUST not be allowed to throw any exceptions, because it will do so on threads that don't catch them, and this will kill the application.
+
+
+
+
+ Called when we have received data from the local client.
+ Incoming data will immediately be forwarded to the remote host.
+
+ The result of the asynchronous operation.
+
+
+ Called when we have sent data to the local client.
When all the data has been sent, we will start receiving again from the remote host.
+ The result of the asynchronous operation.
+
+
+ Called when we have sent data to the remote host.
When all the data has been sent, we will start receiving again from the local client.
+ The result of the asynchronous operation.
+
+
+ Called when we have received data from the remote host.
Incoming data will immediately be forwarded to the local client.
+ The result of the asynchronous operation.
+
+
+
+ Returns number of bytes sent from the Server to the Client
+
+
+
+
+ Returns number of bytes sent from the Client to the Server
+
+
+
+
+ Holds a variety of useful functions used in Fiddler and its addons.
+
+
+
+
+ A static byte array containing 0 elements. Use to avoid having many copies of an empty byte[] floating around.
+
+
+
+
+ Queries the user for a filename
+
+ Dialog title
+ String representing file dialog filter
+ Filename or null
+
+
+
+ Queries the user for a filename
+
+ Dialog title
+ String representing file dialog filter
+ Initial directory or null
+ Filename or null
+
+
+
+ Queries the user for an OPEN filename
+
+ Dialog title
+ String representing file dialog filter (e.g. "All files (*.*)|*.*")
+ Filename or null
+
+
+
+ Queries the user for an OPEN filename
+
+ Dialog title
+ String representing file dialog filter
+ Initial directory or null
+ Filename or null
+
+
+
+ Check to see that the target assembly defines a RequiredVersionAttribute and that the current Fiddler instance meets that requirement
+
+ The assembly to test
+ The "type" of extension for display in error message
+ TRUE if the assembly includes a requirement and Fiddler meets it.
+
+
+
+ Typically, a version number is displayed as "major number.minor number.build number.private part number".
+
+ Version required
+ Version of the binary being tested
+ Returns 0 if exact match, else greater than 0 if Required version greater than verTest
+
+
+
+ Shrinks a path string to fit within a certain number of characters, replacing segments with ellipses if needed.
+
+ The Path to compact
+ Number of characters to shrink to
+ The compacted string, or the original string if compaction wasn't needed or failed
+
+
+
+ Convert a full path into one that uses environment variables
+
+ e.g. C:\windows\system32\foo.dll
+ %WINDIR%\System32\foo.dll
+
+
+
+ Address the problem where the target "PATH" calls for a directoryname is already a filename
+
+
+
+
+
+
+ Ensure that the target file does not yet exist. If it does, generates a new filename with an embedded identifier, e.g. out[1].txt instead.
+ Attempts to ensure filename is creatable; e.g. if a path component needs to be a directory but is a file already, injects [#] into that
+ path component.
+
+ Candidate filename
+ New filename which does not yet exist
+
+
+
+ Ensure that the target path exists and if a file exists there, it is not readonly or hidden.
+ WARNING: Can throw if target "Filename" calls for a parent directoryname that is already used by a non-directory.
+ E.g. EnsureOverwriteable(C:\io.sys\filename.txt); would throw.
+
+ The candidate filename
+
+
+
+ Writes arrBytes to a file, creating the target directory and overwriting if the file exists.
+
+ Path to File to write.
+ Bytes to write.
+
+
+
+ Fills an array completely using the provided stream. Unlike a normal .Read(), this one will always fully fill the array unless the Stream throws.
+
+ The stream from which to read.
+ The byte array into which the data should be stored.
+ The count of bytes read.
+
+
+
+ Create a new byte[] containing the contents of two other byte arrays.
+
+
+
+
+
+
+
+ Returns the Value from a (case-insensitive) token in the header string. Correctly handles double-quoted strings. Allows comma and semicolon as delimiter
+
+ Name of the header
+ Name of the token
+ Value of the token if present; otherwise, null
+
+
+
+ Ensures that the target string is iMaxLength or fewer characters
+
+ The string to trim from
+ The maximum number of characters to return
+ Up to iMaxLength characters from the "Head" of the string.
+
+
+
+ Ensures that the target string is iMaxLength or fewer characters, appending ... if truncation occurred
+
+ The string to trim from
+ The maximum number of characters to return
+ The string, or up to iMaxLength-1 characters from the "Head" of the string, with \u2026 appeneded.
+
+
+
+ Returns the "Head" of a string, before and not including a specified search string.
+
+ The string to trim from
+ The delimiting string at which the trim should end.
+ Part of a string up to (but not including) sDelim, or the full string if sDelim was not found.
+
+
+
+ Returns the "Head" of a string, before and not including the first instance of specified delimiter.
+
+ The string to trim from.
+ The delimiting character at which the trim should end.
+ Part of a string up to (but not including) chDelim, or the full string if chDelim was not found.
+
+
+
+ [Deprecated] Ensures that the target string is iMaxLength or fewer characters
+
+ The string to trim from
+ The maximum number of characters to return
+ Identical to the method.
+ Up to iMaxLength characters from the "Head" of the string.
+
+
+
+ Returns the "Tail" of a string, after (but NOT including) the First instance of specified delimiter.
+
+
+ The string to trim from.
+ The delimiting character after which the text should be returned.
+ Part of a string after (but not including) chDelim, or the full string if chDelim was not found.
+
+
+
+ Returns the "Tail" of a string, after (but NOT including) the First instance of specified search string.
+
+
+ The string to trim from.
+ The delimiting string after which the text should be returned.
+ Part of a string after (but not including) sDelim, or the full string if sDelim was not found.
+
+
+
+ Returns the "Tail" of a string, after (and including) the first instance of specified search string.
+
+ The string to trim from.
+ The delimiting string at which the text should be returned.
+ Part of the string starting with sDelim, or the entire string if sDelim not found.
+
+
+
+ Returns the "Tail" of a string, after (but not including) the Last instance of specified delimiter.
+
+
+ The string to trim from.
+ The delimiting character after which text should be returned.
+ Part of a string after (but not including) the final chDelim, or the full string if chDelim was not found.
+
+
+
+ Returns the "Tail" of a string, after (but not including) the Last instance of specified substring.
+
+
+ The string to trim from.
+ The delimiting string after which text should be returned.
+ Part of a string after (but not including) the final sDelim, or the full string if sDelim was not found.
+
+
+
+ Determines true if a request with the specified HTTP Method/Verb MUST contain a entity body
+
+ The Method/Verb
+ TRUE if the HTTP Method MUST contain a request body.
+
+
+
+ Returns true if a request with the specified HTTP Method/Verb may contain a entity body
+
+ The Method/Verb
+ TRUE if the HTTP Method MAY contain a request body.
+
+
+
+ Detects whether string ends in a file extension generally recognized as an image file extension.
+ Pass lowercase into this function.
+
+ Lowercase string
+ TRUE if string ends with common image file extension
+
+
+
+ Determines if the specified MIME type is "binary" in nature.
+
+ The MIME type
+ TRUE if the MIME type is likely binary in nature
+
+
+
+ Gets a string from a byte-array, stripping a Byte Order Marker preamble if present.
+
+
+ This function really shouldn't need to exist. Why doesn't calling .GetString on a string with a preamble remove the preamble???
+
+ The byte array
+ The encoding to convert from
+ The string
+
+
+
+ Gets (via Headers or Sniff) the provided body's text Encoding. If not found, returns CONFIG.oHeaderEncoding (usually UTF-8). Potentially slow.
+
+ HTTP Headers, ideally containing a Content-Type header with a charset attribute.
+ byte[] containing the entity body.
+ A character encoding, if one could be determined
+
+
+
+ Gets (via Headers or Sniff) the Response Text Encoding. Returns CONFIG.oHeaderEncoding (usually UTF-8) if unknown.
+ Perf: May be quite slow; cache the response
+
+ The session
+ The encoding of the response body
+
+
+
+ Set of encodings for which we'll attempt to sniff. List ordered from longest BOM to shortest
+
+
+
+
+ HtmlEncode a string.
+ In Fiddler itself, this is a simple wrapper for the System.Web.HtmlEncode function.
+ The .NET3.5/4.0 Client Profile doesn't include System.Web, so we must provide our
+ own implementation of HtmlEncode for FiddlerCore's use.
+
+ String to encode
+ String encoded according to the rules of HTML Encoding, or null.
+
+
+
+ This function accepts a string and an offset into the string. It reads one or more %XX sequences from the
+ string converting them into a UTF-8 string based on the input text
+
+
+
+
+
+
+
+ Convert the %-encoded string into a string, interpreting %-escape sequences as UTF-8 characters
+
+ %-encoded string
+ Unencoded string
+
+
+
+ Replaces System.Web.HttpUtility.UrlPathEncode(str).
+
+ String to encode as a URL Path
+ Encoded string
+
+
+
+ Tokenize a string into tokens. Delimits on unquoted whitespace ; quote marks are dropped unless preceded by \ characters.
+ BUG BUG: Doesn't do what you expect with a path like this, due to the trailing slash:
+ prefs set fiddler.config.path.webtestexport.plugins "F:\users\ericlaw\documents\fiddler2\importexport\VSWebTest\"
+ For now, the simple bet is to drop the final backslash (since it'll get put back by other code)
+
+ The string to tokenize
+ An array of strings
+
+
+
+ Pretty-print a Hex view of a byte array. Slow.
+
+ The byte array
+ Number of bytes per line
+ String containing a pretty-printed array
+
+
+
+ Pretty-print a Hex view of a byte array. Slow.
+
+ The byte array
+ Number of bytes per line
+ The maximum number of bytes to pretty-print
+ String containing a pretty-printed array
+
+
+
+ Pretty-print a Hex view of a byte array. Slow.
+
+ The byte array
+ Number of bytes per line
+ The maximum number of bytes to pretty-print
+ Show ASCII text at the end of each line
+ String containing a pretty-printed array
+
+
+
+ Print an byte array to a hex string.
+ Slow.
+
+ Byte array
+ String of hex bytes
+
+
+
+ Create a string in CF_HTML format
+
+ The HTML string
+ The HTML string wrapped with a CF_HTML prelude
+
+
+
+ Returns an integer from the registry, or a default.
+
+ The Registry key in which to find the value.
+ The registry value name.
+ Default to return if the registry key is missing or cannot be used as an integer
+ The retrieved integer, or the default.
+
+
+
+ Save a string to the registry. Correctly handles null Value, saving as String.Empty
+
+ The registry key into which the value will be written.
+ The name of the value.
+ The value to write.
+
+
+
+ Returns an Float from the registry, or a default.
+
+ Registry key in which to find the value.
+ The value name.
+ The default float value if the registry key is missing or cannot be used as a float.
+ Float representing the value, or the default.
+
+
+
+ Get a bool from the registry
+
+ The RegistryKey
+ The Value name
+ The default value
+ Returns an bool from the registry, or bDefault if the registry key is missing or cannot be used as an bool.
+
+
+
+ Maps a MIMEType to a file extension. Note: May hit the registry, so consider the performance implications.
+ Pass only the TYPE (e.g. use oResponse.MIMEType), to ensure no charset info in the string.
+
+ The MIME Type
+ A file extension for the type, or .TXT
+
+
+
+ Use the system registry to find the proper MIME-Type for a given file extension
+
+ Dot-prefixed file extension (e.g. ".js")
+ Content-Type, or null if one cannot be determined
+
+
+
+ Determines if we have a complete chunked response body (RFC2616 Section 3.6.1)
+
+ The session object, used for error reporting
+ The response data stream. Note: We do not touch the POSITION property.
+ The start of the HTTP body to scan for chunk size info
+ Returns the start of the final received/partial chunk
+ End of byte data in stream representing this chunked content, or -1 if error
+ True, if we've found the complete last chunk, false otherwise.
+
+
+
+ Takes a byte array and applies HTTP Chunked Transfer Encoding to it
+
+ The byte array to convert
+ The number of chunks to try to create
+ The byte array with Chunked Transfer Encoding applied
+
+
+
+ Removes HTTP chunked encoding from the data in writeData and returns the resulting array.
+
+ Some chunked data
+ Unchunked data. Warning: Throws on data format errors
+
+
+
+ Returns TRUE if the Array contains nulls. TODO: Extend to check for other chars which are clearly non-Unicode
+
+
+
+
+
+
+ Implements a BlockList for "unknown" encodings that the utilDecode* functions cannot handle
+
+ Transfer-Encoding
+ Content-Encoding
+ TRUE if any encoding is known to be unsupported
+
+
+
+ Remove all encodings from arrBody, based on those specified in the supplied HTTP headers; does NOT touch headers. Throws on errors.
+
+ *Readonly* headers specifying what encodings are applied
+ In/Out array to be modified
+
+
+
+ Decompress an array compressed using an Zlib DEFLATE stream. Not a HTTP Encoding; it's used internally in the PNG format.
+
+ The array to expand
+ byte[] of decompressed data
+
+
+
+ GZIPs a byte-array
+
+ Input byte array
+ byte[] containing a gzip-compressed copy of writeData[]
+
+
+
+ GZIP-Expand function which shows no UI and will throw on error
+
+ TRUE if you want to use Xceed to decompress; false if you want to use System.IO
+ byte[] to decompress
+ A decompressed byte array, or byte[0]. Throws on errors.
+
+
+
+ Expands a GZIP-compressed byte array
+
+ The array to decompress
+ byte[] containing an un-gzipped copy of compressedData[]
+
+
+
+ Compress a byte array using RFC1951 DEFLATE
+
+ Array to compress
+ byte[] containing a DEFLATE'd copy of writeData[]
+
+
+
+ UnDeflate function which shows no UI and will throw on error
+
+ TRUE if you want to use Xceed to decompress; false if you want to use System.IO
+ byte[] to decompress
+ A decompressed byte array, or byte[0]. Throws on errors.
+
+
+
+ Decompress a byte array that was compressed using RFC1951 DEFLATE
+
+ Array to decompress
+ byte[] of decompressed data
+
+
+
+ Compress a byte[] using the bzip2 algorithm
+
+ Array to compress
+ byte[] of data compressed using bzip2
+
+
+
+ Decompress an array compressed using bzip2
+
+ The array to expand
+ byte[] of decompressed data
+
+
+
+ Decompress an array compressed using bzip2
+
+ The array to expand
+ byte[] of decompressed data
+
+
+
+ Try parsing the string for a Hex-formatted int. If it fails, return false and 0 in iOutput.
+
+ The hex number
+ The int value
+ TRUE if the parsing succeeded
+
+
+
+ Returns TRUE if two ORIGIN (scheme+host+port) values are functionally equivalent.
+
+ The first ORIGIN
+ The second ORIGIN
+ The default port, if a port is not specified
+ TRUE if the two origins are equivalent
+
+
+
+ This function cracks a sHostPort string to determine if the address
+ refers to a "local" site
+
+ The string to evaluate, potentially containing a port
+ True if the address is local
+
+
+
+ This function cracks a sHostPort string to determine if the address
+ refers to the local computer
+
+ The string to evaluate, potentially containing a port
+ True if the address is 127.0.0.1, 'localhost', or ::1
+
+
+
+ Determines if the specified Hostname is a either 'localhost' or an IPv4 or IPv6 loopback literal
+
+ Hostname (no port)
+ TRUE if the hostname is equivalent to localhost
+
+
+
+ This function cracks the Hostname/Port combo, removing IPV6 brackets if needed
+
+ Hostname/port combo, like www.foo.com or www.example.com:8888 or [::1]:80
+ The hostname, minus any IPv6 literal brackets, if present
+ Port #, 80 if not specified, -1 if corrupt
+
+
+
+ Given a string/list in the form HOSTNAME:PORT#;HOSTNAME2:PORT2#, this function returns the FIRST IPEndPoint. Defaults to port 80 if not specified.
+ Warning: DNS resolution is slow, so use this function wisely.
+
+ HOSTNAME:PORT#;OPTHOST2:PORT2#
+ An IPEndPoint or null
+
+
+
+ Given a string/list in the form HOSTNAME:PORT#;HOSTNAME2:PORT2#, this function returns all IPEndPoints for ALL listed hosts. Defaults to port 80 if not specified.
+ Warning: DNS resolution is slow, so use this function wisely.
+
+ HOSTNAME:PORT#;OPTHOST2:PORT2#
+ An array of IPEndPoints or null if no results were obtained
+
+
+
+ This function attempts to be a ~fast~ way to return an IP from a hoststring that contains an IP-Literal.
+
+ Hostname
+ IPAddress, or null, if the sHost wasn't an IP-Literal
+
+
+
+ Launch the user's browser to a hyperlink. This function traps exceptions and notifies the user via UI dialog.
+
+ The URL to ShellExecute.
+ TRUE if the ShellExecute call succeeded.
+
+
+
+ Wrapper for Process.Start that shows error messages in the event of failure.
+
+ Fully-qualified filename to execute.
+ Command line parameters to pass.
+ TRUE if the execution succeeded. FALSE if the execution failed. An error message will be shown for any error except the user declining UAC.
+
+
+
+ Run an executable and wait for it to exit, notifying the user of any exceptions.
+
+ Fully-qualified filename of file to execute.
+ Command-line parameters to pass.
+ TRUE if the execution succeeded. FALSE if the error message was shown.
+
+
+
+ Run an executable, wait for it to exit, and return its output as a string.
+ NOTE: Uses CreateProcess, so you cannot launch applications which require Elevation.
+
+ Fully-qualified filename of file to Execute
+ Command-line parameters to pass
+ Exit code returned by the executable
+ String containing the standard-output of the executable
+
+
+
+ Copy a string to the clipboard, notifying the user of any exceptions
+
+ The text to copy
+ TRUE if the copy succeeded
+
+
+
+ Copy an object to the clipboard, notifying the user of any exceptions
+
+ The object to copy
+ True if successful
+
+
+
+ This method prepares a string to be converted into a regular expression by escaping special characters.
+ This method was originally meant for parsing WPAD proxy script strings, but is now used in other places. You should probably be using the Static RegEx.Escape method for most purposes instead.
+
+
+
+
+
+
+
+
+ Determines whether the arrData array STARTS WITH with the supplied arrMagics bytes. Used for Content-Type sniffing.
+
+ The data, or null
+ The MagicBytes to look for
+ TRUE if arrData begins with arrMagics
+
+
+
+ Determines whether the arrData array begins with the supplied sMagics ASCII text. Used for Content-Type sniffing.
+
+ The data, or null
+ The ASCII text to look for
+ TRUE if arrData begins with sMagics (encoded as ASCII octets)
+
+
+
+ Is this HTTPMethod used for RPC-over-HTTPS?
+
+
+
+
+ Determine if a given byte array has the start of a HTTP/1.* 200 response.
+ Useful primarily to determine if a CONNECT request to a proxy returned success.
+
+
+
+
+
+
+ Determine if a given byte array has the start of a HTTP/1.* 200 response.
+ Useful primarily to determine if a CONNECT request to a proxy returned success.
+
+
+
+
+
+
+ For a given process name, returns a bool indicating whether this is a known browser process name.
+
+ The Process name (e.g. "abrowser.exe")
+ Returns true if the process name starts with a common browser process name (e.g. ie, firefox, etc)
+
+
+
+ Ensure that a given path is absolute, if not, applying the root path
+
+
+
+
+
+
+
+ If sFilename is absolute, returns it, otherwise, combines the leaf filename with local response folders hunting for a match.
+ Trims at the first ? character, if any
+
+ Either a fully-qualified path, or a leaf filename
+ File path
+
+
+
+ Format an Exception message, including InnerException message if present.
+
+
+
+
+
+
+ Get a TickCount (milliseconds since system start) as an unsigned 64bit value. On Vista+, uses the GetTickCount64 API that won't rollover,
+ but on XP, this unsigned wrapper moves the rollover point to 49 days of uptime.
+
+ Number of ms since Windows started
+
+
+
+ Returns TRUE if the user is running Elevated. Requires WinXP to Win8
+
+ TRUE if the user is an Admin and the process is Elevated
+
+
+
+ Returns a succinct version of Environment.OSVersion.VersionString
+
+
+
+
+
+ Duplicate a byte array, replacing null with byte[0].
+ Doing this instead of .Clone() because it better handles nulls and it may be faster.
+
+ The array to copy
+ The new array.
+
+
+
+ Returns TRUE if the array is null or contains 0 bytes
+
+ byte[] to test
+
+
+
+
+
+
+
+ True if ClientChatter is non-null and its headers are non-null
+
+
+
+ True if ClientChatter is non-null and its headers are non-null
+
+
+ True if ClientChatter is non-null and its headers are non-null
+
+
+
+ Return a multi-line string describing the NetworkInterfaces[]
+
+
+
+
+
+ Checks a DLL's filename for signals that it doesn't contain extensions.
+ TODO: This is only needed because I wasn't smart enough to require that the assembly be named something like Fiddler.*
+
+ DLL filename
+ TRUE if we should skip this assembly during enumeration
+
+
+
+ URLMon Interop Class
+
+
+
+
+ Set the user-agent string for the current process
+
+ New UA string
+
+
+
+ Query WinINET for the current process' proxy settings. Oddly, there's no way to UrlMkGetSessionOption for the current proxy.
+
+ String of hex suitable for display
+
+
+
+ Configures the current process to use the system proxy for URLMon/WinINET traffic.
+
+
+
+
+ Configures the current process to use no Proxy for URLMon/WinINET traffic.
+
+
+
+
+ Sets the proxy for the current process to the specified list. See http://msdn.microsoft.com/en-us/library/aa383996(VS.85).aspx
+
+ e.g. "127.0.0.1:8888" or "http=insecProxy:80;https=secProxy:444"
+ Semi-colon delimted list of hosts to bypass proxy; use <local> to bypass for Intranet
+
+
+
+ State of the current session
+
+
+
+
+ Object created but nothing's happening yet
+
+
+
+
+ Thread is reading the HTTP Request
+
+
+
+
+ AutoTamperRequest pass 1 (Only used by IAutoTamper)
+
+
+
+
+ User can tamper using Fiddler Inspectors
+
+
+
+
+ AutoTamperRequest pass 2 (Only used by IAutoTamper)
+
+
+
+
+ Thread is sending the Request to the server
+
+
+
+
+ Thread is reading the HTTP Response
+
+
+
+
+ AutoTamperResponse pass 1 (Only used by IAutoTamper)
+
+
+
+
+ User can tamper using Fiddler Inspectors
+
+
+
+
+ AutoTamperResponse pass 2 (Only used by IAutoTamper)
+
+
+
+
+ Sending response to client application
+
+
+
+
+ Session complete
+
+
+
+
+ Session was aborted (client didn't want response, fatal error, etc)
+
+
+
+
+ This enumeration provides the values for the Session object's BitFlags field
+
+
+
+
+ No flags are set
+
+
+
+
+ The request originally arrived with a URL specifying the HTTPS protocol.
+
+
+
+
+ The request originally arrived with a URL specifying the FTP protocol.
+
+
+
+
+ RESERVED FOR FUTURE USE. Do not use.
+
+
+
+
+ The client pipe was reused
+
+
+
+
+ The server pipe was reused
+
+
+
+
+ The request was streamed (e.g. on an RPC_OUT_DATA request)
+
+
+
+
+ The response was streamed
+
+
+
+
+ The request was generated by Fiddler itself (e.g. the Composer tab)
+
+
+
+
+ The response was generated by Fiddler itself (e.g. AutoResponder or utilCreateResponseAndBypassServer)
+
+
+
+
+ This session was loaded from a .SAZ File
+
+
+
+
+ This session was loaded from some other tool
+
+
+
+
+ This request was sent to an upstream (CERN) gateway proxy
+
+
+
+
+ This is a "blind" CONNECT tunnel for HTTPS traffic
+
+
+
+
+ This is a CONNECT tunnel which decrypts HTTPS traffic as it flows through
+
+
+
+
+ This response was served from a client cache, bypassing Fiddler. Fiddler only "sees" this session because other software reported it to Fiddler
+
+
+
+
+ There was a HTTP Protocol violation in the client's request
+
+
+
+
+ There was a HTTP Protocol violation in the server's response
+
+
+
+
+ Response body was dropped, e.g due to fiddler.network.streaming.ForgetStreamedData
+
+
+
+
+ This is a CONNECT tunnel for WebSocket traffic
+
+
+
+
+ This request was sent using the SOCKS protocol
+
+
+
+
+ This class maintains the Proxy Bypass List for the upstream gateway.
+ In the constructor, pass the desired proxy bypass string, as retrieved from WinINET for the Fiddler Options screen.
+ Then, call the IsBypass(sTarget) method to determine if the Gateway should be bypassed
+
+
+
+
+ List of regular expressions for matching against request Scheme://HostPort.
+ NB: This list is either null or contains at least one item.
+
+
+
+
+ Boolean flag indicating whether the bypass list contained a <local> token.
+
+
+
+
+ Pass the desired proxy bypass string retrieved from WinINET.
+
+
+
+
+
+ Given the rules for this bypasslist, should this target bypass the proxy?
+
+ The URI Scheme
+ The Host and PORT
+ True if this request should not be sent to the gateway proxy
+
+
+
+ Convert the string representing the bypass list into an array of rules escaped and ready to be turned into regular expressions
+
+
+
+
+
+ Does the bypassList contain any rules at all?
+
+
+
+
+ Flags that indicate what problems, if any, were encountered in parsing HTTP headers
+
+
+
+
+ There were no problems parsing the HTTP headers
+
+
+
+
+ The HTTP headers ended incorrectly with \n\n
+
+
+
+
+ The HTTP headers ended incorrectly with \n\r\n
+
+
+
+
+ The HTTP headers were malformed.
+
+
+
+
+ The Parser class exposes static methods used to parse strings or byte arrays into HTTP messages.
+
+
+
+
+ Given a byte[] representing a request, determines the offsets of the components of the line. WARNING: Input MUST contain a LF or an exception will be thrown
+
+ Byte array of the request
+ Returns the index of the byte of the URI in the Request line
+ Returns the length of the URI in the Request line
+ Returns the index of the first byte of the name/value header pairs
+
+
+
+ Parse out HTTP Header lines.
+
+ Header collection to update
+ Array of Strings
+ Index into array at which parsing should start
+ String containing any errors encountered
+ TRUE if there were no errors, false otherwise
+
+
+
+ Given a byte array, determines the Headers length
+
+ Input array of data
+ Returns the calculated length of the headers.
+ Returns the calculated start of the response body.
+ Any HTTPHeaderParseWarnings discovered during parsing.
+ True, if the parsing was successful.
+
+
+
+ Parse the HTTP Request into a headers object.
+
+ The HTTP Request string, including *at least the headers* with a trailing CRLFCRLF
+ HTTPRequestHeaders parsed from the string.
+
+
+
+ Parse the HTTP Response into a headers object.
+
+ The HTTP response as a string, including at least the headers.
+ HTTPResponseHeaders parsed from the string.
+
+
+
+ The RASInfo class is used to enumerate Network Connectoids so Fiddler can adjust proxy configuration for all connectoids, not just the DefaultLAN
+
+
+
+
+ Ask RAS for the list of network connectoids. We'll always add "DefaultLAN" to this list as well.
+
+
+
+
+
+ Abstract base class for the ClientPipe and ServerPipe classes. A Pipe represents a connection to either the client or the server, optionally encrypted using SSL/TLS.
+
+
+
+
+ The base socket wrapped in this pipe
+
+
+
+
+ The number of times that this Pipe has been used
+
+
+
+
+ The HTTPS stream wrapped around the base socket
+
+
+
+
+ The display name of this Pipe
+
+
+
+
+ Number of milliseconds to delay each 1024 bytes transmitted
+
+
+
+
+ Create a new pipe, an enhanced wrapper around a socket
+
+ Socket which this pipe wraps
+ Identification string used for debugging purposes
+
+
+
+ Call this method when about to reuse a socket. Currently, increments the socket's UseCount and resets its transmit delay to 0.
+
+ The session identifier of the new session, or zero
+
+
+
+ Sends a byte array through this pipe
+
+ The bytes
+
+
+
+ Sends the data specified in oBytes (between iOffset and iOffset+iCount-1 inclusive) down the pipe.
+
+
+
+
+
+
+
+ Receive bytes from the pipe into the DATA buffer.
+
+ Throws IO exceptions from the socket/stream
+ Array of data read
+ Bytes read
+
+
+
+ Return the raw socket this pipe wraps. Avoid calling this method if at all possible.
+
+ The Socket object this Pipe wraps.
+
+
+
+ Shutdown and close the socket inside this pipe. Eats exceptions.
+
+
+
+
+ Abruptly closes the socket by sending a RST packet
+
+
+
+
+ Return the Connected status of the base socket
+
+
+
+
+ Returns a bool indicating if the socket in this Pipe is CURRENTLY connected and wrapped in a SecureStream
+
+
+
+
+ Returns the SSL/TLS protocol securing this connection
+
+
+
+
+ Return the Remote Port to which this socket is attached.
+
+
+
+
+ Return the Local Port to which the base socket is attached. Note: May return a misleading port if the ISA Firewall Client is in use.
+
+
+
+
+ Returns the remote address to which this Pipe is connected, or 0.0.0.0 on error.
+
+
+
+
+ Gets or sets the transmission delay on this Pipe, used for performance simulation purposes.
+
+
+
+
+ Summary description for frmPrompt.
+
+
+
+
+ Required designer variable.
+
+
+
+
+ GetUserString prompts the user for a string.
+
+ Title of the dialog
+ The prompt text in the dialog
+ The default response
+ If true, will return null if user hits cancel. Else returns sDefault.
+ The user's result, or null if user cancelled and bReturnNullIfCancelled set.
+
+
+
+ Clean up any resources being used.
+
+
+
+
+ Required method for Designer support - do not modify
+ the contents of this method with the code editor.
+
+
+
+
+ To override default certificate handling, your class should implement this interface in an assembly
+ referenced by the fiddler.certmaker.assembly preference; by default, "certmaker.dll" in the application
+ folder is loaded
+
+
+
+
+ Implement ICertificateProvider2 instead
+
+
+
+
+ Return a certificate to secure this traffic. Generally, it's expected that this method WILL create a new certificate if needed.
+
+ Hostname (e.g. "www.example.com")
+ An X509Certificate, or null on error
+
+
+
+ Return the root certificate to which Host Certificates are chained. Generally, it's expected that this method will NOT create a root certificate.
+
+ An X509Certificate, or null on error
+
+
+
+ When this method is called, your extension should create a Root certificate.
+
+ TRUE if the operation was successful
+
+
+
+ When this method is called, your extension should copy the your Root certificate into
+ the user's (or machines's) Root certificate store.
+
+ TRUE if the operation was successful
+
+
+
+ When this method is called, your extension should discard all certificates and
+ clear any certificates that have been added to the user's certificate store.
+
+ TRUE, if all certificates were removed; FALSE if any certificates were preserved
+
+
+
+ When this method is called, your extension should check to see if the User or Machine Root
+ certificate store contains your Root certificate.
+
+ Set to TRUE if StoreLocation.CurrentUser StoreName.Root has the certificate
+ Set to TRUE if StoreLocation.LocalMachine StoreName.Root has the certificate
+ TRUE if either bUserTrusted or bMachineTrusted
+
+
+
+ When this method is called, your extension should discard all certificates and
+ clear any certificates that have been added to the user's certificate store
+
+ TRUE if the root certificate should also be cleared
+ TRUE, if all certificates were removed; FALSE if any certificates were preserved
+
+
+
+ Call this function to cache a certificate in the Certificate Provider
+
+ The hostname to match
+ The certificate that the Provider should later provide when GetCertificateForHost is called
+ True if the request was successful
+
+
+
+ File path pointing to the location of MakeCert.exe
+
+
+
+
+ Cache of previously-generated EE certificates. Thread safety managed by _oRWLock
+
+
+
+
+ Cache of previously-generated Root certificate
+
+
+
+
+ Reader/Writer lock gates access to the certificate cache and generation functions
+
+
+
+
+ Constructor: Simply cache the path to MakeCert
+
+
+
+
+ Find certificates that have the specified full subject.
+
+ The store to search
+ FindBySubject{Distinguished}Name requires a complete match of the SUBJECT, including CN, O, and OU
+ Matching certificates
+
+
+
+ Find certificates that have the specified issuer.
+
+ The store to search
+ FindByIssuer{Distinguished}Name requires a complete match of the SUBJECT, including CN, O, and OU
+ Matching certificates
+
+
+
+ Interface method: Clear the in-memory caches and Windows certificate stores
+
+ TRUE to clear the Root Certificate from the cache and Windows stores
+ TRUE if successful
+
+
+
+ Interface method: Clear the in-memory caches and Windows certificate stores
+
+
+
+
+
+ Use MakeCert to generate a unique self-signed certificate
+
+ TRUE if the Root certificate was generated successfully
+
+
+
+ Get the root certificate from cache or storage, only if it already exists.
+
+
+
+
+
+ Returns an Interception certificate for the specified hostname
+
+ Hostname for the target certificate
+ This method uses a Reader lock when checking the cache and a Writer lock when updating the cache.
+ An Interception Certificate, or NULL
+
+
+
+ Find a certificate from the certificate store, creating a new certificate if it was not found.
+
+ A SubjectCN hostname, of the form www.example.com
+ TRUE if the cert wasn't found in the Windows Certificate store and this function attempted to create it.
+ No locks are acquired by this method itself.
+ A certificate or /null/
+
+
+
+ Find a certificate from the certificate store, if present.
+
+ No locks are acquired by this method itself.
+ A certificate or /null/
+
+
+
+ Updates the Server Certificate cache under the Writer lock
+
+ The target hostname
+ The certificate to cache
+
+
+
+
+ Creates a certificate for ServerAuth. If isRoot is set, designates that this is a self-signed root.
+
+ Uses a reader lock when checking for the Root certificate. Uses a Writer lock when creating a certificate.
+ A string of the form: "www.hostname.com"
+ A boolean indicating if this is a request to create the root certificate
+ Newly-created certificate, or Null
+
+
+
+ The ClientChatter object, exposed as the oRequest object on the Session object, represents a single web request.
+
+
+
+
+ Size of buffer passed to pipe.Receive when reading from the client
+
+
+
+
+ The ClientPipe object which is connected to the client, or null.
+
+
+
+
+ Parsed Headers
+
+
+
+
+ The session object which owns this ClientChatter
+
+
+
+
+ The host pulled from the URI, usually null except while reading/parsing the request
+
+
+
+
+ Buffer holds this request's data as it is read from the pipe.
+
+
+
+
+ Offset to first byte of body in m_requestData
+
+
+
+
+ Optimization: tracks how far we've previously looked when determining iEntityBodyOffset
+
+
+
+
+ Create a ClientChatter object initialized with a set of HTTP headers
+ Called primarily when loading session data from a file.
+
+ The session object which will own this request
+ The string containing the request data
+
+
+
+ Loads a HTTP request from a file rather than a memory stream. TODO: Why not make this public and have a responsebody version?
+
+ The file to load
+ TRUE if the file existed.
+
+
+
+ Based on this session's data, determine the expected Transfer-Size of the request body. See RFC2616 Section 4.4 Message Length.
+ Note, there's currently no support for "multipart/byteranges" requests anywhere in Fiddler.
+
+ Expected Transfer-Size of the body, in bytes.
+
+
+
+ Free Request data. Called by TakeEntity or by ReadRequest method on request failure
+
+
+
+
+ Extract a byte array representing the entity, put any excess bytes back in the socket, delete the requestData stream, and return the entity.
+
+ Byte array containing the entity
+
+
+
+ Send a HTTP/XXX Error Message to the Client, calling FiddlerApplication.BeforeReturningError and DoReturningError in FiddlerScript.
+ Note: This method does not poison either the client or server pipe, so if poisoning is desired, it's the caller's responsibility to do that.
+
+ Response code
+ Response status text
+ Body of the HTTP Response
+
+
+
+ Parse the headers from the requestData buffer.
+ Precondition: Call AFTER having set the correct iEntityBodyOffset.
+
+ Note: This code used to be a lot simpler before, when it used strings instead of byte[]s. Sadly,
+ we've gotta use byte[]s to ensure nothing in the URI gets lost.
+
+ TRUE if successful. Frees arrRequest if successful.
+
+
+
+ This function decides if the request string represents a complete HTTP request
+
+
+
+
+
+ Scans requestData stream for the \r\n\r\n (or variants) sequence
+ which indicates that the header block is complete.
+
+ SIDE EFFECTS:
+ iBodySeekProgress is updated and maintained across calls to this function
+ iEntityBodyOffset is updated if the end of headers is found
+
+ True, if requestData contains a full set of headers
+
+
+
+ Read a complete HTTP Request from the Client.
+
+ TRUE, if a request could be read. FALSE, otherwise.
+
+
+
+ Peek at number of bytes received from the client thus far.
+
+
+
+
+ HTTP Headers sent in the client request, or null.
+
+
+
+
+ Was this request received from a reused client connection?
+
+
+
+
+ Note: This returns the HTTP_HOST header, which may include a trailing port #.
+
+
+
+
+ Simple indexer into the Request Headers object
+
+
+
+
+ The PipePool maintains a collection of connected ServerPipes for reuse
+
+
+
+
+ The Pool itself.
+
+
+
+
+ Time at which a "Clear before" operation was conducted. We store this
+ so that we don't accidentally put any pipes that were in use back into
+ the pool after a clear operation
+
+
+
+
+ Remove any pipes from Stacks if they exceed the age threshold
+ Remove any Stacks from pool if they are empty
+
+
+
+
+ Clear all pooled Pipes, calling .End() on each.
+
+
+
+
+ Return a string representing the Pipes in the Pool
+
+ A string representing the pipes in the pool
+
+
+
+ Get a server connection for reuse.
+
+ The key which identifies the connection to search for. Good syntax is [HTTPS:]HOSTNAME:PORT
+ The ProcessID of the client requesting a Pipe
+ HACK to be removed; the SessionID# of the request
+
+
+
+
+ Store a connection for later use.
+
+ The Pipe to place in the pool
+
+
+
+ A ClientPipe wraps a socket connection to a client application.
+
+
+
+
+ If you previously read more bytes than you needed from this client socket, you can put some back.
+
+ Array of bytes to put back
+
+
+
+ Sets the receiveTimeout based on whether this is a freshly opened client socket or a reused one.
+
+
+
+
+ Returns a semicolon-delimited string describing this ClientPipe
+
+ A semicolon-delimited string
+
+
+
+ Perform a HTTPS Server handshake to the client. Swallows exception and returns false on failure.
+
+
+
+
+
+
+ This function sends the client socket a CONNECT ESTABLISHED, and then performs a HTTPS authentication
+ handshake, with Fiddler acting as the server.
+
+ Hostname Fiddler is pretending to be (NO PORT!)
+ The set of headers to be returned to the client in response to the client's CONNECT tunneling request
+ true if the handshake succeeds
+
+
+
+ ID of the process that opened this socket, assuming that Port Mapping is enabled, and the connection is from the local machine
+
+
+
+
+ Name of the Process referred to by LocalProcessID, or String.Empty if unknown
+
+
+
+
+ Timestamp of either 1> The underlying socket's creation from a .Accept() call, or 2> when this ClientPipe was created.
+
+
+
+
+ The Logger object is a simple event log
+
+
+
+
+ Queue of Messages that are be logged (usually during application startup) until another object has loaded and registered for notification of such Messages
+
+
+
+
+ Creates a Logger object
+
+ True if a queue should be created to store messages during Fiddler's startup
+
+
+
+ Flushes previously-queued messages to the newly attached listener.
+
+
+
+
+ Log a string with specified string formatting
+
+ The format string
+ The arguments to replace in the string
+
+
+
+ Log a string
+
+ The string to log
+
+
+
+ The Event to raise when a string is logged
+
+
+
+
+ EventArgs class for the LogEvent handler
+
+
+
+
+ The String which has been logged
+
+
+
+
+ Fiddler Transcoders allow import and export of Sessions from Fiddler
+
+
+
+
+ Create the FiddlerTranscoders object
+
+
+
+
+ List all of the Transcoder objects that are loaded
+
+
+
+
+
+ Add Import/Export encoders to FiddlerApplication.oTranscoders
+
+ Assembly to import exporters and importers
+ FALSE on obvious errors
+
+
+
+ Add Import/Export encoders to FiddlerApplication.oTranscoders
+
+ Assembly to scan for transcoders
+ FALSE on obvious errors
+
+
+
+ Loads any assembly in the specified path that ends with .dll and does not start with "_", checks that a compatible version requirement was specified,
+ and adds the importer and exporters within to the collection.
+
+ The path to scan for extensions
+
+
+
+ Ensures that Import/Export Transcoders have been loaded
+
+
+
+
+ Returns a TranscoderTuple willing to handle the specified format
+
+ The Format
+ TranscoderTuple, or null
+
+
+
+ Returns a TranscoderTuple willing to handle the specified format
+
+ The Format
+ TranscoderTuple, or null
+
+
+
+ Gets the format list of the specified type and adds that type to the collection.
+
+
+
+ TRUE if any formats were found; FALSE otherwise
+
+
+
+ Clear Importer and Exporter collections
+
+
+
+
+ True if one or more classes implementing ISessionImporter are available.
+
+
+
+
+ True if one or more classes implementing ISessionImporter are available.
+
+
+
+
+ The WebSocket class represents a "tunnel" through a WebSocket shuffles bytes between a client and the server.
+ The class' messages may be deserialized from a SAZ file.
+
+
+
+
+ Should this WebSocket Tunnel parse the WS traffic within into individual messages?
+
+
+
+
+ Writes all of the messages stored in this WebSocket to a stream.
+
+
+
+
+
+
+ Read headers from the stream.
+
+ The Stream from which WebSocketSerializationHeaders should be read
+ The Array of headers, or String[0]
+
+
+
+ Number of bytes received from the client
+
+
+
+
+ Number of bytes received from the server
+
+
+
+
+ Creates a "detached" WebSocket which contains messages loaded from the specified stream
+
+ Session to which the WebSocket messages belong
+ The Stream containing messages, which will be closed upon completion
+
+
+
+ This factory method creates a new WebSocket Tunnel and executes it on a background (non-pooled) thread.
+
+ The Session containing the HTTP CONNECT request
+
+
+
+ Creates a WebSocket tunnel. External callers instead use the CreateTunnel static method.
+
+ The session for which this tunnel was initially created.
+ The client pipe
+ The server pipe
+
+
+
+ This function keeps the Tunnel/Thread alive until it is signaled that the traffic is complete
+
+
+
+
+ Performs cleanup of the WebSocket instance. Call this after the WebSocket closes normally or after abort/exceptions.
+
+
+
+
+ Executes the WebSocket tunnel on a background thread
+
+
+
+
+ Interface Method
+ Close the WebSocket and signal the event to let its service thread die. Also called by oSession.Abort()
+ WARNING: This should not be allowed to throw any exceptions, because it will do so on threads that don't
+ catch them, and this will kill the application.
+
+
+
+
+ When we get a buffer from the client, we push it into the memory stream
+
+
+
+
+ When we get a buffer from the server, we push it into the memory stream
+
+
+
+
+ This method parses the data in strmClientBytes to extact one or more WebSocket messages. It then sends each message
+ through the pipeline.
+
+
+
+ This method parses the data in strmServerBytes to extact one or more WebSocket messages. It then sends each message
+ through the pipeline.
+
+
+
+ Called when we have received data from the local client.
+
+ The result of the asynchronous operation.
+
+
+ Called when we have received data from the remote host. Incoming data will immediately be forwarded to the local client.
+ The result of the asynchronous operation.
+
+
+ Called when we have sent data to the local client.
+ The result of the asynchronous operation.
+
+
+ Called when we have sent data to the remote host.
+ The result of the asynchronous operation.
+
+
+
+ Is this WebSocket open/connected?
+
+
+
+
+ Boolean that determines whether the WebSocket tunnel tracks messages.
+
+
+
+
+ Returns number of bytes sent from the Server to the Client on this WebSocket
+
+
+
+
+ Returns number of bytes sent from the Client to the Server on this WebSocket
+
+
+
+
+ A WebSocketMessage stores a single frame of a single WebSocket message
+ http://tools.ietf.org/html/rfc6455
+
+
+
+
+ Unmasks the first array into the third, using the second as a masking key.
+
+
+
+
+
+
+
+ Masks the first array's data using the key in the second
+
+ The data to be masked
+ A 4-byte obfuscation key, or null.
+
+
+
+ Replaces the WebSocketMessage's payload with the specified string, masking if needed.
+
+
+
+
+
+ Copies the provided byte array over the WebSocketMessage's payload, masking if needed.
+
+
+
+
+
+ Masks the provided array (if necessary) and assigns it to the WebSocketMessage's payload.
+
+ New array of data
+
+
+
+ Return the WebSocketMessage's payload as a string.
+
+
+
+
+
+ Copy the WebSocketMessage's payload into a new Byte Array.
+
+ A new byte array containing the (unmasked) payload.
+
+
+
+ Is this a Request message?
+
+
+
+
+ Was this Message eaten?
+
+
+
+
+ Should this message be paused for tampering?
+ TODO: Not yet implemented
+
+
+
+
+ The WebSocketTimers collection tracks the timestamps for this message
+
+
+
+
+ The raw payload data, which may be masked
+
+
+
+
+ The four-byte payload masking key, if any
+
+
+
+
+ The type of the WebSocket Message's frame
+
+
+
+
+ Timers
+
+
+
+
+ When was this message read from the sender
+
+
+
+
+ When did transmission of this message to the recipient begin
+
+
+
+
+ When did transmission of this message to the recipient end
+
+
+
+
+ Return the timers formatted to be placed in pseudo-headers used in saving the WebSocketMessage to a stream (SAZ)
+
+
+
+
+
+ Utilities for WebSocket interop.
+
+
+
+
+ Servers must indicate that they speak the WebSocket protocol by echo'ing back a SHA1-hash of the
+ client's [Sec-WebSocket-Key] header appended with the magic value [258EAFA5-E914-47DA-95CA-C5AB0DC85B11].
+ This challenge-response is provided in the server's [Sec-WebSocket-Accept] response header.
+
+ The value of the Sec-WebSocket-Key header
+ A value suitable for the server's Sec-WebSocket-Accept header
+
+
+
+ The MockTunnel represents a CONNECT tunnel which was reloaded from a SAZ file.
+
+
+
+
+ The CONFIG object is Fiddler's legacy settings object, introduced before the advent of the Preferences system.
+
+
+
+
+ Cached layout info for columns.
+
+
+
+
+ True if this is a "Viewer" instance of Fiddler that will not persist its settings
+
+
+
+
+ TODO: Why is this defaulted to FALSE? Has been since 2009, probably due to some bug. Should keep better records. (Sigh).
+
+
+
+
+ Boolean controls whether Fiddler should map inbound connections to their original process using IPHLPAPI
+
+
+
+
+ Boolean controls whether Fiddler should attempt to decrypt HTTPS Traffic
+
+
+
+
+ Boolean controls whether Fiddler will attempt to use the Server Name Indicator TLS extension to generate the SubjectCN for certificates
+
+
+
+
+ Returns 127.0.0.1:{ListenPort} or fiddler.network.proxy.RegistrationHostName:{ListenPort}
+
+
+
+
+ Use 128bit AES Encryption when password-protecting .SAZ files. Note that, while this
+ encryption is much stronger than the default encryption algorithm, it is significantly
+ slower to save and load these files, and the Windows Explorer ZIP utility cannot open them.
+
+
+
+
+ SSL/TLS Protocols we allow the client to choose from (when we call AuthenticateAsServer)
+ We allow all protocols by default (Ssl2,Ssl3,Tls1) and also 'Bitwise OR' in the constants for TLS1.1 and TLS1.2 in case we happen to be running on .NET4.5.
+
+
+
+
+ SSL/TLS Protocols we request the server use (when we call AuthenticateAsClient). By default, SSL3 and TLS1 are accepted; we exclude SSL2 so that TLS Extensions may be sent.
+ We do NOT enable TLS1.1 or TLS1.2 by default because many servers will fail if you offer them and unlike browsers, .NET has no fallback code.
+
+
+
+
+ Version information for the Fiddler/FiddlerCore assembly
+
+
+
+
+ Controls whether Fiddler will send traffic to the previously-set system proxy.
+ OBSOLETE. DO NOT USE. see instead.
+
+
+
+
+ The encoding with which HTTP Headers should be parsed. Defaults to UTF8, but may be overridden by specifying a REG_SZ containing the encoding name in the registry key \Fiddler2\HeaderEncoding
+
+
+
+
+ Controls whether Fiddler will reuse server connections for multiple sessions
+
+
+
+
+ Controls whether Fiddler will reuse client connections for multiple sessions
+
+
+
+
+ Controls whether Fiddler should register as the HTTPS proxy
+
+
+
+
+ Controls whether Fiddler should register as the FTP proxy
+
+
+
+
+ Controls whether Fiddler will try to write exceptions to the System Event log. Note: Usually fails due to ACLs on the Event Log.
+
+
+
+
+ Controls whether Fiddler will attempt to log on to the upstream proxy server to download the proxy configuration script
+
+
+
+
+ Controls whether Fiddler will attempt to connect to IPv6 addresses
+
+
+
+
+ Name of connection to which Fiddler should autoattach if MonitorAllConnections is not set
+
+
+
+
+ The username to send to the upstream gateway if the Version Checking webservice request requires authentication
+
+
+
+
+ The password to send to the upstream gateway if the Version Checking webservice request requires authentication
+
+
+
+
+ Set this flag if this is a "temporary" port (E.g. specified on command line) and it shouldn't be overridden in the registry
+
+
+
+
+ Controls whether Certificate-Generation output will be spewed to the Fiddler Log
+
+
+
+
+ Alternative hostname which Fiddler should recognize as an alias for the local machine. The
+ default value of ? will never be usable, as it's the QueryString delimiter
+
+
+
+
+ (Lowercase) Machine Name
+
+
+
+
+ (Lowercase) Machine Domain Name
+
+
+
+
+ List of hostnames for which HTTPS decryption (if enabled) should be skipped
+
+
+
+
+ True if Fiddler should be maximized on restart
+
+
+
+
+ Return a Special URL.
+
+ String constant describing the URL to return. CASE-SENSITIVE!
+ Returns target URL
+
+
+
+ Get a registry path for a named constant
+
+ The path to retrieve [Root, UI, Dynamic, Prefs]
+ The registry path
+
+
+
+ Return an app path, ending in "\" or a filename
+
+ CASE-SENSITIVE
+ The specified filesystem path
+
+
+
+ Ensure that the per-user folders used by Fiddler are present.
+
+
+
+
+ Control which processes have HTTPS traffic decryption enabled
+
+
+
+
+ Port to which Fiddler should forward inbound requests when configured to run as a Reverse Proxy
+
+
+
+
+ On attach, will configure WinINET to bypass Fiddler for these hosts.
+
+
+
+
+ Boolean indicating whether Fiddler will open the listening port exclusively
+
+
+
+
+ Controls whether server certificate errors are ignored when decrypting HTTPS traffic.
+
+
+
+
+ Controls whether notification dialogs and prompts should be shown.
+
+
+
+
+ The port upon which Fiddler is configured to listen.
+
+
+
+
+ Returns the path and filename of the editor used to edit the Rules Javascript file.
+
+
+
+
+ Returns true if Fiddler should permit remote connections. Requires restart.
+
+
+
+
+ Traffic should be sent directly to the server
+
+
+
+
+ Traffic should be sent to a manually-specified proxy
+
+
+
+
+ Traffic should be sent to the System-configured proxy
+
+
+
+
+ Proxy should be automatically detected
+
+
+
+
+ A simple Process Type enumeration used by various filtering features
+
+
+
+
+ Include all Processes
+
+
+
+
+ Processes which appear to be Web Browsers
+
+
+
+
+ Processes which appear to NOT be Web Browsers
+
+
+
+
+ Include only traffic where Process ID isn't known (e.g. remote clients)
+
+
+
+
+ EventArgs for preference-change events. See http://msdn.microsoft.com/en-us/library/ms229011.aspx.
+
+
+
+
+ The name of the preference being added, changed, or removed
+
+
+
+
+ The string value of the preference, or null if the preference is being removed
+
+
+
+
+ Returns TRUE if ValueString=="true", case-insensitively
+
+
+
+
+ The IFiddlerPreferences Interface is exposed by the FiddlerApplication.Prefs object, and enables
+ callers to Add, Update, and Remove preferences, as well as observe changes to the preferences.
+
+
+
+
+ Store a boolean value for a preference
+
+ The named preference
+ The boolean value to store
+
+
+
+ Store an Int32 value for a preference
+
+ The named preference
+ The int32 value to store
+
+
+
+ Store a string value for a preference
+
+ The named preference
+ The string value to store
+
+
+
+ Get a preference's value as a boolean
+
+ The Preference Name
+ The default value for missing or invalid preferences
+ A Boolean
+
+
+
+ Gets a preference's value as a string
+
+ The Preference Name
+ The default value for missing preferences
+ A string
+
+
+
+ Gets a preference's value as a 32-bit integer
+
+ The Preference Name
+ The default value for missing or invalid preferences
+ An integer
+
+
+
+ Removes a named preference from storage
+
+ The name of the preference to remove
+
+
+
+ Add a Watcher that will be notified when a value has changed within the specified prefix.
+
+ The prefix of preferences for which changes are interesting
+ The Event handler to notify
+ Returns the Watcher object added to the notification list
+
+
+
+ Removes a previously-created preference Watcher from the notification queue
+
+ The Watcher to remove
+
+
+
+ Indexer. Returns the value of the preference as a string
+
+ The Preference Name
+ The Preference value as a string, or null
+
+
+
+ The PreferenceBag is used to maintain a threadsafe Key/Value list of preferences, persisted in the registry, and with appropriate eventing when a value changes.
+
+
+
+
+ Load the existing preferences from the Registry into the Preferences bag.
+ Note: Does not fire any events.
+
+
+
+
+ Serialize the existing preferences to the Registry.
+
+
+
+
+ Get a string array of the preference names
+
+ string[] of preference names
+
+
+
+ Gets a preference's value as a string
+
+ The Preference Name
+ The default value if the preference is missing
+ A string
+
+
+
+ Return a bool preference.
+
+ The Preference name
+ The default value to return if the specified preference does not exist
+ The boolean value of the Preference, or the default value
+
+
+
+ Return an Int32 Preference.
+
+ The Preference name
+ The default value to return if the specified preference does not exist
+ The Int32 value of the Preference, or the default value
+
+
+
+ Update or create a string preference.
+
+ The name of the Preference
+ The value to assign to the Preference
+
+
+
+ Update or create a Int32 Preference
+
+ The name of the Preference
+ The value to assign to the Preference
+
+
+
+ Update or create a Boolean preference.
+
+ The name of the Preference
+ The value to assign to the Preference
+
+
+
+ Delete a Preference from the collection.
+
+ The name of the Preference to be removed.
+
+
+
+ Remove all Watchers
+
+
+
+
+ Remove all watchers and write the registry.
+
+
+
+
+ Return a description of the contents of the preference bag
+
+ Multi-line string
+
+
+
+ Return a string-based serialization of the Preferences settings.
+
+ TRUE for a multi-line format with all preferences
+ String
+
+
+
+ Returns a CRLF-delimited string containing all Preferences whose Name case-insensitively contains the specified filter string.
+
+ Partial string to match
+ A string
+
+
+
+ Add a watcher for changes to the specified preference or preference branch.
+
+ Preference branch to monitor, or String.Empty to watch all
+ The EventHandler accepting PrefChangeEventArgs to notify
+ Returns the PrefWatcher object which has been added, store to pass to RemoveWatcher later.
+
+
+
+ Remove a previously attached Watcher
+
+ The previously-specified Watcher
+
+
+
+ This function executes on a single background thread and notifies any registered
+ Watchers of changes in preferences they care about.
+
+ A string containing the name of the Branch that changed
+
+
+
+ Spawn a background thread to notify any interested Watchers of changes to the Target preference branch.
+
+ The arguments to pass to the interested Watchers
+
+
+
+ Returns a string naming the current profile
+
+
+
+
+ Indexer into the Preference collection.
+
+ The name of the Preference to update/create or return.
+ The string value of the preference, or null.
+
+
+
+ A simple struct which contains a Branch identifier and EventHandler
+
+
+
+
+ The HostList allows fast determination of whether a given host is in the list. It supports leading wildcards (e.g. *.foo.com), and the special tokens <local> and <loopback>.
+ Note: List is *not* threadsafe; instead of updating it, construct a new one.
+
+
+
+
+ Generate an empty HostList
+
+
+
+
+ Create a hostlist and assign it an initial set of sites
+
+ List of hostnames, including leading wildcards, and optional port specifier. Special tokens are *, <local>, <nonlocal>, and <loopback>.
+
+
+
+ Clear the HostList
+
+
+
+
+ Clear the List and assign the new string as the contents of the list.
+
+ List of hostnames, including leading wildcards, and optional port specifier. Special tokens are *, <local>, <nonlocal>, and <loopback>.
+ TRUE if the list was constructed without errors
+
+
+
+ Clear the list and assign the new string as the contents of the list.
+
+ List of hostnames, including leading wildcards, and optional port specifier. Special tokens are *, <local>, <nonlocal>, and <loopback>.
+ Outparam string containing list of parsing errors
+ TRUE if the list was constructed without errors
+
+
+
+ Return the current list of rules as a string
+
+ String containing current rules, using "; " as a delimiter between entries
+
+
+
+ Determine if a given Host is in the list
+
+ A Host string, potentially including a port
+ TRUE if the Host's hostname matches a rule in the list
+
+
+
+ Determine if a given Hostname is in the list
+
+ A hostname, NOT including a port
+ TRUE if the hostname matches a rule in the list
+
+
+
+ Determine if a given Host:Port pair matches an entry in the list
+
+ A hostname, NOT including the port
+ The port
+ TRUE if the hostname matches a rule in the list
+
+
+
+ This private tuple allows us to associate a Hostname and a Port
+
+
+
+
+ Port specified in the rule
+
+
+
+
+ Hostname specified in the rule
+
+
+
+
+ Create a new HostPortTuple
+
+
+
+
+ The policy which describes how this pipe may be reused by a later request. Ordered by least restrictive to most.
+
+
+
+
+ The ServerPipe may be freely reused by any subsequent request
+
+
+
+
+ The ServerPipe may be reused only by a subsequent request from the same client process
+
+
+
+
+ The ServerPipe may be reused only by a subsequent request from the same client pipe
+
+
+
+
+ The ServerPipe may not be reused for a subsequent request
+
+
+
+
+ A ServerPipe wraps a socket connection to a server.
+
+
+
+
+ User-controlled list of Certificate Serial #s for which Fiddler should not raise a warning about certificate errors
+
+
+
+
+ DateTime of the completion of the TCP/IP Connection
+
+
+
+
+ TickCount when this Pipe was last placed in a PipePool
+
+
+
+
+ Returns TRUE if this ServerPipe is connected to a Gateway
+
+
+
+
+ Returns TRUE if this ServerPipe is connected to a SOCKS gateway
+
+
+
+
+ The Pooling key used for reusing a previously pooled ServerPipe
+
+
+
+
+ This field, if set, tracks the process ID to which this Pipe is permanently bound; set by MarkAsAuthenticated.
+ NOTE: This isn't actually checked by anyone; instead the PID is added to the POOL Key
+
+
+
+
+ Backing field for the isAuthenticated property
+
+
+
+
+ String containing representation of the server's certificate
+
+
+
+
+ Wraps a socket in a Pipe
+
+ The Socket
+ Pipe's human-readable name
+ True if the Pipe is attached to a gateway
+ The Pooling key used for socket reuse
+
+
+
+ Marks this Pipe as having been authenticated. Depending on the preference "fiddler.network.auth.reusemode" this may impact the reuse policy for this pipe
+
+ The client's process ID, if known.
+
+
+
+ Sets the receiveTimeout based on whether this is a freshly opened server socket or a reused one.
+
+
+
+
+ Returns a semicolon-delimited string describing this ServerPipe
+
+ A semicolon-delimited string
+
+
+
+ Returns the Server's certificate Subject CN
+
+ The CN field from the Subject of the certificate used to secure this HTTPS connection, or null if the connection is unsecure
+
+
+
+ Return a string describing the HTTPS connection security, if this socket is secured
+
+ A string describing the HTTPS connection's security.
+
+
+
+ Returns a string describing how this connection is secured.
+
+
+
+
+
+ Get the Transport Context for the underlying HTTPS connection so that Channel-Binding Tokens work correctly
+
+
+
+
+
+ Get the user's default client cert for authentication; caching if if possible and permitted.
+
+
+
+
+
+ This method is called by the HTTPS Connection establishment to optionally attach a client certificate to the request.
+ Test Page: https://tower.dartmouth.edu/doip/OracleDatabases.jspx https://roaming.officeapps.live.com/rs/roamingsoapservice.svc
+
+
+
+
+
+
+
+
+
+
+ This function secures an existing connection and authenticates as client. This is primarily useful when
+ the socket is connected to a Gateway/Proxy and we had to send a CONNECT and get a HTTP/200 Connected back before
+ we actually secure the socket.
+ http://msdn.microsoft.com/en-us/library/system.net.security.sslstream.aspx
+
+ The CN to use in the certificate
+ Path to client certificate file
+ Key to use in the HTTPS Server connection pool
+ Reference-passed integer which returns the time spent securing the connection
+ TRUE if the connection can be secued
+
+
+
+ Return a Certificate Collection containing certificate from the specified file.
+
+ Path to the certificate. Relative Paths will be absolutified automatically
+ The Certificate collection, or null
+
+
+
+ Policy for reuse of this pipe
+
+
+
+
+ Returns TRUE if there is an underlying, mutually-authenticated HTTPS stream.
+
+
+
+
+ Returns TRUE if this PIPE is marked as having been authenticated using a Connection-Oriented Auth protocol: NTLM, Kerberos, or HTTPS Client Certificate
+
+
+
+
+ Indicates if this pipe is connected to an upstream Proxy.
+
+
+
+
+ Indicates if this pipe is connected to a SOCKS gateway
+
+
+
+
+ Gets the pooling key for this server pipe
+
+
+
+
+ Returns the IPEndPoint to which this socket is connected
+
+
+
+
+ CodeDescription attributes are used to enable the FiddlerScript Editor to describe available methods, properties, fields, and events.
+
+
+
+
+ CodeDescription attributes should be constructed by annotating a property, method, or field.
+
+ The descriptive string which should be displayed for this this property, method, or field
+
+
+
+ The descriptive string which should be displayed for this this property, method, or field
+
+
+
+
+ Flags that can be passed into the Startup method
+
+
+
+
+ No options.
+
+
+
+
+ Register with WinINET as the System Proxy
+
+
+
+
+ Decrypt HTTPS Traffic
+
+
+
+
+ Accept requests from remote computers or devices
+
+
+
+
+ Set this flag to forward requests to any upstream gateway
+
+
+
+
+ Set this flag to set all WinINET connections to use Fiddler, otherwise only the Local LAN is pointed to Fiddler
+
+
+
+
+ Start FiddlerCore with the default set of options (RegisterAsSystemProxy | DecryptSSL | AllowRemoteClients | ChainToUpstreamGateway | MonitorAllConnections | CaptureLocalhostTraffic)
+
+
+
+
+ A simple event handling delegate for functions which accept no parameters.
+
+
+
+
+ An event handling delegate which is called during report calculation with the set of sessions being evaluated.
+
+ The sessions in this report.
+
+
+
+ An event handling delegate which is called as a part of the HTTP pipeline at various stages.
+
+ The Web Session in the pipeline.
+
+
+
+ This class acts as the central point for script/extensions to interact with Fiddler components.
+
+
+
+
+ TRUE if Fiddler is currently shutting down. Suspend all work that won't have side-effects.
+
+
+
+
+ The default certificate used for client authentication
+
+
+
+
+ Fiddler's "Janitor" clears up unneeded resources (e.g. server sockets, DNS entries)
+
+
+
+
+ Underlying Preferences container whose IFiddlerPreferences interface is exposed by the Prefs property
+
+
+
+
+ Gets Fiddler* version info
+
+ A string indicating the build/flavor of the Fiddler* assembly
+
+
+
+ Returns Help/About information.
+
+ Display string describing the current Fiddler instance.
+
+
+
+ Fiddler's core proxy object.
+
+
+
+
+ Fiddler Import/Export Transcoders
+
+
+
+
+ List of "leaked" temporary files to be deleted as Fiddler exits.
+
+
+
+
+ Checks if FiddlerCore is running.
+
+ TRUE if FiddlerCore is started/listening; FALSE otherwise.
+
+
+
+ Checks if FiddlerCore is running and registered as the System Proxy.
+
+ TRUE if FiddlerCore IsStarted AND registered as the system proxy; FALSE otherwise.
+
+
+
+ Recommended way to Start FiddlerCore listening on the specified port
+
+ The port
+ The FiddlerCoreStartupFlags option you want to set; FiddlerCoreStartupFlags.Default is recommended
+
+
+
+ Start the FiddlerCore engine; this overload is NOT RECOMMENDED
+
+
+
+
+
+
+
+ Start the FiddlerCore engine; this overload is NOT RECOMMENDED
+
+ Port to Listen on.
+ Boolean indicating if FiddlerCore should register as the system proxy.
+ Boolean indicating if FiddlerCore should decrypt secure traffic. If true, requires MakeCert.exe in the Application folder.
+ Boolean indicating if FiddlerCore should accept connections from remote computers. Note: You must ensure Firewall is configured to allow such connections to your program.
+
+
+
+ Start a new proxy endpoint instance, listening on the specified port
+
+ The port to listen on
+ TRUE if remote clients should be permitted to connect to this endpoint
+ A Hostname (e.g. EXAMPLE.com) if this endpoint should be treated as a HTTPS Server
+ A Proxy object, or null if unsuccessful
+
+
+
+ Start a new proxy endpoint instance, listening on the specified port
+
+ The port to listen on
+ TRUE if remote clients should be permitted to connect to this endpoint
+ A certificate to return when clients connect, or null
+ A Proxy object, or null if unsuccessful
+
+
+
+ Shuts down the FiddlerCore proxy and disposes it. Note: If there's any traffic in progress while you're calling this method,
+ your background threads are likely to blow up with ObjectDisposedExceptions or NullReferenceExceptions. In many cases, you're
+ better off simply calling oProxy.Detach() and letting the garbage collector clean up when your program exits.
+
+
+
+
+ Notify a listener that a block of a response was read.
+
+ The session for which the response is being read
+ byte buffer (not completely full)
+ bytes set.
+ FALSE if AbortReading was set
+
+
+
+ Notify a listener that a block of a request was read.
+
+ The session for which the response is being read
+ byte buffer (not completely full)
+ bytes set.
+ FALSE if AbortReading was set
+
+
+
+ Export Sessions in the specified format
+
+ Shortname of desired format
+ Sessions to export
+ Options to pass to the ISessionExport interface
+ Your callback event handler, or NULL to allow Fiddler to handle
+ TRUE if successful, FALSE if desired format doesn't exist or other error occurs
+
+
+
+ Calls a Fiddler Session Importer and returns the list of loaded Sessions.
+
+ String naming the Import format, e.g. HTTPArchive
+ Should sessions be added to WebSessions list? (Not meaningful for FiddlerCore)
+ Dictionary of Options to pass to the Transcoder
+ Your callback event handler, or NULL to allow Fiddler to handle
+ Loaded Session[], or null on Failure
+
+
+
+ Reset the SessionID counter to 0. This method can lead to confusing UI, so call sparingly.
+
+
+
+
+ Report an exception to the user.
+
+ The Exception
+ The Title of the dialog
+
+
+
+ Report an exception to the user.
+
+ The Exception
+ The Title of the dialog
+ The intro text to show. If null or empty, the default "Fiddler has encountered an unexpected... " message is shown.
+
+
+
+ Show the user a message when an HTTP Error was encountered
+
+ Session with error
+ Set to true to prevent pooling/reuse of client connection
+ The SessionFlag which should be set to log this violation
+ Set to true to prevent pooling/reuse of server connection
+ Information about the problem
+
+
+
+ We really don't want this method to get inlined, because that would cause the Xceed DLLs to get loaded in the Main() function instead
+ of when _SetXceedLicenseKeys is called; that, in turn, would delay the SplashScreen.
+
+
+
+
+ Used to track errors with addons.
+
+
+
+
+
+
+ Record that a temporary file was created and handed to an external tool. We'll do our best to delete this file on exit.
+
+ The filename of the file to be deleted
+
+
+
+ Clean up any Temporary files that were created
+
+
+
+
+ Fiddler's logging system
+
+
+
+
+ Fiddler's Preferences collection. Learn more at http://fiddler.wikidot.com/prefs
+
+
+
+
+ This event fires each time FiddlerCore reads data from network for the server's response. Note that this data
+ is not formatted in any way, and must be parsed by the recipient.
+
+
+
+
+ This event fires each time FiddlerCore reads data from network for the client's request. Note that this data
+ is not formatted in any way, and must be parsed by the recipient.
+
+
+
+
+ This event fires when a client request is received by Fiddler
+
+
+
+
+ This event fires when a server response is received by Fiddler
+
+
+
+
+ This event fires when Request Headers are available
+
+
+
+
+ This event fires when Response Headers are available
+
+
+
+
+ This event fires when an error response is generated by Fiddler
+
+
+
+
+ This event fires when a session has been completed
+
+
+
+
+ Sync this event to be notified when FiddlerCore has attached as the system proxy.")]
+
+
+
+
+ Sync this event to be notified when FiddlerCore has detached as the system proxy.
+
+
+
+
+ EventArgs class for the OnNotification handler
+
+
+
+
+ The string message of the notification
+
+
+
+
+ Enumeration of possible responses specified by the ValidateServerCertificateEventArgs as modified by FiddlerApplication's OnValidateServerCertificate event
+
+
+
+
+ The certificate will be considered valid if CertificatePolicyErrors == SslPolicyErrors.None, otherwise the certificate will be invalid unless the user manually allows the certificate.
+
+
+
+
+ The certificate will be confirmed with the user even if CertificatePolicyErrors == SslPolicyErrors.None.
+ Note: FiddlerCore does not support user-prompting and will always treat this status as ForceInvalid.
+
+
+
+
+ Force the certificate to be considered Valid, regardless of the value of CertificatePolicyErrors.
+
+
+
+
+ Force the certificate to be considered Invalid, regardless of the value of CertificatePolicyErrors.
+
+
+
+
+ These EventArgs are passed to the FiddlerApplication.OnValidateServerCertificate event handler when a server-provided HTTPS certificate is evaluated
+
+
+
+
+ EventArgs for the ValidateServerCertificateEvent that allows host to override default certificate handling policy
+
+ The session
+ The CN expected for this session
+ The certificate provided by the server
+ The certificate chain of that certificate
+ Errors from default validation
+
+
+
+ The port to which this request was targeted
+
+
+
+
+ The SubjectCN (e.g. Hostname) that should be expected on this HTTPS connection, based on the request's Host property.
+
+
+
+
+ The Session for which a HTTPS certificate was received.
+
+
+
+
+ The server's certificate chain.
+
+
+
+
+ The SslPolicyErrors found during default certificate evaluation.
+
+
+
+
+ Set this property to override the certificate validity
+
+
+
+
+ The X509Certificate provided by the server to vouch for its authenticity
+
+
+
+
+ These EventArgs are constructed when FiddlerApplication.OnClearCache is called.
+
+
+
+
+ Constructs the Event Args
+
+ Should Cache Files be cleared?
+ Should Cookies be cleared?
+
+
+
+ True if the user wants cache files to be cleared
+
+
+
+
+ True if the user wants cookies to be cleared
+
+
+
+
+ When the FiddlerApplication.OnReadResponseBuffer event fires, the raw bytes are available via this object.
+
+
+
+
+ Set to TRUE to request that upload or download process be aborted as soon as convenient
+
+
+
+
+ Session for which this responseRead is occurring
+
+
+
+
+ Byte buffer returned from read. Note: Always of fixed size, check iCountOfBytes to see which bytes were set
+
+
+
+
+ Count of latest read from Socket. If less than 1, response was ended.
+
+
+
+
+ Cache of Hostname->Address mappings
+
+
+
+
+ Number of milliseconds that a DNS cache entry may be reused without validation.
+
+
+
+
+ Maximum number of A/AAAA records to cache for DNS entries.
+ Beware: Changing this number changes how many IP-failovers Fiddler will perform if fiddler.network.dns.fallback is set,
+ and increasing the number will consume more memory in the cache.
+
+
+
+
+ Clear the DNS Cache. Called by the NetworkChange event handler in the oProxy object
+
+
+
+
+ Remove all expired DNSCache entries; called by the Janitor
+
+
+
+
+ Show the contents of the DNS Resolver cache
+
+
+
+
+
+ Gets first available IP Address from DNS. Throws if address not found!
+
+ String containing the host
+ True to use Fiddler's DNS cache.
+ IPAddress of target, if found.
+
+
+
+ Gets IP Addresses for host from DNS. Throws if address not found!
+
+ String containing the host
+ True to use Fiddler's DNS cache.
+ The Timers object to which the DNS lookup time should be stored, or null
+ List of IPAddresses of target, if any found.
+
+
+
+ Trim an address list, removing the duplicate entries, any IPv6-entries if IPv6 is disabled,
+ and entries beyond the COUNT_MAX_A_RECORDS limit.
+
+ The list to filter
+ A filtered address list
+
+
+
+ A DNSCacheEntry holds a cached resolution from the DNS
+
+
+
+
+ TickCount of this record's creation
+
+
+
+
+ IPAddresses for this hostname
+
+
+
+
+ Construct a new cache entry
+
+ The address information to add to the cache
+
+
+
+ This class is used to find and create certificates for use in HTTPS interception.
+ The default implementation (DefaultCertProvider object) uses the Windows Certificate store,
+ but if a plugin ICertificateProvider is provided, it is used instead.
+
+
+
+
+ Enables specification of a delegate certificate provider that generates certificates for HTTPS interception.
+
+
+
+
+ Ensures that the Certificate Generator is ready.
+
+
+
+
+ Load a delegate Certificate Provider
+
+ The provider, or null
+
+
+
+ Removes Fiddler-generated certificates from the Windows certificate store
+
+
+
+
+ Removes Fiddler-generated certificates from the Windows certificate store
+
+ Indicates whether Root certificates should also be cleaned up
+
+
+
+ Returns the Root certificate that Fiddler uses to generate per-site certificates used for HTTPS interception.
+
+ Returns the root certificate, if present, or null if the root certificate does not exist.
+
+
+
+ Find a certificate from the certificate store.
+
+ A string of the form: "www.hostname.com"
+ A certificate or /null/
+
+
+
+ Store an override Certificate in the Certificate Maker to return later.
+
+ The hostname for which this certificate should be returned.
+ The X509Certificate2 with attached Private Key
+ TRUE if the Certificate Provider succeeded. FALSE if Provider doesn't support overrides. THROWS if Certificate lacked Private Key.
+
+
+
+ Store an override Certificate in the Certificate Maker to return later.
+
+ The hostname for which this certificate should be returned.
+ The filename of the PFX file containing the certificate and private key
+ The password for the PFX file
+
+
+
+ Determine if the self-signed root certificate exists
+
+ True if the Root certificate returned from GetRootCertificate is non-null, False otherwise.
+
+
+
+ Is Fiddler's root certificate in the Root store?
+
+ TRUE if so
+
+
+
+ Is Fiddler's root certificate in the Machine Root store?
+
+ TRUE if so
+
+
+
+ Create a self-signed certificate to use for HTTPS interception
+
+ TRUE if successful
+
+
+
+ Finds the Fiddler root certificate and prompts the user to add it to the TRUSTED store
+
+ True if successful
+
+
+
+ Dispose of the Certificate Provider, if any.
+
+
+
+
+ This class allows fast-lookup of a ProcessName from a ProcessID.
+
+
+
+
+ Static constructur which registers for cleanup
+
+
+
+
+ Prune the cache of expiring PIDs
+
+
+
+
+ Map a Process ID (PID) to a Process Name
+
+ The PID
+ A Process Name (e.g. IEXPLORE.EXE) or String.Empty
+
+
+
+ Structure mapping a Process ID (PID) to a ProcessName
+
+
+
+
+ The TickCount when this entry was created
+
+
+
+
+ The ProcessName (e.g. IEXPLORE.EXE)
+
+
+
+
+ Create a PID->ProcessName mapping
+
+ The ProcessName (e.g. IEXPLORE.EXE)
+
+
+
+ This class encodes and decodes JSON text http://www.json.org/
+ JSON uses Arrays and Objects, similar to DotNet datatypes ArrayList and Hashtable.
+ All numbers are parsed to doubles.
+
+
+
+
+ Parses the JSON string into an object
+
+ A JSON string.
+ An ArrayList, a Hashtable, a double, a string, null, true, or false
+
+
+
+
+
+
+
+
+
+
+
+ Similar to ParseString, but exits at the first whitespace or non-identifier character
+
+
+
+
+
+
+
+ Gets the character index of the end of the JavaScript number we're currently parsing.
+ Numbers are tricky because of exponential notation, etc.
+
+
+
+
+
+
+
+ Returns TRUE if this character might be the valid start of a JavaScript variable identifier
+
+
+ TODO: See http://stackoverflow.com/questions/1661197/valid-characters-for-javascript-variable-names to see how
+ this method doesn't account for all valid variable names, just the most reasonable ones
+ The character to test
+ TRUE if the character may start a JavaScript identifier
+
+
+
+ Returns TRUE if this character may validly appear within a JavaScript variable identifier.
+ TODO: See comment on isValidIdentifierStart() for details about how this is incomplete
+
+ The character to test
+ TRUE if the character may appear within a JavaScript identifier
+
+
+
+ Converts an IDictionary or IList object graph into a JSON string
+
+ A Hashtable or ArrayList
+ A JSON encoded string, or null if object 'json' is not serializable
+
+
+
+ Determines if a given object is numeric in any way
+ (can be integer, double, etc). C# has no pretty way to do this.
+ Some were playing with the ValueType class, but the code below works fine.
+
+
+
+
+ Wrapper around JSON Parse output; needed because JScript.NET does not support OUT Parameters
+
+
+
+
+ Index of the last error in the stream
+
+
+
+
+ Warnings found while parsing JSON
+
+
+
+
+ This token is a JavaScript Identifier that was not properly quoted as it should have been.
+
+
+
+
+ The WinHTTPAutoProxy class is used to handle upstream gateways when the client was configured to use WPAD or an Proxy AutoConfig (PAC) script.
+
+
+
+
+ Indication as to whether AutoProxy information is valid. 0=Unknown/Enabled; 1=Valid/Enabled; -1=Invalid/Disabled
+
+
+
+
+ Returns a string containing the currently selected autoproxy options
+
+
+
+
+
+ Get WPAD-discovered URL for display purposes (e.g. Help> About); note that we don't actually use this when determining the gateway,
+ instead relying on the WinHTTPGetProxyForUrl function to do this work for us.
+
+ A WPAD url, if found, or String.Empty
+
+
+
+ Return gateway endpoint for requested Url. TODO: Add caching layer! TODO: Support multiple results?
+
+ The URL for which the gateway should be determined
+ The Endpoint of the Gateway, or null
+ TRUE if WinHttpGetProxyForUrl succeeded
+
+
+
+ Close the WinHTTP Session handle
+
+
+
+
+ Note: Be sure to use the same hSession to prevent redownload of the proxy script
+
+
+
+
+ Set to true to send Negotiate creds when challenged to download the script
+
+
+
+
+ The DisplayName for this Connection
+
+
+
+
+ Is this Connectoid expected to be pointed at Fiddler?
+
+
+
+
+ The proxy settings collected from this connection before Fiddler was attached.
+
+
+
+
+ The WinINET Connectoids class contains the RAS/WinINET "connectoids" seen inside IE's Tools > Internet Options > Connections.
+ This class exposes methods to retrieve and update the proxy information for each connectoid in the list.
+
+
+ TODO: The methods of the class are not thread-safe and probably should be.
+ TODO: Need to refactor visibility here. Right now, _oConnectoids is (internal) instead of (private) because the
+ Options dialog iterates the list. And about:connectoids wants access too. Eventually ought to wrap as a ReadOnlyCollection getter
+
+
+
+
+ Dictionary of all Connectoids, indexed by the Connectoid's Name
+
+
+
+
+ Expensive Call. Enumerates all Connectoids using the RAS APIs, then determines the proxy information
+ for each connectoid.
+
+
+
+
+ Return the configured default connectoid's proxy information.
+
+ Either proxy information from "DefaultLAN" or the user-specified connectoid
+
+
+
+ Called when direct Registry groveling determines that the Default LAN connection's proxy was changed but InternetQueryOption
+ hasn't yet noticed.
+
+
+
+
+ Enumerates all of the connectoids and determines if the bIsHooked field is incorrect. If so, correct the value
+ and return TRUE to indicate that work was done.
+
+ The Proxy:Port string to look for (e.g. Config.FiddlerListenHostPort)
+ TRUE if any of the connectoids' Hook state was inaccurate.
+
+
+
+ Updates all (or CONFIG.sHookConnectionNamed-specified) connectoids to point at the argument-provided proxy information.
+
+ The proxy info to set into the Connectoid
+ TRUE if updating at least one connectoid was successful
+
+
+
+ Restore original proxy settings for any connectoid we changed.
+
+ FALSE if any connectoids failed to unhook
+
+
+
+ Map a local port number to the originating process ID
+
+ The local port number
+ The originating process ID
+
+
+
+ Calls the GetExtendedTcpTable function to map a port to a process ID.
+ This function is (over) optimized for performance.
+
+ Client port
+ AF_INET or AF_INET6
+ PID, if found, or 0
+
+
+
+ Given a local port number, uses GetExtendedTcpTable to find the originating process ID.
+ First checks the IPv4 connections, then looks at IPv6 connections.
+
+ Client applications' port
+ ProcessID, or 0 if not found
+
+
+
+ Enumeration of possible queries that can be issued using GetExtendedTcpTable
+ http://msdn2.microsoft.com/en-us/library/aa366386.aspx
+
+
+
+
+ The ServerChatter object is responsible for transmitting the Request to the destination server and retrieving its Response.
+
+
+
+
+ Size of buffer passed to pipe.Receive when reading from the server
+
+
+
+
+ The pipeServer represents Fiddler's connection to the server.
+
+
+
+
+ The session to which this ServerChatter belongs
+
+
+
+
+ The inbound headers on this response
+
+
+
+
+ Indicates whether this request was sent to the Gateway.
+ Session should have SessionFlags.SentToGateway set.
+
+
+
+
+ Buffer holds this response's data as it is read from the pipe.
+
+
+
+
+ The total count of bytes read for this response. Typically equals m_responseData.Length unless log-drop-response-body flag is set and
+ Streaming mode is enabled, in which case it will be larger since the m_responseData is cleared after every read.
+
+
+
+
+ Pointer to first byte of Entity body (or to the start of the next set of headers in the case where there's a HTTP/1xx intermediate header)
+ Note: This gets reset to 0 if we're streaming and dropping the response body.
+
+
+
+
+ Optimization: tracks how far we've looked into the Request when determining iEntityBodyOffset
+
+
+
+
+ True if HTTP Response headers have been returned to the client.
+
+
+
+
+ Indicates how much of _responseData buffer has already been streamed to the client
+
+
+
+
+ Position in responseData of the start of the latest parsed chunk size information
+
+
+
+
+ Peek at the current response body and return it as an array
+
+ The response body as an array, or byte[0]
+
+
+
+ Create a new ServerChatter object.
+
+
+
+
+
+ Create a ServerChatter object and initialize its headers from the specified string
+
+
+
+
+
+
+ Clear the current object and start over
+
+ If TRUE, allocates a buffer (m_responseData) to read from a pipe. If FALSE, nulls m_responseData.
+
+
+
+ Scans responseData stream for the \r\n\r\n (or variants) sequence
+ which indicates that the header block is complete.
+
+ SIDE EFFECTS:
+ iBodySeekProgress is updated and maintained across calls to this function
+ iEntityBodyOffset is updated if the end of headers is found
+
+ True, if responseData contains a full set of headers
+
+
+
+ Parse the HTTP Response into Headers and Body.
+
+
+
+
+
+ Attempts to get Headers from the stream. If a HTTP/100 Continue block is present, it is removed and ignored.
+
+
+
+
+ Deletes a single header block (at this point, always a HTTP/1xx header block) from the Response stream
+ and adjusts all header-reading state to start over from the top of the stream. If the fiddler.network.leakhttp1xx preference is TRUE,
+ then the 1xx message will have been leaked before calling this method.
+
+
+
+
+ Adjusts PipeServer's ReusePolicy if response headers require closure. Then calls _detachServerPipe()
+
+
+
+
+ Queues or End()s the ServerPipe, depending on its ReusePolicy
+
+
+
+
+ Determines whether a given PIPE is suitable for this session based on this session's target, PID, etc.
+
+ The Client Process ID, if any
+
+
+ TRUE if the connection should be used, FALSE otherwise
+
+
+
+ Connect to the Server or Gateway
+ Note that HTTPS Tunnels use a different code path.
+
+ Note that this function is crazy complicated due to the intricacies of socket reuse. We want to avoid
+ redundant DNS lookups etc, and we need to be sensitive to the fact that the Gateway can change from request to request.
+
+ TODO: Move this into the Pipe code and into the new PipePool. probably should be a static that returns a pipe?
+
+ TRUE, if pipeServer was assigned a connection to the target server
+
+
+
+ Performs a SOCKSv4A handshake on the socket
+
+
+
+
+
+
+
+
+ TODO: This entire function needs to go away. What we really want to do is generate a new Session that is a CONNECT tunnel and
+ pass it through the normal request processing pipeline. That allows us to automatically authenticate using the user's Windows
+ credentials.
+
+ Sends a CONNECT to the specified socket acting as a gateway proxy and waits for a 200 OK response. This method is used when Fiddler needs
+ a HTTPS Connection through a proxy but the client didn't establish one (e.g. the Request Composer). Note: May THROW
+
+ The Socket
+ The host to which the gateway should connect
+ The port to which the gateway should connect
+ The HTTPRequestHeaders from the original request
+ TRUE if a 200 OK was received, FALSE if something else was received, THROWS EXCEPTION on network errors
+
+
+
+ Given an address list and port, attempts to create a socket to the first responding host in the list (retrying via DNS Failover if needed).
+
+ IPEndpoints to attempt to reach
+ Session object to annotate with timings and errors
+ Connected Socket. Throws Exceptions on errors.
+
+
+
+ Sends the HTTP Request to the upstream server or proxy. If the request is a CONNECT and there's no
+ gateway, this method ~only~ establishes the connection to the target, but does NOT send a request.
+
+ True if connection and send succeeded, False otherwise
+
+
+
+ Replaces body with an error message
+
+ Error to send if client was remote
+ Error to send if cilent was local
+
+
+
+ Loads a HTTP response from a file
+
+ The name of the file from which a response should be loaded
+ False if the file wasn't found. Throws on other errors.
+
+
+
+ Reads the response from the Server Pipe.
+
+
+
+
+
+ Leak the current bytes of the response to client. We wait for the full header
+ set before starting to stream for a variety of impossible-to-change reasons.
+
+ Returns TRUE if response bytes were leaked, false otherwise (e.g. write error)
+
+
+
+ Get the MIME type (sans Character set or other attributes) from the HTTP Content-Type response header, or String.Empty if missing.
+
+
+
+
+ Peek at number of bytes downloaded thus far.
+
+
+
+
+ DEPRECATED: You should use the Timers object on the Session object instead.
+ The number of milliseconds between the start of sending the request to the server to the first byte of the server's response
+
+
+
+
+ DEPRECATED: You should use the Timers object on the Session object instead.
+ The number of milliseconds between the start of sending the request to the server to the last byte of the server's response.
+
+
+
+
+ Was this request forwarded to a gateway?
+
+
+
+
+ Was this request serviced from a reused server connection?
+
+
+
+
+ The HTTP headers of the server's response
+
+
+
+
+ Simple indexer into the Response Headers object
+
+
+
+
+ HTTP Response headers object
+
+
+
+
+ Base class for RequestHeaders and ResponseHeaders
+
+
+
+
+ Text encoding to be used when converting this header object to/from a byte array
+
+
+
+
+ HTTP version (e.g. HTTP/1.1)
+
+
+
+
+ Storage for individual HTTPHeaderItems in this header collection
+
+
+
+
+ Get byte count of this HTTP header instance.
+
+ Byte Count
+
+
+
+ Number of HTTP headers
+
+ Number of HTTP headers
+
+
+
+ Returns all instances of the named header
+
+ Header name
+ List of instances of the named header
+
+
+
+ Returns the count of instances of the named header
+
+ Header name
+ Count of instances of the named header
+
+
+
+ Enumerator for HTTPHeader storage collection
+
+ Enumerator
+
+
+
+ Adds a new header containing the specified name and value.
+
+ Name of the header to add.
+ Value of the header.
+ Returns the newly-created HTTPHeaderItem.
+
+
+
+ Determines if the Headers collection contains a header of the specified name, with any value.
+
+ The name of the header to check. (case insensitive)
+ True, if the header exists.
+
+
+
+ Returns the Value from a token in the header. Correctly handles double-quoted strings. Requires semicolon for delimiting tokens
+
+ Name of the header
+ Name of the token
+ Value of the token if present; otherwise, null
+
+
+
+ Determines if the Headers collection contains one or more headers of the specified name, and sHeaderValue is part of one of those Headers' value.
+
+ The name of the header to check. (case insensitive)
+ The partial header value. (case insensitive)
+ True if the header is found and the value case-insensitively contains the parameter
+
+
+
+ Determines if the Headers collection contains a header of the specified name, and sHeaderValue=Header's value. Similar to a case-insensitive version of: headers[sHeaderName]==sHeaderValue, although it checks all instances of the named header.
+
+ The name of the header to check. (case insensitive)
+ The full header value. (case insensitive)
+ True if the header is found and the value case-insensitively matches the parameter
+
+
+
+ Removes all headers from the header collection which have the specified name.
+
+ The name of the header to remove. (case insensitive)
+
+
+
+ Removes all headers from the header collection which have the specified names.
+
+ Array of names of headers to remove. (case insensitive)
+
+
+
+ Removes a HTTPHeader item from the collection
+
+ The HTTPHeader item to be removed
+
+
+
+ Removes all HTTPHeader items from the collection
+
+
+
+
+ Renames all headers in the header collection which have the specified name.
+
+ The name of the header to rename. (case insensitive)
+ The new name for the header.
+ True if one or more replacements were made.
+
+
+
+ Gets or sets the value of a header. In the case of Gets, the value of the first header of that name is returned.
+ If the header does not exist, returns null.
+ In the case of Sets, the value of the first header of that name is updated.
+ If the header does not exist, it is added.
+
+
+
+
+ Indexer property. Returns HTTPHeaderItem by index. Throws Exception if index out of bounds
+
+
+
+
+ Clone this HTTPResponseHeaders object and return the result cast to an Object
+
+ The new response headers object, cast to an object
+
+
+
+ Status code from HTTP Response. If setting, also set HTTPResponseStatus too!
+
+
+
+
+ Status text from HTTP Response (e.g. '200 OK').
+
+
+
+
+ Constructor for HTTP Response headers object
+
+
+
+
+ Constructor for HTTP Response headers object
+
+ Text encoding to be used for this set of Headers when converting to a byte array
+
+
+
+ Returns a byte array representing the HTTP headers.
+
+ TRUE if the response status line should be included
+ TRUE if there should be a trailing \r\n byte sequence included
+ Byte[] containing the headers
+
+
+
+ Returns a string containing http headers
+
+ TRUE if the response status line should be included
+ TRUE if there should be a trailing CRLF included
+ String containing http headers
+
+
+
+ Returns a string containing the http headers
+
+
+ Returns a string containing http headers with a status line but no trailing CRLF
+
+
+
+
+ Parses a string and assigns the headers parsed to this object
+
+ The header string
+ TRUE if the operation succeeded, false otherwise
+
+
+
+ HTTP Request headers object
+
+
+
+
+ Clones the HTTP request headers
+
+ The new HTTPRequestHeaders object, cast to an object
+
+
+
+ The HTTP Method (e.g. GET, POST, etc)
+
+
+
+
+ Constructor for HTTP Request headers object
+
+
+
+
+ Constructor for HTTP Request headers object
+
+ Text encoding to be used for this set of Headers when converting to a byte array
+
+
+
+ Parses a string and assigns the headers parsed to this object
+
+ The header string
+ TRUE if the operation succeeded, false otherwise
+
+
+
+ Returns a byte array representing the HTTP headers.
+
+ TRUE if the HTTP REQUEST line (method+path+httpversion) should be included
+ TRUE if there should be a trailing \r\n byte sequence included
+ TRUE if the SCHEME and HOST should be included in the HTTP REQUEST LINE
+ The HTTP headers as a byte[]
+
+
+
+ Returns a string representing the HTTP headers.
+
+ TRUE if the HTTP REQUEST line (method+path+httpversion) should be included
+ TRUE if there should be a trailing CRLF sequence included
+ TRUE if the SCHEME and HOST should be included in the HTTP REQUEST LINE (Automatically set to FALSE for CONNECT requests)
+ The HTTP headers as a string.
+
+
+
+ Returns a string representing the HTTP headers, without the SCHEME+HOST in the HTTP REQUEST line
+
+ TRUE if the HTTP REQUEST line (method+path+httpversion) should be included
+ TRUE if there should be a trailing CRLF sequence included
+ The header string
+
+
+
+ Returns a string representing the HTTP headers, without the SCHEME+HOST in the HTTP request line, and no trailing CRLF
+
+ The header string
+
+
+
+ The (lowercased) URI scheme for this request (https, http, or ftp)
+
+
+
+
+ Username:Password info for FTP URLs. (either null or "user:pass@")
+
+
+
+
+ Get or set the request path as a string
+
+
+
+
+ Get or set the request path as a byte array
+
+
+
+
+ Represents a single HTTP header
+
+
+
+
+ Clones a single HTTP header and returns the clone cast to an object
+
+ HTTPHeader Name: Value pair, cast to an object
+
+
+
+ The name of the HTTP header
+
+
+
+
+ The value of the HTTP header
+
+
+
+
+ Creates a new HTTP Header item
+
+ Header name
+ Header value
+
+
+
+ Return a string of the form "NAME: VALUE"
+
+ "NAME: VALUE" Header string
+
+
+
+ A SessionTimers object holds timing information about a single Session.
+
+
+
+
+ The time at which the client's HTTP connection to Fiddler was established
+
+
+
+
+ The time at which the request's first Send() to Fiddler completes
+
+
+
+
+ The time at which the request headers were received
+
+
+
+
+ The time at which the request to Fiddler completes (aka RequestLastWrite)
+
+
+
+
+ The time at which the server connection has been established
+
+
+
+
+ The time at which Fiddler begins sending the HTTP request to the server (FiddlerRequestFirstSend)
+
+
+
+
+ The time at which Fiddler has completed sending the HTTP request to the server (FiddlerRequestLastSend).
+ BUG: Should be named "FiddlerEndRequest".
+ NOTE: Value here is often misleading due to buffering inside WinSock's send() call.
+
+
+
+
+ The time at which Fiddler receives the first byte of the server's response (ServerResponseFirstRead)
+
+
+
+
+ The time at which Fiddler received the server's headers
+
+
+
+
+ The time at which Fiddler has completed receipt of the server's response (ServerResponseLastRead)
+
+
+
+
+ The time at which Fiddler has begun sending the Response to the client (ClientResponseFirstSend)
+
+
+
+
+ The time at which Fiddler has completed sending the Response to the client (ClientResponseLastSend)
+
+
+
+
+ The number of milliseconds spent determining which gateway should be used to handle this request
+ (Should be mutually exclusive to DNSTime!=0)
+
+
+
+
+ The number of milliseconds spent waiting for DNS
+
+
+
+
+ The number of milliseconds spent waiting for the server TCP/IP connection establishment
+
+
+
+
+ The number of milliseconds elapsed while performing the HTTPS handshake with the server
+
+
+
+
+ Override of ToString shows timer info in a fancy format
+
+ Timing information as a string
+
+
+
+ Override of ToString shows timer info in a fancy format
+
+ TRUE if the result can contain linebreaks; false if comma-delimited format preferred
+ Timing information as a string
+
+
+
+ Enables High-Resolution timers, which are bad for battery-life but good for the accuracy of timestamps.
+ See http://technet.microsoft.com/en-us/sysinternals/bb897568 for the ClockRes utility that shows current clock resolution.
+ NB: Exiting Fiddler reverts this to the default value.
+
+
+
+
+ Watch a registry key for changes to its values.
+
+ The Registry Hive in which the key lives
+ The key, e.g. \Software\Microsoft\Fiddler2\
+ The Event Handler to invoke when a change occurs.
+ A new RegistryWatcher object.
+
+
+
+ Start monitoring.
+
+
+
+
+ Stops the monitoring thread.
+
+
+
+
+ Fires when the specified registry key has changed.
+
+
+
+
+ The GenericTunnel class represents a "blind tunnel" to shuffle bytes between a client and the server.
+
+
+
+
+ Is streaming started in the downstream direction?
+
+
+
+
+ Number of bytes received from the client
+
+
+
+
+ Number of bytes received from the server
+
+
+
+
+ This "Factory" method creates a new HTTPS Tunnel and executes it on a background (non-pooled) thread.
+
+ The Session containing the HTTP CONNECT request
+
+
+
+ Creates a tunnel. External callers instead use the CreateTunnel static method.
+
+ The session for which this tunnel was initially created.
+ Client Pipe
+ Server Pipe
+
+
+
+ This function keeps the thread alive until it is signaled that the traffic is complete
+
+
+
+
+ Executes the HTTPS tunnel inside an All-it-can-eat exception handler.
+ Call from a background thread.
+
+
+
+
+ Executes the WebSocket tunnel on a background thread
+
+
+
+
+ Instructs the tunnel to take over the server pipe and begin streaming responses to the client
+
+
+
+
+ Close the HTTPS tunnel and signal the event to let the service thread die.
+ WARNING: This MUST not be allowed to throw any exceptions, because it will do so on threads that don't catch them, and this will kill the application.
+
+
+
+
+ Called when we have received data from the local client.
+ Incoming data will immediately be forwarded to the remote host.
+
+ The result of the asynchronous operation.
+
+
+ Called when we have sent data to the local client.
When all the data has been sent, we will start receiving again from the remote host.
+ The result of the asynchronous operation.
+
+
+ Called when we have sent data to the remote host.
When all the data has been sent, we will start receiving again from the local client.
+ The result of the asynchronous operation.
+
+
+ Called when we have received data from the remote host.
Incoming data will immediately be forwarded to the local client.
+ The result of the asynchronous operation.
+
+
+
+ Returns number of bytes sent from the Server to the Client
+
+
+
+
+ Returns number of bytes sent from the Client to the Server
+
+
+
+
+ Attribute used to specify the minimum version of Fiddler compatible with this extension assembly.
+
+
+
+
+ Attribute used to specify the minimum version of Fiddler compatible with this extension assembly.
+
+ The minimal version string (e.g. "2.2.8.8")
+
+
+
+ Getter for the required version string
+
+
+
+
+ Attribute allowing developer to specify that a class supports the specified Import/Export Format
+
+
+
+
+ Attribute allowing developer to specify that a class supports the specified Import/Export Format
+
+ Shortname of the Format (e.g. WebText XML)
+ Description of the format
+
+
+
+ Returns the Shortname for this format
+
+
+
+
+ Returns the Description of this format
+
+
+
+
+ This tuple maps a display string to a Import/Export type
+
+
+
+
+ Textual description of the Format
+
+
+
+
+ Class implementing the format
+
+
+
+
+ Create a new Transcoder Tuple
+
+ Format description
+ Type implementing this format
+
+
+
+ ISessionImport allows loading of Session data
+
+
+
+
+ Import Sessions from a data source
+
+ Shortname of the format
+ Dictionary of options that the Importer class may use
+ Callback event on which progress is reported or the host may cancel
+ Array of Session objects imported from source
+
+
+
+ ISessionExport allows saving of Session data
+
+
+
+
+ Export Sessions to a data store
+
+ Shortname of the format
+ Array of Sessions being exported
+ Dictionary of options that the Exporter class may use
+ Callback event on which progress is reported or the host may cancel
+ TRUE if the export was successful
+
+
+
+ EventArgs class for the ISessionImporter and ISessionExporter interface callbacks
+
+
+
+
+ Progress Callback
+
+ Float indicating completion ratio, 0.0 to 1.0. Set to 0 if unknown.
+ Short string describing current operation, progress, etc
+
+
+
+ Set to TRUE to request that Import/Export process be aborted as soon as convenient
+
+
+
+
+ The string message of the notification
+
+
+
+
+ The percentage completed
+
+
+
+
+ The core proxy object which accepts connections from clients and creates session objects from those connections
+
+
+
+
+ The RegistryWatcher is used to monitor changes in the WinINET Proxy registry keys
+ to detect premature detaches.
+
+
+
+
+ Hostname if this Proxy Endpoint is terminating HTTPS connections
+
+
+
+
+ Certificate if this Proxy Endpoint is terminating HTTPS connections
+
+
+
+
+ Per-connectoid information about each WinINET connectoid
+
+
+
+
+ The default WinINET proxy as determined upon Fiddler startup.
+
+
+
+
+ The WinHTTP AutoProxy object, created if we're using WPAD or a PAC Script as a gateway
+
+
+
+
+ Allow binding to a specific egress adapter: "fiddler.network.egress.ip"
+
+
+
+
+ Watcher for Notification of Preference changes
+
+
+
+
+ Server connections may be pooled for performance reasons.
+
+
+
+
+ The Socket Endpoint on which this proxy receives requests
+
+
+
+
+ Flag indicating that Fiddler is in the process of detaching...
+
+
+
+
+ List of hosts which should bypass the upstream gateway
+
+
+
+
+ Returns a string of information about this instance and the ServerPipe reuse pool
+
+ A multiline string
+
+
+
+ Change the outbound IP address used to send traffic
+
+
+
+
+
+ Watch for relevent changes on the Preferences object
+
+
+
+
+
+
+ Called whenever Windows reports that the system's NetworkAddress has changed
+
+
+
+
+
+
+ Called by Windows whenever network availability goes up or down.
+
+
+
+
+
+
+ Directly inject a session into the Fiddler pipeline, returning a reference to it.
+ NOTE: This method will THROW any exceptions to its caller.
+
+ String representing the HTTP request. If headers only, be sure to end with CRLFCRLF
+ StringDictionary of Session Flags (or null)
+ The new session
+
+
+
+ [DEPRECATED] Directly inject a session into the Fiddler pipeline.
+ NOTE: This method will THROW any exceptions to its caller.
+
+
+ HTTP Request Headers
+ HTTP Request body (or null)
+ StringDictionary of Session Flags (or null)
+
+
+
+ [DEPRECATED] Directly inject a session into the Fiddler pipeline.
+ NOTE: This method will THROW any exceptions to its caller.
+
+
+ String representing the HTTP request. If headers only, be sure to end with CRLFCRLF
+ StringDictionary of Session Flags (or null)
+
+
+
+ [DEPRECATED]: This version does no validation of the request data, and doesn't set SessionFlags.RequestGeneratedByFiddler
+ Send a custom HTTP request to Fiddler's listening endpoint (127.0.0.1:8888 by default).
+ NOTE: This method will THROW any exceptions to its caller and blocks the current thread.
+
+
+ String representing the HTTP request. If headers only, be sure to end with CRLFCRLF
+
+
+
+ This function, when given a scheme host[:port], returns the gateway information of the proxy to forward requests to.
+
+ URIScheme: use http,https, or ftp
+ Host for which to return gateway information
+ IPEndPoint of gateway to use, or NULL
+
+
+
+ Accept the connection and pass it off to a handler thread
+
+
+
+
+
+ Register as the system proxy for WinINET and set the Dynamic registry key for other FiddlerHook
+
+ True if the proxy registration was successful
+
+
+
+ If we get a notice that the proxy registry key has changed, wait 50ms and then check to see
+ if the key is pointed at us. If not, raise the alarm.
+
+
+
+
+
+
+ If we are suppsoed to be "attached", we re-verify the registry keys, and if they are corrupt, notify
+ our host of the discrepency.
+
+
+
+
+ This method sets up the connectoid list and updates gateway information. Called by the Attach() method, or
+ called on startup if Fiddler isn't configured to attach automatically.
+
+
+
+
+ Given an address list, walks the list until it's able to successfully make a connection.
+ Used for finding an available Gateway when we have a list to choose from
+
+ A string, e.g. PROXY1:80
+ The IP:Port of the first alive endpoint for the specified host/port
+
+
+
+ Set internal fields pointing at upstream proxies.
+
+
+
+
+ Sets a registry key which indicates that Fiddler is in "Connected" mode. Used by the FiddlerHook Add-on
+
+ TRUE if fiddler is Connected
+
+
+
+ Detach the proxy by setting the registry keys and sending a Windows Message
+
+ True if the proxy settings were successfully detached
+
+
+
+ Detach the proxy by setting the registry keys and sending a Windows Message
+
+ True if the proxy settings were successfully detached
+
+
+
+ Write a .PAC file that user can point FireFox or some other non-WinINET browser to. This is a crutch
+ that simplifies using Fiddler with non-WinINET clients.
+
+
+
+
+
+ Stop the proxy by closing the socket.
+
+
+
+
+ Start the proxy by binding to the local port and accepting connections
+
+ Port to listen on
+ TRUE to allow remote connections
+
+
+
+
+ Dispose Fiddler's listening socket
+
+
+
+
+ Clear the pool of Server Pipes. May be called by extensions.
+
+
+
+
+ Assign HTTPS Certificate for this endpoint
+
+ Certificate to return to clients who connect
+
+
+
+ Sets the upstream gateway to match the specified ProxyInfo
+
+
+
+
+
+ Generate or find a certificate for this endpoint
+
+ Subject FQDN
+ TRUE if the certificate could be found/generated, false otherwise
+
+
+
+ Return a simple string indicating what upstream proxy/gateway is in use.
+
+
+
+
+
+ Show a message box indicating what upstream gateway/proxy is in use
+
+
+
+
+ The port on which this instance is listening
+
+
+
+
+ Returns true if Fiddler believes it is currently registered as the Local System proxy
+
+
+
+
+ This event handler fires when Fiddler detects that it is (unexpectedly) no longer the system's registered proxy
+
+
+
+
+ Somewhat similar to the Framework's "BackgroundWorker" class, the periodic worker performs a similar function on a periodic schedule.
+
+ The PeriodicWorker class is used by Fiddler to perform "cleanup" style tasks on a timer. Put work in the queue,
+ and it will see that it's done at least as often as the schedule specified until Fiddler begins to close at which
+ point all work stops.
+
+ Note that the callback occurs on a background thread.
+
+ The underlying timer's interval is 1 second.
+
+
+
+ I think a significant part of the reason that this class exists is that I thought the System.Threading.Timer consumed one thread for each
+ timer. In reality, per "CLR via C# 4e" all of the instances share one underlying thread and thus my concern was misplaced. Ah well.
+
+
+
+
+ Assigns a "job" to the Periodic worker, on the schedule specified by iMS.
+
+ The function to run on the timer specified.
+ Warning: the function is NOT called on the UI thread, so use .Invoke() if needed.
+ The # of milliseconds to wait between runs
+ A taskItem which can be used to revokeWork later
+
+
+
+ The ScheduledTasks class allows addition of jobs by name. It ensures that one instance of the named
+ job will occur at *some* point in the future, between 0 and a specified max delay.
+
+
+
+
+ Under the lock, we enumerate the schedule to find work to do and remove that work from the schedule.
+ After we release the lock, we then do the queued work.
+
+
+
+
+
+ A jobItem represents a Function+Time tuple. The function will run after the given time.
+
+
+
+
+ TickCount at which this job must run.
+
+
+
+
+ Method to invoke to complete the job
+
+
+
+
diff --git a/FileNamesDictionary.txt b/FileNamesDictionary.txt
new file mode 100644
index 0000000..a80e66d
--- /dev/null
+++ b/FileNamesDictionary.txt
@@ -0,0 +1,3 @@
+crossdomain.xml
+admin.php
+admin.aspx
diff --git a/HtmlAgilityPack.dll b/HtmlAgilityPack.dll
new file mode 100644
index 0000000..b0692c1
Binary files /dev/null and b/HtmlAgilityPack.dll differ
diff --git a/ICSharpCode.TextEditor.dll b/ICSharpCode.TextEditor.dll
new file mode 100644
index 0000000..8e55eba
Binary files /dev/null and b/ICSharpCode.TextEditor.dll differ
diff --git a/Ionic.Zip.dll b/Ionic.Zip.dll
new file mode 100644
index 0000000..95fa928
Binary files /dev/null and b/Ionic.Zip.dll differ
diff --git a/Iron.vshost.exe.manifest b/Iron.vshost.exe.manifest
new file mode 100644
index 0000000..061c9ca
--- /dev/null
+++ b/Iron.vshost.exe.manifest
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IronConfig.exe b/IronConfig.exe
new file mode 100644
index 0000000..eace8bc
Binary files /dev/null and b/IronConfig.exe differ
diff --git a/IronDataView.dll b/IronDataView.dll
new file mode 100644
index 0000000..cddbfdf
Binary files /dev/null and b/IronDataView.dll differ
diff --git a/IronPython.Modules.dll b/IronPython.Modules.dll
new file mode 100644
index 0000000..a24e7b8
Binary files /dev/null and b/IronPython.Modules.dll differ
diff --git a/IronPython.dll b/IronPython.dll
new file mode 100644
index 0000000..b82653f
Binary files /dev/null and b/IronPython.dll differ
diff --git a/IronRuby.Libraries.YAML.dll b/IronRuby.Libraries.YAML.dll
new file mode 100644
index 0000000..44a6de7
Binary files /dev/null and b/IronRuby.Libraries.YAML.dll differ
diff --git a/IronRuby.Libraries.dll b/IronRuby.Libraries.dll
new file mode 100644
index 0000000..b0d5b42
Binary files /dev/null and b/IronRuby.Libraries.dll differ
diff --git a/IronRuby.dll b/IronRuby.dll
new file mode 100644
index 0000000..fcf4007
Binary files /dev/null and b/IronRuby.dll differ
diff --git a/IronWASP.exe b/IronWASP.exe
new file mode 100644
index 0000000..ba5f87d
Binary files /dev/null and b/IronWASP.exe differ
diff --git a/IronWASP.pdb b/IronWASP.pdb
new file mode 100644
index 0000000..14c5334
Binary files /dev/null and b/IronWASP.pdb differ
diff --git a/IronWASP.vshost.exe b/IronWASP.vshost.exe
new file mode 100644
index 0000000..6b75e05
Binary files /dev/null and b/IronWASP.vshost.exe differ
diff --git a/IronWASP.vshost.exe.manifest b/IronWASP.vshost.exe.manifest
new file mode 100644
index 0000000..061c9ca
--- /dev/null
+++ b/IronWASP.vshost.exe.manifest
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Jint.dll b/Jint.dll
new file mode 100644
index 0000000..98e2e4f
Binary files /dev/null and b/Jint.dll differ
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..20d40b6
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
\ No newline at end of file
diff --git a/Microsoft.Dynamic.dll b/Microsoft.Dynamic.dll
new file mode 100644
index 0000000..c8fee0e
Binary files /dev/null and b/Microsoft.Dynamic.dll differ
diff --git a/Microsoft.Scripting.Core.dll b/Microsoft.Scripting.Core.dll
new file mode 100644
index 0000000..b0c97f2
Binary files /dev/null and b/Microsoft.Scripting.Core.dll differ
diff --git a/Microsoft.Scripting.Debugging.dll b/Microsoft.Scripting.Debugging.dll
new file mode 100644
index 0000000..b39a623
Binary files /dev/null and b/Microsoft.Scripting.Debugging.dll differ
diff --git a/Microsoft.Scripting.ExtensionAttribute.dll b/Microsoft.Scripting.ExtensionAttribute.dll
new file mode 100644
index 0000000..4ddf4f9
Binary files /dev/null and b/Microsoft.Scripting.ExtensionAttribute.dll differ
diff --git a/Microsoft.Scripting.dll b/Microsoft.Scripting.dll
new file mode 100644
index 0000000..aba0cde
Binary files /dev/null and b/Microsoft.Scripting.dll differ
diff --git a/ModulesDB.exe b/ModulesDB.exe
new file mode 100644
index 0000000..504b2b2
--- /dev/null
+++ b/ModulesDB.exe
@@ -0,0 +1,84 @@
+
+
+
+ Analysis
+
+ HAWAS
+ 0.2
+ HAWAS - Hybrid Analyzer for Web Application Security
+ Lavakumar Kuppan
+ https://github.com/lavakumar/hawas
+ no
+ no
+ no
+ A tool for analyzing the HTTP Proxy logs inside IronWASP and identifying interesting patterns and information. HAWAS identifies and decodeds encoded parameter values. Identifies and attempts to crack hashed parameter values. Highlights areas where user input might be stored on the server and reflected back as they are potential stored XSS candidates. It also lists all the parameter names and parameter values from the log for easy analysis by the tester.
+
+
+
+ SAP Security
+
+ IronSAP
+ 0.2
+ IronSAP - SAP Security Scanner
+ Prasanna K
+ https://github.com/prasanna2204/IronSAP
+ no
+ yes
+ yes
+ https://github.com/prasanna2204/IronSAP
+
+
+
+ Scanners
+
+ SSLSecurityChecker
+ 0.1
+ SSL Security Checker
+ Manish Saindane
+ https://github.com/GDSSecurity/SSLSecurityChecker
+ no
+ no
+ no
+ This is ported from the code found at http://www.bolet.org/TestSSLServer/ which was written by Thomas Pornin [pornin@bolet.org]. All credits for the orignal code goes to him.
+
+
+
+ Utilities
+
+ BodySaver
+ 0.1
+ BodySaver - Save the body of the selected response to a file
+ Lavakumar Kuppan
+ https://github.com/lavakumar/bodysaver
+ yes
+ no
+ no
+ Saves the body of the response on which this module was run to a file of the user's choosing.
+
+
+
+ Exploitation
+
+ CSRFPOCGenerator
+ 0.2
+ CSRF PoC Generator - Creates HTML file to recreate selected request from the browser
+ Jayesh Singh Chauhan @jayeshsch
+ https://github.com/jayeshchauhan
+ yes
+ no
+ no
+ Create a PoC for CSRF attacks in a split second. Right click any log and run this module to create a HTML file. When this file is opened from the browser, the browser will send a request similar to the one on which this module was run. It supports requests that have normal body format and also JSON and XML request body formats.
+
+
+ Skanda
+ 0.1
+ OWASP Skanda - SSRF Exploitation Framework
+ Jayesh Singh Chauhan @jayeshsch
+ https://www.owasp.org/index.php/OWASP_Skanda_SSRF_Exploitation_Framework
+ yes
+ no
+ no
+ Performs port scan on a server vulnerable to Server-side Request Forgery vulnerability(SSRF). Right click on any log and run this module. Select the vulnerable injection points(GET/POST parameters) and session plugins if any are required. Port Status will be printed in the CLI.
+
+
+
\ No newline at end of file
diff --git a/NewPythonActivePluginTemplate.txt b/NewPythonActivePluginTemplate.txt
new file mode 100644
index 0000000..6dab6e4
--- /dev/null
+++ b/NewPythonActivePluginTemplate.txt
@@ -0,0 +1,15 @@
+from IronWASP import *
+from System import *
+import clr
+
+#Inherit from the base ActivePlugin class
+class (ActivePlugin):
+
+ #Override the Check method of the base class with custom functionlity
+ def Check(self, req, scnr):
+
+
+p = ()
+p.Name = "Name of the Plugin inside Iron. Pick a short name without spaces and special characters like 'XSS', 'SQLi' etc. Name must be unique across all plugins"
+p.Description = "Short Description of the Plugin, displayed in the Plugins section"
+ActivePlugin.Add(p)
diff --git a/NewPythonFormatPluginTemplate.txt b/NewPythonFormatPluginTemplate.txt
new file mode 100644
index 0000000..bd39fb5
--- /dev/null
+++ b/NewPythonFormatPluginTemplate.txt
@@ -0,0 +1,37 @@
+from IronWASP import *
+from System import *
+import clr
+
+#Inherit from the base FormatPlugin class
+class (FormatPlugin):
+
+ #Override the ToXmlFromRequest method of the base class with custom functionlity. Convert RequestBody in to Xml String and return it
+ def ToXmlFromRequest(self, req):
+ return self.ToXml(req.BodyArray)
+
+ #Override the ToXmlFromResponse method of the base class with custom functionlity. Convert ResponseBody in to Xml String and return it
+ def ToXmlFromResponse(self, res):
+ return self.ToXml(res.BodyArray)
+
+ #Override the ToXml method of the base class with custom functionlity. Convert ByteArray in to Xml String and return it
+ def ToXml(self, object_array):
+
+
+ #Override the ToRequestFromXml method of the base class with custom functionlity. Update Request based on Xml String input and return it
+ def ToRequestFromXml(self, req, xml):
+ req.BodyArray = self.ToObject(xml)
+ return req
+
+ #Override the ToResponseFromXml method of the base class with custom functionlity. Update Response based on Xml String input and return it
+ def ToResponseFromXml(self, res, xml):
+ res.BodyArray = self.ToObject(xml)
+ return res
+
+ #Override the ToObject method of the base class with custom functionlity. Convert the XmlString in to an Object and return it as ByteArray
+ def ToObject(self, xml_string):
+
+
+p = ()
+p.Name = "Name of the Plugin inside Iron. Pick a short name without spaces and special characters like 'DoublePipeSeperator','CustomResponseBody' etc. Name must be unique across all plugins"
+p.Description = "Short Description of the Plugin, displayed in the Plugins section"
+FormatPlugin.Add(p)
diff --git a/NewPythonPassivePluginTemplate.txt b/NewPythonPassivePluginTemplate.txt
new file mode 100644
index 0000000..679e738
--- /dev/null
+++ b/NewPythonPassivePluginTemplate.txt
@@ -0,0 +1,19 @@
+from IronWASP import *
+from System import *
+import clr
+
+#Inherit from the base PassivePlugin class
+class (PassivePlugin):
+
+ #Override the Check method of the base class with custom functionlity
+ def Check(self, sess, results):
+
+
+p = ()
+p.Name = "Name of the Plugin inside Iron. Pick one without spaces and special characters like 'CreditCardScraper', 'SetCookieAnalyzer' etc. Name must be unique across all plugins"
+p.Description = "Short Description of the Plugin, displayed in the Plugins section"
+#When should this plugin be called. Possible values - BeforeInterception, AfterInterception, Both, Offline. Offline is the default value, it is also the recommended value if you are not going to perform any changes in the Request/Response
+#p.CallingState = PluginCallingState.BeforeInterception
+#On what should this plugin run. Possible values - Request, Response, Both
+p.WorksOn = PluginWorksOn.Response
+PassivePlugin.Add(p)
diff --git a/NewPythonScriptTemplate.txt b/NewPythonScriptTemplate.txt
new file mode 100644
index 0000000..6ffca1d
--- /dev/null
+++ b/NewPythonScriptTemplate.txt
@@ -0,0 +1,4 @@
+from IronWASP import *
+from System import *
+import clr
+
diff --git a/NewPythonSessionPluginTemplate.txt b/NewPythonSessionPluginTemplate.txt
new file mode 100644
index 0000000..724f82b
--- /dev/null
+++ b/NewPythonSessionPluginTemplate.txt
@@ -0,0 +1,28 @@
+from IronWASP import *
+from System import *
+import clr
+#Inherit from the base SessionPlugin class
+class (SessionPlugin):
+
+ #Override the Update method with custom code to check the validity of the Request/Response and update the Request. Returns Request
+ def Update(self, req, res):
+ req.SetCookie(res)
+ return req
+
+ #Override the ProcessInjection method to update the Payload before it is injected. Returns String
+ def ProcessInjection(self, scnr, req, payload):
+ return payload
+
+ #Override the PrepareForInjection method to make changes to the request or perform other steps before injecting. Returns Request
+ def PrepareForInjection(self, req):
+ return req
+
+ #Override the GetInterestingResponse method to perform customs actions after the injection is done. Returns Response
+ def GetInterestingResponse(self, req, res):
+ return res
+
+
+p = ()
+p.Name = "Name of the Plugin inside Iron. Pick a short name without spaces and special characters like 'AuthHandler', 'CsrfUpdater' etc. Name must be unique across all plugins"
+p.Description = "Short Description of the Plugin, displayed in the Plugins section"
+SessionPlugin.Add(p)
diff --git a/NewRubyActivePluginTemplate.txt b/NewRubyActivePluginTemplate.txt
new file mode 100644
index 0000000..b941d6c
--- /dev/null
+++ b/NewRubyActivePluginTemplate.txt
@@ -0,0 +1,15 @@
+include IronWASP
+
+#Inherit from the base ActivePlugin class
+class < ActivePlugin
+
+ #Override the Check method of the base class with custom functionlity
+ def Check(req, scnr)
+
+ end
+end
+
+p = .new
+p.name = "Name of the Plugin inside Iron. Pick a short name without spaces and special characters like 'XSS', 'SQLi' etc. Name must be unique across all plugins"
+p.description = "Short Description of the Plugin, displayed in the Plugins section"
+ActivePlugin.add(p)
diff --git a/NewRubyFormatPluginTemplate.txt b/NewRubyFormatPluginTemplate.txt
new file mode 100644
index 0000000..6893f65
--- /dev/null
+++ b/NewRubyFormatPluginTemplate.txt
@@ -0,0 +1,42 @@
+include IronWASP
+
+#Inherit from the base FormatPlugin class
+class < FormatPlugin
+
+ #Override the ToXmlFromRequest method of the base class with custom functionlity. Convert RequestBody in to Xml String and return it
+ def ToXmlFromRequest(req)
+ return ToXml(req.body_array)
+ end
+
+ #Override the ToXmlFromResponse method of the base class with custom functionlity. Convert ResponseBody in to Xml String and return it
+ def ToXmlFromResponse(res)
+ return ToXml(res.body_array)
+ end
+
+ #Override the ToXml method of the base class with custom functionlity. Convert ByteArray in to Xml String and return it
+ def ToXml(object_array)
+
+ end
+
+ #Override the ToRequestFromXml method of the base class with custom functionlity. Update Request based on Xml String input and return it
+ def ToRequestFromXml(req, xml)
+ req.body_array = ToObject(xml)
+ return req
+ end
+
+ #Override the ToResponseFromXml method of the base class with custom functionlity. Update Response based on Xml String input and return it
+ def ToResponseFromXml(res, xml)
+ res.body_array = ToObject(xml)
+ return res
+ end
+
+ #Override the ToObject method of the base class with custom functionlity. Convert the XmlString in to an Object and return it as ByteArray
+ def ToObject(xml_string)
+
+ end
+end
+
+p = .new
+p.name = "Name of the Plugin inside Iron. Pick a short name without spaces and special characters like 'DoublePipeSeperator','CustomResponseBody' etc. Name must be unique across all plugins"
+p.description = "Short Description of the Plugin, displayed in the Plugins section"
+FormatPlugin.add(p)
diff --git a/NewRubyPassivePluginTemplate.txt b/NewRubyPassivePluginTemplate.txt
new file mode 100644
index 0000000..7cfbfdd
--- /dev/null
+++ b/NewRubyPassivePluginTemplate.txt
@@ -0,0 +1,19 @@
+include IronWASP
+
+#Inherit from the base PassivePlugin class
+class < PassivePlugin
+
+ #Override the Check method of the base class with custom functionality
+ def Check(sess, results)
+
+ end
+end
+
+p = .new
+p.name = "Name of the Plugin inside Iron. Pick one without spaces and special characters like 'CreditCardScraper', 'SetCookieAnalyzer' etc. Name must be unique across all plugins"
+p.description = "Short Description of the Plugin, displayed in the Plugins section"
+#When should this plugin be called. Possible values - before_interception, after_interception, both
+#p.calling_state = PluginCallingState.before_interception
+#On what should this plugin run. Possible values - request, response, both, offline. offline is the default value, it is also the recommended value if you are not going to perform any changes in the request/response
+p.works_on = PluginWorksOn.response
+PassivePlugin.add(p)
diff --git a/NewRubyScriptTemplate.txt b/NewRubyScriptTemplate.txt
new file mode 100644
index 0000000..b691303
--- /dev/null
+++ b/NewRubyScriptTemplate.txt
@@ -0,0 +1,2 @@
+include IronWASP
+
diff --git a/NewRubySessionPluginTemplate.txt b/NewRubySessionPluginTemplate.txt
new file mode 100644
index 0000000..726b044
--- /dev/null
+++ b/NewRubySessionPluginTemplate.txt
@@ -0,0 +1,32 @@
+include IronWASP
+
+#Inherit from the base SessionPlugin class
+class < SessionPlugin
+
+ #Override the Update method with custom code to check the validity of the Request/Response and update the Request. Returns Request
+ def Update(req, res)
+ req.set_cookie(res)
+ return req
+ end
+
+ #Override the PrepareForInjection method to make changes to the request or perform other steps before injecting. Returns Request
+ def PrepareForInjection(req)
+ return req
+ end
+
+ #Override the ProcessInjection method to update the Payload before it is injected. Returns String
+ def ProcessInjection(scnr, req, payload)
+ return payload
+ end
+
+ #Override the GetInterestingResponse method to perform customs actions after the injection is done. Returns Response
+ def GetInterestingResponse(req, res)
+ return res
+ end
+
+end
+
+p = .new
+p.name = "Name of the Plugin inside Iron. Pick a short name without spaces and special characters like 'AuthHandler', 'CsrfUpdater' etc. Name must be unique across all plugins"
+p.description = "Short Description of the Plugin, displayed in the Plugins section"
+SessionPlugin.add(p)
diff --git a/Newtonsoft.Json.Net20.dll b/Newtonsoft.Json.Net20.dll
new file mode 100644
index 0000000..6f199d6
Binary files /dev/null and b/Newtonsoft.Json.Net20.dll differ
diff --git a/Python.xshd b/Python.xshd
new file mode 100644
index 0000000..f73c951
--- /dev/null
+++ b/Python.xshd
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+ ()[]{}@,:.`=;+-*/% &|^><
+
+
+ """
+ """
+
+
+
+ '''
+ '''
+
+
+
+ #
+
+
+
+ "
+ "
+
+
+
+ '
+ '
+
+
+ (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..580dbf4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,55 @@
+# IronWASP [Iron Web-application Advanced Security testing Platform]
+
+[](https://GitHub.com/lavakumar/)
+
+
+
+✘ Points Mentioned
+ 1. [What is IronWASP](https://github.com/swatv3nub/IronWASP/blob/Alpha/README.md/#About)
+ 2. [Demo App](https://github.com/swatv3nub/IronWASP/blob/Alpha/README.md/#DemoApp)
+ 3. [Plugins](https://github.com/swatv3nub/IronWASP/blob/Alpha/README.md/#Plugins)
+ 4. [More Details](https://github.com/swatv3nub/IronWASP/blob/Alpha/README.md/#MoreDetails)
+ 5. [Credits](https://github.com/swatv3nub/IronWASP/blob/Alpha/README.md/#Credits)
+
+
+ # About
+
+ IronWASP is an Open Source and Open Architecure Project designed for Advanced Web Security Testing
+
+ By downloading IronWASP you have taken the first step towards making your Web Security testing process more efficient.
+
+ Simply double-click the file named IronWASP.exe to get started.
+
+ IronWASP DOES NOT require installation or administrative rights to work.
+
+**IMPORTANT: Please read COPYRIGHT.txt before using the software.**
+
+# DemoApp
+
+ There is a DemoApp application available that can be used for testing some of the features of IronWASP.
+ The DemoApp can be started by executing DemoApp.exe.
+
+# Plugins
+
+## SessionPlugins
+
+ The Session Plugins packaged with IronWASP are desgined for the DemoApp,
+ they can be used as reference for creating your own Session Plugins.
+
+## Active, Passive and Format Plugins
+
+ Active, Passive and Format Plugins packaged with IronWASP are desgined for main IronWASP.
+ You can use them to create your own plugs
+
+```
+ [NEW PLUGINS WILL BE ADDED SOON]
+```
+
+# MoreDetails
+
+ For more details check the 'About' section in the menu inside IronWASP.
+
+# Credits
+
+ This Application belongs to [Lavakumar](https://github.com/lavakumar), I just Repacked and Redistributed it
+ I have no developer rights in this.
\ No newline at end of file
diff --git a/README.txt b/README.txt
new file mode 100644
index 0000000..e69de29
diff --git a/RenderHtml.exe b/RenderHtml.exe
new file mode 100644
index 0000000..6b48c8e
Binary files /dev/null and b/RenderHtml.exe differ
diff --git a/Ruby.xshd b/Ruby.xshd
new file mode 100644
index 0000000..49a9ddb
--- /dev/null
+++ b/Ruby.xshd
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+ ()[]{}@,:.`=;+-*/%~ &|^><
+
+
+ '
+ '
+
+
+
+ """
+ """
+
+
+
+ =begin
+ =end
+
+
+
+ #
+
+
+
+ "
+ "
+
+
+ (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SyntaxModes.xml b/SyntaxModes.xml
new file mode 100644
index 0000000..8002656
--- /dev/null
+++ b/SyntaxModes.xml
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/System.Data.SQLite.DLL b/System.Data.SQLite.DLL
new file mode 100644
index 0000000..aa398bb
Binary files /dev/null and b/System.Data.SQLite.DLL differ
diff --git a/TestSSLServer.dll b/TestSSLServer.dll
new file mode 100644
index 0000000..7dfb781
Binary files /dev/null and b/TestSSLServer.dll differ
diff --git a/Updater.exe b/Updater.exe
new file mode 100644
index 0000000..87f3eb1
Binary files /dev/null and b/Updater.exe differ
diff --git a/app.db b/app.db
new file mode 100644
index 0000000..4bbeae0
Binary files /dev/null and b/app.db differ
diff --git a/host.db.sqlite b/host.db.sqlite
new file mode 100644
index 0000000..e69de29
diff --git a/jsbeautifylib.dll b/jsbeautifylib.dll
new file mode 100644
index 0000000..b8b4dea
Binary files /dev/null and b/jsbeautifylib.dll differ
diff --git a/log/2021_Jan_4__16_59_44_PM/CommandLog.txt b/log/2021_Jan_4__16_59_44_PM/CommandLog.txt
new file mode 100644
index 0000000..b63c446
--- /dev/null
+++ b/log/2021_Jan_4__16_59_44_PM/CommandLog.txt
@@ -0,0 +1,10 @@
+Object
+Object
+Object
+Object
+Object
+Object
+
+123
+
+
diff --git a/log/2021_Jan_4__16_59_44_PM/Exceptions.ironlog b/log/2021_Jan_4__16_59_44_PM/Exceptions.ironlog
new file mode 100644
index 0000000..923abc3
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Exceptions.ironlog differ
diff --git a/log/2021_Jan_4__16_59_44_PM/Probes.ironlog b/log/2021_Jan_4__16_59_44_PM/Probes.ironlog
new file mode 100644
index 0000000..2b5cb6d
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Probes.ironlog differ
diff --git a/log/2021_Jan_4__16_59_44_PM/Project.iron b/log/2021_Jan_4__16_59_44_PM/Project.iron
new file mode 100644
index 0000000..0abf937
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Project.iron differ
diff --git a/log/2021_Jan_4__16_59_44_PM/Proxy.ironlog b/log/2021_Jan_4__16_59_44_PM/Proxy.ironlog
new file mode 100644
index 0000000..8b0313d
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Proxy.ironlog differ
diff --git a/log/2021_Jan_4__16_59_44_PM/Results.ironlog b/log/2021_Jan_4__16_59_44_PM/Results.ironlog
new file mode 100644
index 0000000..880cb87
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Results.ironlog differ
diff --git a/log/2021_Jan_4__16_59_44_PM/Scan.ironlog b/log/2021_Jan_4__16_59_44_PM/Scan.ironlog
new file mode 100644
index 0000000..caca019
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Scan.ironlog differ
diff --git a/log/2021_Jan_4__16_59_44_PM/Shell.ironlog b/log/2021_Jan_4__16_59_44_PM/Shell.ironlog
new file mode 100644
index 0000000..efe29d3
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Shell.ironlog differ
diff --git a/log/2021_Jan_4__16_59_44_PM/Test.ironlog b/log/2021_Jan_4__16_59_44_PM/Test.ironlog
new file mode 100644
index 0000000..40f478b
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Test.ironlog differ
diff --git a/log/2021_Jan_4__16_59_44_PM/Trace.ironlog b/log/2021_Jan_4__16_59_44_PM/Trace.ironlog
new file mode 100644
index 0000000..166cd6e
Binary files /dev/null and b/log/2021_Jan_4__16_59_44_PM/Trace.ironlog differ
diff --git a/log/2021_Jan_9__16_49_00_PM/CommandLog.txt b/log/2021_Jan_9__16_49_00_PM/CommandLog.txt
new file mode 100644
index 0000000..b63c446
--- /dev/null
+++ b/log/2021_Jan_9__16_49_00_PM/CommandLog.txt
@@ -0,0 +1,10 @@
+Object
+Object
+Object
+Object
+Object
+Object
+
+123
+
+
diff --git a/log/2021_Jan_9__16_49_00_PM/Exceptions.ironlog b/log/2021_Jan_9__16_49_00_PM/Exceptions.ironlog
new file mode 100644
index 0000000..923abc3
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Exceptions.ironlog differ
diff --git a/log/2021_Jan_9__16_49_00_PM/Probes.ironlog b/log/2021_Jan_9__16_49_00_PM/Probes.ironlog
new file mode 100644
index 0000000..2b5cb6d
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Probes.ironlog differ
diff --git a/log/2021_Jan_9__16_49_00_PM/Project.iron b/log/2021_Jan_9__16_49_00_PM/Project.iron
new file mode 100644
index 0000000..0abf937
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Project.iron differ
diff --git a/log/2021_Jan_9__16_49_00_PM/Proxy.ironlog b/log/2021_Jan_9__16_49_00_PM/Proxy.ironlog
new file mode 100644
index 0000000..8b0313d
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Proxy.ironlog differ
diff --git a/log/2021_Jan_9__16_49_00_PM/Results.ironlog b/log/2021_Jan_9__16_49_00_PM/Results.ironlog
new file mode 100644
index 0000000..880cb87
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Results.ironlog differ
diff --git a/log/2021_Jan_9__16_49_00_PM/Scan.ironlog b/log/2021_Jan_9__16_49_00_PM/Scan.ironlog
new file mode 100644
index 0000000..caca019
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Scan.ironlog differ
diff --git a/log/2021_Jan_9__16_49_00_PM/Shell.ironlog b/log/2021_Jan_9__16_49_00_PM/Shell.ironlog
new file mode 100644
index 0000000..efe29d3
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Shell.ironlog differ
diff --git a/log/2021_Jan_9__16_49_00_PM/Test.ironlog b/log/2021_Jan_9__16_49_00_PM/Test.ironlog
new file mode 100644
index 0000000..40f478b
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Test.ironlog differ
diff --git a/log/2021_Jan_9__16_49_00_PM/Trace.ironlog b/log/2021_Jan_9__16_49_00_PM/Trace.ironlog
new file mode 100644
index 0000000..166cd6e
Binary files /dev/null and b/log/2021_Jan_9__16_49_00_PM/Trace.ironlog differ
diff --git a/makecert.exe b/makecert.exe
new file mode 100644
index 0000000..fded32c
Binary files /dev/null and b/makecert.exe differ
diff --git a/modules/BodySaver/BodySaver.dll b/modules/BodySaver/BodySaver.dll
new file mode 100644
index 0000000..e837a39
Binary files /dev/null and b/modules/BodySaver/BodySaver.dll differ
diff --git a/modules/CSRFPOCGenerator/CSRFPOCGenerator.py b/modules/CSRFPOCGenerator/CSRFPOCGenerator.py
new file mode 100644
index 0000000..ae56596
--- /dev/null
+++ b/modules/CSRFPOCGenerator/CSRFPOCGenerator.py
@@ -0,0 +1,156 @@
+from IronWASP import *
+
+class CSRFPOCGenerator(Module):
+
+ def GetInstance(self):
+ m = CSRFPOCGenerator()
+ m.Name = "CSRFPOCGenerator"
+ return m
+
+
+ def StartModuleOnSession(self,sess):
+ Tools.Trace("POC","StartModuleOnSession method called")
+ self.start_ui()
+ r = sess.Request
+ html = "\n\n"
+ html = html + " \n\n"
+ html = html + "