登录
首页 » Java » net-master

net-master

于 2020-12-24 发布 文件大小:64KB
0 270
下载积分: 1 下载次数: 3

代码说明:

  网络嗅探器的设计与实现: 基本要求捕获本网段的数据包,将报文结构显示出来.进一步要求进行数据包协议分析,可以按报头进行统计,提取部分关键信息,如捕获登陆信息,破解登陆密码等.(Design and implementation of network sniffer: General requirements capture packet network segment, the packet structure is displayed further requested packet protocol analysis, statistical header by extracting some of the key information, such as the capture login information. crack login password.)

文件列表:

net-master
..........\Net
..........\...\.classpath,394,2015-12-10
..........\...\.gitignore,5,2015-12-10
..........\...\.project,379,2015-12-10
..........\...\Jpcap.dll,89600,2015-12-10
..........\...\src
..........\...\...\com
..........\...\...\...\SSheng
..........\...\...\...\......\ui
..........\...\...\...\......\..\ModelHTTP.java,1479,2015-12-10
..........\...\...\...\......\..\PanelARP.java,5889,2015-12-10
..........\...\...\...\......\..\PanelHTTP.java,3108,2015-12-10
..........\...\...\...\......\..\PanelTCP.java,8649,2015-12-10
..........\...\...\...\......\..\PanelUDP.java,2695,2015-12-10
..........\...\...\...\......\..\PanelWelcome.java,656,2015-12-10
..........\...\...\...\......\..\SystemUI.java,6078,2015-12-10
..........\...\...\...\......\..\TableFrame.java,1902,2015-12-10
..........\...\...\...\......\..\UiConfig.java,524,2015-12-10
..........\...\...\jpcapBackstage
..........\...\...\..............\Backstage.java,2147,2015-12-10
..........\...\...\..............\Reciever.java,3353,2015-12-10
..........\...\...\sample
..........\...\...\......\ARP.java,2601,2015-12-10
..........\...\...\......\ReadDump.java,609,2015-12-10
..........\...\...\......\SendICMP.java,1511,2015-12-10
..........\...\...\......\SendTCP.java,1306,2015-12-10
..........\...\...\......\SendUDP.java,1339,2015-12-10
..........\...\...\......\Tcpdump.java,1174,2015-12-10
..........\...\...\......\Traceroute.java,2970,2015-12-10

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • udp局域聊天工具
    局域网的udp聊天工具,注意事项: 运行的时候要运行两次 一个当客户端和服务器端 ,在运行的时候还要改下IP地址。
    2022-03-10 08:50:31下载
    积分:1
  • C-S聊天室源代码
    一个简易的C-S聊天室源代码 功能介绍:     有服务端与客户端。使用Socket技术,客户端实现了悄悄话、屏幕抖动、聊天记录保存的功能。 注意:     客户端要输入服务端的ip地址,使用客户端前要先打开服务端。
    2022-05-15 01:00:37下载
    积分:1
  • get获取页源代码
    get获取网页源代码
    2020-09-05 11:18:05下载
    积分:1
  • UDPTest
    UDP协议测试工具,可根据设定绑定UDP绑定IPD端口,进行相关的UDP吸引收发数据测试。(UDP protocol test tools, according to the set bound to the UDP binding IPD port, the UDP attract send and receive data test.)
    2013-04-18 09:18:39下载
    积分:1
  • c# 扫描IP Http Header
    c# 扫描IP Http Headerusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO;namespace HScan{ public partial class Form1 : Form { int _currentThreads = 0; int _maxThreads = 100; Thread main = null; Thread mt = null; List threads = new List(); public Form1() { InitializeComponent(); Control.CheckForIllegalCrossThreadCalls = false; } private void btnStart_Click(object sender, EventArgs e) { btnStart.Enabled = false; if (txtStart.Text.Trim() == "") { MessageBox.Show("起始IP不能为空."); return; } if (txtEnd.Text.Trim() == "") { MessageBox.Show("结束IP不能为空."); return; } int ts = Convert.ToInt32(txtThreads.Text); _maxThreads = ts; string startIp = txtStart.Text; string endIp = txtEnd.Text; TParameter tp=new TParameter(); tp.StartIp=startIp; tp.EndIp=endIp; tp.ThreadCount=ts; main = new Thread(new ParameterizedThreadStart(StartMe)); main.Start(tp); } protected void ThreadManage() { Thread c=null; while (true) { System.Object lockThis = new System.Object(); lock (lockThis) { for (int i = 0; i < threads.Count; i ) { if (threads[i] != null && !threads[i].IsAlive) { c = threads[i]; break; } } if (c != null) { threads.Remove(c); } } } } protected void StartMe(object ob) { mt = new Thread(new ThreadStart(ThreadManage)); mt.Start(); TParameter p = ob as TParameter; string curIp = p.StartIp; while (true) { for (int i = 0; i < _maxThreads; i ) { if (curIp != "") { if (_currentThreads >= _maxThreads) break; System.Object lockThis = new System.Object(); lock (lockThis) { _currentThreads ; if (_currentThreads > _maxThreads) _currentThreads = _maxThreads; string tip = curIp; Thread t = new Thread(new ParameterizedThreadStart(Run)); t.Start(tip); threads.Add(t); curIp = IPUtility.getLastIp(curIp, p.EndIp, 1); } } else { break; } } } } protected void Run(object ob) { string ip = ob.ToString(); SocketGetHead h = new SocketGetHead(); string ret = h.GetHtml(ip, 80); if (ret.IndexOf("DVRDVS-Webs") > 0) { ListViewItem item = new ListViewItem(); item.SubItems[0].Text = (listView1.Items.Count 1).ToString(); ListViewItem.ListViewSubItem lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = ip; item.SubItems.Add(lvSubItem); lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = "DVRDVS-Webs"; item.SubItems.Add(lvSubItem); listView1.Items.Add(item); } System.Object lockThis = new System.Object(); lock(lockThis) { lblCurIp.Text = ip; _currentThreads--; if (_currentThreads < 0) _currentThreads = 0; } } private void tsmCopy_Click(object sender, EventArgs e) { if (listView1.SelectedItems.Count > 0) { string ip = listView1.SelectedItems[0].SubItems[1].Text; Clipboard.SetText(ip); } } private void tsmExport_Click(object sender, EventArgs e) { StreamWriter writer = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory "\export.txt",true); foreach (ListViewItem item in listView1.Items) { string ip=item.SubItems[1].Text; writer.WriteLine(ip); writer.Flush(); } writer.Flush(); writer.Close(); MessageBox.Show("导出成功!"); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } Thread.Sleep(5000); } private void btnStop_Click(object sender, EventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } btnStart.Enabled = true; } }}
    2014-06-23下载
    积分:1
  • WebQQ 接口 以及测试项目 附完整源码
    webqq接口实例,含测试项目
    2013-04-08下载
    积分:1
  • 关于C++的介绍,重点介绍了在特殊领域的C++的
    关于C++的网络编程介绍,重点介绍了在特殊领域的C++的编程-About C++ Introduction of network programming, focusing on specific areas in the introduction of the C++ programming
    2022-04-17 08:13:31下载
    积分:1
  • VS2005-IPAddressControlLib-rev-10
    VS很好用的IP类文件,外国人编写的哦,很实用的命名空间(IP class files VS good use of foreigners prepared oh, Very practical namespace)
    2020-12-18 11:19:11下载
    积分:1
  • sockAPI
    windows socket API的基本应用 完整工程;服务器异步监听模式 适合初学参考。(The basic application windows socket API complete works server asynchronous listening mode suitable for beginners reference.)
    2009-10-17 09:11:45下载
    积分:1
  • camera
    手机客户端和pc服务器端通过socket连接,pc发送信息可以控制手机端拍照(Android client connect to PC server by socket,and PC server can control the phone to take a picture by send to phone a message.)
    2013-12-04 17:39:12下载
    积分:1
  • 696518资源总数
  • 106242会员总数
  • 10今日下载