Skip to main content

Posts

Showing posts from December, 2019

HOW TO UNLOCK LOCK PATTERN USING COMMAND PROMPT

​➖➖➖➖➖➖➖➖➖➖➖➖➖ ๐Ÿ”ดSteps:-    1⃣ Connect your android phone to you computer.    2⃣ Open Commande prompt administrator.    3⃣ Now in command prompt window type following code carefully  adb shell cd/data/data/com.android.providers.settings/databases sqlites settings.db  update system set value=0 where name=’lockpatternautolock’; update system set value=0 where name=’lockscreen.lockedoutpermanently’; .quit    4⃣ Now you will see some screen as shown below and then you can reboot your phone and now when your android starts again, then try unlocking it using any random pattern and it will unlock and work pretty fine.    5⃣  If you face any problem repeat same steps but instead of the above code tru using  adb shell rm/data/system/gesture.key and the press enter and now reboot your device to see if it works.

Pentest and CTF Labs

Use wisely.. HackTheBox https://www.hackthebox.eu Vulnhub https://www.vulnhub.com Practical Pentest Labs https://practicalpentestlabs.com Labs Wizard Security https://labs.wizard-security.net Pentestlab https://pentesterlab.com / Hackthis https://www.hackthis.co.uk Shellter https://shellterlabs.com/pt / Root-Me https://www.root-me.org / Zenk-Security https://www.zenk-security.com/epreuves.php W3Challs https://w3challs.com / NewbieContest https://www.newbiecontest.org / The Cryptopals Crypto Challenges https://cryptopals.com / Penetration Testing Practice Labs http://www.amanhardikar.com/mindmaps/Practice.html alert(1) to win https://alf.nu/alert1 Hacksplaining https://www.hacksplaining.com/exercises Hacker101 https://ctf.hacker101.com Academy Hackaflag https://academy.hackaflag.com.br / PentestIT LAB https://lab.pentestit.ru Hacker Security https://capturetheflag.com.br / PicoCTF https://picoctf.com Explotation Education https://exploit.educati...

๐Ÿ€„️How to Lock folder without any software with password ๐Ÿ€„️

➖➖➖➖➖➖➖➖➖➖➖➖ ⭕️Step 1 : Open Notepad Start by opening Notepad, either from search, the Start Menu, or simply right-click inside a folder, then choose New -> Text Document. ⭕️Step 2: Add Code to Document ๐ŸŒ€ Now just copy the text below and paste it into your document. @ECHO OFF if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Private goto MDPrivate :CONFIRM echo Are you sure to lock this folder? (Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock Your Secure Folder set/p "pass=>" if NOT %pass%== wonderhowtogoto FAIL attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren ...