Showing posts with label web tricks. Show all posts
Showing posts with label web tricks. Show all posts

Thursday, February 21, 2013

FireFox Hackers Edition

Hackers FireFox Edition


Posted By Black-Spider4:25 PM

Tuesday, January 29, 2013

How to Open RAR Files Without Software



To compress files and folders you need to use any archiving utility such as Winrar, to create a packed file with .Rar extension. The content in the archive should be extracted and uncompressed from the RAR file to be able to read it, in this step Winrar can interfere and do its job. In the case that we do not have any software utility to extract a RAR file, we need to use an Online application that can solve this problem.

How to Extract RAR Files Online Without Software 

1) Visit Wobzip Online Uncompressing tool.
2) Enter the URL or Browse a file from your Computer.




 
3) Enter the Password, if the file is protected.
4) Click Uncompress.

5) Click on the file inside the archive you want to download.




6) You can also share that file, using the unique link provided.
List of Formats supported : 
7z,XZ,BZIP2,GZ,TAR,ZIP,WIM,ARJ,CAB,CHM,CPIO,CramFS,DEB,DMG,FAT,HFS,ISO,LZH,LZMA,MBR,MSI,NSIS,NTFS,RAR,RPM,SquashFS,UDF,VHD,WIM,XAR



#CyberSnakePK
#CyberSnake
#Madleets
#Tricks
#Tips




Posted By CyberSnake11:16 PM

How to Reveal Who Hacked your WiFi

Every geek knows that WiFi vulnerability increasingly likely to be hacked, and everyone wants to protect its own website from hacking WiFi. It is always difficult to fully protect your Wi-Fi device, but it is possible to access your WiFi point behind your knowings with a very intelligent and simple.










Chopped show how that is in your wireless router
1) on the Wireless Network Watcher page
2) Download and unzip the file 
(Direct Link)
3) Run Wireless Network Watcher
4) It will start scanning the network: 192.168.1.1 to 192.168.1.255 



5) Each network connection is found to be listed with its information. 

IP address: The IP address of the connected device.
Device Name: The name of the connected device (can be the name of the person)
MAC Address: MAC address of the device.
Business Network Adapter: Network company connected network (eg Intel)
Device information: your router or computer.

6) Additionally, it produces more information about the connected device.
Done! If you find that your computer network and the router, then you need to hurry up and change your password WiFi button (preferably WPA or WPA2 encryption) need.


Posted By CyberSnake10:58 PM

2 Ways to Bypass Surveys on Any Website

Sometimes you are faced with a serious problem when you browse the Internet. You visit a website, you have been trying to see the content, you will be asked to complete a questionnaire. These studies are very annoying, (which means that you have to pay), some of them are CPA / CPL. You will be able to get around with a few clicks, to take pole instead I shows two methods for bypassing the survey on any site, including sharecash you here. 





(Using JavaScript) 1 wayThere is no way that you disable JavaScript on your web browser, see the survey:
Of Google Chrome:
Click in the upper-right corner of the 1) Google Chrome "to Settings key.
2) I click Options.
Scroll down 3) the list, and then click Advanced System Settings
Click Set to display the content of the contents of the Google Chrome options of 4) Web page.
I will not allow any site to run JavaScript: Javascript in accordance with the first check of 5)
It 6) is it! Well, I went to the site investigation and demands around you.

  
In Firefox:
In Firefox, you can use called QuickJava enable Javascript fast and simple to disable this add-on.
Please download from here.
Note: This method is for all Web sites like sharecash will not work: it is, you will be asked to check the work two methods for all the website, or have disabled JavaScript in the Web browser.
 


(Using inspect element) Method 21) If you have been invited to participate in the survey, click on the title to the right, you click elements test



2) Until the investigation disappear completed to examine the script to remove the tab element that we continue to press the delete key.                                                                 Click to enlarge Image

3) After the bar disappear, continue, go to the abolition of the lighter side (bleach), without dark area.

4) Done! Now you can see your entire content or download sharecash.

#CyberSnake
#CyberSnakePK

Posted By CyberSnake10:39 PM

Sunday, January 20, 2013

A Quick Guide – How To Make Your First Page In HTML In Simple Steps?

If you want to learn how to design a webpage in HTML then let me tell you that this is no rocket science. Anyone with a will to learn something new can learn about it in a few weeks. However, if you are in hurry then I have got something special for you. In this post, I will guide you about creating your first ever webpage in HTML. All you need to do is to keep following my guidelines and by the end of this post, we both will have a brand new HTML webpage crafted with our own hands.
I will start with basic things to give you an idea about the components of an HTML webpage.
Tags
html tags
If you have seen HTML codes before you must have seen such brackets “<>” in those codes as well. The content that is present in those brackets is called tag. We will talk about tags later in this post when we will actually use them for creating our HTML page.
Structure of HTML page elements
The structure of the HTML page is defined with the help of these tags. Different tags have different functions like a <b> tag will make the text look bold. The word “Bold” without <b> tag will look like “Bold” but when we surround it with tags like “<b>Bold</b>”, it becomes “Bold”.
Let’s get down to designing our page now
Open your text editor (Notepad) and enter the following code. You can use notepad ++ and also dream viewer.
<html> = Opening of HTML codding
</html> = Ending of HTML codding
These tags tell the computer that we are going to design an HTML page and anything between both these tags will be HTML content.
There are two main parts of any HTML page the Head part and the Body part. The content in your head part will not be visible on your webpage because your enter information visible to search engines in that part. The Title of your webpage is also inserted in head part so search engines can find it easily.
The text that will be inserted in the Title element will be shown at very top of your web page. You should add a title manually because if you will not do so, the URL of your page will be shown instead.
The main part of your HTML webpage is the body section. The section is defined with tags <body> </body>. Anything between these tags will the content of your web page. Below is how a simple HTML page looks like.
<html>
<head>
    <title>My first HTML page</title>
</head>
<body>
    <b>Hello!</b>
    I hope you’re having as much fun reading this as I had writing it!
</body>
</html>
Save your webpage
The next thing that you need to do is to save your webpage. Since we are using Notepad to write our HTML code, we will go to files and then find “Save As” option. When your computer prompts you to give a name to the file then make sure to save it with proper extension. The right extension for an HTML page will be .html. You can give this name to your file “mypage.html” and then click on save as.
Seeing your Webpage
Of course, you will definitely want to take a look at how your webpage looks like right? Just go to the folder in your computer where you had saved that html file and double click on it. This file will open in web browser instead of notepad. Congratulation my friend, you have just created your very first HTML web page. This is just an easy method to create a simple home page in HTML. You can use other tags to create a good page and add more colours using CSS. I hope you have learned few things from it.

Posted By AZ Sn1ff3r5:20 PM