Showing posts with label Interesting Tricks. Show all posts
Showing posts with label Interesting Tricks. Show all posts

Tuesday, 8 October 2013

Facebook Status To Impress

                                                                                                                    We All Like Posting Fb Status So If You Wanna Post To Impress Your Friends,Teachers,Parent's Etc.. You Are On The Right Place This Site Will Lead You All FB Status CLICK HERE To Visit The Site.    

Wednesday, 15 May 2013

Tuesday, 14 May 2013

Comand Prompt Hack's Commands


Command Prompt is the heart of windows and with a technical point of view, command prompt is the only good thing in windows for a techie. Command Prompt gives you a feel of how things work in the back end of windows. For example, if we copy and paste using usual right click feature we don't get to know what is happening behind the buttons to make copy and paste possible. But if we copy and paste using command prompt, we get to know how things are done.

List of commands can be downloaded from here

Make more than thousand folders in few seconds.


Make more than thousand folders in few seconds.

This is often used to annoy friends and sometimes as a small attack to an individual machine as so many folders on desktop  make PC very very slow.

The Commaned Is In This Link:Click Here To Download

DontForget To Save As 1000folders.bat



You can modify no. of folders by changing ''1000". 

Watch Youtube Videos Without Buffering ANd Facebook Tricks


youtube and facebook hacks

Greasemonkey is Plug-In which is available for Mozilla as well as for for Chrome . This is a very user friendly plug-in which lets you run scripts which enhance your browsing experience and let you play around a little. 

Download : You can download Greasemonkey for mozilla from here .
                   Download for Chrome here.

After installing,the plug-in will appear like this :


Scripts :  

1.Faster buffering of youtube videos and no ads - This is a script which doubles the buffering speed of the youtube videos and also automatically removes the adds which hinder the start of your videos.This script automatically starts buffering the video as you open the video link and there is no need for you to first click on "play" button and then pause it so that the video buffers.
-Install the script from here


2.Export Phone number's of all faceboook contacts to your phone/address book.

-Install the script from here.

3.AutoPoke - Automatically poke back the friends who poke you.
-Install the script from here.

4.Watch Videos with Age Restriction on Youtube : Here's a script which lets you watch videos which have age restriction.

-Install the script from here.


5.Better Facebook : This scripts shows better quality profile pictures,links to download videos,google calender integration and much more ! Moreover,the script is fully customizable !

-Install the script from here



Monday, 13 May 2013

How to See Who Views Your Facebook Profile the Most......

Steps

  1. Open up Google Chrome and log in to Facebook. Right click anywhere on your news feed and click "View page source".

    2 
    Press Ctrl+F and type "FriendsList". Following it should be a list of random numbers in hyphens. Each one of those numbers are the profiles of the people who visit your Facebook profile the most from most to least.

Trick To Use Your Browser As Same As Notepad

 Web Browsers As Text Editor
In this tutorial i will show you a simple and interesting trick to use your web browser such as Google Chrome or Mozilla Firefox as a simple text editor like Notepad. This trick works on all web browsers. So lets get started.

Block Facebook On Any Computer By Accesing It........

I had previously posted about Blocking Facebook on your computer but many users were facing difficulties doing that. So 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.

Wednesday, 1 May 2013

Setting Up A 404 error To Your Blog

404 error page not found
In this tutorial i will teach you to enable and customize 404 Error page for your blogger blog. A 404 Error occurs when you try to visit  a page that does not exist or has been deleted. Adding a 404 error page will let your visitors go back to previous page or Home page and will. This will allow to keep visitors engage on your blog for little longer and decrease bounce rate. The default blogger 404 page is boring and unattractive so we will be styling it using some Html and CSS to make it look more stylish. So lets add and style 404 Error page to your blog. check out live demo of 404 error page by clicking on button given below.

Creating 404 Error Page 

1. Go to blogger Dashboard then Settings > Search Preferences
2. Now under Error and Redirection click on Edit beside custom page not found.
blogger 404 error page
3. Inside the box paste code given below.


<!-- MBW 404 Page -->
<div class='MBW-404-box'>
  <p style='line-height: 1.6em'><strong>
<font color='red' size='6'>
Oops!!!
</font> <font color='#666666'>
 <!-- mybloggersworld.blogspot.com -->
Looks like you are trying to access page that does not exist or has been deleted. Please do any of the followings:
</font></strong></p>
  <ol style='line-height: 25px'>
    <li><a href='javascript:history.go(-1)'>&#171; Go Back</a> </li>
    <li>Report the Problem By <a href='http://www.hackitbobby123.blogspot.com'>Clicking Here</a>&#160;&#160;&#160; (<i>This will help us serve you better</i>) </li>
    <li>Go To Homepage by <a href='http://www.hackitbobby123.blogspot.com/contact'>Clicking Here</a>
      <br/></li>
  </ol>
  <p><br><br></p><p align='center'><font color='#159b24' style='font-size: 135px'><strong>404</strong></font></p>
  <p align='center'><font size='5'>Error Page Not Found</font></p>
