A simple tool to convert packet captures in 802.11 format to Ethernet format.

Lots of tools can only understand Ethernet link types, so I wrote this
tool to convert captures to a format that they can understand.
Note that this tool is really only useful for encrypted traffic.

Specify a wireless packet capture as an input file, and the name of the
desired Ethernet-format output file. Wlan2eth will only convert data frames
to the output file, which will likely result in a significantly smaller output
packet capture file. Note that wlan2eth will only convert unencrypted frames.

WWW: http://www.willhackforsushi.com/?page_id=79

PR:		ports/179095
Submitted by:	nemysis (self)
Approved by:	wg/pawel (mentors)
This commit is contained in:
Rusmir Dusko 2013-10-16 21:37:38 +00:00
parent f818516727
commit db4ca19e0a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=330548
5 changed files with 55 additions and 0 deletions

View file

@ -1244,6 +1244,7 @@
SUBDIR += wired-tracker SUBDIR += wired-tracker
SUBDIR += wireshark SUBDIR += wireshark
SUBDIR += wireshark-lite SUBDIR += wireshark-lite
SUBDIR += wlan2eth
SUBDIR += wmlj SUBDIR += wmlj
SUBDIR += wmnd SUBDIR += wmnd
SUBDIR += wmnet SUBDIR += wmnet

32
net/wlan2eth/Makefile Normal file
View file

@ -0,0 +1,32 @@
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
# $FreeBSD$
PORTNAME= wlan2eth
PORTVERSION= 1.3
CATEGORIES= net security
MASTER_SITES= http://www.willhackforsushi.com/code/${PORTNAME}/
EXTRACT_SUFX= .tgz
MAINTAINER= nemysis@FreeBSD.org
COMMENT= Convert packet captures in 802.11 format to Ethernet format
LICENSE= GPLv2
PORTDOCS= THANKS
SUB_FILES= pkg-message
PLIST_FILES= bin/${PORTNAME}
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -e 's|CFLAGS =|CFLAGS ?=|' \
${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>

2
net/wlan2eth/distinfo Normal file
View file

@ -0,0 +1,2 @@
SHA256 (wlan2eth-1.3.tgz) = a6b9f4a9f0407f79e61571de73e800785d4047019d66b891a569ff75cc5fe774
SIZE (wlan2eth-1.3.tgz) = 8242

View file

@ -0,0 +1,9 @@
===============================================================================
wlan2eth has been installed.
For more information about wlan2eth visit:
http://www.willhackforsushi.com/?page_id=79
===============================================================================

11
net/wlan2eth/pkg-descr Normal file
View file

@ -0,0 +1,11 @@
A simple tool to convert packet captures in 802.11 format to Ethernet format.
Lots of tools can only understand Ethernet link types, so I wrote this
tool to convert captures to a format that they can understand.
Note that this tool is really only useful for encrypted traffic.
Specify a wireless packet capture as an input file, and the name of the
desired Ethernet-format output file. Wlan2eth will only convert data frames
to the output file, which will likely result in a significantly smaller output
packet capture file. Note that wlan2eth will only convert unencrypted frames.
WWW: http://www.willhackforsushi.com/?page_id=79