• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

WiFi-Pumpkin v0.7.5 - Framework for Rogue Wi-Fi Access Point Attack

Status
Not open for further replies.

z3r0

Leech
User
Joined
May 18, 2016
Messages
11
Reputation
0
Reaction score
26
Points
13
Credits
0
‎9 Years of Service‎
74%
WiFi-Pumpkin.png


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

Python 2.7

Code:
> git clone https://github.com/P0cL4bs/WiFi-Pumpkin.git
cd WiFi-Pumpkin
chmod +x installer.sh
./installer.sh --install
refer to the wiki for
This link is hidden for visitors. Please Log in or register now.


Features

  • Rogue Wi-Fi Access Point
  • Deauth Attack Clients AP
  • Probe Request Monitor
  • DHCP Starvation Attack
  • Credentials Monitor
  • Transparent Proxy
  • Windows Update Attack
  • Phishing Manager
  • Partial Bypass HSTS protocol
  • Support beef hook
  • Mac Changer
  • ARP Poison
  • DNS Spoof


Plugins

Plugin Description

This link is hidden for visitors. Please Log in or register now.
Sniff passwords and hashes from an interface or pcap file

This link is hidden for visitors. Please Log in or register now.
This tools offer a different features for post-explotation once you change the DNS server to a Victim.

This link is hidden for visitors. Please Log in or register now.
Sslstrip is a MITM tool that implements Moxie Marlinspike's SSL stripping attacks based version fork [MENTION=4022]LeoNardo[/MENTION]Nve/@xtr4nge.

This link is hidden for visitors. Please Log in or register now.
Sergio Proxy (a Super Effective Recorder of Gathered Inputs and Outputs) is an HTTP proxy that was written in Python for the Twisted framework.

Transparent Proxy

Transparent proxies that you can use to intercept and manipulate HTTP/HTTPS traffic modifying requests and responses, that allow to inject javascripts into the targets visited. You can easily implement a module to inject data into pages creating a python file in directory "Proxy" automatically will be listed on PumpProxy tab.

Plugins Example

The following is a sample module that injects some contents into the tag to set blur filter into body html page:

Code:
>
from Plugin import PluginProxy

class blurpage(PluginProxy):
   ''' this module proxy set blur into body page html response'''
   _name          = 'blur_page'
   _activated     = False
   _instance      = None
   _requiresArgs  = False

   @staticmethod
   def getInstance():
       if blurpage._instance is None:
           blurpage._instance = blurpage()
       return blurpage._instance

   def __init__(self):
       self.LoggerInjector()
       self.injection_code = []

   def setInjectionCode(self, code):
       self.injection_code.append(code)

   def inject(self, data, url):
       injection_code = ''' '''
       self.logging.info("Injected: %s" % (url))
       return data.replace('',injection_code )
FAQ

I can't install it

have a look at the
This link is hidden for visitors. Please Log in or register now.


I have this message warning
This link is hidden for visitors. Please Log in or register now.


You system not have support run Wifi-Pumpkin with Wireless connection

hi , is it work on X Wireless Adapters ?

I don't know, check this
This link is hidden for visitors. Please Log in or register now.


I can't install package X

Try installing the package via pip, Google is your friend!

It Windows supported?

No, It will never be

DOWNLOAD LINK :-
This link is hidden for visitors. Please Log in or register now.


 
Status
Not open for further replies.
Back
Top