Skip to main content

Posts

Showing posts from October, 2021

How to Install Bahmni on Azure Server or on AWS Cloud

How to Install Bahmni on Azure Server or AWS Cloud Bahmni is an Opensource Software for Hospital Management System which is having different modules for various purposes such as OpenMRS, OpenElis and Odoo . Today we will learn How to Install Bahmni on Azure Server Requirements At least 2-8 GB Ram 2 CPU Processor and 20 GB Hard Disk. Centos OS 7.6 Installed. Instructions Launch the instance and connect using SSH Creating Swap Space # Informs you of how much swap space is allocated. if nothing is returned, then it's not set up. swapon -s      # To setup 4096k (4GB swap space) do these steps: sudo dd if=/dev/zero of=/swapfile bs=1024 count=4096k sudo mkswap /swapfile   # Activate the swap file sudo swapon /swapfile  echo '/swapfile   swap   swap    defaults        0 0' | sudo tee --append /etc/fstab    # Check if swap space is setup swapon -s After Creating Swap Memory Follow the below Steps. #Prerequisite for the fresh installation of Bahmni yum  install   -y https: //kojipkg

SAST vs DAST

SAST vs DAST If you come across what is SAST and DAST. Than probably you are looking for application source code review. we will know what exactly SAST and DAST is and What’s the best approach for application security testing? The differences between SAST and DAST include where they run in the development cycle and what kinds of vulnerabilities they find. Learn why you need both. Recent high-profile data breaches have made organizations more concerned about the financial and business consequences of having their data stolen. They know they need to identify vulnerabilities in their applications and mitigate the risks. So they’re adding application security testing, including SAST and DAST, to their software development workflows.   What are SAST and DAST? SAST and DAST are application security testing methodologies used to find security vulnerabilities that can make an application susceptible to attack. Static application security testing (SAST) is a white box method of testing. It exam