Posts

Easy Alias

Image
           Created by Bismoy Ghosh. Easy Alias: First time you use  cd directory chmod +x bashscript.sh bash bashscript.sh To use any repo . And after that need to run  cd directory bash bashscript.sh Why????? If I tell you you can use a short comand to execute all those process??? It will be more funable right?? But it is too risky sometime . But I am with you right?? So,let's began.. Suppose you had cloned a git  The repo like : web Under that many files included ,but an executable file exist. Suppose that was python file will run with: python ,python3  The python file name in website.py It will run with : python website.py  or  python3 website.py Everytime you need to run: cd web  python website.py Why??if I say after opening terminal you just type web and the file will execute?? Isn't  It easy?? So let's began, follow my steps.. Only Do: open terminal  type: nano ~/.bashrc Add these line to the script: export...

Python Web Scanner(Easy to USE)

Image
Python Web Scanner – Generate HTML Report and Open Automatically Welcome back! In this post, I’ll walk you through a cool feature I added to my Python-based Web Scanner — it now creates a beautiful HTML report and automatically opens it after scanning a website. Plus, there's a handy Bash script that guides the user through the process! What’s New? Originally, my web scanner printed results to the terminal. That’s great, but not ideal for saving or sharing the results. So I added: HTML Report Generation Auto-opening the report in browser Interactive Bash Script for beginners How It Works When you run the scanner, it now creates a report like: report_example.html This report is saved directly in your Downloads folder , and contains structured information like: Scan timestamp Target URL HTTP headers Security headers (e.g. missing X-Frame-Options ) HTML metadata ( <title> , <meta> tags) Recommendations Once the scan is complete, the Bash scri...

FDA Strengthens Boxed Warning for Singulair (Montelukast) and Its Generics Due to Mental Health Risks.

Image
 FDA Strengthens Boxed Warning for Singulair (Montelukast) and Its Generics Due to Mental Health Risks Posted by : Bismoy Ghosh  Target Audience: Patients, Health Professionals, Pharmacists, Allergy and Immunology Experts --- Issue Summary: The U.S. Food and Drug Administration (FDA) has strengthened existing warnings about serious behavior and mood-related changes with montelukast (brand name: Singulair, and its generics). This prescription medicine is commonly used to treat asthma and allergies. Although prior warnings existed, the FDA found that many healthcare professionals and patients/caregivers were unaware of the risks. After an extensive review and consultation with external experts, the FDA determined that a Boxed Warning—its strongest safety warning—was necessary. --- What is Montelukast? Montelukast is an FDA-approved medication for: Preventing asthma attacks and managing long-term asthma in patients aged 1 year and older Preventing exercise-induced asthma in patie...

The Ultimate Roadmap to Becoming a Python Professional

Image
The Ultimate Roadmap to Becoming a Python Professional     Created by Bismoy Ghosh. Introduction: Python is one of the most versatile and widely used programming languages. Whether you want to become a software developer, data scientist, or cybersecurity expert, Python is an essential skill. This roadmap will guide you from beginner to advanced professional level, outlining key concepts and projects to build along the way. Phase 1: Beginner Level: Topics to Learn: 1. Understanding Python syntax and installation 2. Variables, data types, and operators 3. Conditional statements (if-else) 4. Loops (for, while) 5. Functions and modules 6. Exception handling 7. File handling (reading/writing files) Projects to Build: 1. Basic Calculator – A simple CLI calculator. 2. To-Do List App – A command-line to-do list manager. 3. Number Guessing Game – A fun project to practice loops and conditions. 4. File Organizer – A script to organize files based on their types. Phase 2: Intermediate Le...

The Ultimate Guide to Cybersecurity: From Beginner to Advanced

Image
         Researched by Bismoy Ghosh.  The Ultimate Guide to Cybersecurity:( From Beginner to Advanced)  Why Cybersecurity Matters In today's digital age, data is one of the most valuable assets, making cybersecurity a critical field. Cyberattacks target individuals, businesses, governments, and critical infrastructure, employing tactics like ransomware, phishing, and advanced persistent threats. As threats evolve, so does the need for skilled cybersecurity professionals who can protect sensitive information and build a safer digital ecosystem. For those driven by curiosity and a sense of responsibility, cybersecurity offers an exciting career filled with challenges and opportunities for growth. Whether you're a complete beginner or looking to level up your skills, this guide will provide you with a roadmap to mastering cybersecurity. --- Phase 1:  Building a Strong Foundation Before diving into ethical hacking or penetration testing, it's essentia...

Understanding Network Analysis

Image
               Created by Bismoy Ghosh. UNDERSTANDING NETWORK ANALYSIS: 1. Definition of a Network A **network** is a web of **connected elements** that facilitate **interaction and exchange**. These systems exist in multiple domains, such as social dynamics, technology, and biology. Social Networks:  Represent human connections, such as companionship, partnerships, or professional affiliations. Technological Networks:  Comprise gadgets like laptops, routers, and mobile phones linked through the internet or wireless communication. Biological Networks:  Consist of organisms, cells, or molecules interacting through biochemical or genetic processes. 2. Overview of Network Analysis: Network analysis is a **systematic method** of scrutinizing **interconnections** within a structure. It helps in evaluating **relationships, dependencies, and impacts** among the elements. Applications include: - **Human Interaction Studies**: Tracing influe...

How to Download Videos and Audios from a Video Link (On macOS)

Image
    Created by Bismoy Ghosh --- 1. Install Python (If Not Installed) To use this script, you need Python installed on your macOS system. Steps to Install Python: 1. Open Terminal and check if Python is installed: python3 --version 2. If Python is not installed, download and install the latest version from: https://www.python.org/downloads/mac-osx/ 3. After installation, verify again: python3 --version --- 2. Install Required Packages Open Terminal and enter the following commands: pip3 install yt-dlp pip3 install flask brew install ffmpeg # If Homebrew is installed > Note: If Homebrew is not installed, install it using: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" --- 3. Create a Directory for the Project 1. Open Terminal and navigate to your preferred directory, e.g.: cd ~/Desktop 2. Create a new folder: mkdir downloader 3. Navigate to the folder: cd downloader 4. Create a subfolder for templates: mkdir templates --- 4. ...