Common Issues
Server crashes on startup with 'concurrently' error
Server crashes on startup with 'concurrently' error
This is a Node.js/React issue related to the build process.Solution:
- Ensure you have Node.js v18 or higher installed:
- Navigate to the web-client directory and reinstall dependencies:
- Rebuild the project:
Nothing appears at http://localhost:3000
Nothing appears at http://localhost:3000
The web client needs to be built before the server can serve it.Solution:
- Build the web client:
- Ensure the server is running:
- If the issue persists, rebuild everything:
In production mode, both frontend and backend are served on the same port (3000).
Requests fail with 'Read timeout' errors
Requests fail with 'Read timeout' errors
This typically means you don’t have valid proxies configured.Solution:
-
Add proxies to
data/proxies.txt(one per line). Supported formats:protocol://user:password@host:port(with authentication)protocol://host:porthost:port(defaults to http)host(defaults to port 8080)
-
Alternatively, run without proxies:
- CLI: Use the
--no-proxyflag - Server: Set environment variable
ALLOW_NO_PROXY=true
- CLI: Use the
CLI shows 'No proxies available' error
CLI shows 'No proxies available' error
The attack engine requires proxies by default.Solution:Option 1: Add proxies to the fileOption 2: Run without proxies
Build fails with 'module not found' errors
Build fails with 'module not found' errors
Dependencies are missing or out of sync.Solution:
- Download Go dependencies:
- Install Node.js dependencies:
- Or use the prepare command:
- Rebuild the project:
Web client shows errors or doesn't load properly
Web client shows errors or doesn't load properly
The React frontend wasn’t built correctly or is outdated.Solution:
- Clean previous builds:
- Rebuild everything:
- If issues persist, manually rebuild the web client:
Build Issues
Prerequisites Not Met
Ensure you have all required software installed:Go
Version 1.21 or above
Node.js
Version 18 or above
npm
Comes with Node.js
Missing Data Files
Miku Miku Beam requires certain data files to function:You can also manage proxies and user agents directly through the web interface by clicking the text button to the right of the beam button.
Runtime Issues
Performance Problems
If attacks are running slowly or not performing as expected:-
Increase thread count: Use the
--threadsflag in CLI or adjust in the web interface - Check proxy quality: Slow or dead proxies will impact performance. Test your proxies before use.
-
Adjust packet delay: Lower delays send more packets but use more resources
Connection Issues
Multi-Client Issues
Simultaneous Attacks Not Working
Each web client maintains its own attack instance. If you’re having issues:- Clear browser cache and reload
- Ensure each client has a unique Socket.IO connection
- Check browser console for connection errors
- Verify the server supports multiple connections (it does by default)
Getting Help
If you’re still experiencing issues:- Check the FAQ for common questions
- Review the installation guide to ensure proper setup
- Open an issue on GitHub with:
- Your OS and version
- Go and Node.js versions
- Complete error messages
- Steps to reproduce the issue