All Projects → AlexLynd → ESP-Bug

AlexLynd / ESP-Bug

Licence: other
ESP8266 based WiFi implant to remotely track the presence of certain people or devices via a simple web interface

Programming Languages

c
50402 projects - #5 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
C++
36643 projects - #6 most used programming language
PHP
23972 projects - #3 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to ESP-Bug

Wifi Pumpkin Deprecated
DEPRECATED, wifipumpkin3 -> https://github.com/P0cL4bs/wifipumpkin3
Stars: ✭ 2,964 (+3700%)
Mutual labels:  mitm, man-in-the-middle
Apk Mitm
🤖 A CLI application that automatically prepares Android APK files for HTTPS inspection
Stars: ✭ 893 (+1044.87%)
Mutual labels:  mitm, man-in-the-middle
Wirespy
Framework designed to automate various wireless networks attacks (the project was presented on Pentester Academy TV's toolbox in 2017).
Stars: ✭ 293 (+275.64%)
Mutual labels:  mitm, man-in-the-middle
Mitmf
Framework for Man-In-The-Middle attacks
Stars: ✭ 3,277 (+4101.28%)
Mutual labels:  mitm, man-in-the-middle
Striptls
proxy poc implementation of STARTTLS stripping attacks
Stars: ✭ 163 (+108.97%)
Mutual labels:  mitm, man-in-the-middle
mitm-play
Man in the middle using Playwright
Stars: ✭ 13 (-83.33%)
Mutual labels:  mitm, man-in-the-middle
Pokemon Go Mitm
🎁 Pokemon Go MITM Proxy - Intercepts the traffic between your Pokemon Go app and their servers, decodes the protocol and gives you a handy tool to enrich your own game experience on the fly.
Stars: ✭ 475 (+508.97%)
Mutual labels:  mitm, man-in-the-middle
mps
MPS is a high-performance HTTP(S) proxy library that supports forward proxies, reverse proxies, man-in-the-middle proxies, tunnel proxies, Websocket proxies. MPS 是一个高性能HTTP(s)中间代理库,它支持正向代理、反向代理、中间人代理、隧道代理、Websocket代理
Stars: ✭ 64 (-17.95%)
Mutual labels:  mitm, man-in-the-middle
Copycat
Universal MITM web server
Stars: ✭ 99 (+26.92%)
Mutual labels:  mitm, man-in-the-middle
Ssh Mitm
SSH man-in-the-middle tool
Stars: ✭ 1,328 (+1602.56%)
Mutual labels:  mitm, man-in-the-middle
Proxy.py
⚡⚡⚡Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging
Stars: ✭ 1,291 (+1555.13%)
Mutual labels:  mitm, man-in-the-middle
Bug Monitor
Seebug、structs、cve漏洞实时监控推送系统🔦
Stars: ✭ 257 (+229.49%)
Mutual labels:  monitor, bug
Bettercap
DEPRECATED, bettercap developement moved here: https://github.com/bettercap/bettercap
Stars: ✭ 2,518 (+3128.21%)
Mutual labels:  mitm, man-in-the-middle
man-in-the-middle
Modify requests, inject JavaScript and CSS into pages
Stars: ✭ 74 (-5.13%)
Mutual labels:  mitm, man-in-the-middle
Swiddler
TCP/UDP debugging tool.
Stars: ✭ 56 (-28.21%)
Mutual labels:  mitm
Discord-Block-Bypass
Simple script that utilities discord's flaw in detecting who blocked who.
Stars: ✭ 24 (-69.23%)
Mutual labels:  bug
lemon
Lemon – LED Monitor – is a $79.43 opensource alternative to LaMetric that supports GitHub-, IFTTT- and Zapier-webhooks and even integrates with Pushover!
Stars: ✭ 45 (-42.31%)
Mutual labels:  monitor
theonionbox
Dashboard to monitor Tor node operations
Stars: ✭ 116 (+48.72%)
Mutual labels:  monitor
go-health
❤️ Health check your applications and dependencies
Stars: ✭ 91 (+16.67%)
Mutual labels:  monitor
NodePingManage
可用于监控交换机/服务器/防火墙的存活状态的ping监控报警系统
Stars: ✭ 47 (-39.74%)
Mutual labels:  monitor

ESP Bug

Remote WiFi data logger using ESP8266 and ESPPL library. More documentation soon.

Features


Remote ESP8266 Web Interface


ESP Bug Implant

Installation (Linux)

Update machine

sudo apt update
sudo apt upgrade  

Install Nginx Server and PHP

sudo apt install nginx
sudo apt install php-fpm php-mysql

Edit config file

sudo nano /etc/nginx/sites-available/default

Paste in text file

server {
	listen 80 default_server;
	listen [::]:80 default_server;

	# add webpage directory below
	root /home/user/directory;
	index index.php index.html player.html index.htm index.nginx-debian.html;
	server_name _;

	location / {
		try_files $uri $uri/ =404;
	}
	
	location ~ \.php$ {
		include snippets/fastcgi-php.conf;
		# With php-fpm (or other unix sockets):
		fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
		# With php-cgi (or other tcp sockets):
	#	fastcgi_pass 127.0.0.1:9000;
	}
	
	location ~ /\.ht {
		deny all;
	}
}

Reload Nginx config

sudo service nginx reload

30f9cae248e910039ec2bce31d368cbdcbd6620c

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].