Sunday, 29 September 2013

Download Firefox Nightly Latest for Windows, Mac, Linux, Android




To Download FIREFOX NIGHTLY click Here
http://nightly.mozilla.org/

Mozilla Firefox is a free and open source web browser developed for Windows, OS X, and Linux, with a mobile version for Android, byMozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards.
As of July 2013, Firefox has between 16% and 21% of worldwide usage, making it the third most popular web browser, according to different sources. According to Mozilla, Firefox counts over 450 million users around the world.

Firefox latest Version download


What’s New

New
  • Support for new scrollbar style in Mac OS X 10.7 and newer
  • Implemented Close tabs to the right
  • Social: Ability to tear-off chat windows to view separately by simply dragging them out  
CHANGED
  • Accessibility related improvements on using pinned tabs (see 577727)

  • Removed support for Revocation Lists feature (see 867465)
  • Performance improvements on New Tab Page loads (see 791670)

DEVELOPER
  • Major SVG rendering improvements around Image tiling and scaling (see 600207 )

  • Improved and unified Browser console for enhanced debugging experience, replacing existing Error console    
  • Removed support for sherlock files that are loaded from application or profile directory

FIXED
Replace fixed-ratio audio resampler in webrtc.org capture code with Speex resampler and eliminate pseudo-44000Hz rate ( see 886886)                     
24.0: Security fixes can be found here


Firefox for Android latest




Rquirments

Android

Firefox is compatible with Android 2.2 and above devices.

Installation requires about 24 MB internal storage and 384 MB of RAM

Firefox Android What’s New 

NEW
  • Enabled support for WebRTC

  •  Ability to share open tabs between NFC-enabled phones
  • Easy access to your favourite share application from main menu. Read more in the blog post.
  • Added support for Braille, Popup announcements, Door hangers retain focus and a lot more for TalkBack users
  • Better night reading experience with Night mode functionality in Reader
  • Added Swedish, British and Catalan to Android multi-locale builds
DEVELOPER
 Removed support for sherlock files that are loaded from application or profile directory
CHANGED
Baidu is now the default search engine for the Chinese locale
FIXED
24.0: Security fixes can be found here


Firefox Aurora Latest Version download






What’s New In Firefox Aurora

NEW
Windows 8 optimized Aurora is ready for use (see blog post)

All plug-ins in Firefox, with the exception of Flash plug-ins, are defaulted to 'click to play'

You can now run more than one service at a time with Firefox Social API  allowing you to receive notifications, chat and more from multiple integrated services

Firefox's password manager now supports script-generated password fields

Updates can now be performed by Windows users without write permissions to Firefox install directory (requires Mozilla Maintenance Service)

Firefox now supports H.264 on Linux if the appropriate gstreamer plug-ins are installed

Firefox now supports MP3 decoding on Windows XP, completing MP3 support across Windows OS versions

CHANGED
CSP implementation now supports multiple policies, including the case of both an enforced and Report-Only policy, per the spec

DEVELOPER
Firefox's Social API now supports Social Bookmarking for multiple providers through its Social Marks functionality (see MDN docs)

Experimental support for CSS sticky positioning (Aurora only - demo)

Firefox no longer prompts when websites use appcache

Firefox now supports the CSS image orientation property

New App Manager allows you to deploy and debug HTML5 webapps on Firefox OS phones and the Firefox OS Simulator

IndexedDB can now be used as a "optimistic" storage area so it doesn't require any prompts and data is stored in a pool with LRU eviction policy, in short temporary storage

FIXED
When displaying a standalone image, Firefox matches the EXIF orientation information contained within the JPEG image (see 298619)

Improved page load times due to no longer decoding images that aren't visible (see 847223)

AudioToolbox MP3 backend for OSX (see 914479)   

         Also test the beta version of Flash





          

Thursday, 26 September 2013

Tracking A Person Online

By Cell Phone, Email, Facebook ID


Internet is filled with people who love to annoy and give out threats. If they are careless, they can be easily tracked, but if it is a professional guy, he might be difficult to trace as he might be using proxy/anonymity tool.
If you think you are in trouble, i would advise you to go to cops. But if you think it is some punk ass guy, follow this tutorial to track him down and kick his ass.
To track him down, you can use mobile number, an email from him, or his Facebook ID.
So lets get it started :

Tracking Somebody By His Facebook ID :


Facebook is full of stalkers and annoying people and fake profiles,  And there is absolutely no way to get rid of them. Sure you can ignore them, but they will start posting on your walls, block them, they will make a new ID. Only way to get rid of them is to muscle them out. And by muscle i mean hack and destroy their PC. To do that, you will need their IP Address, And This tutorial will teach you how to do it.Also we will tell you how to track that person down to his house !
So buckle up.

