MCPcopy Index your code
hub / github.com/drk1wi/Modlishka

github.com/drk1wi/Modlishka @v.1.1.1 sqlite

repository ↗ · DeepWiki ↗ · release v.1.1.1 ↗
121 symbols 387 edges 17 files 20 documented · 17%
README

..Modlishka..

Modlishka is a powerful and flexible HTTP reverse proxy. It implements an entirely new and interesting approach of handling browser-based HTTP traffic flow, which allows it to transparently proxy multi-domain destination traffic, both TLS and non-TLS, over a single domain, without a requirement of installing any additional certificate on the client. What exactly does this mean? In short, it simply has a lot of potential, that can be used in many use case scenarios...

From the security perspective, Modlishka can be currently used to: - Support ethical phishing penetration tests with a transparent and automated reverse proxy component that has a universal 2FA “bypass” support. - Wrap legacy websites with TLS layer, confuse crawler bots and automated scanners, etc.

Modlishka was written as an attempt to overcome standard reverse proxy limitations and as a personal challenge to see what is possible with sufficient motivation and a bit of extra research time. The achieved results appeared to be very interesting and the tool was initially released and later updated with an aim to: - Highlight currently used two factor authentication (2FA) scheme weaknesses, so adequate security solutions can be created and implemented by the industry. - Support other projects that could benefit from a universal and transparent reverse proxy. - Raise community awareness about modern phishing techniques and strategies and support penetration testers in their daily work.

Modlishka was primarily written for security related tasks. Nevertheless, it can be helpful in other, non-security related, usage scenarios.

Features

Key features of Modlishka include:

