Codebase list eapmd5pass / ddc97fb
Pre-build commit Devon Kearns 11 years ago
10 changed file(s) with 106 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 eapmd5pass (1.4-1kali1) kali; urgency=low
1
2 * Initial release
3
4 -- dookie <[email protected]> Mon, 19 Nov 2012 08:19:16 -0700
0 Source: eapmd5pass
1 Section: net
2 Priority: extra
3 Maintainer: dookie <[email protected]>
4 Build-Depends: debhelper (>= 8.0.0)
5 Standards-Version: 3.9.3
6 Homepage: http://www.willhackforsushi.com/?page_id=67
7 Vcs-Git: ssh://[email protected]/packages/eapmd5pass.git
8 Vcs-Browser: http://git.kali.org/gitweb/?p=packages/eapmd5pass.git;a=summary
9
10 Package: eapmd5pass
11 Architecture: any
12 Depends: ${shlibs:Depends}, ${misc:Depends}
13 Description: Tool for extracting and cracking EAP-MD5
14 EAP-MD5 is a legacy authentication mechanism that does not provide sufficient
15 protection for user authentication credentials. Users who authenticate using
16 EAP-MD5 subject themselves to an offline dictionary attack vulnerability.
17 .
18 This tool reads from a live network interface in monitor-mode, or from a
19 stored libpcap capture file, and extracts the portions of the EAP-MD5
20 authentication exchange. Once the challenge and response portions have been
21 collected from this exchange, eapmd5pass will mount an offline dictionary
22 attack against the user's password.
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: eapmd5pass
2 Source: http://www.willhackforsushi.com/?page_id=67
3
4 Files: *
5 Copyright: 2007-2008, Joshua Wright <[email protected]>
6
7 License: GPL-2+
8 This package is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12 .
13 This package is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17 .
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>
20 .
21 On Debian systems, the complete text of the GNU General
22 Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
23
24 Files: debian/*
25 Copyright: 2012 dookie <[email protected]>
26 License: GPL-2+
27 This package is free software; you can redistribute it and/or modify
28 it under the terms of the GNU General Public License as published by
29 the Free Software Foundation; either version 2 of the License, or
30 (at your option) any later version.
31 .
32 This package is distributed in the hope that it will be useful,
33 but WITHOUT ANY WARRANTY; without even the implied warranty of
34 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 GNU General Public License for more details.
36 .
37 You should have received a copy of the GNU General Public License
38 along with this program. If not, see <http://www.gnu.org/licenses/>
39 .
40 On Debian systems, the complete text of the GNU General
41 Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
0 usr/share/eapmd5pass
1 usr/share/applications
0 README
0 eapmd5pass usr/bin/
1 eapmd5-sample.dump usr/share/eapmd5pass/
2 EAPMD5-Challenge-01.cap usr/share/eapmd5pass/
3 brad.eaptest.cap usr/share/eapmd5pass/
4 brad.eaptest2.cap usr/share/eapmd5pass/
5 debian/kali-eapmd5pass.desktop usr/share/applications/
0 [Desktop Entry]
1 Name=eapmd5pass
2 Encoding=UTF-8
3 Exec=sh -c "eapmd5pass -h;sudo -s"
4 Icon=kali-menu.png
5 StartupNotify=false
6 Terminal=true
7 Type=Application
8 Categories=05-02-02-wlan-exploitation;
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2 # Sample debian/rules that uses debhelper.
3 # This file was originally written by Joey Hess and Craig Small.
4 # As a special exception, when this file is copied by dh-make into a
5 # dh-make output file, you may use that output file without restriction.
6 # This special exception was added by Craig Small in version 0.37 of dh-make.
7
8 # Uncomment this to turn on verbose mode.
9 #export DH_VERBOSE=1
10
11 %:
12 dh $@
13
14 override_dh_auto_install:
15
0 3.0 (quilt)