Saturday, 19 September 2015

How To Crack a WIFI Password Very Easy By MuzamilTricks.Com

How To Crack a WIFI Password Very Easy By MuzamilTricks.Com

Hello Readers my name is Muzamil Hussain.Today I.m gonna tell you.How To Crack a WIFI Password
Step to Crack Wi-fi Password: Steps:
1. Boot your system with a backtrack 5 live dvd ora pendrive.
2. Goto Backtrack > Exploitation Tools > Wireless Exploitation Tools > WLAN Exploitation > 
fern-wifi-cracker
3. This is will open a fern wifi cracker window. Now the First step is to select the interface. Here in my case i have selected wlan0 interface .
4. To scan for Access Point click on the 2nd button ( wifi icon ). Once you get the Access Point ,various AP’s of WEP and WPA are detected. Fern wifi cracking Now I am going to crack the WEP Encryption . In my case , i have selected one Access Point and click on the Attack button. Access Points fern wifi cracking Once you click on the Attack button , it will start collecting packets. attack collect packer WEP KEY FOUND Once your IVS Packet count reaches 10000 or greater than that , its automatically crack the key and display it on the screen .Password Found KEY DATABASE To see the database , click on the Key Database button . WPA CRACKING : For WPA cracking the steps are same except you just need to specify the dictionary file (a file containing list of passwords) for the attack. Enjoy.
If You Like This Post So Please Share Your Friends. If you have any problem to feel free contact us.

How Can We Block Common Web Attacks And Protect Our Website By Muzamiltricks.com

Hello Readers my name is Muzamil Hussain.Today I.m gonna tell you. How Can We Block Common Web Attacks And Protect Our Website .On this post i am telling about five types of common web attacks, which are used in
most types of defacements or dumps of databases.
The five exploits listed above are SQL injection, XSS, RCE, RFI, and LFI. Most of the
time, we missed out some website code tags..
coz of this we get website attacks and allows the hacker for attack on vulnerable website.

A: SQL Injection
-->Types                  
 Login Form Bypassing
  UNION SQL Injection
           B: Cross Site Scripting
                             --> Cross Site Request Forgery
C: File Inclusion
          Types-> Remote File Inclusion and Remote Code Execution

A: SQL Injection

--> LOGIN FORM BYPASSING


Here is an example of the vulnerable code that we can bypass very easily:

index.html file:
<form action="login.php" method="POST" />
<p>Password: <input type="text" name="pass" /><br />
<input type="submit" value="Authenticate" /></p>
</form>

login.php file:
<?php
// EXAMPLE CODE
$execute = "SELECT * from database WHERE password = '{$_POST['pass'])";
$result = mysql_query($execute);
?>

We can simply bypass this by using ' or '1=1', which will execute "password = ''or '1=1'';".

Alternatively, the user can also delete the database by executing "' drop table database; --".



PREVENTION:

Use mysql_real_escape_string in your php code.

Example:

<?php
$badword = "' OR 1 '";
$badword = mysql_real_escape_string($badword);
$message = "SELECT * from database WHERE password = "'$badword'";
echo "Blocked " . $message . ";
?>

--> UNION SQL Injection

UNION SQL injection is when the user uses the UNION command. The user checks for the vulnerability by
adding a tick to the end of a ".php?id=" file. If it comes back with a MySQL error, the site is most likely
vulnerable to UNION SQL injection. They proceed to use ORDER BY to find the columns, and at the end, they use
the UNION ALL SELECT command. An example is shown below.

http://www.site.com/website.php?id=1'

You have an error in your SQL syntax near '' at line 1 SELECT SUM(quantity) 
as type FROM orders where (status='completed' OR status='confirmed' OR status='pending') AND user_id=1'

No error--> http://www.site.com/website.php?id=1 ORDER BY 1--  

 Two columns, and it comes back with an error! This means that there is one column.
 http://www.site.com/website.php?id=1 ORDER BY 2-- 

Selects the all the columns and executes the version() command on the only column.
http://www.site.com/website.php?id=-1 UNION SELECT ALL version()-- 

SOLUTION:

Add something like below to prevent UNION SQL injection.

$evil = "(delete)|(update)|(union)|(insert)|(drop)|(http)|(--)|(/*)|(select)";
$patch = eregi_replace($evil, "", $patch);


B: Cross Site Scripting

