Skip to content
This repository has been archived by the owner on Apr 19, 2020. It is now read-only.

Commit

Permalink
added support Parrot 3.0.1 to use AP with wireless connection #69
Browse files Browse the repository at this point in the history
  • Loading branch information
mh4x0f committed Jul 31, 2016
1 parent 3b74fa9 commit e76f989
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Version 0.7.8
- fixed domain-name-servers in dhcpd server
- fixed re-design Modules DNS spoof, Update Fake Attack
- added new module DNS spoof with NetfilterQueue
- added support Parrot 3.0.1 to use AP with wireless connection #69

Version 0.7.5
-------------
Expand Down
7 changes: 4 additions & 3 deletions Core/Utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,10 @@ def get_mac(host):
def get_interface_mac(device):
result = check_output(["ifconfig", device], stderr=STDOUT, universal_newlines=True)
m = search("(?<=HWaddr\\s)(.*)", result)
if not hasattr(m, "group") or m.group(0) == None:
return None
return m.group(0).strip()
n = search("(?<=ether\\s)(.*)", result)
if hasattr(m, "group") : return m.group(0).strip()
if hasattr(n, "group") : return n.group(0).split()[0]
return None

@staticmethod
def randomMacAddress(prefix):
Expand Down
1 change: 1 addition & 0 deletions Core/config/commits/Lcommits.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ master:
{ changelog : 'fixed domain-name-servers in dhcpd server' },
{ changelog : 'fixed re-design Modules DNS spoof, Update Fake Attack' },
{ changelog : 'added new module DNS spoof with NetfilterQueue' },
{ changelog : 'added support Parrot 3.0.1 to use AP with wireless connection #69' },
]

WiFiPumpkin:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Framework for Rogue Wi-Fi Access Point Attack
WiFi-Pumpkin is a security tool that provides the Rogue access point to Man-In-The-Middle and network attacks.
### Installation

Kali 2.0/WifiSlax 4.11.1/Parrot 2.0.5
Kali 2.0/WifiSlax 4.11.1/Parrot 3.0.1
- Python 2.7
```sh
git clone https://github.com/P0cL4bs/WiFi-Pumpkin.git
Expand Down

0 comments on commit e76f989

Please sign in to comment.