Welcome To The Hacker Club 4U

On This Blog Now You can get knowledge about how to to do hacking and also Know how to prevent from hacking and know many tips And tricks of computer and internet

Hacking

Click Here To Know Many Tricks and Tips Of HACKING facebook,twitter and other accounts and passwords

Hacking Safety And Security

Click Here to know how to protect your computer and inetrnet from hacking and know hacking safety and security tips and tricks

Facebook And Twitter

Click On Picture For TWITTER And Click On This Tittle For FACEBOOK .Hacking And Security Tips Of facebook and twitter.Know how to byepass facebook login and twitter login

Gmail And Yahoo

Click On Above Picture For GMAIL Hacking And Security Tips . And.Click On This Title For YAHOO Hacking and security tips


Showing posts with label See Blocked Sites. Show all posts
Showing posts with label See Blocked Sites. Show all posts

How To Protect Images From Being Copied / Downloaded

In this post, I'll discuss some ways to protect images from being copied on the webpages. You spend a lot of time and hard effort to creating unique images for your website, and later other could download them, which is not fair. Do you want to protect your images from being copied? If yes, you are here at the right place. In normal speak, you can not protect your images 100% from being downloaded because a webmaster or any person who knows some coding, may steal your images from your websites. Therefore, if you want 100% protection of your images from being copied, I would suggest you to use your watermark or your name on your images with transparency or don't put it on the internet (joke!). However, you can protect your images from being copied by the persons who are not webmasters.


protect image from being copied or downloaded
Protect Images from being copied or Download

If you Google it "how to protect images from being copied". You'll across with a technique which shared the most on the web by disabled to right click on the WebPages, but I think disabled to right click is not a good idea. Most of the users visit your webpages for information purpose only and very small no. of visitors visit your website for stealing your images so most of peoples feel insulting if you disabled right click on webpages and also it will not give you a professional work. Although, you can disable right click only on the images of your web pages not overall part of your web pages as on the part of your content and your links, but if you disable right click, users may drag and drop images from your webpages to their desktop.
We will discuss some techniques for protect your images from being downloaded as follows,

  1. Protect Images From Being Copied By 'img' Tag.

  2. Protect Images From Being Copied By 'table' tag.

  3. Protect Images Form Being Copied By Disable Right Click Only On Images.


I like the above first and second methods for protection of images in web pages. If you apply first or second method to protect your images from being copied and an image theft comes up on your website, and drag and drop your images to his/her desktop. They will shock and think what it is because they would not get any image to desktop after dragging or after to select the save as option. Let us first in very short description I tell you that what I would try to apply here.

"Firstly, takes an image which would you like to prevent from being copied and note down its width and height, and now create a transparent image of the same width and height as your main image. Now, upload your main image to your post, and then upload your transparent image adjacent to your main image. Now, we will try to move up your transparent image onto the main image. If succeed, everyone can see the main image because the upper layer on the main image is transparent, but if someone drags and drop your images from your web to their desktop, then always your transparent image will move on and your theft shocked each time. That's it!"

Updated: Please read the above message first which is in the quote.

If you want to protect all images on your website, then creating different transparent images for each image is waste of time. Now, we'll create only one transparent image of width and height each 1px, which will save image size too. We will use this transparent image with every image of our websites because we can change our transparent image's width and height via inline style, and all the procedure is same as we mentioned in above quote. Now we start the process.

How To Protect Images From Being Copied / Downloaded By img Tag


If you don't know that how to create the transparent image then simply you can download this transparent image of width 1px and height 1px by clicking on Transparent Image (wait 5 second and click on Skip Ad at the top of the right side). Save this image to the desktop, and upload it into your blog, or you can use free image hosting sites as imageshack.us and grab the direct link to use the image into your blog. You can also host your images into your blogger for free with unlimited bandwidth, to know more about it click on upload high quality images to Blogger.
Now look at the following code.
( Let we use here main image of 200px and height 200px. You may use different size of your image. )

***Here we are using border on the transparent image for better explanation because we could not be able to show you the location of transparent image without borders.
--> Border of Transparent image = Black;

