- 博客(11)
- 资源 (1)
- 收藏
- 关注
原创 关于whereRU系统的粗略构想与简单实现
WhereRU软件简介1. 软件介绍WhereRU软件是运行在Android环境(支持Android 2.2以上的版本)下,利用全球定位系统(GPS),结合百度地图API实现本机及对方手机在百度地图上的定位。主要功能包括: i. 本机定位功能 ii. 对方手机定
2012-02-06 15:44:53
576
原创 C# 实现Text to Speech
Windows Speech SDK 5.1 下载链接 http://www.microsoft.com/downloads/details.aspx?FamilyID=5e86ec97-40a7-453f-b0ee-6583171b4530&displaylang=en需要下载文件:SpeechSDK51.exe (开发包)和 SpeechSDK51LangPack.exe(语言包)
2009-09-02 15:35:00
1310
原创 Some great libs
JPCAP:http://netresearch.ics.uci.edu/kfujii/jpcap/doc/index.html WINCAP:http://www.winpcap.org/ DotRas:http://dotras.codeplex.com/ Dotnet DLL:http://pinvoke.net
2009-04-24 10:00:00
483
原创 C# JPG图片压缩
ImageCodecInfo myImageCodecInfo = ImageCodecInfo.GetImageEncoders()[1];EncoderParameters myEncodeParameters=new EncoderParameters(1);EncoderParameter myEncoderParameter1=new EncoderParameter(Encod
2009-04-23 15:49:00
2997
原创 ARP欺骗攻击在网管软件中的应用
网管软件主要功能及实现a) 实时记录上线用户并存档备查:通过广播ARP请求,获得在线主机的ARP回复,从而确定主机在线情况。b) 解除ARP欺骗类软件危害,跟踪ARP欺骗主机:首先记录局域网中主机的IP和MAC地址的对应信息,把监听的ARP数据包中的源主机的IP和MAC地址与记录的信息进行对比,判断是否ARP数据包时错误的数据包,并根据包中的IP和MAC地址
2009-04-07 22:51:00
702
原创 利用WPCAP函数,模拟ARP请求数据包,发送并监听ARP回复响应
using System;using System.Collections.Generic;using System.Linq;using System.Text;using SharpPcap;using SharpPcap.Protocols;using SharpPcap.Packets;using SharpPcap.Util;using System.Ne
2009-03-25 15:58:00
1761
2
原创 利用WPCAP函数,开发局域网ARP数据包监听程序
using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using SharpPcap;using SharpPcap.Protocols;using SharpPcap.Packets;using System.IO;namespace
2009-03-25 15:57:00
984
原创 ip字符串与byte[]互转 和 mac字符串与byte[]互转
//ip字符串转byte[]String targetIPStr="192.168.1.1";byte[] targetIP=new byte[4];int i=0;for(String str:targetIPStr.split("[.]")){targetIP[i++]=(byte)(Integer.parseInt(str));}//mac字符串转byte[]String tar
2009-03-16 22:07:00
2288
原创 如何通过一个IP和子网掩码得到网络地址和广播地址
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package javatest;import java.io.IOException;import java.io.*;/** * * @author Administrator */public cl
2009-03-12 14:07:00
1336
原创 开发windows service完成SQL数据库的定时自动导出工作(ACCESS)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Linq;using System.ServiceProcess;using System.Text;using System.Timer
2009-03-12 09:38:00
988
原创 Jpcap development for ARP
Jpcap URL: http://netresearch.ics.uci.edu/kfujii/jpcap/doc/index.htmlJpcap API: http://netresearch.ics.uci.edu/kfujii/jpcap/doc/javadoc/index.html ARPAttacker: method: Attack the computers
2009-03-12 09:15:00
793
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人