Skip to content

Commit

Permalink
v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sophron committed Jan 12, 2018
1 parent a1ff6f2 commit 191a192
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 5 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
Wifiphisher v1.3 [2016-04-15]
Wifiphisher v1.4 [2018-01-12]

o Added dissociation frame to DEAUTH attack [@anakin1028]
o RSSI output fix [@anakin1028]
o Code quality fixes. [@blackHatMonkey]
o Introduced MAC address randomization [@anakin1028]
o Refactoring of interface management module [@blackHatMonkey]
o Introduced tox. [@blackHatMonkey]
o Added support for providing Internet to victim users via a wireless interface [@anakin1028]
o Tool now kills any interfering processes on startup [@anakin1028]
o Use curses everywhere for TUI [@anakin1028]
o Show the encryption type during AP discovery. [@sophron]
o Introduced Wifiphisher Extensions [@sophron]
o Introduced roguehostapd, a patched version of hostapd. [@anakin1028]
o Introduced WPA/WPA2 captured passphrase validation. [@anakin1028]
o Added WPS info during AP discovery. [@anakin1028]
o Added the option to perform DEAUTH attack based on ESSID [@anakin1028]
o Added operation moded [@sophron]
o Increased performance of modules [@blackHatMonkey]
o Made the tool run with only one physical interface [@anakin1028]
o Introduced --logging option [@blackHatMonkey]
o Introduced channel monitoring to check if target AP switches channel [@anakin1028]
o Introduced Known Beacons attack [@sophron]
o Introduced WPS PBC phishing attack [@anakin1028]

Wifiphisher v1.3 [2017-04-15]

o Introduced --quitonsuccess (-qS) option. [@javaes]
o Introduced Travis CI. [@d33tah]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ A full list of contributors lies <a href="https://github.com/wifiphisher/wifiphi
Wifiphisher is licensed under the GPL license. See [LICENSE](LICENSE) for more information.

## Project Status
Wifiphisher's current version is **1.3**. You can download the latest release from <a href="https://github.com/wifiphisher/wifiphisher/releases/tag/v1.3">here</a>. Otherwise you can get the latest development version by cloning this repository.
Wifiphisher's current version is **1.4**. You can download the latest release from <a href="https://github.com/wifiphisher/wifiphisher/releases/tag/v1.4">here</a>. Otherwise you can get the latest development version by cloning this repository.

## Disclaimer
* Usage of Wifiphisher for attacking infrastructures without prior mutual consistency can be considered as an illegal activity. It is the final user's responsibility to obey all applicable local, state and federal laws. Authors assume no liability and are not responsible for any misuse or damage caused by this program.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def get_hostapd():
KEYWORDS = ["wifiphisher", "evil", "twin", "phishing"]
PACKAGES = find_packages(exclude=["docs", "tests"])
INCLUDE_PACKAGE_DATA = True
VERSION = "1.3"
VERSION = "1.4"
CLASSIFIERS = ["Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English", "Operating System :: Unix",
Expand Down
2 changes: 1 addition & 1 deletion wifiphisher/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
dir_of_data = path_to_project_root + '/data/'

# Basic configuration
DEV = 1
DEV = 0
DEAUTH_EXTENSION = "deauth"
LURE10_EXTENSION = "lure10"
WPSPBC = "wpspbc"
Expand Down
2 changes: 1 addition & 1 deletion wifiphisher/pywifiphisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def parse_args():
return parser.parse_args()


VERSION = "1.3GIT"
VERSION = "1.4"
args = parse_args()
APs = {} # for listing APs

Expand Down

0 comments on commit 191a192

Please sign in to comment.