</div>

4. Now make following changes to above code.

  • Change www.hackitbobby123.blogspot.com to your blog address
  • Change http://www.hackitbobby123.blogspot.com/contact to your contact page
  • Replace #159b24 to change color of 404 text.
5. Then save the changes.
6. Now from blogger dashboard click on Template > Edit Html
7. Seach for ]]></b:skin> and paste the code give below just below it.

<b:if cond='data:blog.pageType == &quot;error_page&quot;'>
<style type='text/css'>
.status-msg-wrap {
    font-size: 100%;
    margin: none;
    position: static;
    width: 100%;
}
.status-msg-border {
    display:none;
}
.status-msg-body {
    padding: none;
    position: static;
    text-align: inherit;
    width: 100%;
    z-index: auto;
}
.status-msg-wrap a {
    padding: none;
    text-decoration: inherit;
}
.MBW-404-box {
  background:#FFFFFF;
  width:96%;
  margin:10px 0px;
  padding:15px 15px;
  border:1px solid #b9b6b6;
  -moz-border-radius:10px;
  -webkit-border-radius:10px;
  border-radius:10px;
  box-shadow: 6px 6px 6px #e3e3e3;
}
</style>
</b:if>
8. Make following changes to customize 404 Error page

  • Replace #FFFFFF to change background color.
  • Replace #b9b6b6 to change border color.
9. Save the template and done.

How to check if its Working ?

In order to check if you implemented 404 error page properly on your blog and is working correctly visit link given below.
  • htttp://www.yourblogurl.com/somecrap  (Replace yourblogurl with your blog address)

GOOGLE TRICKS ALL SHOULD KNOW AND TO IMPRESS YOUR FRIENDS

             
                                  

Google Tricks To Impress Your Friends....These Are List Of URL For GOOGLE TRICKS:

DISAPPEAR 2 O's IN GOOGLE:CLICK HERE 

GOOGLE ROTATING LIKE A SPHERE:CLICK HERE

GOOGLE MIRRIOR:CLICK HERE

GOOGLE GRAVITY:CLICK HERE

GOOGLE GUTAIR:CLICK HERE

GOOGLE PACMAN:CLICK HERE

GOOGLE SNAKE:CLICK HERE 

GOOGLE TerMANAL:CLICK HERE

Internet Download Maneger With Crack

CLICK HERE TO DOWNLOAD.


 
Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Internet Download Manager supports proxy servers, ftp and http protocols, firewalls, redirects, cookies, authorization, MP3 audio and MPEG video content processing. IDM integrates seamlessly into Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2, and all other popular browsers to automatically handle your downloads.

CLICK HERE TO DOWNLOAD IDM 6.07 BUILD

Enjoy,,,,!!! Cheers,,,,!!!

Tuesday, 30 April 2013

Create Your Custimized RUN COMMANDS







The Run command on Microsoft Windows operating system allows you to directly open an application or document with just a single command instead of navigating to it’s location and double-clicking the executable icon. However, it only works for some of the inbuilt Windows programs such as Command prompt (cmd), Calculator (calc) etc. So, have you ever wondered how to create your own customized Run commands for accessing your favorite programs, files and folders? Well, read on to find out the answer.

Creating the Customized Run Command

 



Let me take up an example of how to create a customized run command for opening the Internet explorer. Once you create this command, you should be able to open the Internet explorer just by typing “ie” (without quotes) in the Run dialog box. Here is how you can do that.

1. Right click on your Desktop and select New -> Shortcut.

Download Free Spy Keylogger

Why SniperSpy is the Best?
Today, there exists hundreds of keyloggers on the market where many of them are nothing more than a crap. However, there are only a few that stand out of the crowd and SniperSpy is the best among them.
I personally like SniperSpy for its REMOTE INSTALLATION FEATURE. With this, you can install it on a remote computer without the need for having physical access to it. It operates in a complete stealth mode so that it remains 100% undetected!
Here is a summary of benefits that you will receive with Sniperspy:
  1. Access ANY Password
    With SniperSpy, you can easily hack Facebook or any other online account.
  2. Monitor Every Activity
    You can monitor every activity of the target computer, take screenshots and record chats & IM conversations.
  3. Never Get Caught!
    SniperSpy operates in a total stealth mode and thus remains undetected. Therefore you need not have the fear of being traced back or getting caught.
  4. Completely Safe to Use
    SniperSpy is a reputed, trustworthy and reliable company that does not collect any personal information from your computer.
  5. Works on both Windows and Mac
    Fully compatible with Windows 2000/XP/Vista/7/8 and Mac.

