-
TCP侧信道攻击,用于实现CVE-2016-5696的漏洞验证 mountain_goat-master
TCP侧信道攻击,用于实现CVE-2016-5696的漏洞验证(off-path exploit used to do CVE-2016-5696 poc)
- 2020-06-19 04:20:01下载
- 积分:1
-
STC12C5A60S2广州塔(1)
这个文件是光立方的制作方法,用STC系列单片机控制,广州塔形状,多种亮法,内部有详细的程序,需要的话可以自己改变代码(This document is the production method of light cube, controlled by STC series singlechip, the shape of Canton Tower, various bright methods, the internal detailed program, and can change the code by itself if necessary.)
- 2018-07-20 09:47:31下载
- 积分:1
-
RemoteStartup
说明: 远程开机的程序,有mfc,vc++,非常实用(Remote boot-consuming procedures, mfc, vc++, Very useful)
- 2008-11-21 11:04:54下载
- 积分:1
-
LEPS1
LEPS路由算法在omnet4.1版本上绝对能正常运行(The LEPS routing algorithm omnet4.1 version absolutely normal operation)
- 2012-12-06 17:18:22下载
- 积分: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
-
progrgms
说明: aswindows programs code i am is a
- 2018-12-25 12:14:01下载
- 积分:1
-
tq2440_unix_c
基于国嵌教育TQ2440,tcp和udp的unix网络编程,包含客户端和服务端程序,亲测可用。(TQ2440, tcp and udp of unix-based network programming, including client and server program)
- 2016-12-30 20:10:53下载
- 积分:1
-
ssocks-0.0.14.tar
sSocks是一个socks代理工具套装,可用来开启socks代理服务,支持socks5验证,支持IPV6和UDP,并提供反向socks代理服务,即将远程计算机作为socks代理服务端,反弹回本地,极大方便内网的渗透测试,其最新版为0.0.13(sSocks is a socks proxy tool sets, can be used to open the socks proxy services, support socks5 authentication, support for IPV6 and UDP, and to provide reverse socks proxy services, about the remote computer as socks proxy server, bounce back to the local, which greatly facilitates network penetration testing, and its latest version is 0.0.13,)
- 2020-12-10 16:09:19下载
- 积分:1
-
RemoteControl-master
说明: 实现1对多远程桌面控制,远程文件传输等功能。(Realize the functions of 1-to-many remote desktop control and remote file transfer.)
- 2019-05-14 16:10:15下载
- 积分:1
-
基于STM32F103ZET6实现的智能灯光亮度调节器
【实例简介】本实验是一个期末大作业,是我写的第一个小项目。按键控制自动识别模式,或者手动调节模式。可调五档光的亮度。也可通过环境光的亮度自动调节,环境越亮,灯越暗。本代码由正点原子精英开发板完成,可直接烧入使用。
- 2021-08-02 00:31:02下载
- 积分:1