System.Hardening.mp4
Long Video
System.Hardening.mp4
 
 
 
The latest code has not yet been updated to protect originality.
SecureScript is a full-stack application designed to automate system hardening based on CIS (Center for Internet Security) guidelines. It features a Django backend and a React frontend packaged within an Electron desktop application. Testing credentials
username: pankaj
password: Pankaj30@
Before you begin, ensure you have the following installed on your system:
- Python 3.x
- Node.js and npm
To get started, first clone the SecureScript repository to your local machine using Git:
git clone https://github.com/pankaj-bind/SecureScript.git
cd SecureScriptFollow these steps to get the backend server up and running.
- 
Navigate to the Backend Directory Open your terminal and change into the backenddirectory.cd backend
- 
Install Python Dependencies Install all the required packages listed in requirements.txt. It's recommended to do this within a virtual environment.pip install -r requirements.txt 
- 
Start the Backend Server This will start the Django development server, typically on http://localhost:8000.python manage.py runserver You can keep this terminal window open to see server logs. 
In a new terminal window with Run as Administrator, follow these steps to set up and run the frontend application.
- 
Navigate to the Frontend Directory cd frontend
- 
Install Node.js Dependencies This command installs all the necessary packages defined in package.json.npm install 
- 
Run in Development Mode This single command starts both the React development server and the Electron application concurrently.It will automatically open the application window for you. npm run dev The application will now be running and connected to your local backend server.