[PR #1195] [CLOSED] Merge upstream to fork #190

Closed
opened 2026-02-26 02:31:32 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/kgretzky/evilginx2/pull/1195
Author: @matejsmycka
Created: 11/4/2025
Status: Closed

Base: masterHead: master


📝 Commits (10+)

  • f09c8f9 added ability to force_post JSON parameters as boolean
  • 3f98214 fix: check type when forcing JSON parameter
  • 15392a1 fix: Improved logging
  • b38b159 feat: improved proxy core
  • a50ceb4 feat: update licence and readme
  • 9a27678 docs: Add Disclaimer
  • 254d74a fix: suffix slash bug problems
  • b73f011 Create go.yml
  • 995d721 Merge pull request #1 from vaadata/feature/force_json_tp
  • 591bf92 Sync with mirror

📊 Changes

753 files changed (+77492 additions, -36782 deletions)

View changed files

.github/workflows/go.yml (+25 -0)
📝 CHANGELOG (+3 -0)
📝 LICENSE (+1 -1)
📝 README.md (+9 -93)
📝 core/config.go (+4 -0)
📝 core/http_proxy.go (+80 -15)
📝 go.mod (+44 -39)
📝 go.sum (+130 -325)
📝 log/log.go (+59 -37)
📝 main.go (+6 -17)
📝 vendor/github.com/caddyserver/certmagic/README.md (+45 -18)
📝 vendor/github.com/caddyserver/certmagic/account.go (+66 -9)
📝 vendor/github.com/caddyserver/certmagic/acmeclient.go (+186 -119)
📝 vendor/github.com/caddyserver/certmagic/acmeissuer.go (+163 -22)
📝 vendor/github.com/caddyserver/certmagic/cache.go (+40 -26)
📝 vendor/github.com/caddyserver/certmagic/certificates.go (+264 -26)
📝 vendor/github.com/caddyserver/certmagic/certmagic.go (+14 -52)
📝 vendor/github.com/caddyserver/certmagic/config.go (+220 -35)
📝 vendor/github.com/caddyserver/certmagic/crypto.go (+6 -0)
📝 vendor/github.com/caddyserver/certmagic/dnsutil.go (+88 -51)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/kgretzky/evilginx2/pull/1195 **Author:** [@matejsmycka](https://github.com/matejsmycka) **Created:** 11/4/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`f09c8f9`](https://github.com/kgretzky/evilginx2/commit/f09c8f95d5d6b1e49b4e4dc9c161c4936c4f265e) added ability to force_post JSON parameters as boolean - [`3f98214`](https://github.com/kgretzky/evilginx2/commit/3f9821491d97bc1b37907e91f1f5ac7fdf316fc0) fix: check type when forcing JSON parameter - [`15392a1`](https://github.com/kgretzky/evilginx2/commit/15392a1cd54bd4680d0afa795247d5ebf99cd207) fix: Improved logging - [`b38b159`](https://github.com/kgretzky/evilginx2/commit/b38b1596f28c4faa9951cea17278bf98b322a5ed) feat: improved proxy core - [`a50ceb4`](https://github.com/kgretzky/evilginx2/commit/a50ceb4493e4d92b496850550d0aae9df0c5217f) feat: update licence and readme - [`9a27678`](https://github.com/kgretzky/evilginx2/commit/9a27678effbe7b9279c396ed8738c00ef912ada3) docs: Add Disclaimer - [`254d74a`](https://github.com/kgretzky/evilginx2/commit/254d74aeccd863c9b0ca8bca89125ba6c32743cd) fix: suffix slash bug problems - [`b73f011`](https://github.com/kgretzky/evilginx2/commit/b73f011c68ce1b33fd28efe28a241b29a8a262be) Create go.yml - [`995d721`](https://github.com/kgretzky/evilginx2/commit/995d7217fcdefa751d42045cc5dd0a8721afe416) Merge pull request #1 from vaadata/feature/force_json_tp - [`591bf92`](https://github.com/kgretzky/evilginx2/commit/591bf922ba95d99cdbd84112ccfdc114884303d8) Sync with mirror ### 📊 Changes **753 files changed** (+77492 additions, -36782 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/go.yml` (+25 -0) 📝 `CHANGELOG` (+3 -0) 📝 `LICENSE` (+1 -1) 📝 `README.md` (+9 -93) 📝 `core/config.go` (+4 -0) 📝 `core/http_proxy.go` (+80 -15) 📝 `go.mod` (+44 -39) 📝 `go.sum` (+130 -325) 📝 `log/log.go` (+59 -37) 📝 `main.go` (+6 -17) 📝 `vendor/github.com/caddyserver/certmagic/README.md` (+45 -18) 📝 `vendor/github.com/caddyserver/certmagic/account.go` (+66 -9) 📝 `vendor/github.com/caddyserver/certmagic/acmeclient.go` (+186 -119) 📝 `vendor/github.com/caddyserver/certmagic/acmeissuer.go` (+163 -22) 📝 `vendor/github.com/caddyserver/certmagic/cache.go` (+40 -26) 📝 `vendor/github.com/caddyserver/certmagic/certificates.go` (+264 -26) 📝 `vendor/github.com/caddyserver/certmagic/certmagic.go` (+14 -52) 📝 `vendor/github.com/caddyserver/certmagic/config.go` (+220 -35) 📝 `vendor/github.com/caddyserver/certmagic/crypto.go` (+6 -0) 📝 `vendor/github.com/caddyserver/certmagic/dnsutil.go` (+88 -51) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 02:31:32 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/evilginx2-kgretzky#190
No description provided.