Commit 0818cb20 authored by titanium007's avatar titanium007

Fix read me

parent f441083c
...@@ -52,8 +52,7 @@ Sample request and response event handlers ...@@ -52,8 +52,7 @@ Sample request and response event handlers
```csharp ```csharp
//Test On Request, intecept requests //Test On Request, intercept requests
//Read browser URL send back to proxy by the injection script in OnResponse event
public void OnRequest(object sender, SessionEventArgs e) public void OnRequest(object sender, SessionEventArgs e)
{ {
...@@ -102,7 +101,7 @@ Sample request and response event handlers ...@@ -102,7 +101,7 @@ Sample request and response event handlers
//Get response body as string //Get response body as string
string responseBody = e.GetResponseBodyAsString(); string responseBody = e.GetResponseBodyAsString();
//Modify e.ServerResponse //Inject script in to body
Regex rex = new Regex("</body>", RegexOptions.RightToLeft | RegexOptions.IgnoreCase | RegexOptions.Multiline); Regex rex = new Regex("</body>", RegexOptions.RightToLeft | RegexOptions.IgnoreCase | RegexOptions.Multiline);
string modified = rex.Replace(responseBody, "<script type =\"text/javascript\">alert('Response was modified by this script!');</script></body>", 1); string modified = rex.Replace(responseBody, "<script type =\"text/javascript\">alert('Response was modified by this script!');</script></body>", 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment