本帖最后由 myde520 于 2015-7-20 16:23 编辑
我想通过NetCut对webBrowser1网页进行抓包,记录下webBrowser1网页里第一次ajax访问一个URL时返回的源码,我直接把软件源码上传了,大家帮看看怎么获取。
汗,上传不了附件
[C#] 纯文本查看 复制代码 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace zfb
{
public partial class zfbForm : Form
{
private readonly NetCut.NetCut _NetCut = new NetCut.NetCut();
public zfbForm()
{
InitializeComponent();
}
private void zfbForm_Load(object sender, EventArgs e)
{
this._NetCut.RequestComplete += _NetCut_RequestComplete;
this._NetCut.Install();
}
private void _NetCut_RequestComplete(object sender, NetCut.NetTab e)
{
if (!e.Host.Contains("ecpm.tanx.com")) return;
base.Invoke(new EventHandler((x, y) =>
this.dataGridView1.Rows.Add(
this.dataGridView1.RowCount + 1,
e.Method, e.ResponseHeaders, e.Host, e.Url
)
));
}
}
}
|