How to set up Evil Portal on Pineapple Mark VII? #1
Answered
by
bad-antics
bad-antics
asked this question in
Q&A
-
|
I just got a WiFi Pineapple Mark VII. What is the best way to set up Evil Portal for credential harvesting? Looking for step-by-step guidance. |
Beta Was this translation helpful? Give feedback.
Answered by
bad-antics
Feb 11, 2026
Replies: 1 comment
-
Setting Up Evil Portal on WiFi Pineapple Mark VIIPrerequisites
Step 1: Install Evil Portalssh root@172.16.42.1
opkg update
opkg install evil-portalOr: Web UI > Modules > Get Modules > Evil Portal > Install Step 2: Create Your Portalmkdir -p /root/portals/myportalCreate: index.php (landing page), MyPortal.php (backend handler), default.css (styling) Step 3: Basic Template<!DOCTYPE html>
<html>
<head><title>Free WiFi</title></head>
<body>
<form method="POST" action="/captiveportal/index.php">
<input name="email" placeholder="Email" required>
<input name="password" type="password" placeholder="Password" required>
<button type="submit">Connect</button>
</form>
</body>
</html>Step 4: Activate
Step 5: NullSec Pre-Built PortalsThis repo includes ready-made portals in nullsec-suite/:
Each has a README with specific setup instructions. Legal reminder: Only use on networks you own or have written authorization to test. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bad-antics
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Setting Up Evil Portal on WiFi Pineapple Mark VII
Prerequisites
Step 1: Install Evil Portal
Or: Web UI > Modules > Get Modules > Evil Portal > Install
Step 2: Create Your Portal
Create: index.php (landing page), MyPortal.php (backend handler), default.css (styling)
Step 3: Basic Template