-
简易网络嗅探器
网络嗅探器在网路安全方面扮演很重要的角色。使用网络嗅探器可以把网卡设置为混杂模式,并可实现对网络上传输的数据包的捕获与分析。次分析结果可供网络安全分析之用,更有可能被用来做一些黑客行为。本文将详细介绍嗅探器的实现原理,并给出一个简单的实例。(Network sniffer plays a very important role in network security. The network sniffer can be used to set the network card as promiscuous mode, and it can capture and analyze the data packets transmitted on the network. The results of sub analysis can be used for network security analysis, and more likely to be used to do some hacker behavior. In this paper, the implementation principle of sniffer is introduced in detail, and a simple example is given.)
- 2017-10-27 20:45:09下载
- 积分:1
-
MX90640_STM32_HAL移植
说明: 测温矩阵传感器MLX90640的stm32移植版本,基于HAL库的硬件IIC驱动文件。(The STM32 porting version of mlx90640 is based on the hardware IIC driver file of Hal library.)
- 2021-01-11 09:48:49下载
- 积分:1
-
一位媛的修炼之路
OSG库是我目前常用的工具,时常写一写例子,这个是在该环境下的shader例子,不喜勿喷。
- 2022-02-09 23:04:44下载
- 积分:1
-
条码测试,条码打印,支持多种打印机,zebra
条码测试,条码打印,支持多种打印机,zebra-Barcode test, barcode printing, supports a wide range of printers, zebra
- 2022-09-11 21:00:02下载
- 积分:1
-
C# 在LINQ to DataSet中对分组操作执行子查询
C# 在LINQ to DataSet中对分组操作执行子查询,相关代码:
private void button1_Click(object sender, EventArgs e)
{//在LINQ to DataSet中对分组操作执行子查询
SqlConnection MyConnection = new SqlConnection();
MyConnection.ConnectionString = @"Data Source =.SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True";
MyConnection.Open();
SqlCommand MyCommand = new SqlCommand("Select * From Orders ", MyConnection);
DataSet MySet = new DataSet();
SqlDataAdapter MyAdapter = new SqlDataAdapter(MyCommand);
MyAdapter.Fill(MySet);
DataTable MyQueryTable = MySet.Tables[0];
var MyQuery = from MyOrder in MyQueryTable.AsEnumerable()
orderby MyOrder.Field("ShipCity")
group MyOrder by MyOrder.Field("ShipCity") into g
select new
{
MyCity = g.Key,
MyMaxFreight = (from MyData in g select MyData.Field("Freight")).Max()
- 2022-01-27 20:20:32下载
- 积分:1
-
TSAnalyzer_v3.2.5.0
分析mpeg2文件格式,例分析数字电视,ts流,各种psi表, pat,pmt,cat,nit,eit,tot,tdt,bat.(Analysis of mpeg2 file format, cases of analysis of digital TV, ts stream, a variety of psi table, pat, pmt, cat, nit, eit, tot, tdt, bat.)
- 2009-12-14 16:22:39下载
- 积分:1
-
抢答器
单片机的抢答器,有时间倒计时和犯规报警等(SCM responder, time countdown and foul alarm, etc.)
- 2018-08-11 16:31:31下载
- 积分:1
-
outlook小插件,实现读取多个pst到outlook
因为工作中涉及到将多个(大概有150个pst)文件导入到outlook里面,同是每个pst文件解压之后有很多小的子文件夹,手动合并的话太麻烦,这里也包含了将邮件分别合并到发件箱和收件箱,以及垃圾箱的功能,不过运行速度有点慢,还有待提高
- 2022-02-06 04:17:16下载
- 积分:1
-
C#程序设计教程(第3版)-微课版清华出版社(源代码和ppt)
本书是《C#程序设计教程》的第3版。书中基于Visual Studio 2017/.NET Framework 4.7开发和运行环境,阐述C# 7.0语言的基础知识,以及使用C# 7.0语言的实际开发应用实例,具体内容包括:C#语言基础、面向对象编程、结构、枚举、泛型、特性、语言集成查询、多线程编程技术、数值日期和字符串处理、文件和流输入输出、集合、数据库访问、Windows窗体应用程序、WPF应用程序、ASP.NET Web应用程序设计等。 本书作者结合多年的程序设计、开发及授课经验,精选大量的实例,由浅入深、循序渐进地介绍C#程序设计语言,让读者能够较为系统全面地掌握程序设计的理论和应用。每个相关知识点都配有视频讲解。本书配有实验和辅导教材《C#程序设计实验指导与习题测试(第3版)》,提供了大量的思考与实践练习,让读者从实践中巩固和应用所学的知识。 本书可作为高等学校计算机程序设计教程,同时也可作为广大程序设计开发者、爱好者的自学参考书。
- 2021-05-06下载
- 积分:1
-
基于蚁群算法的区域覆盖卫星星座优化设计 ACA
基于蚁群算法的区域覆盖卫星星座优化设计
星座;区域覆盖:蚁群算法:连续域;优化(Ant colony algorithm based on regional coverage satellite constellation design constellation regional coverage: ant colony optimization: continuous domain Optimization)
- 2010-05-10 17:14:51下载
- 积分:1