General: - Point-and-click HTTP and HTTPS reverse proxying of an arbitrary domain/s. - Full control of "cross" origin TLS traffic flow from your users browsers (without a requirement of installing any additional certificate on the client). - Easy and fast configuration through command line options and JSON configuration files. - Pattern based JavaScript payload injection. - Wrapping websites with an extra "security": TLS wrapping, authentication, relevant security headers, etc. - Stripping websites of all encryption and security headers (back to 90's MITM style). - Stateless design. Can be scaled up easily to handle an arbitrary amount of traffic - e.g. through a DNS load balancer. - Can be extended easily with your ideas through modular plugins. - Automatic test TLS certificate generation plugin for the proxy domain (requires a self-signed CA certificate) - Written in Go, so it works basically on all platforms and architectures: Windows, OSX, Linux, BSD supported...

Security related: - Support for majority of 2FA authentication schemes (out of the box). - Practical implementation of the "Client Domain Hooking" attack. Supported with a diagnostic plugin. - User credential harvesting (with context based on URL parameter passed identifiers). - Web panel plugin with a summary of automatically collected credentials and one-click user session impersonation module (proof-of-concept/beta). - No website templates (just point Modlishka to the target domain - in most cases, it will be handled automatically without any additional manual configuration).

Proxying In Action (2FA bypass)

"A picture is worth a thousand words":

Modlishka in action against an example two factor authentication scheme (SMS based bypass proof-of-concept) :

https://vimeo.com/308709275

Installation

Latest source code version can be fetched from here (zip) or here (tar).

Fetch the code with 'go install' :

$ go install github.com/drk1wi/Modlishka@latest

Compile manually:

$ git clone https://github.com/drk1wi/Modlishka.git
$ cd Modlishka
$ make

alt text

# ./dist/proxy -h


Usage of ./dist/proxy:

  -cert string
        base64 encoded TLS certificate

  -certKey string
        base64 encoded TLS certificate key

  -certPool string
        base64 encoded Certification Authority certificate

  -config string
        JSON configuration file. Convenient instead of using command line switches.

  -controlCreds string
      Username and password to protect the credentials page.  user:pass format

  -controlURL string
      URL to view captured credentials and settings. (default "SayHello2Modlishka")

  -credParams string
        Credential regexp with matching groups. e.g. : base64(username_regex),base64(password_regex)

  -debug
        Print debug information

  -disableSecurity
        Disable proxy security features like anti-SSRF. 'Here be dragons' - disable at your own risk.

  -dynamicMode
        Enable dynamic mode for 'Client Domain Hooking'

  -forceHTTP
        Strip all TLS from the traffic and proxy through HTTP only

  -forceHTTPS
        Strip all clear-text from the traffic and proxy through HTTPS only

  -jsRules string
        Comma separated list of URL patterns and JS base64 encoded payloads that will be injected - e.g.: target.tld:base64(alert(1)),..,etc

  -listeningAddress string
        Listening address - e.g.: 0.0.0.0  (default "127.0.0.1")

  -log string
        Local file to which fetched requests will be written (appended)

  -plugins string
        Comma seperated list of enabled plugin names (default "all")

  -proxyAddress string
        Proxy that should be used (socks/https/http) - e.g.: http://127.0.0.1:8080

  -proxyDomain string
        Proxy domain name that will be used - e.g.: proxy.tld

  -postOnly
        Log only HTTP POST requests

  -rules string
        Comma separated list of 'string' patterns and their replacements - e.g.: base64(new):base64(old),base64(newer):base64(older)

  -target string
        Target domain name  - e.g.: target.tld

  -targetRes string
        Comma separated list of domains that were not translated automatically. Use this to force domain translation - e.g.: static.target.tld

  -terminateTriggers string
        Session termination: Comma separated list of URLs from target's origin which will trigger session termination

  -terminateUrl string
        URL to which a client will be redirected after Session Termination rules trigger

  -trackingCookie string
        Name of the HTTP cookie used to track the client (default "id")

  -trackingParam string
        Name of the HTTP parameter used to track the client (default "id")

Commercial Usage

Modlishka is licensed under this License.

For commercial, legitimate applications, please contact the author for the appropriate licensing arrangements.

Credits

Author: Modlishka was designed and implemented by Piotr Duszyński (@drk1wi). All rights reserved.

See the list of contributors who participated in this project.

  • sentence copied directly from another project .

Disclaimer

This tool is made only for educational purposes and can be used in legitimate penetration tests or research only. Author does not take any responsibility for any actions taken by its users.

Extension points exported contracts — how you extend this code

Handler (FuncType)
(no doc)
log/log.go

Core symbols most depended-on inside this repo

Debugf
called by 46
log/log.go
Infof
called by 34
log/log.go
Fatalf
called by 20
log/log.go
Warningf
called by 18
log/log.go
Errorf
called by 15
log/log.go
getEntry
called by 9
plugin/control.go
Log
called by 7
log/log.go
updateEntry
called by 6
plugin/control.go

Shape

Function 68
Method 32
Struct 20
FuncType 1

Languages

Go100%

Modules by API surface

plugin/control.go32 symbols
core/proxy.go14 symbols
log/log.go12 symbols
main_test.go11 symbols
plugin/core_plugin.go10 symbols
runtime/security.go8 symbols
runtime/func.go8 symbols
core/server.go6 symbols
config/config.go5 symbols
log/util.go4 symbols
main.go3 symbols
core/helper.go3 symbols

Dependencies from manifests, versioned

github.com/cespare/go-smazv1.0.0 · 1×
github.com/dsnet/compressv0.0.1 · 1×
github.com/manifoldco/go-base32v1.0.4 · 1×
github.com/miekg/dnsv1.1.56 · 1×
github.com/tidwall/btreev1.4.2 · 1×
github.com/tidwall/grectv0.1.4 · 1×
github.com/tidwall/matchv1.1.1 · 1×
github.com/tidwall/prettyv1.2.0 · 1×
github.com/tidwall/rtredv0.1.2 · 1×
github.com/tidwall/tinyqueuev0.1.1 · 1×

For agents

$ claude mcp add Modlishka \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact