⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 networksweeper.htm

📁 AttackAPI提供简单而直观的web可编程接口
💻 HTM
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
		<link rel="stylesheet" href="styles/screen.css" type="text/css"/>
		<script src="scripts/jquery.js" type="text/javascript"></script>
		<script src="scripts/init.js" type="text/javascript"></script>
		<title>title</title>
	</head>
	<body>
		<h1 id="header">title</h1>
		<ul id="navigation"></ul>
		
		<div class="message">Due to the nature of the lazySweep technique, repetative entries will appear. It is the consumer (callback) responsibility to filter out all repetitions.</div>
		<form>
			<label for="range">range (CIDR or RANGE notation)</label><br/>
			<input name="range" value="127.0.0.1/30" type="text" size="50"/><br/>
			<label for="protocols">protocols (lazySweep only, no space)</label><br/>
			<input name="protocols" value="ftp,http,https" type="text" size="50"/><br/>
			<label for="result">result</label><br/>
			<textarea name="result" cols="50" rows="10"></textarea><br/>
			<input name="lazySweep" value="Lazy Sweep" type="button"/>
			<input name="reset" value="Reset" type="button"/>
		</form>
		
		<script src="../lib/AttackAPI/AttackAPI.js" type="text/javascript"></script>
		<script src="../lib/AttackAPI/NetworkCalculator.js" type="text/javascript"></script>
		<script src="../lib/AttackAPI/HistoryDumper.js" type="text/javascript"></script>
		<script src="../lib/AttackAPI/NetworkSweeper.js" type="text/javascript"></script>
		<script type="text/javascript">
			$('input[@name="lazySweep"]').click(function () {
				var form = $(this).parent().get(0);
				AttackAPI.NetworkSweeper.lazySweep(function (target, status) {
					form.result.value += target + ' ' + status + "\n";
				}, AttackAPI.NetworkCalculator.generateIPs(form.range.value), form.protocols.value.split(','));
			});
			
			$('input[@name="reset"]').click(function () {
				$(this).parent().get(0).result.value = '';
			});
		</script>
		
		<p id="footer"><a href="http://www.gnucitizen.org">GNUCITIZEN</a> &copy; 2006 all rights reserved</p>
	</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -