Posts

Showing posts from December, 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...