<div style="float: left;">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih68peQOY9C_smziNtkxkxWVA_BjGAVDmQNqev9jhJYbEhcWGIWRSJEJLSyviA6euXrUeYwlYdaS_kn3mD64vWO-eQ17t3HVEw2HD_VgkGuPmmign8lMRCLQADuMZi01YWTsu_niK87Iz_/s1600/how+to+protect+images+in+websites.png" style="width: 200px;height: 200px;"/><img src="http://img836.imageshack.us/img836/5371/protection.png" style="border: 1px solid #000; width: 200px; height: 200px; " /></div>
Code 1.0

*** Please read carefully this step: In the above code, we have included two img tags as <img/><img/>. first one is for your main image and second one is for your transparent image, and make sure don't have no space both between both img tags( as <img/>SPACE<img/>) or no enter key ( as <img/>LineBreak<img/> ). Otherwise, these images will not be adjacent and this technique will not work.

*** Make sure in both img tags the height and width must be same or you can increase the width and height of the transparent image section but your main image's height and width must not be less than transparent image size. Otherwise, transparent image could not properly move up on the main image.

*** If you want to add border on main image then simply add the code for adding the border as we created in the transparent image i.e., border: 1px solid #000;

*** You can see in the second img tag we did expand 1x1 px image to 200x200 px image by adding width and height attribute in to the inline style sheet in transparent image.


The Preview of the above code will be as follow,


Now we will try to shift a transparent image hover to the main image by applying margin property on to the  transparent image and also make sure that the layer of your transparent image must be outer than the layer of the main image. It means that we have to use negative margin property on the transparent image. Since, our transparent image is in the right position of the main image. Now, we will try to shift our transparent image from right to left by using negative margin-left property, such as [ margin-left: -(width of main image)px; ], into the inline style sheet of transparent image. Let's adding this attribute into the above code 1.0.

*** Here the width of main image is 200px so we will use margin-left: -200px;
*** If you use the border for your main image then you must be set margin-left: -(width of main image + width of right border of main image + width of left border of main image); , let us we use "border: 1px solid #000;" into the main image, then this border width also includes into the width of main image so 1 px increases by left border and 1px increases due to right border of the main image, so we have to set margin-left: -202px;

so the above code will be changed to,

Code 1.1
<div style="float: left;">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih68peQOY9C_smziNtkxkxWVA_BjGAVDmQNqev9jhJYbEhcWGIWRSJEJLSyviA6euXrUeYwlYdaS_kn3mD64vWO-eQ17t3HVEw2HD_VgkGuPmmign8lMRCLQADuMZi01YWTsu_niK87Iz_/s1600/how+to+protect+images+in+websites.png" style="width: 200px;height: 200px;"/><img src="http://img836.imageshack.us/img836/5371/protection.png" style="border: 1px solid #000; width: 200px; height: 200px; margin-left: -200px; " /></div>

let's see the preview,


Sound like good. Your transparent image has completely moved up onto the main image. Can you steal this image? Try it by drag and drop to your desktop or right click on the image and save it to your desktop. What will you get? I think the transparent image only. :)

If you want to add this image to the right side, then simply change"float:left;" to"float: right;" into the above code.

if you want to add this image to the center of your post, then change "float: left;" to "text-align: center;" into the above code. That's it!

*** Where could you paste these codes, please see the instruction of bottom of this post.

*** Basically the position for your images is floated, so if your image is in float left, then your content will be in the right side, the exact example is on the above image (image in left and content in right). In this case you have to need some space between your content and image so replace the following code <div style="float: left;">  in Code 1.1  by <div style="float: left; margin:5px;"> .

*** If you don't wish to write adjacent to the right or left image, then simply add the following code just after the Code 1.1
<div style="clear:both;"></div>

You done!

How To Protect Images From Being Downloaded / Copied By Table Tag