How it Works?

How SniperSpy Works
You can easily drop the deployment module onto a word document, image or any other file and send it to the target Facebook user. SniperSpy will install silently on the target computer and the monitoring process will begin.
You can login to the secure control panel from any browser and start viewing the logs to get the password!
So, if you are really serious to hack Facebook password then SniperSpy is for you. Go grab it now and expose the truth!
Download SniperSpy – for Windows
Download SniperSpy – for Mac
Hack Email using SpyBubbleWhat if the Target Person Logs into the Facebook Account using a Cell Phone?
In this case, you will have to use a spy software that works on cell phones and mobile devices. The following is one of my favorite software to spy on cell phones:
Hack Facebook with SpyBubbleSpyBubble will allow you to log in from any computer and spy on any smart phone in real time.
With SpyBubble you can Track Calls, Listen to LIVE Phone Calls, Record SMS & Emails, Know GPS locations of the target user and more.
Supported Phones: BlackBerry, Android, Symbian, iPhone and Windows Mobile.
So, what are you waiting for? Go grab SpyBubble now to expose the truth:
 

2. Phishing – The Difficult Way:

The other common way to hack passwords or online accounts is via Phishing. This method will make use of a fake login page (often called as spoofed web page) which will exactly resemble the original one. Say for example, a spoofed web page of Facebook looks exactly same as that of the original page. This page is actually created by the hacker and is hosted on his own server. Once the victim enters his/her password in such a fake login page, the login details are stolen away by the hacker.
Phishing requires specialized knowledge and high level skills to implement. Therefore, it would not be possible for a noob user (perhaps like you) to attempt this trick. It is a punishable offense too. So, I recommend that you stay away from phishing and make use of the keylogger, as it is the easiest and the safest way.

Facebook Hacking Methods that Do Not Work:

  1. Many scam websites claim to have found out a certain vulnerability in Facebook servers which as a means can be exploited to crack the password. Unfortunately, there is no such vulnerability in Facebook (or any other online account) that can be exploited to crack the password. Never go behind any of those websites that promise to give you the password upon payment or completing a free survey.
  2. There is no ready-made software program that is available to hack Facebook password (except the keylogger). In fact, keyloggers are pretty generic and are designed to log the keystrokes of a specific computer which is often used to hack passwords.

How To Test Your Antivirus Is Working Or Not (MINE WORKING)AVAST











Have you ever wondered how to test your Antivirus software to ensure it’s proper working? Well here is a quick and easy way to test your antivirus. The process is called EICAR test which will work on any antivirus and was developed by European Institute of Computer Antivirus Research. This process can be used by people, companies and antivirus programmers to test the proper functioning of the antivirus/antimalware software without having to deal with the real computer virus which can cause damage to the computer. Here is a step-by-step procedure to test your antivirus.


1. Open a notepad (New Text Document.TXT) and copy the following code exactly onto it, and save the notepad.

EICAR Test code
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
 
2. Rename the file from New Text Document.TXT to myfile.com

3. Now run the antivirus scan on this myfile.com file.

If the antivirus is functioning properly on your computer, then it should generate a warning and immediately delete the file upon scanning. Otherwise you may have to re-install your antivirus.

NOTE: Most antivirus will pop-out a warning message in the Step-1 itself
 
You can also place the myfile.com file in a ZIP or RAR file and run a scan on it so as to ensure whether your antivirus can detect the test string in the compressed archive. Any antivirus when scanning this file will respond exactly as it will do for a genuine virus/malicious code. This test will cause no damage to your computer even though the antivirus will flag it as a malicious script. Hence it is the safest method to test the proper functioning of any antivirus.

Make Computer To Speak....What You Type

                            



