Skip to main content

Posts

Showing posts with the label Tips & Tricks

Bypassing Windows 7 and Windows 10 Password Reset

Suppose you just designated a new password to your computer account, but you forget it the next time you login. What do you do now? All of your important stuff is there inside that account. Don't worry it's easy and today we are going to show you how to bypass and reset your password . For this you will need one thing : A Linux live cd or if you don;t have this cd then boot a USB with a linux .ISO file (both these will work the same way ),I would suggest Ubuntu Desktop version for this trick though you can use any. If you don't know how to boot a USB with .ISO file Read here  STEP 1: First of all start the computer and go to boot menu and boot this linux live cd / USB drive in your computer. Use Boot key whichever it is in your computer (It can be F12, F4, F6, F8 etc. depending on your computer) Here Choose USB option. STEP 2: Now you will see Ubuntu logo(logo is just ubuntu in letters)  on the screen.It will proceed and ask you for two cho...

How to create Bootable USB using Rufus

Rufus is a great software that allows you to create a bootable USB drive using an .ISO file.Its Ideal for installing programs and software on windows for whom CD drive are not available. In order to create a bootable USB drive you will need three things : 1 USB drive 2 Your .ISO file which you want to boot your USB with. 3. Rufus Let's get going!! STEP 1 First of all download Rufus , you can download it from their site -  https://rufus.akeo.ie/ Download the latest version (right now its Rufus 2.9). You don't need to install it , it runs directly STEP 2 : Inser the USB drive and open Rufus , make sure you take backup of all files in your USB drive because Rufus will format the USB before booting it. STEP 3: Once you have started Rufus check for all desired things. Make sure device field is set to the correct device(device that you want to boot i.e USB) Also Make Sure "Create a bootable disk " option is ticked else i...

How to view saved passwords in google chrome

Sometimes we just forget our passwords, but if you have saved your password in chrome then you can easily access them.Today we are going to learn just that! ,follow the steps to view a saved password. Step-1: At first open Google chrome and go to “settings” (top right  corner ) Step-2: Now scroll down and click “Show advance settings”. Step-3: Then go to “ password and forms” and click “Manage  saved  password” here you must see list of all websites whose passwords are  saved  in the browser will be listed. Step-4: Now select which website password  you  will see. When you click on 'show' the windows will ask for administrator password, just type the admin's password and chrome will display the password you are looking for. Thank You!!

HOW TO STOP SOMEONE’S INTERNET ACCESS

Today we are going to learn a very simple trick which will help you to stop someone's access to internet.Suppose you have a annoying brother who just uses up all your data then you can use this trick. Follow these simple steps: Firstly Open notepad and type @Echo off Ipconfig /release Save this file as Stop.bat and send it to someone. Their IP address will be lost, and therefore they won’t be able to access internet. If you want to fix this ,simply type in IPconfig /renew

How to find Virus using cmd

Today I am going to show you how to find virus using this simple cmd command.In order to learn how to find the virus and delete it ,just follow the steps given below: Go to search and type cmd,open it. In cmd type cd\ and press enter key and then type 'attrib' and press enter . A list will appear If the file in front of SHR has a .exe or .inf extension , then it means that it is a virus!...If not your PC is safe. How to Delete The Virus type "attrib -s -h -r nameoffile.inf" and press enter key (change name of file to the fie with virus) then type "del nameoffile.inf"  and press enter. In nameoffile type the file name which is infested with virus. Boom! You have deleted the virus now!! Hope it helped ..Thank you :)

Software Testing through Fuzzing

Fuzz testing or fuzzing is a software testing technique used to discover coding errors and security loopholes in software, operating systems or networks by inputting massive amounts of random data, called fuzz, to the system in an attempt to make it crash . Fuzzing is  often automated or semi-automated, that  involves providing invalid, unexpected, or random data to the inputs of a computer program. The program is then monitored for exceptions such as crashes, or failing built-in code assertions or for finding potential memory leaks. Fuzzing technique is commonly used to test for security problems in software or computer systems ans also used to discover coding errors and security loopholes in software, operating systems  or networks by inputting massive amounts of random data, called fuzz, to the system  in an attempt to make it crash. If a vulnerability is found, a tool called a fuzz tester (or fuzzer), indicates potential causes. There are two forms ...

10 Tips To Make Your PC Secure

These Days many anti social elements  like to access computer of other people. For this Purpose they would use trojans ,viruses worms, malwares etc. the list goes on. So, it is highly important that one should take care of his system and not get trapped into any malicious programs. Therefore  for this purpose I discuss  some tips to make your PC  more secure.   Always use genuine software. Not only using pirated software is illegal but all websites which provide these pirated software downloads are full of malwares and viruses. More than 90 percent of pirated software’s contain worms in their crack file. If you are really serious about security of your accounts and information then genuine software’s are recommended. NO trial Antivirus. Antivirus helps protect from viruses, worms, Trojans etc. But you should update it regularly to be safe from latest threats. Never use trial, free or pirated antivirus programs, most of them are gateway for...