Now, here we will protect images from being copied by using table tag, and make sure to note down the width and height of the main image it's property. I will suggest you to use the above first method for protecting your images. Since, it is also a possible solution for protecting your images from being downloaded so I am also considering this case. If you have a little knowledge about HTML table tag, then you could easily understand what I want to explain so let's with a very short description take a look at this method.
"Firstly, we will create a table and in that table, we will create a row, and then in that row we will create a column (now the game start!). In that column, we will upload my main image as a background image, and then we will insert a value in that column as my transparent image, which will cover the background image and ... and what? End the process. That's it!"
Now look at the follow code,

*** Now, we will not use the border of transparent image. I think you will have familiar with.
*** Since, here we will show the transparent image to its original background, so don't need to margin or padding here.
*** Here, my main image width=249px and height=200px, so we will make the same size of transparent image.

Code 2.1

<table>
<tr>
<td style=" background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih68peQOY9C_smziNtkxkxWVA_BjGAVDmQNqev9jhJYbEhcWGIWRSJEJLSyviA6euXrUeYwlYdaS_kn3mD64vWO-eQ17t3HVEw2HD_VgkGuPmmign8lMRCLQADuMZi01YWTsu_niK87Iz_/s1600/how+to+protect+images+in+websites.png) no-repeat;"><img src="http://img836.imageshack.us/img836/5371/protection.png" style="height: 220px; width: 249px;"/>
</td>
</tr>
</table>

Below is the preview of the above code,
*** Please make sure, there must not be any space between <td><img/> tag.


***Now, let's about the positions of your images into your post, such as left, right or center including the adjacent content to your images or not. We have created a simple table for your need. Take a look,
Want\Do Position What have you to
replace in Code 2.1
from which have
you to replace
Image with adjacent
content
Left <table> <table style="float: left;">
Right <table> <table style="float: right;">
Image without adjacent
content
Left <table> <table style="text-align: left;">
Right <table> <table style="text-align: right;">
Image Center <table> <table style="margin-left:auto; margin-right:auto;">

You done!

Now the third method that is how to protect images from being copied by disable right click only on images on your web pages. We will create a new post for it, because this post has already been lengthy. The second factor is that I am in very sleepy mood, and the light rays of the sun are knocking my door ( LOL).

Where can you paste these codes:

You can paste these codes to anywhere, where HTML allowed. Check out the following steps,

  • In Blogger Post: Sign in to Your Blogger Dashboard -->click on How to protect images from being downloaded Create new post --> select HTML mode and paste the above code.
  • In Blogger Sidebars: Go to Blogger Dashboard --> Layout(Under more options) --> Add a Gadget(choose from sidebars) --> HTML/Javascript(Choose under pop up window) and paste your code and click on Save.

Hope! You enjoy this tutorial and if you have any doubt, then can feel free to ask me via comments.

IF THIS TRICK IS HELPFUL FOR YOU THAN
PLEASE DON'T FORGET TO CLICK ON SUBSCRIBE BUTTON.........!

A Website Tells You If Your Computer Ports Are Hacked Or Not

Goto this site mentioned below and test will start automatically:
http://probe.hackerwatch.org/probe/probe.asp

You need to wait 1 min before the test will start


info:Port Scan
This server will now attempt to open several common ports on your computer. The results of these attempts will be displayed on this page as Open, Closed, or Secure:

If your firewall is configured to block a port, and it is operating correctly, you will see Secure and an event will be logged on your firewall.
A Closed port indicates that the port is reachable but there is no program currently accepting connections there.
If the port is indicated as Open there is an application or service on your computer actively accepting connections.

The time to check each port will range from less than a second up to 20 seconds. Ports which are Secure will take the most time and if u are secured after the test ends tells u

Test complete.
No open ports were found
LIKE US ON FACBOOK
AND
FOLLOW US ON TWITTER

Hackers deface Sonia Gandhi profile on Congress website