Step 1: Open Notepad and paste the following text into a new document:
Dim message, sapi
message=InputBox(“Enter the text you want spoken”,”hackitbobby123”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message

I DISENABLE COPY PASTE SO DOWNLOAD THE FILE HERE:Click Here

VLC MEDIA AWESOME TRICK

Awesome VLC Media Player Trick


vlc tricks
In this tutorial i will share a simple trick yet interesting trick i came across while surfing on the internet. I will call it VLC Inception trick. This trick is simple and works on windows xp as well as windows 7. If you know this trick then its great if you don't then lets dive into it.

Must Have Fire fox addons

Firefox Imp. Addons


FOX TAB:
3D in your browser! FoxTab brings innovative 3D functionality to your Firefox.



New! Top Sites for FoxTab (aka Speed Dial).
Now you can access your most favorite sites from the familiar FoxTab interface.

FoxTab is a popular 3D tab management extension.
FoxTab powers Firefox with the following main features:
  ✔ Top Sites (aka Speed Dial) for quickly accessing your favorite web sites.
  ✔ Tab Flipper – to easily flip between opened tabs using mouse or keyboard gestures.
  ✔ Recently Closed Tabs – for reopening a tab that was recently closed.

Choose between 6 attractive 3D layouts.

Download Link:
Click Here


GREASE MONKEY:

 

Allows you to customize the way a webpage displays using small bits of JavaScript. ...!!

Download Link:
Click Here


TAMPER DATA:

Use tamperdata to view and modify HTTP/HTTPS headers and post parameters...

Use tamperdata to view and modify HTTP/HTTPS headers and post parameters.

Trace and time http response/requests.

Security test web applications by modifying POST parameters.

FYI current version of Google Web Accelerator is incompatible with the tampering function of TamperData. Your browser will crash.

Download Link:
Click Here


XSS ME:
Cross-Site Scripting (XSS) is a common flaw found in todays web applications. XSS flaws can cause serious damage to a web application. Detecting XSS vulnerabilities early in the development process will help protect a web application from unnecessary flaws. XSS-Me is the Exploit-Me tool used to test for reflected XSS vulnerabilities.

Download Link:

Click Here


ALEXA SPARKY:
            
                      
Sparky is Alexa Internet's free Firefox status bar plugin. Sparky accompanies you as you surf, providing you with Alexa data about the sites you visit without interrupting your browsing.

Discover website traffic trends -- Is this site getting more popular, or less?

Get detailed traffic information including Reach and Rank -- How does this site's traffic compare to other sites on the Web?

Surf more efficiently with Related Links for each page -- If I like this site, are there others that I might want to visit?

Gracefully navigate past dead end error pages -- Enable Sparky's optional custom error handling to get relevant alternative links when your browser encounters a network error.
Plus, as you browse with Sparky, you're helping to make the Web a better place for everybody by contributing to the traffic information that Alexa provides.

Download Link:

Click Here


SQL INJECT ME:
SQL Injection vulnerabilites can cause a lot of damage to a web application. A malicious user can possibly view records, delete records, drop tables or gain access to your server. SQL Inject-Me is Firefox Extension used to test for SQL Injection vulnerabilities.
SQL Inject Me is the Exploit-Me tool used to test for SQL Injection vulnerabilities.

The tool works by submitting your HTML forms and substituting the form value with strings that are representative of an SQL Injection attack.
The tool works by sending database escape strings through the form fields. It then looks for database error messages that are output into the rendered HTML of the page.

The tool does not attempting to compromise the security of the given system. It looks for possible entry points for an attack against the system. There is no port scanning, packet sniffing, password hacking or firewall attacks done by the tool.

Download Link:
Click Here


HACKBAR:
 

This toolbar will help you in testing sql injections, XSS holes and site security. It is NOT a tool for executing standard exploits and it will NOT teach you how to hack a site. Its main purpose is to help a developer do security audits on his code. If you know what your doing, this toolbar will help you do it faster. If you want to learn to find security holes, you can also use this toolbar, but you will probably also need a book, a lot of Google and a brain :)

# The advantages are:

- Even the most complicated urls will be readable
- The focus will stay on the textarea, so after executing the url (Ctrl+Enter) you can just go on typing / testing
- The url in textarea is not affected by redirects.
- I tend to use it as a notepad :)
- Useful tools like on the fly uu/url decoding etc.
- All functions work on the currently selected text.
- MD5/SHA1/SHA256 hashing
- MySQL/MS SQL Server/Oracle shortcuts
- XSS useful functions
- And lots more ;) Go test it!

# Shortcuts

- Load url ( Alt + A )
- Split url ( Alt + S )
- Execute ( Alt + X, Ctrl + Enter )
- INT -1 ( Alt - )
- INT +1 ( Alt + )
- HEX -1 ( Ctrl Alt - )
- HEX +1 ( Ctrl + Alt + )
- MD5 Hash ( Alt + M )
- MySQL CHAR() ( Alt + Y )
- MS SQL Server CHAR() ( Alt + Q )

Download Link:
Click Here

Idea Free INternet

                                                           i
We have two 100% working idea 3g Tricks 1st) is of VPN and 2nd one is a PLAN hACK trick. i prefer both the tricks are nice and working with great speed but still you can use anyone which you prefer the most.

BSNL TRICKS-2 FREE VIDEO CALLING,FREE INTERNET

                                                                  Bsnl
TRICK -1
Take a New BSNL 3G SIM of 128k
Now Activate a Video Calling pack on it.
After the video calling pack is activated on your BSNL 3G SIM,
Then Just Connect with any UDP VPN supporting port 9201 or 8080
That's It.
Enjoy this Super Cool Trick

Docomo Free Internet

                                                 a

Hey friends this time I brought a new Tata Docomo GPRS hack trick which is tested by me and it is running fine in 2G mode for my place. Try this trick in 3G mode in your area if you have 3G network availability.