Git Product home page Git Product logo

enovella / wifi-pumpkin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from p0cl4bs/wifi-pumpkin-deprecated

0.0 3.0 0.0 5.29 MB

Framework for Rogue Wi-Fi Access Point Attack

License: GNU General Public License v3.0

Python 80.70% Shell 0.84% Batchfile 0.32% Assembly 4.17% Visual Basic 0.96% C++ 0.92% PowerBuilder 1.20% Ada 0.44% Pascal 1.79% C 0.77% Makefile 0.03% C# 0.30% CSS 0.80% JavaScript 2.62% HTML 4.13%

wifi-pumpkin's Introduction

logo

WiFi-Pumpkin

build

Framework for Rogue Wi-Fi Access Point Attack

Description

WiFi-Pumpkin is an open source 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 3.0.1/2.0.5

  • Python 2.7
 git clone https://github.com/P0cL4bs/WiFi-Pumpkin.git
 cd WiFi-Pumpkin
 ./installer.sh --install

refer to the wiki for Installation

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
  • Patch Binaries via MITM
  • Karma Attacks (support hostapd-mana)
  • LLMNR, NBT-NS and MDNS poisoner (Responder)

Plugins

Plugin Description
net-creds Sniff passwords and hashes from an interface or pcap file
dns2proxy This tools offer a different features for post-explotation once you change the DNS server to a Victim.
sslstrip2 Sslstrip is a MITM tool that implements Moxie Marlinspike's SSL stripping attacks based version fork @LeonardoNve/@xtr4nge.
sergio-proxy Sergio Proxy (a Super Effective Recorder of Gathered Inputs and Outputs) is an HTTP proxy that was written in Python for the Twisted framework.
BDFProxy-ng Patch Binaries via MITM: BackdoorFactory + mitmProxy, bdfproxy-ng is a fork and review of the original BDFProxy @secretsquirrel.
Responder Responder an LLMNR, NBT-NS and MDNS poisoner. Author: Laurent Gaffie

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 Injector-Proxy tab.

Plugins Example

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

import logging
from Plugin import PluginProxy
from core.utils import setup_logger

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.injection_code = []

   def LoggerInjector(self,session):
       setup_logger('injectionPage', './logs/AccessPoint/injectionPage.log',session)
       self.logging = logging.getLogger('injectionPage')

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

   def inject(self, data, url):
       injection_code = '''<head> <style type="text/css">
       body{
   	filter: blur(2px);
   	-webkit-filter: blur(2px);}
   	</style>'''
       self.logging.info("Injected: %s" % (url))
       return data.replace('<head>',injection_code )

Screenshots

Screenshot on the wiki

FAQ

FAQ on the wiki

Contact Us

Whether you want to report a bug, send a patch or give some suggestions on this project, drop us or open pull requests

Donate

paypal:

donate

Via BTC: 1HBXz6XX3LcHqUnaca5HRqq6rPUmA3pf6f

Happy MITM!

wifi-pumpkin's People

Contributors

mh4x0f avatar jonzeolla avatar fjcapdevila avatar thisguy23 avatar

Watchers

James Cloos avatar Eduardo Novella avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.