-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Ahmed Nasser edited this page Feb 9, 2025
·
2 revisions
Welcome to the spyware-detector wiki!
Spyware Detector is a backend service built with Node.js and Express.js. It scans files for potential spyware threats and logs the results. The project supports file uploads, validation, and logging features.
- File upload support using Multer
- Input validation with Express Validator
- Logging with Winston
- Environment variable management via Dotenv
- API endpoints for scanning and retrieving logs
- Node.js and npm (or pnpm)
- Docker (if using containers)
- Clone the repository:
git clone https://github.com/ahmed-n-abdeltwab/spyware-detector.git cd spyware-detector/backend
- Install dependencies:
npm install # or pnpm install
- Set up environment variables:
Create a
.env
file and configure it as needed. - Start the server:
npm start
POST /api/upload
Description: Uploads a file for spyware scanning.
Request Body:
-
file
(multipart/form-data) - The file to scan
Response:
- Success:
{ "message": "File uploaded successfully", "scanResult": "..." }
- Error:
{ "error": "Invalid file format" }
GET /api/logs
Description: Retrieves scan logs.
Response:
- Success:
{ "logs": [...] }
npm run lint # Check for linting errors
npm run format # Format code using Prettier
docker-compose up --build
See CONTRIBUTING.md for details.
For security guidelines, refer to SECURITY.md.