SQL Injection ,Hacking PHP 4.4 sites in seconds

Today I am going to teach you how to hack a certain type of websites with very least efforts. Websites with PHP  4.4 have a SQL injection vulnerability in them which makes their Admin control panel easily accessible,and in just few steps you will access the admin's account of that website. Remember,this tutorial is applicable on PHP 4.4 machines with Apache running in parallel with them. Also,since I will be hacking REAL websites,I will not be displaying their URL’s or else I will be sued!!!. Also this tutorial is only for educational purpose. Here we go!!! Step 1 – Search for them Yep,make a Google dork to find sites running Apache and PHP 4.4 . Its quite easy.You can do this by searching inurl:adminlogin . Step 2 – Scan them Start by scanning them using Nmap ,Do and intense scan and find the open ports. If you find port 2000 open,then you have almost got it. most websites running PHP4.4 have this port for admin login. Now just login using port 2000 ie - ...

Password-protected Folder using Notepad

Today I am going to teach you how to create a password protected folder using notepad. There wont be any need for you to download any software to lock your folders after you learn this trick. To use this Notepad trick, follow these steps Open Notepad and  Copy the following code: @ECHO OFF title Folder Private if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK if NOT EXIST Private goto MDLOCKER :CONFIRM echo Are you sure you want to lock the 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 folder set/p “pass=>” if NOT %pass%==  digital.guide  goto FAIL attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002...

Android secret codes

Just type these codes as it is in your phone and see the magic!!!! 1. Phone Information, Usage and Battery –  *#*#4636#*#* 2. IMEI Number – *#06# 3. Enter Service Menu On Newer Phones – *#0*# 4. Detailed Camera Information –  *#*#34971539#*#* 5. Backup All Media Files – *#*#273282*255* 663282*#*#* 6. Wireless LAN Test – *#*#232339#*#* 7. Enable Test Mode for Service –*#*#197328640#*#* 8. Back-light Test – *#*#0842#*#* 9. Test the Touchscreen – *#*#2664#*#* 10. Vibration Test – *#*#0842#*#* 11. FTA Software Version – *#*#1111#*#* 12. Complete Software and Hardware Info –*#12580*369# 13. Diagnostic Configuration – *#9090# 14. USB Logging Control – *#872564# 15. System Dump Mode – *#9900# 16. HSDPA/HSUPA Control Menu – *#301279# 17. View Phone Lock Status – *#7465625# 18. Reset the Data Partition to Factory State –*#*#7780#*#* 19. Format Your Device To Factory State(will delete everything on your phone) – *2767*3855# 20. Hidden Servic...

Convert text into audio using notepad..

Notepad is a very simple programme. But we can do a lot of things with it.  Today i am going to tell you guys a notepad trick. If you want to convert  your text in to audio you don't  have to use any softwares. Just Use this method and you won't have to use any softwares  .This is an easy trick in Notepad. Let's start. 1.Open notepad. 2.Copy the code bellow. Dim msg, sapi msg=InputBox("Enter your text for Conversation | audio","Text-To-Au dio Converter") Set sapi=CreateObject("sapi.spvoic e") sapi.Speak msg 3.Now save it as text_audio.vbs 4.And that's it. 5.Now open the file and type anything. Then click OK.

Disable USB PORT

To Disable USB port Follow the steps given below: 1.  First of all Goto run 2.   Type 'regedit' (quotes not included) 3.  Then Click on HKEY_LOCAL_MACHINE 4. Then goto SYSTEM 5. Then Click on CurrentControlSet 6.  After that Click on services 7. Now Goto USBSTOR 8.  Once you are done with above steps ,Double click on 'Start' where value is 3 9. Now change the value data with 4 10. Now press ok and refresh your desktop your USB port is disabled. 11.   If you want to enable  the usb port replace the value 4 with 3.

5 Whatsapp Tricks/Hacks To make Life easy!!!

As of now more than 1 billion people use Whatsap,the app is definitely one of the most useful apps for messaging purposes,Following are some tricks you can use to make your Whatsapp life easy!! 1. Transfer files of any format upto 1 GB on Whatsapp.   An App called WhatsTools  sits quietly inside the 'attach' button in the chat window (after giving permission using the accessibility service) and allows file sharing of size upto 1GB.  Normally, Whatsapp allows a maximum file size of 16MB. Using this tool you can bypass the restriction. You can also pause/resume the upload/download of files and preview video files before downloading. The files are shared through an HTTPS encrypted path and gets stored in your Google Drive account.  2.  Create a WhatsApp Group with only you as a member.   With the amount of time we spend daily on WhatsApp, it would be great if we get our reminders directly within the app. Now till as long WhatsApp decides to p...