So we will divide this tutorial in two main parts :

-Getting His IP Address.
-Tracking His IP Address to find his physical location.

Step One : Finding His IP Address :


To do this, we will use the " netstat " command in windows (xp,vista,7,8, doesn't matter), this command will list the active connections and listening ports,and to this this, first you have to invite that person to chat, chat with him for 1-2 minutes, then open your command prompt ( start-cmd ) and then type the following command on it :

netstat -an



And you will get all established connections IP addresses. Note down the suspicious IP’s.

TIP : If you get a whole lot bunch of IP's , close the additional tabs in your browser and terminate the application like antivirus/download managers and retry.



Step Two : Tracing His IP Address :


Once you have got the IP Address you want, its time to trace it. To do that we will need a website that give us tracing/ tracking options, some of the best sites are :


All these sites can trace the IP Address to his location, and they are pretty easy to use , just jot the IP you noted and put it in their search engine.

Tracking Him Down By His Cell Number :


Are you getting prank calls, or vulgar threats, or simply annoying calls from somebody who doesn't give out his name.
It is pretty easy to track somebody by his cell/landline number. All you got to do is note down his/her number and enter it in this website and it will give you out the details :

Tracking Him Down by His Email Address :

Tracking Email is not new, it has been around since the emails were invented. But the tracking service has definitely got better since them. Email Tracking is comparatively easy than Facebook tracking, all you got to do is follow these simple steps and BAM ! you know the location of the 
sender/reader !


You can use the free service provided by these sites, all you got to do is attach this tiny little attachment and they will tell you when the reader location is determined. Good thing is that even proxy can't hide the reader. So try them out :

Wednesday, 25 September 2013

How to get the Windows product key without using third party software

If you lost, cannot retrieve or forgot where you had stored the product key of your Windows 8.1, Windows 8 or Windows 7 OS, do not despair. I would like to show you a simple solution to extract your product key from the OS installed on your PC without using any third party software.


  1. Open Notepad.

     2. Copy and paste the following text into the notepad window 



function Get-WindowsKey {
## function to retrieve the Windows Product Key from any PC
## by Jakob Bindslet (jakob@bindslet.dk)
param ($targets = ".")
$hklm = 2147483650
$regPath = "Software\Microsoft\Windows NT\CurrentVersion"
$regValue = "DigitalProductId"
Foreach ($target in $targets) {
$productKey = $null
$win32os = $null
$wmi = [WMIClass]"\\$target\root\default:stdRegProv"
$data = $wmi.GetBinaryValue($hklm,$regPath,$regValue)
$binArray = ($data.uValue)[52..66]
$charsArray = "B","C","D","F","G","H","J","K","M","P","Q","R","T","V","W","X","Y","2","3","4","6","7","8","9"
## decrypt base24 encoded binary data
For ($i = 24; $i -ge 0; $i--) {
$k = 0
For ($j = 14; $j -ge 0; $j--) {
$k = $k * 256 -bxor $binArray[$j]
$binArray[$j] = [math]::truncate($k / 24)
$k = $k % 24
}
$productKey = $charsArray[$k] + $productKey
If (($i % 5 -eq 0) -and ($i -ne 0)) {
$productKey = "-" + $productKey
}
}
$win32os = Get-WmiObject Win32_OperatingSystem -computer $target
$obj = New-Object Object
$obj | Add-Member Noteproperty Computer -value $target
$obj | Add-Member Noteproperty Caption -value $win32os.Caption
$obj | Add-Member Noteproperty CSDVersion -value $win32os.CSDVersion
$obj | Add-Member Noteproperty OSArch -value $win32os.OSArchitecture
$obj | Add-Member Noteproperty BuildNumber -value $win32os.BuildNumber
$obj | Add-Member Noteproperty RegisteredTo -value $win32os.RegisteredUser
$obj | Add-Member Noteproperty ProductID -value $win32os.SerialNumber
$obj | Add-Member Noteproperty ProductKey -value $productkey
$obj
}
}


  • Save the text above into a file with the ".ps1" extension on the Desktop.

    Bonus tip: To make sure that you saving the file with the ".ps1"
    extension, you can type its name with double quotes, for
    example, "GetProductKey.ps1".

    get product key



  • Open the Powershell console as administrator by typing "powershell"
    in the search box of the Start Menu or right on the Start Screen and
    then press CTRL+SHIFT+Enter. This will open the elevated Powershell
    window.



  • Enable the execution of local files which are not digitally signed. This can be done with the following command:
    Set-ExecutionPolicy RemoteSigned
    Press Enter to allow the execution policy to be changed. Windows PowerShell
  • Now you should type the following command:
    Import-Module C:\Users\Winaero\Desktop\GetProductKey.ps1; Get-WindowsKey
    Note: Change the path to the GetProductKey.ps1 file in the command above, according to the location where you saved it.
  • Voila, you product key is displayed on the screen!
  • Get Product Key
  • Friday, 20 September 2013

    Things To Know About Backtrack Distribution

    There are several organizations that have worked tirelessly to create various security based Linux Distribution . Among the most well known Penetration Testing distribution is known as " BACKTRACK ". Backtrack is not new now .

    For  a hacker a Backtrack Linux is like a dream come true . Whole distribution comes preloaded with hundreds of security tools that are already installed .

    The Best thing about the Backtrack is : Its FREE!






    Point to be Remember 1 : When you  run your Backtrack DVD , shortly after system will presented the menu list . you need to be carefully review this list , its contains several different options .


    • If you have some trouble getting Backtrack to boot , then choose  Backtrack Debug - Safe Mode 
    • If you want to run the system memory test then select Backtrack Memtest - Run memtest
    • If you just wanna start Backtrack Live then Choose Backtrack Text - Default Boot Text Mode
    Point To Be Remember  2 : Once system is loaded you will be presented with a log-in prompt. 
                                                   You have to enter the username as a root and Password as a toor





    Point to Remember 3 : Once you logged into the system it shows root@bt : ~#(shown below )





    Here you have to enter startx command . Once enter key is pressed system will begin to load . Once it completely loaded , you will see the desktop .




    Point to Remember 4 : Commands used on Backtrack Linux .


    • konsole : This command is used to start the terminal .
    • ifconfig  : This command is used to view system ip address.
    • ifconfig -a : This will shows the interface available like " eth0 " and " lo " .Here eth0 is your " ethernet card" and " lo " is  a loop-back adapter .
    • ifconfig eth0 up : This command is used to turn on the network card.
               Example : ifconfig eth0 up 192.168.127.131
    • poweroff or init 0  : This command is used to shutdown the Backtrack .
    • reboot : This command is used to reboot Backtrack .


    These are some points which should remember while using Backtrack Linux OR any other Linux .

    How To Install Backtrack In Your System

    Backtrack is Linux Based Penetration Testing Operating system which provides many inbuilt tools which are used for vulnerability assessment, exploitation and penetration testing. 
    Frist Of all Boot your Backtrack From CD/DVD. Then select option for Default Text Mode. Now Let It load First. After that follow following tutorial:


    Lets start with first snapshot i.e Installing of Backtrack .



    Step  1 :Click On Backtrack Icon.


    Step 2 : Click On Forward Button

    Step 3:Select your Time Zone and press Forward button.
    Step 4: Keyboard Layout: Select your layout and press Forward Button.

    Step 5 : Now here you have 2 options 
    • Erase and use the entire disk : If you use this option it will delete your entire disk and installed  Backtrack on your harddisk  .
    • Specify partitions manually (advanced) : If you opt this option then you have to create partition on harddisk . 
    Lets start from 1st Process :Erase and use the entire disk

     

    Step 6 : Click on Install Button : In this process  no need to creating any partition on harddisk system will automatically created partition .

    Second Option : Specify partitions manually (advanced)



     
    Prepare Partitions : Select /dev/sda and click new partition . When new partition created it will look like below image -

    Now new partition created now create a Linux Partitions i.e 
    /  Partition (also called root ) : It is a partition where all Linux files are stored .
    /boot  Partition : All the Linux Booting files are stored on Boot .
    swap  Partition : It is a Virtual Memory .
    Note :  Always remember that two main files are responsible for booting -

    1. GRUB(Grand Unified Boot Loader)
    2. LILO (Linux Loader)

    First : create root partition and put Mount Point as / (root) and press OK

    Your root created now .
     Applying same step to create /boot partition -
    Select partition as : Logical
    Partition Size :1000
    Mount Point : /boot

    Press OK
    After creating /boot partition it will look like this image .
    Now create a Swap Partition
    The only change we have to do is in Size  and Mount Point 
    Size : Give double the size of RAM 
    Example : if i have 512 Ram then assigned 1024 mb of size.
    Use as : Swap Area
    Swap area is created . Now press Forward button




    Press Install and start installation.
    Installation process running in middle of the process shows this windows shown below -


    Installation Process : In the middle  of installation you see this type of process going on .
    Installtion Completed 
    Restarted Now


    Your Installation Completed
    Now start Exploiting