NEW DELHI (Reuters) - Hackers broke into the Congress partywebsite and replaced Sonia Gandhi's profile page with sexual innuendo, apparently timing the attack with the party president's 65th birthday on Friday.
It was not clear when the attack took place and Congress party leaders were not available for comment. The official website(http://www.congress.org.in/) was inaccessible to the public at noon on Friday, a couple of hours after the hacked post was noticed on Gandhi's profile page.
The attack came just days after India urged social media networks including Facebook, Twitter and Google to remove offensive material from their websites, unleashing a storm of criticism from Internet users complaining of censorship.
A New York Times report Monday said Telecoms and Information Technology Minister Kapil Sibal called executives about six weeks ago and showed them a Facebook page that maligned Gandhi and told them it was "unacceptable."
The government is very sensitive to criticism of Gandhi, whose family has dominated Indian politics for over six decades.

How to get security from hacking a Website Free in a second

I want to show you just one way that hackers can get in to your website and mess it up, using a technique called SQL Injection. And then I'll show you how to fix it. This article touches on some technical topics, but I'll try to keep things as simple as possible. There are a few very short code examples written in PHP and SQL. These are for the techies, but you don't have to fully understand the examples to be able to follow what is going on. Please also note that the examples used are extremely simple, and Real Hackers™ will use many variations on the examples listed.

If your website doesn't use a database, you can relax a bit; this article doesn't apply to your site — although you might find it interesting anyway. If your site does use a database, and has an administrator login who has rights to update the site, or indeed any forms which can be used to submit content to the site — even a comment form — read on.

Warning

This article will show you how you can hack in to vulnerable websites, and to check your own website for one specific vulnerability. It's OK to play around with this on your own site (but be careful!) but do not be tempted to try it out on a site you do not own. If the site is properly managed, an attempt to log in using this or similar methods will be detected and you might find yourself facing charges under the Computer Misuse Act. Penalties under this act are severe, including heavy fines or even imprisonment.

What is SQL Injection?

SQL stands for Structured Query Language, and it is the language used by most website databases. SQL Injection is a technique used by hackers to add their own SQL to your site's SQL to gain access to confidential information or to change or delete the data that keeps your website running. I'm going to talk about just one form of SQL Injection attack that allows a hacker to log in as an administrator - even if he doesn't know the password.

Is your site vulnerable?

If your website has a login form for an administrator to log in, go to your site now, in the username field type the administrator user name.

In the password field, type or paste this:


x' or 'a' = 'a

If the website didn't let you log in using this string you can relax a bit; this article probably doesn't apply to you. However you might like to try this alternative:

x' or 1=1--

Or you could try pasting either or both of the above strings into both the login and password field. Or if you are familiar with SQL you could try a few other variations. A hacker who really wants to get access to your site will try many variations before he gives up.

If you were able to log in using any of these methods then get your web tech to read this article, and to read up all the other methods of SQL Injection. The hackers and "skript kiddies" know all this stuff; your web techs need to know it too.

The technical stuff

If you were able to log in, then the code which generates the SQL for the login looks something like this:

$sql =
"SELECT * FROM users
"WHERE username = '" . $username .
"' AND password = '" . $password . "'";

When you log in normally, let's say using userid admin and password secret, what happens is the admin is put in place of
$username
and secret is put in place of
$password
. The SQL that is generated then looks like this:

SELECT * FROM users WHERE username = 'admin' and PASSWORD = 'secret'

But when you enter
x' or 'a' = 'a
as the password, the SQL which is generated looks like this:

SELECT * FROM users WHERE username = 'admin' and PASSWORD = 'x' or 'a' = 'a'

Notice that the string:
x' or 'a' = 'a
has injected an extra phrase into the WHERE clause:
or 'a' = 'a'
. This means that the WHERE is always true, and so this query will return a row contain the user's details.

If there is only a single user defined in the database, then that user's details will always be returned and the system will allow you to log in. If you have multiple users, then one of those users will be returned at random. If you are lucky, it will be a user without administration rights (although it might be a user who has paid to access the site). Do you feel lucky?

How to defend against this type of attack

Fixing this security hole isn't difficult. There are several ways to do it. If you are using MySQL, for example, the simplest method is to escape the username and password, using the mysql_escape_string() or mysql_real_escape_string() functions, e.g.:

$userid = mysql_real_escape_string($userid);
$password = mysql_real_escape_string($password);
$sql =
"SELECT * FROM users
"WHERE username = '" . $username .
"' AND password = '" . $password . "'";

Now when the SQL is built, it will come out as:

SELECT * FROM users WHERE username = 'admin' and PASSWORD = 'x\' or \'a\' = \'a'

Those backslashes ( \ ) make the database treat the quote as a normal character rather than as a delimiter, so the database no longer interprets the SQL as having an OR in the WHERE clause.

This is just a simplistic example. In practice you will do a bit more than this as there are many variations on this attack. For example, you might structure the SQL differently, fetch the user using the user name only and then check manually that the password matches or make sure you always use bind variables (the best defence against SQL injection and strongly recommended!). And you should always escape all incoming data using the appropriate functions from whatever language your website is written in - not just data that is being used for login.

There's more

This has just been a brief overview. There are many more hacking techniques than SQL Injection; there are many more things that can be done just using SQL Injection. It is possible to directly change data, get access to confidential information, even delete your whole database — irrespective of whether the hacker can actually log in — if your website isn't set up correctly.

If you are hungry for more, this detailed article from SecuriTeam explains other techiques hackers might use, as well as some of the methods hackers use to work out the structure of your database, the userid of the admin user, gain access to your system's configuration, etc.

How To Add Funny Dancing Twitter Flash Bird On Your Blog And Sites

How To Add Funny Dancing Flash Twitter Bird to Your Blog



1.Login to your Bogger Dashboard and go to Desing >> & Page Elements.

2.Click on 'Add a Gadget' on the sidebar.

3.Select 'HTML/Javascript' and add the one of code given below


<object type="application/x-shockwave-flash" data="http://www.buzzbuttons.com/BUTTON8/twitbutton.swf" width="200" height="200"><param name="movie" value="http://www.buzzbuttons.com/BUTTON8/twitbutton.swf"></param><param name="allowscriptaccess" value="always"></param><param name="menu" value="false"></param><param name="wmode" value="transparent"></param><param name="flashvars" value="username=bloggertoolz"></param><a href="http://www.dreambingo.co.uk/" title="http://www.dreambingo.co.uk/">http://www.dreambingo.co.uk/</a><embed src="http://www.buzzbuttons.com/BUTTON8/twitbutton.swf" type="application/x-shockwave-flash" allowscriptaccess="always" width="200" height="200" menu="false" wmode="transparent" flashvars="username=hackerclub4u"></embed></object>

Note: Replace hackerclub4u with your twetter account name

4. Now Click on Save "Html Java Script" and You are done..

Cheers

How to view blocked sites

Hii! This is Pc Hackers Guru Know Many about Hacking
You generally are not able to view a site because the access control list is configured in a firewall to block any attempts to site and pop-up an error message
The simplest way to overcome is to redirect the traffic – there are more than 1000 proxy servers on the net and they keep increasing everyday (so, no access control list can block all of them – if one is blocked search for other in google )
TRY THESE :
www.breakthefirewall.com
www.zend2.com
www.anonymizer.com
www.jumboproxt.net
www.vtunnel.com
http://www.myipproxylist.com/
They not only allow you to view any site by redirecting the traffic but also help you to carry out hacking .Consider an attack case
UR machine >>> Proxy 1 >>> Proxy 2>>> Proxy3… Proxy n >>> Target Machine
Now the target machine will have ip of last proxy u connected to. SO it will be impossible for them to trace you if u hack them… particularly if all the proxies belong to different countries…

How to Access Banned Facebook in Pakistan

Facebook is now banned in Pakistan.But there method to access blocked facebook in pakistan.One method to access facebook is to use proxy sites.There are many free proxy site online ,Which enable you to access blocked website from any where.Its sad for facebook lovers in pakistan.
Use  free proxy to surf anonymously online. Proxy can change to change your IP address, secure your internet connection, hide your internet history and protect your privacy online for free.
Some of free proxy on web are below
http://www.hidemyass.com/
http://secureproxies.info

http://homeproxies.info


http://proxys4school.info

http://sweetwind.cz.cc/ 
There are lot of free proxy site.You can search google  for How to view blocked facebook in pakistan ,Free working proxy ,unblocked  facebook etc to get more proxy websites.You can share your own proxy website here .

Recommend us on Google!

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More