Showing posts with label tweaks. Show all posts
Showing posts with label tweaks. Show all posts

Thursday, February 21, 2013

FireFox Hackers Edition

Hackers FireFox Edition


Posted By Black-Spider4:25 PM

Tuesday, February 5, 2013

SMS spoofing-the-new-damage

Unwanted-SMS-are-a-pass%25C3%25A9%25E2%2580%2599-SMS-Spoofing-the-new-Damage















Mobile communication is everywhere, mobile piracy seems to be difficult, and a normal user, students and ethical hacker is usually not go to the mobile campaign hacking. Hacking Mobile is a word if it contains general hacking attack the physical layer to the application layer of the OSI model. Spoofing attack is not a new attack, and you must have heard about IP spoofing, DNS spoofing and SMS Spoofing.
In spoofing attack an attacker to get a source or desire address. As we Ettercap DNS spoofing by this time we will SMS spoofing through social engineering toolbox talk fifth reverseWhat is SMS Spoofing?Short Message Service (SMS) is now available on the phone, I, you and all SMS to communicate. SMS Spoofing means to get the message replacement starting mobile number (Sender ID) with alphanumeric text / another number appears to come. (Wikipedia).I'll more theoretical aspect here would discuss how to perform SMS spoofing? How does the SMS spoofing? And so many questions.SMS Spoofing Tutorial
Social Engineering Toolkit SMS spoofing attack vector that can be used to perform SMS spoofing. Prior to the tutorial:

    
Operating system (BackTrack 5 for this tutorial)
    
SET (Social Engineering Toolkit)
    
Brain (important)
So I use backtrack 5 to perform SMS spoofing, but you can use Ubuntu, Gnacktrack, Backbox and other operating systems Linux or another.
First Step:

    
In the SET menu, point 7, SMS spoofing attack vector
Second Step:

    
At the second level "1 Perform a SMS spoofing"
    
The third select what you want a mass SMS spoofing or an individual, in this case, I have to select the first
    
On the fourth, you must enter the recipient's number, make sure that you enter the area code.
    
At the next level thereof. Predefined templates
    
In this step, you must select the templates (you choose what you want)
    
If you are an Android emulator that wonderful, but you can use paid services. So it's up to you, and then send your message.

Posted By Black-Spider3:17 PM

Tuesday, January 29, 2013

Top 10 computer security tips:

Top 10 computer security tips
The matter we gonna discuss today is security of your computer and your valuable data therein. Having only an antivirus for security and protection of your valuable data is not enough. You must perform some additional task for your security and protection. So the same i'm listing here the top 10 computer security tips


So here we go :

1. Use "anti-virus software" and keep it up to date.[ I recommend a licenced one which is far much better than a free one.]

2. Don't open e-mails or attachments from unknown sources. Be suspicious of any unexpected e-mail attachments even if it appears to be from someone you know.

3. Protect your computer from Internet intruders - use "firewalls."

4. Regularly download security updates and "patches" for
operating systems and other software.

5. Use hard-to-guess passwords. Mix upper case, lower case,
numbers, or other characters not easy to find in a dictionary, and make sure they are at least eight characters long. You can refer this post for better password.

6. Back-up your computer data on disks or CDs regularly.

7. Don't share access to your computers with strangers. Learn
about file sharing risks.

8. Disconnect from the Internet when not in use.

9. Check your security on a regular basis. When you change your clocks for daylight-savings time, reevaluate your computer security.

10. Make sure your family members and/or your employees
know what to do if your computer becomes infected.

Share this Post and Spread Awareness

Posted By Black-Spider12:24 PM

Tuesday, January 22, 2013

Setting Video As Desktop Wallpaper

Filled under: , , , ,


video wallpaper
Ever wanted to set cool videos as your computers Desktop Wallpaper, then you came to right place. Today in this post i will teach you how to set videos as your Desktop Wallpaper with a simple nice little trick and small tool or software that mostly every one has installed on their computer or laptop. This trick works on  Windows Xp as well as it works on windows 7. Go through below post to learn this simple trick.


How to set video as desktop wallpaper ?

   1. Open VLC Media Player. If you don't have it download it frome Here.
   2. Then Go to Tools > Preference Or press CTRL + P and Selecet Video from left panel
   3. Then Choose DirectX video output from output dropdown list
      as shown in below image .
Video wallpaper

   4. Save the changes ans restart VLC Media Player.
   5. Play any video you would like to set as your desktop wallpaper.
   6. Then click on Video and select DirectX Wallpaper from the dropdown list as show in below image.
Video wallpaper

   7. Now Minimize vlc player and you will see your video running on your desktop as wallpaper.
   8. If you want your default wallpaper back then uncheck DirectX Wallpaper from video dropdown list.
   9. Hope you like this simple trick share your thought about this trick in comment section.

Posted By AZ Sn1ff3r8:49 AM

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