实例介绍
本系统是完整的C#写的灰鸽子程序,可提高编程者的网络编程水平,特别适合学习和开发
【实例截图】
【核心代码】
4744300845386653054.zip
└── C#写的灰鸽子源码,可运行
├── Backup
│ ├── Client
│ │ ├── AboutForm.cs
│ │ ├── AboutForm.Designer.cs
│ │ ├── AboutForm.resx
│ │ ├── Client.csproj
│ │ ├── Client.csproj.user
│ │ ├── CmdForm.cs
│ │ ├── CmdForm.Designer.cs
│ │ ├── CmdForm.resx
│ │ ├── ConfigForm.cs
│ │ ├── ConfigForm.Designer.cs
│ │ ├── ConfigForm.resx
│ │ ├── DeviceSelector.cs
│ │ ├── DeviceSelector.Designer.cs
│ │ ├── DeviceSelector.resx
│ │ ├── File.cs
│ │ ├── FontForm.cs
│ │ ├── FontForm.Designer.cs
│ │ ├── FontForm.resx
│ │ ├── logo.ico
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── Master.cs
│ │ ├── NewForm.cs
│ │ ├── NewForm.Designer.cs
│ │ ├── NewForm.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Regedit.cs
│ │ ├── RenameForm.cs
│ │ ├── RenameForm.Designer.cs
│ │ ├── RenameForm.resx
│ │ ├── RunCommandForm.cs
│ │ ├── RunCommandForm.Designer.cs
│ │ ├── RunCommandForm.resx
│ │ ├── ScreenForm.cs
│ │ ├── ScreenForm.Designer.cs
│ │ ├── ScreenForm.resx
│ │ ├── ShowLogForm.cs
│ │ ├── ShowLogForm.Designer.cs
│ │ ├── ShowLogForm.resx
│ │ ├── Socket.cs
│ │ ├── VideoForm.cs
│ │ ├── VideoForm.Designer.cs
│ │ ├── VideoForm.resx
│ │ └── VideoForm.zh-CHS.resx
│ ├── Jackch
│ │ ├── Chicken.cs
│ │ ├── Chickens.cs
│ │ ├── Cmd.cs
│ │ ├── DsControl.cs
│ │ ├── DsCore.cs
│ │ ├── DsDevice.cs
│ │ ├── DsExtend.cs
│ │ ├── DsUtils.cs
│ │ ├── DsUuids.cs
│ │ ├── FileIcon.cs
│ │ ├── FileTrans.cs
│ │ ├── IPScaner.cs
│ │ ├── Jackch.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── SystemInfo.cs
│ ├── Server
│ │ ├── Cmd.cs
│ │ ├── FontForm.cs
│ │ ├── FontForm.Designer.cs
│ │ ├── FontForm.resx
│ │ ├── Net.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Screen.cs
│ │ ├── Server.cs
│ │ ├── Server.csproj
│ │ ├── Server.Designer.cs
│ │ ├── Server.resx
│ │ ├── SystemInfo.cs
│ │ └── ViewScreen.cs
│ ├── TabStrip
│ │ ├── BaseClasses
│ │ │ └── BaseStyledPanel.cs
│ │ ├── Control
│ │ │ ├── FATabStripCloseButton.cs
│ │ │ ├── FATabStrip.cs
│ │ │ ├── FATabStripItemCollection.cs
│ │ │ ├── FATabStripItem.cs
│ │ │ ├── FATabStripMenuGlyph.cs
│ │ │ └── FATabStrip.resx
│ │ ├── Delegates.cs
│ │ ├── Design
│ │ │ ├── FATabStripDesigner.cs
│ │ │ ├── FATabStripItemDesigner.cs
│ │ │ └── ICaptionSupport.cs
│ │ ├── Enums.cs
│ │ ├── FATabStrip.bmp
│ │ ├── Helpers
│ │ │ └── CollectionWithEvents.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── TabStrip.csproj
│ │ └── TabStrip.csproj.user
│ ├── TwoCare.sln
│ └── TwoCare.suo
├── Client
│ ├── AboutForm.cs
│ ├── AboutForm.Designer.cs
│ ├── AboutForm.resx
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Jackch.dll
│ │ │ ├── Jackch.pdb
│ │ │ ├── TabStrip.dll
│ │ │ ├── TabStrip.pdb
│ │ │ ├── TwoCare.exe
│ │ │ ├── TwoCare.pdb
│ │ │ └── zh-CHS
│ │ │ └── TwoCare.resources.dll
│ │ └── Release
│ ├── Client.csproj
│ ├── Client.csproj.user
│ ├── CmdForm.cs
│ ├── CmdForm.Designer.cs
│ ├── CmdForm.resx
│ ├── ConfigForm.cs
│ ├── ConfigForm.Designer.cs
│ ├── ConfigForm.resx
│ ├── DeviceSelector.cs
│ ├── DeviceSelector.Designer.cs
│ ├── DeviceSelector.resx
│ ├── File.cs
│ ├── FontForm.cs
│ ├── FontForm.Designer.cs
│ ├── FontForm.resx
│ ├── img
│ │ ├── 10.png
│ │ ├── 11.png
│ │ ├── 12.png
│ │ ├── 1.ico
│ │ ├── 1.png
│ │ ├── 2.ico
│ │ ├── 2.png
│ │ ├── 3.ico
│ │ ├── 3.png
│ │ ├── 4.ico
│ │ ├── 4.png
│ │ ├── 5.ico
│ │ ├── 5.png
│ │ ├── 6.png
│ │ ├── 7.png
│ │ ├── 8.png
│ │ ├── 9.png
│ │ ├── gates.gif
│ │ ├── logo.ico
│ │ ├── pai.gif
│ │ ├── quan.gif
│ │ ├── Thumbs.db
│ │ └── user.ico
│ ├── imgfile
│ │ ├── 10.png
│ │ ├── 11.png
│ │ ├── 12.png
│ │ ├── 13.png
│ │ ├── 14.png
│ │ ├── 15.png
│ │ ├── 1.png
│ │ ├── 2.png
│ │ ├── 3.png
│ │ ├── 4.png
│ │ ├── 5.png
│ │ ├── 6.png
│ │ ├── 7.png
│ │ ├── 8.png
│ │ ├── 9.png
│ │ ├── disk.ico
│ │ ├── left.ico
│ │ ├── log.gif
│ │ ├── msg.gif
│ │ ├── parse.ico
│ │ ├── pc.ico
│ │ ├── REG_OTHER.png
│ │ ├── REG_SZ.png
│ │ ├── right.ico
│ │ ├── ring.ico
│ │ ├── Thumbs.db
│ │ ├── tool.ico
│ │ └── user.ico
│ ├── logo1.ico
│ ├── logo.ico
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── Master.cs
│ ├── NewForm.cs
│ ├── NewForm.Designer.cs
│ ├── NewForm.resx
│ ├── obj
│ │ ├── Client.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── Client.csproj.FileListAbsolute.txt
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ │ ├── GenerateResource-ResGen.read.4.tlog
│ │ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ │ ├── GenerateResource-ResGen.write.4.tlog
│ │ │ ├── Jackch.AboutForm.resources
│ │ │ ├── Jackch.CmdForm.resources
│ │ │ ├── Jackch.ConfigForm.resources
│ │ │ ├── Jackch.DeviceSelector.resources
│ │ │ ├── Jackch.FontForm.resources
│ │ │ ├── Jackch.MainForm.resources
│ │ │ ├── Jackch.NewForm.resources
│ │ │ ├── Jackch.Properties.Resources.resources
│ │ │ ├── Jackch.RenameForm.resources
│ │ │ ├── Jackch.RunCommandForm.resources
│ │ │ ├── Jackch.ScreenForm.resources
│ │ │ ├── Jackch.ShowLogForm.resources
│ │ │ ├── Jackch.VideoForm.resources
│ │ │ ├── Jackch.VideoForm.zh-CHS.resources
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── TwoCare.exe
│ │ │ ├── TwoCare.pdb
│ │ │ └── zh-CHS
│ │ │ └── TwoCare.resources.dll
│ │ └── Gates.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Regedit.cs
│ ├── RenameForm.cs
│ ├── RenameForm.Designer.cs
│ ├── RenameForm.resx
│ ├── RunCommandForm.cs
│ ├── RunCommandForm.Designer.cs
│ ├── RunCommandForm.resx
│ ├── ScreenForm.cs
│ ├── ScreenForm.Designer.cs
│ ├── ScreenForm.resx
│ ├── ShowLogForm.cs
│ ├── ShowLogForm.Designer.cs
│ ├── ShowLogForm.resx
│ ├── Socket.cs
│ ├── Thumbs.db
│ ├── VideoForm.cs
│ ├── VideoForm.Designer.cs
│ ├── VideoForm.resx
│ └── VideoForm.zh-CHS.resx
├── Jackch
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Jackch.dll
│ │ │ └── Jackch.pdb
│ │ └── Release
│ ├── Chicken.cs
│ ├── Chickens.cs
│ ├── Cmd.cs
│ ├── DsControl.cs
│ ├── DsCore.cs
│ ├── DsDevice.cs
│ ├── DsExtend.cs
│ ├── DsUtils.cs
│ ├── DsUuids.cs
│ ├── FileIcon.cs
│ ├── FileTrans.cs
│ ├── IPScaner.cs
│ ├── Jackch.csproj
│ ├── Jackch.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Jackch.csproj.FileListAbsolute.txt
│ │ │ ├── Jackch.dll
│ │ │ ├── Jackch.pdb
│ │ │ └── TempPE
│ │ └── jackch.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SystemInfo.cs
├── Server
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Server.exe
│ │ │ └── Server.pdb
│ │ └── Release
│ ├── Cmd.cs
│ ├── FontForm.cs
│ ├── FontForm.Designer.cs
│ ├── FontForm.resx
│ ├── Net.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ │ ├── Jackch.FontForm.resources
│ │ │ ├── Jackch.Properties.Resources.resources
│ │ │ ├── Jackch.Server.resources
│ │ │ ├── Server.csproj.FileListAbsolute.txt
│ │ │ ├── Server.exe
│ │ │ ├── Server.pdb
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── Server.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Screen.cs
│ ├── Server.cs
│ ├── Server.csproj
│ ├── Server.csproj.user
│ ├── Server.Designer.cs
│ ├── Server.resx
│ ├── SystemInfo.cs
│ └── ViewScreen.cs
├── TabStrip
│ ├── BaseClasses
│ │ └── BaseStyledPanel.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── TabStrip.dll
│ │ │ └── TabStrip.pdb
│ │ └── Release
│ ├── Control
│ │ ├── FATabStripCloseButton.cs
│ │ ├── FATabStrip.cs
│ │ ├── FATabStripItemCollection.cs
│ │ ├── FATabStripItem.cs
│ │ ├── FATabStripMenuGlyph.cs
│ │ └── FATabStrip.resx
│ ├── Delegates.cs
│ ├── Design
│ │ ├── FATabStripDesigner.cs
│ │ ├── FATabStripItemDesigner.cs
│ │ └── ICaptionSupport.cs
│ ├── Enums.cs
│ ├── FATabStrip.bmp
│ ├── Helpers
│ │ └── CollectionWithEvents.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── FarsiLibrary.Win.FATabStrip.resources
│ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ ├── TabStrip.csproj.FileListAbsolute.txt
│ │ ├── TabStrip.dll
│ │ ├── TabStrip.pdb
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── TabStrip.csproj
│ ├── TabStrip.csproj.user
│ └── Thumbs.db
├── Thumbs.db
├── TwoCare.sln
├── TwoCare.suo
├── UpgradeLog2.XML
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
└── 木马技术的简单分析与实践.txt
55 directories, 331 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论