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

📄 wepdecrypt_inc

📁 About WepDecrypt: Wepdecrypt is a Wireless LAN Tool written in c which guesses WEP Keys based o
💻
字号:
#!/bin/sh# # Shell Script for joining JOHN THE RIPPER and WEPDECRYPT# by Dominik Blunk and Alain Girardet and Fernando Tarin## Incremental mode of john## usage: ./run_inc DUMPFILE [MAC_ADDRESS] [NUMBER_NETWORKS]## Edit /etc/wepdecrypt.conf for configuration. /etc/wepdecrypt.conf## command to join JOHN RIPPER and WEPDECRYPT#if which john &> /dev/null; then	JOHNDIR=`which john | awk -F / '{for (i=1; i<=NF-1; i++){ printf "%s/", $i };}'`fiif [ $# -lt 1 -o $# -gt 3 ]; then	echo "Usage: $0 Dumpfile [mac_address] [number_networks]";	exit 1;fiif ! [ -f $1 ]; then	echo "Error: Dumpfile '$1' does not exist.";	exit 1;fiif [ $# -eq 1 ]; then 	if test -f $JOHNDIR/john; then		$JOHNDIR/john -incremental -stdout:13\	 	| wepdecrypt -f $1;		exit 0;	else		echo "John the ripper not found! Edit '/etc/wepdecrypt.conf' ";		echo "to set correct path...";		exit 1;	fifiif [ $# -eq 2 ]; then	if test -f $JOHNDIR/john; then                $JOHNDIR/john -incremental -stdout:13\                | wepdecrypt -f $1 -b $2;		exit 0;	 else                echo "John the ripper not found! Edit '/etc/wepdecrypt.conf' ";                echo "to set correct path...";                exit 1;        fifiif [ $# -eq 3 ]; then        if test -f $JOHNDIR/john; then                $JOHNDIR/john -incremental -stdout:13\                | wepdecrypt -f $1 -b $2 -n $3;                exit 0;        else                echo "John the ripper not found! Edit '/etc/wepdecrypt.conf' ";                echo "to set correct path...";                exit 1;        fifi

⌨️ 快捷键说明

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