Cross site scripting is a type of vulnerability used by hackers to inject code into vulnerable web pages.
If a site is vulnerable to cross site scripting, most likely users will try to inject the site with malicious javascript or try to
scam users by creating a form where users have to type their information in.
 Two types of XSS (cross site scripting) are persistent XSS and non-persistent XSS.

Example:
http://www.site.com/search.php?q=">

SOLUTION:
(javascript) (Thank you, Microsoft!):

function RemoveBad(strTemp) {
    strTemp = strTemp.replace(/\<|\>|\"|\'|\%|\;|\(|\)|\&|\+|\-/g,"");
    return strTemp;
}

C: File Inclusion

 Types: Remote File Inclusion/Local File Inclusion, and Remote Code Execution

Remote File Inclusion allows a hacker to include a remote file through a script (usually PHP). This code is mostly patched on websites, but some websites are still
vulnerable to the vulnerability. RFI usually leads to remote code execution or javascript execution.

Example of the vulnerable code:

<?php
include($_GET['page']);
?>

Exploiting it would be something like this:
http://www.site.com/page.php?page=../../../../../etc/passwd or
http://www.site.com/page.php?page=http://www.site.com/xyz.txt?



SOLUTION:

Validate the input.
$page = $_GET['page'];
$allowed = array('index.php', 'games.php' 'ip.php');
$iplogger = ('ip.php');
if (in_array $page, $pages)) {
include $page {
else
{
include $iplogger
die("IP logged.");
}

If You Like This Post So Please Share Your Friends. If you have any problem to feel free contact us
For remote code execution, the site would have to have a php executing command. You would patch this by about doing the same thing.

How to Avoid Facebook Friend Request Block By Muzamiltricks.com

Hello Readers my name is Muzamil Hussain. Today I.m gonna tell you. How to Avoid Friend Request Block
We usually send friend requests and if it's not accepted it is kept in pending.
If  there are lots of pending requests it may lead to block.
 
So this is a simple way to get those requests cancelled and protect your account from being blocked.

    Follow below steps :-

    1. Go to account settings.
    2. Select `download a copy` option.



3. Choose `expanded archive` from the next page opened and enter your   password and click continue.
    4. Select `start my archive`.
    5. After a few hours you'll get the download link in your email.
    5. Download the file `facebook` and unzip it.
    6. Open the folder html and then `friend_requests.htm­l`.
    7. You can see the list of your friend requests and pending lists.
    Now goto their accounts and click`cancel request.

    That's all You are done now. Your account is Secure.



If You Like This Post So Please Share Your Friends. If you have any problem to feel free contact us! -



Friday, 18 September 2015

How to lock any website on your Android phone By MuzamilTricks.Com

How to lock any website on your Android phone By MuzamilTricks.Com

Hello Readers my name is Muzamil Hussain.Today I.m gonna tell you How To lock any website on your Android phone.
You Can Block Any WebSite On Your Android Phone For People Not To Access The WebSite.
Follow These Process:
Go And Download HOSTS EDITOR From Google PlayStore.
After You Have Download It, Then Install It And Start The Application.
Then Select new entry From The Menu.
Type 127.0.01 In The IP Address Box In The Host Entries.
Then Select Put The Web Address You Wish To Block (e.g www. yoursite .com) And Then Click save new host To Save The File.
Then Whenever You Or Anybody Try To Enter The WebSite On Your Phone,It Will Not Go.
If You Want To Block Another Web Site, Then Change 127.0.01 To 127.0.02 And You Will Be Changing The Last Number For Each WebSite.
If you like this trick soo share your firneds and tell about our site MuzamilTricks.Com

How To Make Your Name Code [ Facebook ] By MuzamilTricks.Com

How To Make Your Name Code [ Facebook ] By MuzamilTricks.Com

Hello Readers my name is Muzamil Hussain.Today I.m gonna tell you How To Make Your Name Code [ Facebook ]
Today I Will Tell You How To Make Your Own Name Code On Facebook..
Follow These Simple Steps -
1- First Of All Open Fb On Uc Or Opera..
2- After Open Go To Events And Create A Event ..
3- In Event Name, Type Your Name
4- Then Fill All Details. And Choose Event Privacy Public
5- Then Create Event And Invite Atleast 2 Friend..
6- Now Go To Your Event Whose You Created
7- Now Copy All The Event Link...
Now Find Event 15 Digits Code On The Link..
And Type Like This -
@[YourCode:]
Enjoy smile
If you like this trick soo share your firneds and tell about our site MuzamilTricks.Com

How To Make Ghosht Name Account Free By MuzamilTricks.Com

How To Make Ghosht Name Account Free By MuzamilTricks.Com
How To Make Ghosht Name Account Free By MuzamilTricks.Com

Hello Readers my name is Muzamil Hussain.Today I.m gonna tell you How To Make Facebook No Name Profile New Trick .Did you ever see a facebook user / facebook page that didn’t have any nickname or name in  their account? It's because they are using this trick to hide their identy.
Here is the new trick for making a no name or empty name Facebook account or for your  current account. Here is the trick:
1.First you have to prepare the “invisible character”.
If you are using Windows 7 here is what you can do. Go to Start Menu > Accessories > System Tools > Character Maps. After that the Character Map appears, point cursor to “Go to Unicode” and type “200D”
(without quote).
Then select the first character on the top left side which it named as “U 200D: Zero Width  Joiner”.
2.Click Select button > Click copy button > Then your invisible character is ready to be  used on Facebook’s Name.
3.Now the main and the last step is to Login to your Facebook account with your username and  password, then Go to “Account Settings” > Name > Edit > Paste the copied “invisible character” to First and Last Name 4 times or more (to get the empty status a “space” line”)  > click Save Changes > Done You are done!
if If you like this trick soo share your firneds and tell about our site MuzamilTricks.Com

How To Disable Any Facebook Account free Latest Trick By MuzamiTricks.Com

Hello Readers my name is Muzamil Hussain.Today I.m gonna tell you How To Disable Any Facebook Account free Latest Trick
How To Disable Any Facebook Account free Latest Trick By MuzamiTricks.Com

Follow The Step By Step Guide To Disable Anyone’s Account Without Knowing Him.(I'd urana/Block
special)
Step 1 :==>>
First We Need To Make A Facebook Page. ( Name It Anything I Suggest Name To Suite With Event
Name )
I Think Many Of You Know About How To Make A FaceBook Page. But Some Peoples Not Know How To Make It So This First Step For Their. If You Know How To Make A Facebook Page Then You Can Simply Ignore This Step. So If You Not know How To Make It Then Follow The Guide.
- Go To http://www.facebook.com/pages /create.php
- Select Any Category And Name Your Page And Click Get Started.
-Fill Up Captcha And
-Fill Up Other Info And Click Continue.
Your Page Is Ready.
Step 2 :==>>
Now We Need To Make An Event From The Page That we Make So Our Identity Can Secure.
To Make A Event From The Page You Made Follow The Procedure Below.
- Go To The Page You Made.
– In Right Side Of Page Click On Use Facebook as Your Page Name.
Now Go To http://www.Facebook.com/events
- And Click On Create Event.
Now You Learned How To Make A Page And How To Make A Event From A Page.
And Now You Have To Learn How To Make Event Attractive So Peoples Do All That You Say.
So Follow The Step 3.
Step 3:==>>
In Event Name Type An Attractive Title.
Ex. Win An Apple IPhone For Free > Choose Start And End Date To Anything.
Location Anything Ex. Facebook
Now In Details First 2-4 Lines Write Your Event More Info.
Ex. Now It’s Very Easy To Own A Apple Iphone For Free.
Follow The Below Step To Make It Own Right Now.
Now After This You Have Write Exactly Like Below But You Can Make Changes In It.
Step 1. Invite 50-100 Friends To This Event.
Step 2. Go This Link Victim Facebook Profile Url Here And At The Left Side Bottom Click On

REPORT/BLOCK When Pop-Up Window Is Open Select “This Person Is Bullying Or Harassing Me” And

Click Continue
2 Times And You Are Done.
You Will Be Get The Mobile Within One Week If Completed All Steps.
Change Victim Facebook Profile Url Here With Url Of Victim Whom Facebook You Want To Hack.
Change Other Lines Which Suite Your Event Name.
Put An Attractive Image To Event That Suit Your Event.
Now Invite 50-100 Friend To Your Event. Then It Will Be Increase Hour By Hour.
If You Have More Friends Than Invite More To Delete The Victim’s Facebook Profile Fast.
if If you like this trick soo share your firneds and tell about our site MuzamilTricks.Com